123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509 |
- <?php
- // +----------------------------------------------------------------------
- // | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
- // +----------------------------------------------------------------------
- // | Copyright (c) 2016~2020 https://www.crmeb.com All rights reserved.
- // +----------------------------------------------------------------------
- // | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
- // +----------------------------------------------------------------------
- // | Author: CRMEB Team <admin@crmeb.com>
- // +----------------------------------------------------------------------
- namespace app\controller\api\v1;
- use app\Request;
- use app\services\wechat\WechatServices as WechatAuthServices;
- use think\facade\Config;
- use crmeb\services\CacheService;
- use app\services\user\LoginServices;
- use think\exception\ValidateException;
- use app\validate\api\user\RegisterValidates;
- /**
- * 登录
- * Class AuthController
- * @package app\controller\api
- */
- class LoginController
- {
- protected $services = NUll;
- /**
- * LoginController constructor.
- * @param LoginServices $services
- */
- public function __construct(LoginServices $services)
- {
- $this->services = $services;
- }
- /**
- * H5账号登陆
- * @param Request $request
- * @return mixed
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\ModelNotFoundException
- * @throws \think\exception\DbException
- */
- public function login(Request $request)
- {
- [$account, $password, $spread_spid] = $request->postMore([
- 'account', 'password', 'spread_spid'
- ], true);
- if (!$account || !$password) {
- return app('json')->fail('请输入账号和密码');
- }
- validate(\app\validate\api\LoginValidate::class)->check(['account' => $account, 'pwd' => $password]);
- return app('json')->success('登录成功', $this->services->login($account, $password, $spread_spid));
- }
- /**
- * apple快捷登陆
- * @param Request $request
- * @param WechatAuthServices $services
- * @return mixed
- * @throws \Psr\SimpleCache\InvalidArgumentException
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\ModelNotFoundException
- */
- public function appleLogin(Request $request, WechatAuthServices $services)
- {
- [$openId, $phone, $email, $captcha] = $request->postMore([
- ['openId', ''],
- ['phone', ''],
- ['email', ''],
- ['captcha', '']
- ], true);
- if ($phone) {
- if (!$captcha) {
- return app('json')->fail('请输入验证码');
- }
- //验证验证码
- $verifyCode = CacheService::get('code_' . $phone);
- if (!$verifyCode)
- return app('json')->fail('请先获取验证码');
- $verifyCode = substr($verifyCode, 0, 6);
- if ($verifyCode != $captcha) {
- CacheService::delete('code_' . $phone);
- return app('json')->fail('验证码错误');
- }
- }
- $userInfo = [
- 'openId' => $openId,
- 'unionid' => '',
- 'avatarUrl' => sys_config('h5_avatar'),
- 'nickName' => $email
- ];
- if (!$userInfo['nickName']) {
- mt_srand();
- $userInfo['nickname'] = 'wx' . rand(100000, 999999);
- }
- $token = $services->appAuth($userInfo, $phone, 'apple');
- if ($token) {
- return app('json')->success('登录成功', $token);
- } else if ($token === false) {
- return app('json')->success('登录成功', ['isbind' => true]);
- } else {
- return app('json')->fail('登陆失败');
- }
- }
- /**
- * 退出登录
- * @param Request $request
- */
- public function logout(Request $request)
- {
- $key = trim(ltrim($request->header(Config::get('cookie.token_name')), 'Bearer'));
- CacheService::redisHandler()->delete(md5($key));
- return app('json')->success('成功');
- }
- public function verifyCode()
- {
- $unique = password_hash(uniqid(true), PASSWORD_BCRYPT);
- CacheService::set('sms.key.' . $unique, 0, 300);
- $time = sys_config('verify_expire_time', 1);
- return app('json')->success(['key' => $unique, 'expire_time' => $time]);
- }
- public function captcha(Request $request)
- {
- ob_clean();
- $rep = captcha();
- $key = app('session')->get('captcha.key');
- $uni = $request->get('key');
- if ($uni)
- CacheService::set('sms.key.cap.' . $uni, $key, 300);
- return $rep;
- }
- /**
- * 验证验证码是否正确
- *
- * @param $uni
- * @param string $code
- * @return bool
- * @throws \Psr\SimpleCache\InvalidArgumentException
- */
- protected function checkCaptcha($uni, string $code): bool
- {
- $cacheName = 'sms.key.cap.' . $uni;
- if (!CacheService::has($cacheName)) {
- return false;
- }
- $key = CacheService::get($cacheName);
- $code = mb_strtolower($code, 'UTF-8');
- $res = password_verify($code, $key);
- if ($res) {
- CaCacheServiceche::delete($cacheName);
- }
- return $res;
- }
- /**
- * @return mixed
- */
- public function ajcaptcha(Request $request)
- {
- $captchaType = $request->get('captchaType');
- return app('json')->success(aj_captcha_create($captchaType));
- }
- /**
- * 一次验证
- * @return mixed
- */
- public function ajcheck(Request $request)
- {
- [$token, $pointJson, $captchaType] = $request->postMore([
- ['token', ''],
- ['pointJson', ''],
- ['captchaType', ''],
- ], true);
- try {
- aj_captcha_check_one($captchaType, $token, $pointJson);
- return app('json')->success();
- } catch (\Throwable $e) {
- return app('json')->fail(400336);
- }
- }
- /**
- * 验证码发送
- * @param Request $request
- * @return mixed
- */
- public function verify(Request $request)
- {
- [$phone, $type, $key, $captchaType, $captchaVerification] = $request->postMore([
- ['phone', 0],
- ['type', ''],
- ['key', ''],
- ['captchaType', ''],
- ['captchaVerification', ''],
- ], true);
- $keyName = 'sms.key.' . $key;
- $nowKey = 'sms.' . date('YmdHi');
- if (!CacheService::has($keyName))
- return app('json')->make(401, '发送验证码失败,请刷新页面重新获取');
- $total = 1;
- if (CacheService::has($nowKey)) {
- $total = CacheService::get($nowKey);
- if ($total > Config::get('sms.maxMinuteCount', 20))
- return app('json')->success('已发送');
- }
- //二次验证
- try {
- aj_captcha_check_two($captchaType, $captchaVerification);
- } catch (\Throwable $e) {
- return app('json')->fail($e->getError());
- }
- try {
- validate(RegisterValidates::class)->scene('code')->check(['phone' => $phone]);
- } catch (ValidateException $e) {
- return app('json')->fail($e->getError());
- }
- $time = sys_config('verify_expire_time', 1);
- $smsCode = $this->services->verify($phone, $type, $time, app()->request->ip());
- if ($smsCode) {
- CacheService::set('code_' . $phone, $smsCode, $time * 60);
- CacheService::set($nowKey, $total, 61);
- event('sms.sendAfter', [$smsCode, $phone]);
- return app('json')->success('发送成功');
- } else {
- return app('json')->fail('发送失败');
- }
- }
- /**
- * H5注册新用户
- * @param Request $request
- * @return mixed
- */
- public function register(Request $request)
- {
- [$account, $captcha, $password, $spread_spid] = $request->postMore([
- ['account', ''],
- ['captcha', ''],
- ['password', ''],
- ['spread_spid', 0]
- ], true);
- try {
- validate(RegisterValidates::class)->scene('register')->check(['account' => $account, 'captcha' => $captcha, 'password' => $password]);
- } catch (ValidateException $e) {
- return app('json')->fail($e->getError());
- }
- $verifyCode = CacheService::get('code_' . $account);
- if (!$verifyCode)
- return app('json')->fail('请先获取验证码');
- $verifyCode = substr($verifyCode, 0, 6);
- if ($verifyCode != $captcha)
- return app('json')->fail('验证码错误');
- if (strlen(trim($password)) < 4 || strlen(trim($password)) > 64)
- return app('json')->fail('密码必须是在4到64位之间');
- if ($password == '123456') return app('json')->fail('密码太过简单,请输入较为复杂的密码');
- $user_type = $request->getFromType() ? $request->getFromType() : 'h5';
- $registerStatus = $this->services->register($account, $password, $spread_spid, $user_type);
- if ($registerStatus) {
- CacheService::delete('code_' . $account);
- return app('json')->success('注册成功');
- }
- return app('json')->fail('注册失败');
- }
- /**
- * 密码修改
- * @param Request $request
- * @return mixed
- */
- public function reset(Request $request)
- {
- [$account, $captcha, $password] = $request->postMore([['account', ''], ['captcha', ''], ['password', '']], true);
- try {
- validate(RegisterValidates::class)->scene('register')->check(['account' => $account, 'captcha' => $captcha, 'password' => $password]);
- } catch (ValidateException $e) {
- return app('json')->fail($e->getError());
- }
- $verifyCode = CacheService::get('code_' . $account);
- if (!$verifyCode)
- return app('json')->fail('请先获取验证码');
- $verifyCode = substr($verifyCode, 0, 6);
- if ($verifyCode != $captcha) {
- return app('json')->fail('验证码错误');
- }
- if (strlen(trim($password)) < 4 || strlen(trim($password)) > 64)
- return app('json')->fail('密码必须是在4到64位之间');
- if ($password == '123456') return app('json')->fail('密码太过简单,请输入较为复杂的密码');
- $resetStatus = $this->services->reset($account, $password);
- if ($resetStatus) {
- CacheService::delete('code_' . $account);
- return app('json')->success('修改成功');
- }
- return app('json')->fail('修改失败');
- }
- /**
- * 手机号登录
- * @param Request $request
- * @return mixed
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\ModelNotFoundException
- * @throws \think\exception\DbException
- */
- public function mobile(Request $request)
- {
- [$phone, $captcha, $spread_spid] = $request->postMore([['phone', ''], ['captcha', ''], ['spread_spid', 0]], true);
- //验证手机号
- try {
- validate(RegisterValidates::class)->scene('code')->check(['phone' => $phone]);
- } catch (ValidateException $e) {
- return app('json')->fail($e->getError());
- }
- //验证验证码
- // $verifyCode = CacheService::get('code_' . $phone);
- // if (!$verifyCode)
- // return app('json')->fail('请先获取验证码');
- // $verifyCode = substr($verifyCode, 0, 6);
- // if ($verifyCode != $captcha) {
- // return app('json')->fail('验证码错误');
- // }
- $user_type = $request->getFromType() ? $request->getFromType() : 'h5';
- $token = $this->services->mobile($phone, $spread_spid, $user_type);
- if ($token) {
- CacheService::delete('code_' . $phone);
- return app('json')->success('登录成功', $token);
- } else {
- return app('json')->fail('登录失败');
- }
- }
- /**
- * H5切换登陆
- * @param Request $request
- * @return mixed
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\ModelNotFoundException
- * @throws \think\exception\DbException
- */
- public function switch_h5(Request $request)
- {
- $from = $request->post('from', 'wechat');
- $user = $request->user();
- $token = $this->services->switchAccount($user, $from);
- if ($token) {
- $token['userInfo'] = $user;
- return app('json')->success('登录成功', $token);
- } else
- return app('json')->fail('登录失败');
- }
- /**
- * 绑定手机号
- * @param Request $request
- * @return mixed
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\ModelNotFoundException
- * @throws \think\exception\DbException
- */
- public function binding_phone(Request $request)
- {
- [$phone, $captcha, $key] = $request->postMore([
- ['phone', ''],
- ['captcha', ''],
- ['key', '']
- ], true);
- //验证手机号
- try {
- validate(RegisterValidates::class)->scene('code')->check(['phone' => $phone]);
- } catch (ValidateException $e) {
- return app('json')->fail($e->getError());
- }
- if (!$key) {
- return app('json')->fail('参数错误');
- }
- if (!$phone) {
- return app('json')->fail('请输入手机号');
- }
- //验证验证码
- $verifyCode = CacheService::get('code_' . $phone);
- if (!$verifyCode)
- return app('json')->fail('请先获取验证码');
- $verifyCode = substr($verifyCode, 0, 6);
- if ($verifyCode != $captcha) {
- CacheService::delete('code_' . $phone);
- return app('json')->fail('验证码错误');
- }
- $re = $this->services->bindind_phone($phone, $key);
- if ($re) {
- CacheService::delete('code_' . $phone);
- return app('json')->success('绑定成功', $re);
- } else
- return app('json')->fail('绑定失败');
- }
- /**
- * 绑定手机号
- * @param Request $request
- * @return mixed
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\ModelNotFoundException
- * @throws \think\exception\DbException
- */
- public function user_binding_phone(Request $request)
- {
- [$phone, $captcha, $step] = $request->postMore([
- ['phone', ''],
- ['captcha', ''],
- ['step', 0]
- ], true);
- //验证手机号
- try {
- validate(RegisterValidates::class)->scene('code')->check(['phone' => $phone]);
- } catch (ValidateException $e) {
- return app('json')->fail($e->getError());
- }
- if (!$step) {
- //验证验证码
- $verifyCode = CacheService::get('code_' . $phone);
- if (!$verifyCode)
- return app('json')->fail('请先获取验证码');
- $verifyCode = substr($verifyCode, 0, 6);
- if ($verifyCode != $captcha)
- return app('json')->fail('验证码错误');
- }
- $uid = (int)$request->uid();
- $re = $this->services->userBindindPhone($uid, $phone, $step);
- if ($re) {
- CacheService::delete('code_' . $phone);
- return app('json')->success($re['msg'] ?? '绑定成功', $re['data'] ?? []);
- } else
- return app('json')->fail('绑定失败');
- }
- public function update_binding_phone(Request $request)
- {
- [$phone, $captcha] = $request->postMore([
- ['phone', ''],
- ['captcha', ''],
- ], true);
- //验证手机号
- try {
- validate(RegisterValidates::class)->scene('code')->check(['phone' => $phone]);
- } catch (ValidateException $e) {
- return app('json')->fail($e->getError());
- }
- //验证验证码
- $verifyCode = CacheService::get('code_' . $phone);
- if (!$verifyCode)
- return app('json')->fail('请先获取验证码');
- $verifyCode = substr($verifyCode, 0, 6);
- if ($verifyCode != $captcha)
- return app('json')->fail('验证码错误');
- $uid = (int)$request->uid();
- $re = $this->services->updateBindindPhone($uid, $phone);
- if ($re) {
- CacheService::delete('code_' . $phone);
- return app('json')->success($re['msg'] ?? '修改成功', $re['data'] ?? []);
- } else
- return app('json')->fail('修改失败');
- }
- /**
- * 设置扫描二维码状态
- * @param string $code
- * @return mixed
- */
- public function setLoginKey(string $code)
- {
- if (!$code) {
- return app('json')->fail('登录CODE不存在');
- }
- $cacheCode = CacheService::get($code);
- if ($cacheCode === false || $cacheCode === null) {
- return app('json')->fail('二维码已过期请重新扫描');
- }
- CacheService::set($code, '0', 600);
- return app('json')->success();
- }
- }
|