| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165 |
- <?php
- namespace app\api\controller;
- use app\common\controller\Api;
- use app\common\library\Sms as Smslib;
- use app\common\model\User;
- use think\Hook;
- use fast\Random;
- use Exception;
- use think\Cache;
- use think\exception\PDOException;
- use think\exception\ValidateException;
- /**
- * 手机短信接口
- */
- class Sms extends Api
- {
- protected $noNeedLogin = '*';
- protected $noNeedRight = '*';
- /**
- * 发送验证码
- *
- * @ApiMethod (POST)
- * @param string $mobile 手机号
- * @param string $event 事件名称
- */
- public function send()
- {
- $mobile = $this->request->post("mobile");
- $event = $this->request->post("event");
- $event = $event ? $event : 'register';
- if (!$mobile || !\think\Validate::regex($mobile, "^1\d{10}$")) {
- $this->error(__('手机号不正确'));
- }
- $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 >= 5) {
- $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(__('未注册'));
- }
- }
- if (!Hook::get('sms_send')) {
- $this->error(__('请在后台插件管理安装短信验证插件'));
- }
- $ret = Smslib::send($mobile, null, $event);
- if ($ret) {
- $this->success(__('发送成功'));
- } else {
- $this->error(__('发送失败,请检查短信配置是否正确'));
- }
- }
- /**
- * 检测验证码
- *
- * @ApiMethod (POST)
- * @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(__('验证码不正确'));
- }
- }
- /**
- * 发送短信验证码
- *
- * @ApiMethod (POST)
- * @param string $phone 手机号
- * @param string $scene 事件名称
- * @param string $countryCode 区号
- * @param string $len 验证码长度
- */
- public function sendCodeSMS($phone, $scene = 'verify',$countryCode = '86', $len = '')
- {
- $key = $countryCode.$scene . ':' . $phone;
- $code = Random::numeric($len);
- //$content = $content == '' ? sprintf(SMSTemplates($scene,$countryCode),$code) : sprintf($content,$code);
- //$phone = $countryCode . $phone;
- $phone = '+' . $countryCode . $phone;//拼接国际区号
- try {
- $url1 = "https://uni.apistd.com";
- $query = [
- 'action' => 'sms.message.send',
- 'accessKeyId' => 'SGnbSrqzJikDxx4PuU83kD9oTTmv7o34unZ2bPX8FqsgCrQkp'
- ];
- $url = $url1.'/?'.http_build_query($query);
- $data = [
- 'signature'=>'AEXBTC',
- 'to'=>$phone,
- //'content'=>$content,
- 'templateId' => 'd33f1f90',
- 'templateData' => ['code' => $code]
- ];
- $result = xcurl($url,$data);
- $result = json_decode($result, true);
- // var_dump($result);
- // if($result['code'] == 0){
- // $result = 1;
- // }else {
- // $result = 0;
- // }
- } catch (ValidateException|PDOException|Exception $e){
- $this->error($e->getMessage());
- }
- if ($result['code'] == 0){
- Cache::set($key, $code,300);
- return true;
- }else{
- return $result['message'];
- }
- }
- }
|