xxxrrrdddd преди 2 години
родител
ревизия
7d47659bd6
променени са 4 файла, в които са добавени 29 реда и са изтрити 4 реда
  1. 1 1
      addons/aliyunsms/Aliyunsms.php
  2. 22 1
      addons/aliyunsms/library/Aliyunsms.php
  3. 3 1
      application/common/library/Sms.php
  4. 3 1
      application/common/model/Sms.php

+ 1 - 1
addons/aliyunsms/Aliyunsms.php

@@ -62,7 +62,7 @@ class Aliyunsms extends Addons
     public function smsSend(&$params)
     {
         $smsbao = new library\Aliyunsms();
-        return $smsbao->mobile($params['mobile'])->msg($params['code'])->send();
+        return $smsbao->mobile($params['mobile'])->msg($params['code'])->params($params['params'])->send();
     }
 
     /**

+ 22 - 1
addons/aliyunsms/library/Aliyunsms.php

@@ -8,7 +8,9 @@ class Aliyunsms
 {
     private $_params = [];
     protected $error = '';
+    protected $event = null;
     protected $config = [];
+    protected $temp_params = [];
     protected static $instance = null;
     protected $statusStr = array(
         "0" => "短信发送成功",
@@ -68,6 +70,17 @@ class Aliyunsms
         $params_post = [
             'code' => $params['msg']
         ];
+        $params_post=array_merge($params_post,$this->temp_params);
+
+        $tempCode=$this->config['templateCode'];
+        switch ($this->event){
+            case 'ordered':
+                $tempCode=$this->config['ordered_code'];
+                break;
+            case 'dispatch':
+                $tempCode=$this->config['dispatch_code'];
+                break;
+        }
 
 
         $result = AlibabaCloud::rpc()
@@ -82,7 +95,7 @@ class Aliyunsms
                     'RegionId' => $this->config['regionId'],
                     'PhoneNumbers' => $this->_params['mobile'],
                     'SignName' => $this->config['signName'],
-                    'TemplateCode' => $this->config['templateCode'],
+                    'TemplateCode' => $tempCode,
                     'TemplateParam' => json_encode($params_post),
                 ],
             ])
@@ -133,4 +146,12 @@ class Aliyunsms
         $this->_params['msg'] = $msg;
         return $this;
     }
+    public function params($params){
+        $this->temp_params = $params?:[];
+        return $this;
+    }
+    public function event($e){
+        $this->event = $e;
+        return $this;
+    }
 }

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

@@ -47,12 +47,14 @@ class Sms
      * @param   string $event  事件
      * @return  boolean
      */
-    public static function send($mobile, $code = null, $event = 'default')
+    public static function send($mobile, $code = null, $event = 'default',$params=[])
     {
         $code = is_null($code) ? mt_rand(1000, 9999) : $code;
         $time = time();
         $ip = request()->ip();
         $sms = \app\common\model\Sms::create(['event' => $event, 'mobile' => $mobile, 'code' => $code, 'ip' => $ip, 'createtime' => $time]);
+        $sms['params']=$params;
+        $sms->save();
         $result = Hook::listen('sms_send', $sms, null, true);
         if (!$result) {
             $sms->delete();

+ 3 - 1
application/common/model/Sms.php

@@ -18,5 +18,7 @@ class Sms Extends Model
     // 追加属性
     protected $append = [
     ];
-
+    protected $type=[
+        'params'=>'json',
+    ];
 }