User.php 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379
  1. <?php
  2. namespace app\api\controller;
  3. use app\admin\model\user\Id;
  4. use app\admin\model\yexam\Third;
  5. use app\api\library\Mp;
  6. use app\common\controller\Api;
  7. use app\common\library\Ems;
  8. use app\common\library\Sms;
  9. use fast\Random;
  10. use think\Config;
  11. use think\Validate;
  12. /**
  13. * 会员接口
  14. */
  15. class User extends Api
  16. {
  17. protected $noNeedLogin = ['login', 'mobilelogin', 'register', 'resetpwd', 'changeemail', 'changemobile', 'third'];
  18. protected $noNeedRight = '*';
  19. public function _initialize()
  20. {
  21. parent::_initialize();
  22. if (!Config::get('fastadmin.usercenter')) {
  23. $this->error(__('User center already closed'));
  24. }
  25. }
  26. /**
  27. * 会员中心
  28. * @ApiReturnParams (name=reward_num,description=奖励数量)
  29. */
  30. public function index(Mp $mp)
  31. {
  32. $user=$this->auth->getUser();
  33. $user['wx_followed']=$mp->subscribeByUser($user['id']);
  34. $user->append(['reward_num']);
  35. $this->success('', $user);
  36. }
  37. /**
  38. * 会员登录
  39. *
  40. * @ApiMethod (POST)
  41. * @param string $account 账号
  42. * @param string $password 密码
  43. */
  44. public function login()
  45. {
  46. $account = $this->request->post('account');
  47. $password = $this->request->post('password');
  48. if (!$account || !$password) {
  49. $this->error(__('Invalid parameters'));
  50. }
  51. $ret = $this->auth->login($account, $password);
  52. if ($ret) {
  53. $data = ['userinfo' => $this->auth->getUserinfo()];
  54. $this->success(__('Logged in successful'), $data);
  55. } else {
  56. $this->error($this->auth->getError());
  57. }
  58. }
  59. /**
  60. * 手机验证码登录
  61. *
  62. * @ApiMethod (POST)
  63. * @param string $mobile 手机号
  64. * @param string $captcha 验证码
  65. */
  66. public function mobilelogin()
  67. {
  68. $mobile = $this->request->post('mobile');
  69. $captcha = $this->request->post('captcha');
  70. if (!$mobile || !$captcha) {
  71. $this->error(__('Invalid parameters'));
  72. }
  73. if (!Validate::regex($mobile, "^1\d{10}$")) {
  74. $this->error(__('Mobile is incorrect'));
  75. }
  76. if (!Sms::check($mobile, $captcha, 'mobilelogin')) {
  77. $this->error(__('Captcha is incorrect'));
  78. }
  79. $user = \app\common\model\User::getByMobile($mobile);
  80. if ($user) {
  81. if ($user->status != 'normal') {
  82. $this->error(__('Account is locked'));
  83. }
  84. //如果已经有账号则直接登录
  85. $ret = $this->auth->direct($user->id);
  86. } else {
  87. $ret = $this->auth->register($mobile, Random::alnum(), '', $mobile, []);
  88. }
  89. if ($ret) {
  90. Sms::flush($mobile, 'mobilelogin');
  91. $data = ['userinfo' => $this->auth->getUserinfo()];
  92. $this->success(__('Logged in successful'), $data);
  93. } else {
  94. $this->error($this->auth->getError());
  95. }
  96. }
  97. /**
  98. * 注册会员
  99. *
  100. * @ApiMethod (POST)
  101. * @param string $username 用户名
  102. * @param string $password 密码
  103. * @param string $email 邮箱
  104. * @param string $mobile 手机号
  105. * @param string $code 验证码
  106. */
  107. public function register()
  108. {
  109. $username = $this->request->post('username');
  110. $password = $this->request->post('password');
  111. $email = $this->request->post('email');
  112. $mobile = $this->request->post('mobile');
  113. $code = $this->request->post('code');
  114. if (!$username || !$password) {
  115. $this->error(__('Invalid parameters'));
  116. }
  117. if ($email && !Validate::is($email, "email")) {
  118. $this->error(__('Email is incorrect'));
  119. }
  120. if ($mobile && !Validate::regex($mobile, "^1\d{10}$")) {
  121. $this->error(__('Mobile is incorrect'));
  122. }
  123. $ret = Sms::check($mobile, $code, 'register');
  124. if (!$ret) {
  125. $this->error(__('Captcha is incorrect'));
  126. }
  127. $ret = $this->auth->register($username, $password, $email, $mobile, []);
  128. if ($ret) {
  129. $data = ['userinfo' => $this->auth->getUserinfo()];
  130. $this->success(__('Sign up successful'), $data);
  131. } else {
  132. $this->error($this->auth->getError());
  133. }
  134. }
  135. /**
  136. * 退出登录
  137. * @ApiMethod (POST)
  138. */
  139. public function logout()
  140. {
  141. if (!$this->request->isPost()) {
  142. $this->error(__('Invalid parameters'));
  143. }
  144. $this->auth->logout();
  145. $this->success(__('Logout successful'));
  146. }
  147. /**
  148. * 修改会员个人信息
  149. *
  150. * @ApiMethod (POST)
  151. * @param string $avatar 头像地址
  152. * @param string $username 用户名
  153. * @param string $nickname 昵称
  154. * @param string $bio 个人简介
  155. */
  156. public function profile()
  157. {
  158. $user = $this->auth->getUser();
  159. $username = $this->request->post('username');
  160. $nickname = $this->request->post('nickname');
  161. $bio = $this->request->post('bio');
  162. $avatar = $this->request->post('avatar', '', 'trim,strip_tags,htmlspecialchars');
  163. if ($username) {
  164. $exists = \app\common\model\User::where('username', $username)->where('id', '<>', $this->auth->id)->find();
  165. if ($exists) {
  166. $this->error(__('Username already exists'));
  167. }
  168. $user->username = $username;
  169. }
  170. if ($nickname) {
  171. $exists = \app\common\model\User::where('nickname', $nickname)->where('id', '<>', $this->auth->id)->find();
  172. if ($exists) {
  173. $this->error(__('Nickname already exists'));
  174. }
  175. $user->nickname = $nickname;
  176. }
  177. $user->bio = $bio;
  178. $user->avatar = $avatar;
  179. $user->save();
  180. $this->success();
  181. }
  182. /**
  183. * 修改邮箱
  184. *
  185. * @ApiMethod (POST)
  186. * @param string $email 邮箱
  187. * @param string $captcha 验证码
  188. */
  189. public function changeemail()
  190. {
  191. $user = $this->auth->getUser();
  192. $email = $this->request->post('email');
  193. $captcha = $this->request->post('captcha');
  194. if (!$email || !$captcha) {
  195. $this->error(__('Invalid parameters'));
  196. }
  197. if (!Validate::is($email, "email")) {
  198. $this->error(__('Email is incorrect'));
  199. }
  200. if (\app\common\model\User::where('email', $email)->where('id', '<>', $user->id)->find()) {
  201. $this->error(__('Email already exists'));
  202. }
  203. $result = Ems::check($email, $captcha, 'changeemail');
  204. if (!$result) {
  205. $this->error(__('Captcha is incorrect'));
  206. }
  207. $verification = $user->verification;
  208. $verification->email = 1;
  209. $user->verification = $verification;
  210. $user->email = $email;
  211. $user->save();
  212. Ems::flush($email, 'changeemail');
  213. $this->success();
  214. }
  215. /**
  216. * 修改手机号
  217. *
  218. * @ApiMethod (POST)
  219. * @param string $mobile 手机号
  220. * @param string $captcha 验证码
  221. */
  222. public function changemobile()
  223. {
  224. $user = $this->auth->getUser();
  225. $mobile = $this->request->post('mobile');
  226. $captcha = $this->request->post('captcha');
  227. if (!$mobile || !$captcha) {
  228. $this->error(__('Invalid parameters'));
  229. }
  230. if (!Validate::regex($mobile, "^1\d{10}$")) {
  231. $this->error(__('Mobile is incorrect'));
  232. }
  233. if (\app\common\model\User::where('mobile', $mobile)->where('id', '<>', $user->id)->find()) {
  234. $this->error(__('Mobile already exists'));
  235. }
  236. $result = Sms::check($mobile, $captcha, 'changemobile');
  237. if (!$result) {
  238. $this->error(__('Captcha is incorrect'));
  239. }
  240. $verification = $user->verification;
  241. $verification->mobile = 1;
  242. $user->verification = $verification;
  243. $user->mobile = $mobile;
  244. $user->save();
  245. Sms::flush($mobile, 'changemobile');
  246. $this->success();
  247. }
  248. /**
  249. * 第三方登录
  250. *
  251. * @ApiMethod (POST)
  252. * @param string $platform 平台名称
  253. * @param string $code Code码
  254. */
  255. public function third()
  256. {
  257. $url = url('user/index');
  258. $platform = $this->request->post("platform");
  259. $code = $this->request->post("code");
  260. $config = get_addon_config('third');
  261. if (!$config || !isset($config[$platform])) {
  262. $this->error(__('Invalid parameters'));
  263. }
  264. $app = new \addons\third\library\Application($config);
  265. //通过code换access_token和绑定会员
  266. $result = $app->{$platform}->getUserInfo(['code' => $code]);
  267. if ($result) {
  268. $loginret = \addons\third\library\Service::connect($platform, $result);
  269. if ($loginret) {
  270. $data = [
  271. 'userinfo' => $this->auth->getUserinfo(),
  272. 'thirdinfo' => $result
  273. ];
  274. $this->success(__('Logged in successful'), $data);
  275. }
  276. }
  277. $this->error(__('Operation failed'), $url);
  278. }
  279. /**
  280. * 重置密码
  281. *
  282. * @ApiMethod (POST)
  283. * @param string $mobile 手机号
  284. * @param string $newpassword 新密码
  285. * @param string $captcha 验证码
  286. */
  287. public function resetpwd()
  288. {
  289. $type = $this->request->post("type");
  290. $mobile = $this->request->post("mobile");
  291. $email = $this->request->post("email");
  292. $newpassword = $this->request->post("newpassword");
  293. $captcha = $this->request->post("captcha");
  294. if (!$newpassword || !$captcha) {
  295. $this->error(__('Invalid parameters'));
  296. }
  297. //验证Token
  298. if (!Validate::make()->check(['newpassword' => $newpassword], ['newpassword' => 'require|regex:\S{6,30}'])) {
  299. $this->error(__('Password must be 6 to 30 characters'));
  300. }
  301. if ($type == 'mobile') {
  302. if (!Validate::regex($mobile, "^1\d{10}$")) {
  303. $this->error(__('Mobile is incorrect'));
  304. }
  305. $user = \app\common\model\User::getByMobile($mobile);
  306. if (!$user) {
  307. $this->error(__('User not found'));
  308. }
  309. $ret = Sms::check($mobile, $captcha, 'resetpwd');
  310. if (!$ret) {
  311. $this->error(__('Captcha is incorrect'));
  312. }
  313. Sms::flush($mobile, 'resetpwd');
  314. } else {
  315. if (!Validate::is($email, "email")) {
  316. $this->error(__('Email is incorrect'));
  317. }
  318. $user = \app\common\model\User::getByEmail($email);
  319. if (!$user) {
  320. $this->error(__('User not found'));
  321. }
  322. $ret = Ems::check($email, $captcha, 'resetpwd');
  323. if (!$ret) {
  324. $this->error(__('Captcha is incorrect'));
  325. }
  326. Ems::flush($email, 'resetpwd');
  327. }
  328. //模拟一次登录
  329. $this->auth->direct($user->id);
  330. $ret = $this->auth->changepwd($newpassword, '', true);
  331. if ($ret) {
  332. $this->success(__('Reset password successful'));
  333. } else {
  334. $this->error($this->auth->getError());
  335. }
  336. }
  337. /**
  338. * 验证用户信息
  339. * @ApiParams (name="name",description="姓名")
  340. * @ApiParams (name="id_no",description="身份证号码")
  341. */
  342. public function verify_id(){
  343. $data=input();
  344. $user=$this->auth->getUser();
  345. if($user['user_id']){
  346. $this->success();
  347. }
  348. $this->validate($data,[
  349. 'name'=>['require'],
  350. 'id_no'=>['require'],
  351. ]);
  352. $id=Id::where('name',$data['name'])->where('id_no',$data['id_no'])->find();
  353. if(!$id){
  354. $this->error('认证失败');
  355. }
  356. $user['user_id']=$id['id'];
  357. $user->save();
  358. $this->success();
  359. }
  360. }