AuthController.php 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392
  1. <?php
  2. namespace app\api\controller;
  3. use app\admin\model\sms\SmsRecord;
  4. use app\http\validates\user\RegisterValidates;
  5. use app\models\user\User;
  6. use app\models\user\UserToken;
  7. use app\models\user\WechatUser;
  8. use app\Request;
  9. use crmeb\jobs\TestJob;
  10. use crmeb\repositories\ShortLetterRepositories;
  11. use crmeb\services\CacheService;
  12. use crmeb\services\UtilService;
  13. use crmeb\services\ZjSMSServerService;
  14. use think\facade\Cache;
  15. use think\exception\ValidateException;
  16. use think\facade\Config;
  17. use think\facade\Queue;
  18. use think\facade\Session;
  19. /**微信小程序授权类
  20. * Class AuthController
  21. * @package app\api\controller
  22. */
  23. class AuthController
  24. {
  25. /**
  26. * H5账号登陆
  27. * @param Request $request
  28. * @return mixed
  29. * @throws \think\db\exception\DataNotFoundException
  30. * @throws \think\db\exception\ModelNotFoundException
  31. * @throws \think\exception\DbException
  32. */
  33. public function login(Request $request)
  34. {
  35. $user = User::where('account', $request->param('account'))->find();
  36. if ($user) {
  37. if ($user->pwd !== md5($request->param('password')))
  38. return app('json')->fail('账号或密码错误');
  39. if ($user->pwd === md5(123456))
  40. return app('json')->fail('请修改您的初始密码,再尝试登陆!');
  41. } else {
  42. return app('json')->fail('账号或密码错误');
  43. }
  44. if (!$user['status'])
  45. return app('json')->fail('已被禁止,请联系管理员');
  46. // 设置推广关系
  47. User::setSpread(intval($request->param('spread')), $user->uid);
  48. $token = UserToken::createToken($user, 'user');
  49. if ($token) {
  50. event('UserLogin', [$user, $token]);
  51. return app('json')->success('登录成功', ['token' => $token->token, 'expires_time' => $token->expires_time]);
  52. } else
  53. return app('json')->fail('登录失败');
  54. }
  55. /**
  56. * 退出登录
  57. * @param Request $request
  58. */
  59. public function logout(Request $request)
  60. {
  61. $request->tokenData()->delete();
  62. return app('json')->success('成功');
  63. }
  64. public function verifyCode()
  65. {
  66. $unique = password_hash(uniqid(true), PASSWORD_BCRYPT);
  67. Cache::set('sms.key.' . $unique, 0, 300);
  68. return app('json')->success(['key' => $unique]);
  69. }
  70. public function captcha(Request $request)
  71. {
  72. ob_clean();
  73. $rep = captcha();
  74. $key = app('session')->get('captcha.key');
  75. $uni = $request->get('key');
  76. if ($uni)
  77. Cache::set('sms.key.cap.' . $uni, $key, 300);
  78. return $rep;
  79. }
  80. /**
  81. * 验证验证码是否正确
  82. *
  83. * @param $uni
  84. * @param string $code
  85. * @return bool
  86. * @throws \Psr\SimpleCache\InvalidArgumentException
  87. */
  88. protected function checkCaptcha($uni, string $code): bool
  89. {
  90. $cacheName = 'sms.key.cap.' . $uni;
  91. if (!Cache::has($cacheName)) {
  92. return false;
  93. }
  94. $key = Cache::get($cacheName);
  95. $code = mb_strtolower($code, 'UTF-8');
  96. $res = password_verify($code, $key);
  97. if ($res) {
  98. Cache::delete($cacheName);
  99. }
  100. return $res;
  101. }
  102. /**
  103. * 验证码发送
  104. * @param Request $request
  105. * @return mixed
  106. */
  107. public function verify(Request $request)
  108. {
  109. list($phone, $type) = UtilService::postMore([['phone',0],['type','']],$request, true);
  110. try {
  111. validate(RegisterValidates::class)->scene('code')->check(['phone'=>$phone]);
  112. } catch (ValidateException $e) {
  113. return app('json')->fail($e->getError());
  114. }
  115. if(User::checkPhone($phone) && $type == 'register') return app('json')->fail('手机号已注册');
  116. if(!User::checkPhone($phone) && $type == 'login') return app('json')->fail('账号不存在!');
  117. $time = 300;
  118. if(CacheService::get('code_'.$phone) && false)
  119. return app('json')->fail($time.'秒内有效');
  120. $code = rand(100000,999999);
  121. $data['code'] = $code;
  122. $res = ZjSMSServerService::send($phone,$data);
  123. if($res['status'] == 400) return app('json')->fail('短信平台验证码发送失败'.$res['msg']);
  124. CacheService::set('code_'.$phone, $code, $time);
  125. return app('json')->success($res['msg'] ?? '发送失败');
  126. }
  127. /**
  128. * H5注册新用户
  129. * @param Request $request
  130. * @return mixed
  131. */
  132. public function register(Request $request)
  133. {
  134. list($account, $captcha, $password, $spread) = UtilService::postMore([['account', ''], ['captcha', ''], ['password', ''], ['spread', 0]], $request, true);
  135. try {
  136. validate(RegisterValidates::class)->scene('register')->check(['account' => $account, 'captcha' => $captcha, 'password' => $password]);
  137. } catch (ValidateException $e) {
  138. return app('json')->fail($e->getError());
  139. }
  140. /*
  141. $verifyCode = CacheService::get('code_' . $account);
  142. if (!$verifyCode)
  143. return app('json')->fail('请先获取验证码');
  144. $verifyCode = substr($verifyCode, 0, 6);
  145. if ($verifyCode != $captcha)
  146. return app('json')->fail('验证码错误');*/
  147. if (strlen(trim($password)) < 6 || strlen(trim($password)) > 16)
  148. return app('json')->fail('密码必须是在6到16位之间');
  149. if ($password == '123456') return app('json')->fail('密码太过简单,请输入较为复杂的密码');
  150. $registerStatus = User::register($account, $password, $spread);
  151. if ($registerStatus) return app('json')->success('注册成功');
  152. return app('json')->fail(User::getErrorInfo('注册失败'));
  153. }
  154. /**
  155. * 密码修改
  156. * @param Request $request
  157. * @return mixed
  158. */
  159. public function reset(Request $request)
  160. {
  161. list($account, $captcha, $password) = UtilService::postMore([['account', ''], ['captcha', ''], ['password', '']], $request, true);
  162. try {
  163. validate(RegisterValidates::class)->scene('register')->check(['account' => $account, 'captcha' => $captcha, 'password' => $password]);
  164. } catch (ValidateException $e) {
  165. return app('json')->fail($e->getError());
  166. }
  167. $verifyCode = CacheService::get('code_' . $account);
  168. if (!$verifyCode)
  169. return app('json')->fail('请先获取验证码');
  170. $verifyCode = substr($verifyCode, 0, 6);
  171. if ($verifyCode != $captcha)
  172. return app('json')->fail('验证码错误');
  173. if (strlen(trim($password)) < 6 || strlen(trim($password)) > 16)
  174. return app('json')->fail('密码必须是在6到16位之间');
  175. if ($password == '123456') return app('json')->fail('密码太过简单,请输入较为复杂的密码');
  176. $resetStatus = User::reset($account, $password);
  177. if ($resetStatus) return app('json')->success('修改成功');
  178. return app('json')->fail(User::getErrorInfo('修改失败'));
  179. }
  180. /**
  181. * 手机号登录
  182. * @param Request $request
  183. * @return mixed
  184. * @throws \think\db\exception\DataNotFoundException
  185. * @throws \think\db\exception\ModelNotFoundException
  186. * @throws \think\exception\DbException
  187. */
  188. public function mobile(Request $request)
  189. {
  190. list($phone, $captcha, $spread) = UtilService::postMore([['phone', ''], ['captcha', ''], ['spread', 0]], $request, true);
  191. //验证手机号
  192. try {
  193. validate(RegisterValidates::class)->scene('code')->check(['phone' => $phone]);
  194. } catch (ValidateException $e) {
  195. return app('json')->fail($e->getError());
  196. }
  197. //验证验证码
  198. $verifyCode = CacheService::get('code_' . $phone);
  199. if (!$verifyCode)
  200. return app('json')->fail('请先获取验证码');
  201. $verifyCode = substr($verifyCode, 0, 6);
  202. if ($verifyCode != $captcha)
  203. return app('json')->fail('验证码错误');
  204. //数据库查询
  205. $user = User::where('account', $phone)->find();
  206. if (!$user)
  207. return app('json')->fail('用户不存在');
  208. if (!$user->status)
  209. return app('json')->fail('已被禁止,请联系管理员');
  210. // 设置推广关系
  211. User::setSpread($spread, $user->uid);
  212. $token = UserToken::createToken($user, 'user');
  213. if ($token) {
  214. event('UserLogin', [$user, $token]);
  215. return app('json')->success('登录成功', ['token' => $token->token, 'expires_time' => $token->expires_time]);
  216. } else
  217. return app('json')->fail('登录失败');
  218. }
  219. /**
  220. * H5切换登陆
  221. * @param Request $request
  222. * @return mixed
  223. * @throws \think\db\exception\DataNotFoundException
  224. * @throws \think\db\exception\ModelNotFoundException
  225. * @throws \think\exception\DbException
  226. */
  227. public function switch_h5(Request $request)
  228. {
  229. $from = $request->post('from', 'wechat');
  230. $user = $request->user();
  231. if ($from === 'h5') {
  232. $user = User::where('phone', $user['phone'])->where('user_type', '<>', 'h5')->find();
  233. $user->login_type = 'wechat';
  234. $user->save();
  235. } else {
  236. //数据库查询
  237. $user = User::where('account|phone', $user['phone'])->where('user_type', 'h5')->find();
  238. if (!$user)
  239. return app('json')->fail('H5用户不存在,无法切换');
  240. if (!$user->status) return app('json')->fail('已被禁止,请联系管理员');
  241. $wechatUserInfo = WechatUser::where('uid', $request->uid())->find();//当前登陆用户信息
  242. $wechatH5UserInfo = WechatUser::where('uid', $user->uid)->find();//H5登陆切换用户信息
  243. if ($wechatH5UserInfo->unionid && $wechatUserInfo->unionid != $wechatH5UserInfo->unionid)
  244. return app('json')->fail('您的账号已绑定特定用户无法切换到此用户上');
  245. if ($wechatH5UserInfo->openid && $wechatUserInfo->openid != $wechatH5UserInfo->openid)
  246. return app('json')->fail('您的账号已绑定特定用户无法切换到此用户上');
  247. if ($wechatH5UserInfo->routine_openid && $wechatUserInfo->routine_openid != $wechatH5UserInfo->routine_openid)
  248. return app('json')->fail('您的账号已绑定特定用户无法切换到此用户上');
  249. switch ($from) {
  250. case 'wechat':
  251. if (!$wechatH5UserInfo->openid)
  252. $wechatH5UserInfo->openid = $wechatUserInfo->openid;
  253. if (!$wechatH5UserInfo->unionid && $wechatUserInfo->unionid)
  254. $wechatH5UserInfo->unionid = $wechatUserInfo->unionid;
  255. break;
  256. case 'routine':
  257. if (!$wechatH5UserInfo->routine_openid)
  258. $wechatH5UserInfo->routine_openid = $wechatUserInfo->routine_openid;
  259. if (!$wechatH5UserInfo->unionid && $wechatUserInfo->unionid)
  260. $wechatH5UserInfo->unionid = $wechatUserInfo->unionid;
  261. break;
  262. }
  263. $wechatH5UserInfo->save();
  264. User::where('uid', $request->uid())->update(['login_type' => 'h5']);
  265. }
  266. $token = UserToken::createToken($user, 'user');
  267. if ($token) {
  268. event('UserLogin', [$user, $token]);
  269. //退出上一个账号
  270. $request->tokenData()->delete();
  271. return app('json')->success('登录成功', ['userInfo' => $user, 'token' => $token->token, 'expires_time' => $token->expires_time, 'time' => strtotime($token->expires_time)]);
  272. } else
  273. return app('json')->fail('登录失败');
  274. }
  275. /**
  276. * 绑定手机号
  277. * @param Request $request
  278. * @return mixed
  279. * @throws \think\db\exception\DataNotFoundException
  280. * @throws \think\db\exception\ModelNotFoundException
  281. * @throws \think\exception\DbException
  282. */
  283. public function binding_phone(Request $request)
  284. {
  285. list($phone, $captcha, $step) = UtilService::postMore([
  286. ['phone', ''],
  287. ['captcha', ''],
  288. ['step', 0]
  289. ], $request, true);
  290. //验证手机号
  291. try {
  292. validate(RegisterValidates::class)->scene('code')->check(['phone' => $phone]);
  293. } catch (ValidateException $e) {
  294. return app('json')->fail($e->getError());
  295. }
  296. //验证验证码
  297. $verifyCode = CacheService::get('code_' . $phone);
  298. if (!$verifyCode)
  299. return app('json')->fail('请先获取验证码');
  300. $verifyCode = substr($verifyCode, 0, 6);
  301. if ($verifyCode != $captcha)
  302. return app('json')->fail('验证码错误');
  303. $userInfo = User::where('uid', $request->uid())->find();
  304. $userPhone = $userInfo->phone;
  305. if (!$userInfo) return app('json')->fail('用户不存在');
  306. if ($userInfo->phone) return app('json')->fail('您的账号已经绑定过手机号码!');
  307. if (User::where('phone', $phone)->where('user_type', '<>', 'h5')->count())
  308. return app('json')->fail('此手机已经绑定,无法多次绑定!');
  309. if (User::where('account', $phone)->where('phone', $phone)->where('user_type', 'h5')->find()) {
  310. if (!$step) return app('json')->success('H5已有账号是否绑定此账号上', ['is_bind' => 1]);
  311. $userInfo->phone = $phone;
  312. } else {
  313. $userInfo->account = $phone;
  314. $userInfo->phone = $phone;
  315. }
  316. if ($userInfo->save() || $userPhone == $phone)
  317. return app('json')->success('绑定成功');
  318. else
  319. return app('json')->fail('绑定失败');
  320. }
  321. /**
  322. * 设置或修改密码
  323. * @param Request $request
  324. * @return mixed
  325. */
  326. public function transaction(Request $request)
  327. {
  328. list($oldpass,$pass) = UtilService::postMore([
  329. ['oldpass',''],
  330. ['pass',''],
  331. ],$request,true);
  332. $user = User::where('uid',$request->uid())->find();
  333. if(empty($user['transaction']) || empty($user['salt']))
  334. {
  335. if(strlen($pass)!=6) return app('json')->fail('交易密码为6位数字');
  336. $data['salt'] = substr(uniqid(),0,6);
  337. $data['transaction'] = md5(md5($data['salt'].$pass).$data['salt']);
  338. User::edit($data,$request->uid());
  339. return app('json')->success('设置成功');
  340. }
  341. else
  342. {
  343. if(strlen($oldpass)!=6 || strlen($pass)!=6) return app('json')->fail('原交易密码和新交易密码都是6位数字');
  344. $data['salt'] = $user['salt'];
  345. if(md5(md5($data['salt'].$oldpass).$data['salt'])!=$user['transaction']) return app('json')->fail('原交易密码错误'.md5(md5($data['salt'].$oldpass).$data['salt']));
  346. $data['transaction'] = md5(md5($data['salt'].$pass).$data['salt']);
  347. User::edit($data,$request->uid());
  348. return app('json')->success('修改成功');
  349. }
  350. }
  351. }