| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143 |
- <?php
- namespace app\workerapi\validate;
- use app\common\cache\MasterWokerAccountSafeCache;
- use app\common\enum\LoginEnum;
- use app\common\enum\notice\NoticeEnum;
- use app\common\enum\user\UserTerminalEnum;
- use app\common\enum\YesNoEnum;
- use app\common\model\master_worker_register\MasterWorkerRegister;
- use app\common\service\sms\SmsDriver;
- use think\facade\Config;
- use app\common\model\master_worker\MasterWorker;
- use app\common\validate\BaseValidate;
- /**
- * @author 林海涛
- * @date ${DATA}
- */
- Class LoginAccountValidate extends BaseValidate
- {
- protected $rule = [
- 'account' => 'require',
- //'password' => 'require',
- 'terminal' => 'require|in:' . UserTerminalEnum::WECHAT_MMP . ',' . UserTerminalEnum::WECHAT_OA . ','
- . UserTerminalEnum::H5 . ',' . UserTerminalEnum::PC . ',' . UserTerminalEnum::IOS .
- ',' . UserTerminalEnum::ANDROID,
- 'scene' => 'require|in:' . LoginEnum::ACCOUNT_PASSWORD . ',' . LoginEnum::MOBILE_CAPTCHA . '|checkConfig',
- ];
- protected $message = [
- 'account.require' => '请输入手机号或账号',
- //'password.require' => '请输入密码',
- 'terminal.require' => '终端参数缺失',
- 'terminal.in' => '终端参数状态值不正确',
- 'scene.require' => '场景不能为空',
- 'scene.in' => '场景值错误',
- ];
- /**
- * @notes 登录场景相关校验
- * @param $scene
- * @param $rule
- * @param $data
- * @return bool|string
- * @author 段誉
- * @date 2022/9/15 14:37
- */
- public function checkConfig($scene, $rule, $data)
- {
- // 账号密码登录
- if (LoginEnum::ACCOUNT_PASSWORD == $scene) {
- if (!isset($data['password'])) {
- return '请输入密码';
- }
- return $this->checkPassword($data['password'], [], $data);
- }
- // 手机验证码登录
- if (LoginEnum::MOBILE_CAPTCHA == $scene) {
- if (!isset($data['code'])) {
- return '请输入手机验证码';
- }
- return $this->checkCode($data['code'], [], $data);
- }
- return true;
- }
- /**
- * @notes 登录密码校验
- * @param $password
- * @param $other
- * @param $data
- * @return bool|string
- * @author 段誉
- * @date 2022/9/15 14:39
- */
- public function checkPassword($password, $other, $data)
- {
- //账号安全机制,连续输错后锁定,防止账号密码暴力破解
- $userAccountSafeCache = new MasterWokerAccountSafeCache();
- if (!$userAccountSafeCache->isSafe()) {
- return '密码连续' . $userAccountSafeCache->count . '次输入错误,请' . $userAccountSafeCache->minute . '分钟后重试';
- }
- $where = [];
- if ($data['scene'] == LoginEnum::ACCOUNT_PASSWORD) {
- // 手机号密码登录
- $where = ['account|mobile' => $data['account']];
- }
- $userInfo = MasterWorker::where($where)
- ->field(['password,is_disable'])
- ->findOrEmpty();
- if ($userInfo->isEmpty()) {
- $worker_register = MasterWorkerRegister::where('mobile',$data['account'])->findOrEmpty();
- if(!$worker_register->isEmpty() && $worker_register->status==0){
- return '您的入驻信息正在审核中,客服将在1-2个工作日内联系您进行入驻操作';
- }
- return true;
- }
- if ($userInfo['is_disable'] === YesNoEnum::YES) {
- return '用户已禁用';
- }
- if (empty($userInfo['password'])) {
- $userAccountSafeCache->record();
- return '用户不存在';
- }
- $passwordSalt = Config::get('project.unique_identification');
- if ($userInfo['password'] !== create_password($password, $passwordSalt)) {
- $userAccountSafeCache->record();
- return '密码错误';
- }
- $userAccountSafeCache->relieve();
- return true;
- }
- /**
- * @notes 校验验证码
- * @param $code
- * @param $rule
- * @param $data
- * @return bool|string
- * @author Tab
- * @date 2021/8/25 15:43
- */
- public function checkCode($code, $rule, $data)
- {
- $smsDriver = new SmsDriver();
- $result = $smsDriver->verify($data['account'], $code, NoticeEnum::LOGIN_CAPTCHA);
- if ($result) {
- return true;
- }
- return '验证码错误';
- }
- }
|