User.php 7.5 KB

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