User.php 8.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269
  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. * @ApiReturnParams (name=data.mobile,type="integer",description=手机号)
  39. * @ApiReturnParams (name=data.avatar,type="string",description=头像地址)
  40. */
  41. public function index()
  42. {
  43. $user = $this->auth->getUserinfo();
  44. $this->success('用户信息', $user);
  45. }
  46. /**
  47. * 手机验证码登录
  48. *
  49. * @ApiMethod (POST)
  50. * @param string $mobile 手机号
  51. * @param string $captcha 验证码
  52. */
  53. public function mobile_login()
  54. {
  55. $mobile = $this->request->post('mobile');
  56. $captcha = $this->request->post('captcha');
  57. if (!$mobile || !$captcha) {
  58. $this->error(__('Invalid parameters'));
  59. }
  60. if (!Validate::regex($mobile, "^1\d{10}$")) {
  61. $this->error(__('Mobile is incorrect'));
  62. }
  63. if (!Sms::check($mobile, $captcha, 'register')) {
  64. $this->error(__('Captcha is incorrect'));
  65. }
  66. $user = \app\common\model\User::getByMobile($mobile);
  67. if ($user) {
  68. if ($user->status != 'normal') {
  69. $this->error(__('Account is locked'));
  70. }
  71. //如果已经有账号则直接登录
  72. $ret = $this->auth->direct($user->id);
  73. } else {
  74. $ret = $this->auth->register('植提桥用户'.substr($mobile,-4), Random::alnum(), '', $mobile, []);
  75. }
  76. if ($ret) {
  77. Sms::flush($mobile, 'register');
  78. $data = ['userinfo' => $this->auth->getUserinfo()];
  79. $this->success(__('Logged in successful'), $data);
  80. } else {
  81. $this->error($this->auth->getError());
  82. }
  83. }
  84. /**
  85. * 退出登录
  86. * @ApiMethod (POST)
  87. */
  88. public function logout()
  89. {
  90. if (!$this->request->isPost()) {
  91. $this->error(__('Invalid parameters'));
  92. }
  93. $this->auth->logout();
  94. $this->success(__('Logout successful'));
  95. }
  96. /**
  97. * 修改会员个人信息
  98. *
  99. * @ApiMethod (POST)
  100. * @param string $avatar 头像地址
  101. * @param string $username 用户名
  102. * @param string $gender 性别
  103. * @param string $mobile 手机号
  104. * @param string $birthday 出生年月
  105. * @param string $email 邮箱
  106. */
  107. public function profile()
  108. {
  109. $user = $this->auth->getUser();
  110. $email = $this->request->post('email');
  111. $username = $this->request->post('username');
  112. $gender = $this->request->post('gender');
  113. $mobile = $this->request->post('mobile');
  114. $birthday = $this->request->post('birthday');
  115. $avatar = $this->request->post('avatar', '', 'trim,strip_tags,htmlspecialchars');
  116. if ($username) {
  117. $exists = \app\common\model\User::where('username', $username)->where('id', '<>', $this->auth->id)->find();
  118. if ($exists) {
  119. $this->error(__('Username already exists'));
  120. }
  121. $user->username = $username;
  122. }
  123. $user->bio = $email;
  124. $user->avatar = $avatar;
  125. $user->gender = $gender;
  126. $user->mobile = $mobile;
  127. $user->birthday = $birthday;
  128. $user->save();
  129. $this->success();
  130. }
  131. /**
  132. * 修改邮箱
  133. *
  134. * @ApiMethod (POST)
  135. * @param string $email 邮箱
  136. * @param string $captcha 验证码
  137. */
  138. public function changeemail()
  139. {
  140. $user = $this->auth->getUser();
  141. $email = $this->request->post('email');
  142. $captcha = $this->request->post('captcha');
  143. if (!$email || !$captcha) {
  144. $this->error(__('Invalid parameters'));
  145. }
  146. if (!Validate::is($email, "email")) {
  147. $this->error(__('Email is incorrect'));
  148. }
  149. if (\app\common\model\User::where('email', $email)->where('id', '<>', $user->id)->find()) {
  150. $this->error(__('Email already exists'));
  151. }
  152. $result = Ems::check($email, $captcha, 'changeemail');
  153. if (!$result) {
  154. $this->error(__('Captcha is incorrect'));
  155. }
  156. $verification = $user->verification;
  157. $verification->email = 1;
  158. $user->verification = $verification;
  159. $user->email = $email;
  160. $user->save();
  161. Ems::flush($email, 'changeemail');
  162. $this->success();
  163. }
  164. /**
  165. * 修改手机号
  166. *
  167. * @ApiMethod (POST)
  168. * @param string $mobile 手机号
  169. * @param string $captcha 验证码
  170. */
  171. public function changemobile()
  172. {
  173. $user = $this->auth->getUser();
  174. $mobile = $this->request->post('mobile');
  175. $captcha = $this->request->post('captcha');
  176. if (!$mobile || !$captcha) {
  177. $this->error(__('Invalid parameters'));
  178. }
  179. if (!Validate::regex($mobile, "^1\d{10}$")) {
  180. $this->error(__('Mobile is incorrect'));
  181. }
  182. if (\app\common\model\User::where('mobile', $mobile)->where('id', '<>', $user->id)->find()) {
  183. $this->error(__('Mobile already exists'));
  184. }
  185. $result = Sms::check($mobile, $captcha, 'changemobile');
  186. if (!$result) {
  187. $this->error(__('Captcha is incorrect'));
  188. }
  189. $verification = $user->verification;
  190. $verification->mobile = 1;
  191. $user->verification = $verification;
  192. $user->mobile = $mobile;
  193. $user->save();
  194. Sms::flush($mobile, 'changemobile');
  195. $this->success();
  196. }
  197. /**
  198. * 第三方登录
  199. *
  200. * @ApiMethod (POST)
  201. * @param string $platform 平台名称
  202. * @param string $code Code码
  203. */
  204. public function third()
  205. {
  206. $url = url('user/index');
  207. $platform = $this->request->post("platform");
  208. $code = $this->request->post("code");
  209. $config = get_addon_config('third');
  210. if (!$config || !isset($config[$platform])) {
  211. $this->error(__('Invalid parameters'));
  212. }
  213. $app = new \addons\third\library\Application($config);
  214. //通过code换access_token和绑定会员
  215. $result = $app->{$platform}->getUserInfo(['code' => $code]);
  216. if ($result) {
  217. $loginret = \addons\third\library\Service::connect($platform, $result);
  218. if ($loginret) {
  219. $data = [
  220. 'userinfo' => $this->auth->getUserinfo(),
  221. 'thirdinfo' => $result
  222. ];
  223. $this->success(__('Logged in successful'), $data);
  224. }
  225. }
  226. $this->error(__('Operation failed'), $url);
  227. }
  228. /**
  229. * 留言内容
  230. *
  231. */
  232. public function leavelist(){
  233. $this->success('请求成功',Leave::where('uid',$this->auth->id)->field('id,type,content,createtime')->selectOrFail());
  234. }
  235. /**
  236. * 留言
  237. * @ApiMethod (POST)
  238. * @param string $content 留言内容
  239. */
  240. public function leave(){
  241. $input = $this->_validate(['content|留言内容'=>'require']);
  242. $data = [
  243. 'uid' => $this->auth->id,
  244. 'content' => $input['content'],
  245. 'type' => 1
  246. ];
  247. $inc = Leave::insert($data);
  248. if($inc){
  249. $this->success('留言成功',$inc);
  250. }else{
  251. $this->error('留言失败');
  252. }
  253. }
  254. }