chuweiqiang 1 ano atrás
pai
commit
932af05b63

+ 1 - 1
application/api/controller/Order.php

@@ -171,7 +171,7 @@ class Order extends Api
                 $lists['goods'][$k]['good_item'] = $Video->where('id',$v['goods_id'])->find();
             }
         }
-
+        $lists['createtime'] = date('Y-m-d H:i:s', $lists['createtime']);
         $this->success('操作成功',$lists);
     }
 

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

@@ -101,4 +101,17 @@ class Sms extends Api
             $this->error(__('验证码不正确'));
         }
     }
+
+    /**
+     * 验证码
+     *
+     * @ApiMethod (POST)
+     * @param string $mobile 手机号
+     * @param string $event 事件名称
+     * @param string $captcha 验证码
+     */
+    public function addc(){
+        $sms = ['event' => 'register', 'mobile' => 18905497965, 'code' => 123456, 'ip' => '', 'createtime' => time()];
+        return Hook::listen('sms_check', $sms, null, true);
+    }
 }

+ 81 - 0
application/api/hook/Sms.php

@@ -0,0 +1,81 @@
+<?php
+/**
+ * hook钩子触发短信发送
+ */
+namespace app\api\hook;
+
+//阿里云短信发送相关类 composer安装
+//composer require alibabacloud/sdk
+//use Swoft\Task\Bean\Annotation\Task;
+use AlibabaCloud\Client\AlibabaCloud;
+use AlibabaCloud\Client\Exception\ClientException;
+use AlibabaCloud\Client\Exception\ServerException;
+
+class Sms
+{
+
+    //发送验证码
+    //@sms  验证码发送记录数数据库实例
+    //$sms->mobile 手机号码
+    //['event' => $event, 'mobile' => $mobile, 'code' => $code, 'ip' => $ip, 'createtime' => $time]
+    function smsSend($sms)
+    {
+        return '11111';
+        return $this->sendMsg($sms->mobile,['code'=>$sms->code],'code');
+    }
+
+    function smsCheck($sms)
+    {
+    	return $this->sendMsg($sms['mobile'],['code'=>$sms['code']],'code');
+    	if($this->sendMsg($sms['mobile'],['code'=>$sms['code']],'code')){
+            $sms = \app\common\model\Sms::create(['event' => $sms['event'], 'mobile' => $sms['mobile'], 'code' => $sms['code'], 'ip' => '', 'createtime' => $sms['createtime']]);
+        }
+    }
+
+
+    //@mobile 手机号码
+    //@param  短信发送参数
+    //@template 短信发送模板编号key值
+    private function sendMsg($mobile,$param,$template){
+        $config = \config('alisms');
+//        return json($config);
+        if(empty($param)||!isset($config)||empty($config)){
+            return false;
+        }
+        AlibabaCloud::accessKeyClient($config['accessKeyId'], $config['accessSecret'])
+            ->regionId($config['regionId'])
+            ->asGlobalClient();
+
+        $TemplateCode = isset($config['TemplateCode'][$template])?$config['TemplateCode'][$template]:$config['TemplateCode']['code'];
+
+        try {
+            $result = AlibabaCloud::rpcRequest()
+                ->product('Dysmsapi')
+                ->version('2017-05-25')
+                ->action('SendSms')
+                ->method('POST')
+                ->options([
+                    'query' => [
+                        'PhoneNumbers' => $mobile,
+                        'SignName' => $config['SignName'],
+                        'TemplateCode' => $TemplateCode,
+                        'TemplateParam' => json_encode($param)
+                    ],
+                ])
+                ->request();
+            if($result->Code=="OK"){
+                return true;
+            }else{
+                return false;
+            }
+            print_r($result->toArray());
+        } catch (ClientException $e) {
+            return false;
+            echo $e->getErrorMessage() . PHP_EOL;
+        } catch (ServerException $e) {
+            return false;
+            echo $e->getErrorMessage() . PHP_EOL;
+        }
+    }
+
+}

+ 20 - 0
application/extra/alisms.php

@@ -0,0 +1,20 @@
+<?php
+/*
+阿里云短信发送配置文件
+*/
+
+return [
+    //短信签名
+    "SignName"=> "XXX",
+    //阿里云keyid
+    "accessKeyId"=>"LTAI5t8uTp1r27DgFFQxt6DE",
+    //阿里云密钥
+    "accessSecret"=>"ipBg5gAV7nwi0DnaGbLhFz9mXZwgyX",
+    //短信发送地
+    'regionId' => 'cn-hangzhou',
+    //短信模板编码
+    "TemplateCode"=>[
+        //验证码使用模板
+        'code'=>"SMS_290052452",
+    ],
+];

Diferenças do arquivo suprimidas por serem muito extensas
+ 1 - 1
application/extra/site.php


+ 7 - 0
application/tags.php

@@ -37,4 +37,11 @@ return [
     'log_write'    => [],
     // 应用结束
     'app_end'      => [],
+    //自定义发送短信
+    'sms_send'      =>[
+        'app\\api\\hook\\Sms'
+    ],
+    'sms_check'     =>[
+        'app\\api\\hook\\Sms'
+    ],
 ];

+ 2 - 1
composer.json

@@ -32,7 +32,8 @@
         "ext-bcmath": "*",
         "txthinking/mailer": "^2.0",
         "yansongda/pay": "2.10",
-        "dh2y/think-qrcode": "^2.0"
+        "dh2y/think-qrcode": "^2.0",
+        "alibabacloud/sdk": "^1.8"
     },
     "config": {
         "preferred-install": "dist",

Alguns arquivos não foram mostrados porque muitos arquivos mudaram nesse diff