xxxrrrdddd hace 3 años
padre
commit
f928f38531

+ 90 - 0
addons/aliyunsms/Aliyunsms.php

@@ -0,0 +1,90 @@
+<?php
+
+namespace addons\aliyunsms;
+
+use app\common\library\Menu;
+use think\Addons;
+
+/**
+ * Aliyunsms插件
+ */
+class Aliyunsms extends Addons
+{
+
+    /**
+     * 插件安装方法
+     * @return bool
+     */
+    public function install()
+    {
+
+        return true;
+    }
+
+    /**
+     * 插件卸载方法
+     * @return bool
+     */
+    public function uninstall()
+    {
+
+        return true;
+    }
+
+    /**
+     * 插件启用方法
+     * @return bool
+     */
+    public function enable()
+    {
+
+        return true;
+    }
+
+    /**
+     * 插件禁用方法
+     * @return bool
+     */
+    public function disable()
+    {
+
+        return true;
+    }
+
+    /**
+     * 短信发送
+     * @param Sms $params
+     * @return mixed
+     * @throws \AlibabaCloud\Client\Exception\ClientException
+     * @throws \AlibabaCloud\Client\Exception\ServerException
+     */
+    public function smsSend(&$params)
+    {
+        $smsbao = new library\Aliyunsms();
+        return $smsbao->mobile($params['mobile'])->msg($params['code'])->send();
+    }
+
+    /**
+     * 短信发送通知(msg参数直接构建实际短信内容即可)
+     * @param array $params
+     * @return  boolean
+     * @throws \AlibabaCloud\Client\Exception\ClientException
+     * @throws \AlibabaCloud\Client\Exception\ServerException
+     */
+    public function smsNotice(&$params)
+    {
+        $smsbao = new library\Aliyunsms();
+        $result = $smsbao->mobile($params['mobile'])->msg($params['msg'])->send();
+        return $result;
+    }
+
+    /**
+     * 检测验证是否正确
+     * @param Sms $params
+     * @return  boolean
+     */
+    public function smsCheck(&$params)
+    {
+        return TRUE;
+    }
+}

+ 37 - 0
addons/aliyunsms/README.md

@@ -0,0 +1,37 @@
+# aliyunsms_for_fastadmin
+
+#### 介绍
+用来继承fastadmin 插件库
+
+#### 软件架构
+软件架构说明
+
+
+#### 安装教程
+
+1.  放置在addons目录下
+2.  进入系统根目录 composer require alibabacloud/sdk
+ 
+
+#### 使用说明
+
+1.  xxxx
+2.  xxxx
+3.  xxxx
+
+#### 参与贡献
+
+1.  Fork 本仓库
+2.  新建 Feat_xxx 分支
+3.  提交代码
+4.  新建 Pull Request
+
+
+#### 码云特技
+
+1.  使用 Readme\_XXX.md 来支持不同的语言,例如 Readme\_en.md, Readme\_zh.md
+2.  码云官方博客 [blog.gitee.com](https://blog.gitee.com)
+3.  你可以 [https://gitee.com/explore](https://gitee.com/explore) 这个地址来了解码云上的优秀开源项目
+4.  [GVP](https://gitee.com/gvp) 全称是码云最有价值开源项目,是码云综合评定出的优秀开源项目
+5.  码云官方提供的使用手册 [https://gitee.com/help](https://gitee.com/help)
+6.  码云封面人物是一档用来展示码云会员风采的栏目 [https://gitee.com/gitee-stars/](https://gitee.com/gitee-stars/)

+ 64 - 0
addons/aliyunsms/config.php

@@ -0,0 +1,64 @@
+<?php
+
+return [
+    [
+        'name' => 'accessKeyId',
+        'title' => 'accessKeyId',
+        'type' => 'string',
+        'content' => [],
+        'value' => 'asdasdasd',
+        'rule' => 'required',
+        'msg' => '',
+        'tip' => '',
+        'ok' => '',
+        'extend' => '',
+    ],
+    [
+        'name' => 'accessSecret',
+        'title' => 'accessSecret',
+        'type' => 'string',
+        'content' => [],
+        'value' => 'asdasdasda',
+        'rule' => 'required',
+        'msg' => '',
+        'tip' => '',
+        'ok' => '',
+        'extend' => '',
+    ],
+    [
+        'name' => 'regionId',
+        'title' => 'regionId',
+        'type' => 'string',
+        'content' => [],
+        'value' => 'cn-hangzhou',
+        'rule' => 'required',
+        'msg' => '',
+        'tip' => 'cn-hangzhou',
+        'ok' => '',
+        'extend' => '',
+    ],
+    [
+        'name' => 'signName',
+        'title' => 'signName',
+        'type' => 'string',
+        'content' => [],
+        'value' => 'asdasdasd',
+        'rule' => 'required',
+        'msg' => '',
+        'tip' => 'signName',
+        'ok' => '',
+        'extend' => '',
+    ],
+    [
+        'name' => 'templateCode',
+        'title' => 'templateCode',
+        'type' => 'string',
+        'content' => [],
+        'value' => '123123',
+        'rule' => 'required',
+        'msg' => '',
+        'tip' => 'templateCode',
+        'ok' => '',
+        'extend' => '',
+    ],
+];

+ 15 - 0
addons/aliyunsms/controller/Index.php

@@ -0,0 +1,15 @@
+<?php
+
+namespace addons\smsbao\controller;
+
+use think\addons\Controller;
+
+class Index extends Controller
+{
+
+    public function index()
+    {
+        $this->error("当前插件暂无前台页面");
+    }
+
+}

+ 8 - 0
addons/aliyunsms/info.ini

@@ -0,0 +1,8 @@
+name = aliyunsms
+title = 阿里云短信
+intro = 快速接入、使用方便、价格低廉的短信服务
+author = xianghua_we
+website = https://www.fastadmin.net
+version = 1.0.0
+state = 1
+url = /addons/aliyunsms.html

+ 136 - 0
addons/aliyunsms/library/Aliyunsms.php

@@ -0,0 +1,136 @@
+<?php
+
+namespace addons\aliyunsms\library;
+
+use AlibabaCloud\Client\AlibabaCloud;
+
+class Aliyunsms
+{
+    private $_params = [];
+    protected $error = '';
+    protected $config = [];
+    protected static $instance = null;
+    protected $statusStr = array(
+        "0" => "短信发送成功",
+        "-1" => "参数不全",
+        "-2" => "服务器空间不支持,请确认支持curl或者fsocket,联系您的空间商解决或者更换空间!",
+        "30" => "密码错误",
+        "40" => "账号不存在",
+        "41" => "余额不足",
+        "42" => "帐户已过期",
+        "43" => "IP地址限制",
+        "50" => "内容含有敏感词"
+    );
+
+
+    /**
+     * Aliyunsms constructor.
+     * @param array $options
+     * @throws \AlibabaCloud\Client\Exception\ClientException
+     */
+    public function __construct($options = [])
+    {
+        if ($config = get_addon_config('aliyunsms')) {
+            $this->config = array_merge($this->config, $config);
+        }
+        $this->config = array_merge($this->config, is_array($options) ? $options : []);
+        AlibabaCloud::accessKeyClient($this->config['accessKeyId'], $this->config['accessSecret'])
+            ->regionId($this->config['regionId'])
+            ->asDefaultClient();
+    }
+
+    /**
+     * 单例
+     * @param array $options 参数
+     * @return Aliyunsms
+     */
+    public static function instance($options = [])
+    {
+        if (is_null(self::$instance)) {
+            self::$instance = new static($options);
+        }
+        return self::$instance;
+    }
+
+    /**
+     * 立即发送短信
+     *
+     * @return boolean
+     * @throws \AlibabaCloud\Client\Exception\ClientException
+     * @throws \AlibabaCloud\Client\Exception\ServerException
+     */
+    public function send()
+    {
+        $this->error = '';
+        $params = $this->_params();
+
+
+        $params_post = [
+            'code' => $params['msg']
+        ];
+
+
+        $result = AlibabaCloud::rpc()
+            ->product('Dysmsapi')
+            // ->scheme('https') // https | http
+            ->version('2017-05-25')
+            ->action('SendSms')
+            ->method('POST')
+            ->host('dysmsapi.aliyuncs.com')
+            ->options([
+                'query' => [
+                    'RegionId' => $this->config['regionId'],
+                    'PhoneNumbers' => $this->_params['mobile'],
+                    'SignName' => $this->config['signName'],
+                    'TemplateCode' => $this->config['templateCode'],
+                    'TemplateParam' => json_encode($params_post),
+                ],
+            ])
+            ->request();
+
+        $result = $result->toArray();
+
+        if ($result['Code'] == "OK") {
+            return true;
+        } else {
+            $this->error = $result['Message'];
+        }
+        return false;
+    }
+
+    private function _params()
+    {
+        return $this->_params;
+    }
+
+    /**
+     * 获取错误信息
+     * @return string
+     */
+    public function getError()
+    {
+        return $this->error;
+    }
+
+    /**
+     * 接收手机
+     * @param string $mobile 手机号码
+     * @return Aliyunsms
+     */
+    public function mobile($mobile = '')
+    {
+        $this->_params['mobile'] = $mobile;
+        return $this;
+    }
+
+    /**
+     * 短信内容
+     * @param string $msg 短信内容
+     * @return Aliyunsms
+     */
+    public function msg($msg = '')
+    {
+        $this->_params['msg'] = $msg;
+        return $this;
+    }
+}

+ 1 - 1
addons/qcloudsms/info.ini

@@ -4,7 +4,7 @@ intro = 腾讯云短信发送插件
 author = Seacent
 website = https://www.seacent.com
 version = 1.0.3
-state = 1
+state = 0
 url = /addons/qcloudsms
 license = regular
 licenseto = 39487

+ 6 - 7
application/extra/addons.php

@@ -3,18 +3,17 @@
 return [
     'autoload' => false,
     'hooks' => [
-        'config_init' => [
-            'qcloudsms',
-            'third',
-        ],
         'sms_send' => [
-            'qcloudsms',
+            'aliyunsms',
         ],
         'sms_notice' => [
-            'qcloudsms',
+            'aliyunsms',
         ],
         'sms_check' => [
-            'qcloudsms',
+            'aliyunsms',
+        ],
+        'config_init' => [
+            'third',
         ],
     ],
     'route' => [

+ 2 - 1
composer.json

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