|
@@ -5,6 +5,7 @@ namespace app\api\controller;
|
|
use app\common\controller\Api;
|
|
use app\common\controller\Api;
|
|
use app\common\library\Sms as Smslib;
|
|
use app\common\library\Sms as Smslib;
|
|
use app\common\model\User;
|
|
use app\common\model\User;
|
|
|
|
+use fast\Random;
|
|
use think\Hook;
|
|
use think\Hook;
|
|
|
|
|
|
/**
|
|
/**
|
|
@@ -52,10 +53,12 @@ class Sms extends Api
|
|
$this->error(__('未注册'));
|
|
$this->error(__('未注册'));
|
|
}
|
|
}
|
|
}
|
|
}
|
|
- if (!Hook::get('sms_send')) {
|
|
|
|
- $this->error(__('请在后台插件管理安装短信验证插件'));
|
|
|
|
- }
|
|
|
|
- $ret = Smslib::send($mobile, null, $event);
|
|
|
|
|
|
+// if (!Hook::get('sms_send')) {
|
|
|
|
+// $this->error(__('请在后台插件管理安装短信验证插件'));
|
|
|
|
+// }
|
|
|
|
+ $sms = ['event' => $event, 'mobile' => $mobile, 'code' => Random::numeric(config('captcha.length')), 'ip' => '', 'createtime' => time()];
|
|
|
|
+// $ret = Smslib::send($mobile, null, $event);
|
|
|
|
+ $ret = Hook::listen('sms_check', $sms, null, true);
|
|
if ($ret) {
|
|
if ($ret) {
|
|
$this->success(__('发送成功'));
|
|
$this->success(__('发送成功'));
|
|
} else {
|
|
} else {
|
|
@@ -111,7 +114,10 @@ class Sms extends Api
|
|
* @param string $captcha 验证码
|
|
* @param string $captcha 验证码
|
|
*/
|
|
*/
|
|
public function addc(){
|
|
public function addc(){
|
|
- $sms = ['event' => 'register', 'mobile' => 18905497965, 'code' => 123456, 'ip' => '', 'createtime' => time()];
|
|
|
|
|
|
+ $sms = ['event' => 'register', 'mobile' => 18905497965, 'code' => Random::numeric(config('captcha.length')), 'ip' => '', 'createtime' => time()];
|
|
|
|
+ if(Hook::listen('sms_check', $sms, null, true)){
|
|
|
|
+ $this->success('发送成功');
|
|
|
|
+ }
|
|
return Hook::listen('sms_check', $sms, null, true);
|
|
return Hook::listen('sms_check', $sms, null, true);
|
|
}
|
|
}
|
|
}
|
|
}
|