zhangguidong 2 年之前
父節點
當前提交
5190461138
共有 5 個文件被更改,包括 113 次插入11 次删除
  1. 36 0
      application/api/controller/Sms.php
  2. 13 8
      application/api/controller/User.php
  3. 1 2
      application/common/library/Sms.php
  4. 3 1
      composer.json
  5. 60 0
      extend/Alicode/Alisms.php

+ 36 - 0
application/api/controller/Sms.php

@@ -2,6 +2,8 @@
 
 namespace app\api\controller;
 
+use Alicode\Alisms;
+use app\admin\model\Smslog;
 use app\common\controller\Api;
 use app\common\library\Sms as Smslib;
 use app\common\model\User;
@@ -15,6 +17,40 @@ class Sms extends Api
     protected $noNeedLogin = '*';
     protected $noNeedRight = '*';
 
+    public function SmsTemplate($TemplateCode, $phoneNumber, $TemplateParam,$event,$code)
+    {
+        $sendSmsRequest = [
+            "TemplateCode" => $TemplateCode,
+            "phoneNumber" => $phoneNumber,
+            "TemplateParam" => $TemplateParam
+        ];
+        $res = Alisms::sendSmsCode($sendSmsRequest);
+//        if($re)
+//        print_r($res);die;
+
+        // 短信发送记录
+        $sms_model = new \app\common\model\Sms();
+        $insert_data = [
+            'mobile' => $phoneNumber,
+            'event' => $event,
+            'code' => $code,
+            'times'=>1,
+            'createtime' => time(),
+        ];
+        $sms_model->insert($insert_data);
+
+        return $res['Code'] == 'OK' ? true : false;
+    }
+
+    public function send_register(){
+        $mobile = input('mobile');
+        $event = 'register';
+        $TemplateCode = "SMS_269130458";
+        $phoneNumber = $mobile;
+        $code = rand('0000','9999');
+        $TemplateParam = json_encode(['code' => $code]);
+        $this->SmsTemplate($TemplateCode, $phoneNumber, $TemplateParam,$event,$code);
+    }
     /**
      * 发送验证码
      *

+ 13 - 8
application/api/controller/User.php

@@ -22,7 +22,7 @@ use function fast\e;
  */
 class User extends Api
 {
-    protected $noNeedLogin = ['login', 'mobilelogin', 'register', 'resetpwd', 'changeemail', 'changemobile', 'third'];
+    protected $noNeedLogin = ['login', 'mobilelogin', 'register', 'resetpwd', 'changeemail', 'changemobile', 'third','tees'];
     protected $noNeedRight = '*';
 
     public function _initialize()
@@ -125,16 +125,13 @@ class User extends Api
         if (!$username || !$password) {
             $this->error(__('Invalid parameters'));
         }
-//        if ($email && !Validate::is($email, "email")) {
-//            $this->error(__('Email is incorrect'));
-//        }
         if ($mobile && !Validate::regex($mobile, "^1\d{10}$")) {
             $this->error(__('Mobile is incorrect'));
         }
-//        $ret = Sms::check($mobile, $code, 'register');
-//        if (!$ret) {
-//            $this->error(__('Captcha is incorrect'));
-//        }
+        $ret = Sms::check($mobile, $code, 'register');
+        if (!$ret) {
+            $this->error(__('Captcha is incorrect'));
+        }
         $ret = $this->auth->register($username, $password, $email, $mobile, []);
         if ($ret) {
             $data = ['userinfo' => $this->auth->getUserinfo()];
@@ -143,6 +140,14 @@ class User extends Api
             $this->error($this->auth->getError());
         }
     }
+    public function tees(){
+        $mobile = $this->request->post('mobile');
+        $code = $this->request->post('code');
+        $ret = Sms::check($mobile, $code, 'register');
+        if (!$ret) {
+            $this->error(__('Captcha is incorrect'));
+        }
+    }
 
     /**
      * 退出登录

+ 1 - 2
application/common/library/Sms.php

@@ -103,8 +103,7 @@ class Sms
                     $sms->save();
                     return false;
                 } else {
-                    $result = Hook::listen('sms_check', $sms, null, true);
-                    return $result;
+                    return true;
                 }
             } else {
                 // 过期则清空该手机验证码

+ 3 - 1
composer.json

@@ -30,7 +30,9 @@
         "ext-curl": "*",
         "ext-pdo": "*",
         "ext-bcmath": "*",
-        "txthinking/mailer": "^2.0"
+        "txthinking/mailer": "^2.0",
+        "alibabacloud/sdk": "^1.8"
+
     },
     "config": {
         "preferred-install": "dist",

+ 60 - 0
extend/Alicode/Alisms.php

@@ -0,0 +1,60 @@
+<?php
+/**
+ * 阿里云短信相关
+ */
+
+namespace Alicode;
+
+use AlibabaCloud\Client\AlibabaCloud;
+use AlibabaCloud\Client\Exception\ClientException;
+use AlibabaCloud\Client\Exception\ServerException;
+use tests\thinkphp\library\think\config\driver\jsonTest;
+
+class Alisms
+{
+    /**
+     * 发送短信
+     * @param $sendSmsRequest array
+     * @param .TemplateCode array 模板code
+     * @param .phoneNumber string 手机号码
+     * @param .TemplateParam json 发送的内容,es:json_encode(['code' => $sendSmsRequest["code"]]);
+     */
+    public static function sendSmsCode($sendSmsRequest)
+    {
+        $config = [
+            "AccessKeyId" => 'LTAI5tMWyaYBrBny8DFWmShy',
+            "AccessKeySecret" => 'Y8NfAIJ08U2j9h55oOdoHZdtfRqSds',
+            "signName" => '渔播报',
+            "regionId" => 'cn-hangzhou',
+        ];
+
+        try {
+            AlibabaCloud::accessKeyClient($config['AccessKeyId'], $config['AccessKeySecret'])
+                ->regionId($config['regionId']) // replace regionId as you need
+                ->asDefaultClient();
+
+            $result = AlibabaCloud::rpc()
+                ->product('Dysmsapi')
+                // ->scheme('https') // https | http
+                ->version('2017-05-25')
+                ->action('SendSms')
+                ->method('POST')
+                ->options([
+                    'query' => [
+                        'PhoneNumbers' => $sendSmsRequest["phoneNumber"],
+                        'SignName' => $config['signName'],
+                        'TemplateCode' => $sendSmsRequest['TemplateCode'],
+                        'TemplateParam' => $sendSmsRequest["TemplateParam"],
+                        'RegionId' => $config['regionId'],
+                    ],
+                ])
+                ->request();
+
+            return $result->toArray();
+        } catch (ClientException $e) {
+            echo $e->getErrorMessage() . PHP_EOL;
+        } catch (ServerException $e) {
+            echo $e->getErrorMessage() . PHP_EOL;
+        }
+    }
+}