User.php 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189
  1. <?php
  2. namespace app\api\controller;
  3. use app\common\controller\Api;
  4. use app\common\library\Ems;
  5. use app\common\library\Sms;
  6. use app\common\model\Leave;
  7. use fast\Random;
  8. use think\Config;
  9. use think\Validate;
  10. /**
  11. * 会员接口
  12. */
  13. class User extends Api
  14. {
  15. protected $noNeedLogin = ['login', 'mobile_login', 'resetpwd', 'changeemail', 'changemobile', 'third'];
  16. protected $noNeedRight = '*';
  17. public function _initialize()
  18. {
  19. parent::_initialize();
  20. if (!Config::get('fastadmin.usercenter')) {
  21. $this->error(__('User center already closed'));
  22. }
  23. }
  24. /**
  25. * 用户信息
  26. * @ApiMethod (POST)
  27. * @ApiReturnParams (name=code,type="integer",description=错误码:0=失败1=成功401=未登录403=没有权限)
  28. * @ApiReturnParams (name=msg,type="string",description=提示信息)
  29. * @ApiReturnParams (name=data,type="array",description=要返回的数据)
  30. * @ApiReturnParams (name=data.id,type="integer",description=用户ID)
  31. * @ApiReturnParams (name=data.username,type="string",description=用户姓名)
  32. * @ApiReturnParams (name=data.email,type="string",description=邮箱)
  33. * @ApiReturnParams (name=data.mobile,type="integer",description=手机号)
  34. * @ApiReturnParams (name=data.avatar,type="string",description=头像地址)
  35. * @ApiReturnParams (name=data.gender,type="string",description=性别)
  36. * @ApiReturnParams (name=data.birthday,type="string",description=出生年月)
  37. * @ApiReturnParams (name=data.rights,type="integer",description=是否有权益:0=没有1=有)
  38. */
  39. public function get_user_info()
  40. {
  41. $user = $this->auth->getUserinfo();
  42. $this->success('用户信息', $user);
  43. }
  44. /**
  45. * 手机验证码登录
  46. * @ApiMethod (POST)
  47. * @ApiParams (name="mobile", type="string", required=true, description="手机号")
  48. * @ApiParams (name="captcha", type="string", required=true, description="验证码")
  49. */
  50. public function mobile_login()
  51. {
  52. $mobile = $this->request->post('mobile');
  53. $captcha = $this->request->post('captcha');
  54. if (!$mobile || !$captcha) {
  55. $this->error(__('Invalid parameters'));
  56. }
  57. if (!Validate::regex($mobile, "^1\d{10}$")) {
  58. $this->error(__('Mobile is incorrect'));
  59. }
  60. if (!Sms::check($mobile, $captcha, 'register')) {
  61. $this->error(__('Captcha is incorrect'));
  62. }
  63. $user = \app\common\model\User::getByMobile($mobile);
  64. if ($user) {
  65. if ($user->status != 'normal') {
  66. $this->error(__('Account is locked'));
  67. }
  68. //如果已经有账号则直接登录
  69. $ret = $this->auth->direct($user->id);
  70. } else {
  71. $ret = $this->auth->register('植提桥用户'.substr($mobile,-4), Random::alnum(), '', $mobile, []);
  72. }
  73. if ($ret) {
  74. Sms::flush($mobile, 'register');
  75. $data = ['userinfo' => $this->auth->getUserinfo()];
  76. $this->success(__('Logged in successful'), $data);
  77. } else {
  78. $this->error($this->auth->getError());
  79. }
  80. }
  81. /**
  82. * 修改用户信息
  83. * @ApiMethod (POST)
  84. * @ApiParams (name="avatar", type="string", required=false, description="头像地址")
  85. * @ApiParams (name="username", type="string", required=false, description="姓名")
  86. * @ApiParams (name="gender", type="string", required=false, description="性别")
  87. * @ApiParams (name="birthday", type="string", required=false, description="出生年月")
  88. * @ApiParams (name="email", type="string", required=false, description="邮箱地址")
  89. */
  90. public function edit_user_info()
  91. {
  92. $user = $this->auth->getUser();
  93. $email = $this->request->post('email');
  94. $username = $this->request->post('username');
  95. $gender = $this->request->post('gender');
  96. $birthday = $this->request->post('birthday');
  97. $avatar = $this->request->post('avatar', '', 'trim,strip_tags,htmlspecialchars');
  98. if ($username) {
  99. $exists = \app\common\model\User::where('username', $username)->where('id', '<>', $this->auth->id)->find();
  100. if ($exists) {
  101. $this->error(__('Username already exists'));
  102. }
  103. $user->username = $username;
  104. }
  105. $user->email = $email;
  106. $user->avatar = $avatar;
  107. $user->gender = $gender;
  108. $user->birthday = $birthday;
  109. $user->save();
  110. $this->success();
  111. }
  112. /**
  113. * 第三方登录
  114. *
  115. * @ApiMethod (POST)
  116. * @param string $platform 平台名称
  117. * @param string $code Code码
  118. */
  119. public function third()
  120. {
  121. $url = url('user/index');
  122. $platform = $this->request->post("platform");
  123. $code = $this->request->post("code");
  124. $config = get_addon_config('third');
  125. if (!$config || !isset($config[$platform])) {
  126. $this->error(__('Invalid parameters'));
  127. }
  128. $app = new \addons\third\library\Application($config);
  129. //通过code换access_token和绑定会员
  130. $result = $app->{$platform}->getUserInfo(['code' => $code]);
  131. if ($result) {
  132. $loginret = \addons\third\library\Service::connect($platform, $result);
  133. if ($loginret) {
  134. $data = [
  135. 'userinfo' => $this->auth->getUserinfo(),
  136. 'thirdinfo' => $result
  137. ];
  138. $this->success(__('Logged in successful'), $data);
  139. }
  140. }
  141. $this->error(__('Operation failed'), $url);
  142. }
  143. /**
  144. * 留言内容
  145. *
  146. */
  147. public function leavelist(){
  148. $this->success('请求成功',Leave::where('uid',$this->auth->id)->field('id,type,content,createtime')->selectOrFail());
  149. }
  150. /**
  151. * 留言
  152. * @ApiMethod (POST)
  153. * @param string $content 留言内容
  154. */
  155. public function leave(){
  156. $input = $this->_validate(['content|留言内容'=>'require']);
  157. $data = [
  158. 'uid' => $this->auth->id,
  159. 'content' => $input['content'],
  160. 'type' => 1
  161. ];
  162. $inc = Leave::insert($data);
  163. if($inc){
  164. $this->success('留言成功',$inc);
  165. }else{
  166. $this->error('留言失败');
  167. }
  168. }
  169. /**
  170. * 退出登录
  171. * @ApiMethod (POST)
  172. */
  173. public function logout()
  174. {
  175. if (!$this->request->isPost()) {
  176. $this->error(__('Invalid parameters'));
  177. }
  178. $this->auth->logout();
  179. $this->success(__('Logout successful'));
  180. }
  181. }