request->post("mobile"); $event = $this->request->post("event"); $event = $event ? strtolower($event) : 'register'; if (!$mobile || !\think\Validate::regex($mobile, "^1\d{10}$")) { $this->error(__('手机号不正确')); } $this->lock($mobile, 3); /*print_r(Env::get('app.sms_dev', false)); // 开启模拟短信,则禁用短信插件 begin if (Env::get('app.sms_dev', false)) { Hook::add('sms_send', function ($params) { return true; }, true); } // 开启模拟短信,则禁用短信插件 end */ $last = Smslib::get($mobile, $event); if ($last && time() - $last['createtime'] < 60) { $this->error(__('发送频繁')); } $ipSendTotal = \app\common\model\Sms::where(['ip' => $this->request->ip()])->whereTime('createtime', '-1 hours')->count(); if ($ipSendTotal >= 10) { $this->error(__('发送频繁')); } if ($event) { $userinfo = User::getByMobile($mobile); if ('login' == $event && !$userinfo) { // 未注册用户登录即注册 $event = 'register'; } if ($event == 'register' && $userinfo) { //已被注册 $this->error(__('手机号已被注册')); } elseif (in_array($event, ['changemobile']) && $userinfo) { //被占用 $this->error(__('手机号已被占用')); } elseif (in_array($event, ['changepwd', 'resetpwd']) && !$userinfo) { //未注册 $this->error(__('手机号未注册')); } } if (!Hook::get('sms_send')) { $this->error(__('请在后台插件管理安装短信验证插件')); } // 开启短信模拟则短信验证码固定为123456 $code = null;//Env::get('app.sms_dev', false) ? '123456' : null; $ret = Smslib::send($mobile, $code, $event); // print_r($code); if ($ret) { $this->success(__('发送成功')); } else { $this->error(__('发送失败,请检查短信配置是否正确')); } } /** * 检测验证码 * * @param string $mobile 手机号 * @param string $event 事件名称 * @param string $captcha 验证码 */ public function check() { $mobile = $this->request->post("mobile"); $event = $this->request->post("event"); $event = $event ? $event : 'register'; $captcha = $this->request->post("captcha"); if (!$mobile || !\think\Validate::regex($mobile, "^1\d{10}$")) { $this->error(__('手机号不正确')); } if ($event) { $userinfo = User::getByMobile($mobile); if ($event == 'register' && $userinfo) { //已被注册 $this->error(__('已被注册')); } elseif (in_array($event, ['changemobile']) && $userinfo) { //被占用 $this->error(__('已被占用')); } elseif (in_array($event, ['changepwd', 'resetpwd']) && !$userinfo) { //未注册 $this->error(__('未注册')); } } $ret = Smslib::check($mobile, $captcha, $event); if ($ret) { $this->success(__('成功')); } else { $this->error(__('验证码不正确')); } } }