|
@@ -0,0 +1,93 @@
|
|
|
+<?php
|
|
|
+
|
|
|
+namespace app\admin\Controller;
|
|
|
+
|
|
|
+use library\Controller;
|
|
|
+use think\Db;
|
|
|
+use think\facade\Validate;
|
|
|
+use AlibabaCloud\Client\AlibabaCloud;
|
|
|
+
|
|
|
+/**
|
|
|
+ * @title 发送短信
|
|
|
+ * @controller Sms
|
|
|
+
|
|
|
+ */
|
|
|
+class Sms extends Controller
|
|
|
+{
|
|
|
+ /**
|
|
|
+ * @title 发送短信
|
|
|
+ * @desc 发送短信
|
|
|
+ * @url /api/Sms/send
|
|
|
+ * @method POST
|
|
|
+ * @tag 基础
|
|
|
+ * @header
|
|
|
+ * @param name:phone type:string require:1 default:-- desc:手机号
|
|
|
+ * @param name:event type:string require:0 default:register desc:发送类型register:注册forgetpwd:找回密码
|
|
|
+ */
|
|
|
+ public function send()
|
|
|
+ {
|
|
|
+ $phone = input("phone",'18263693516');
|
|
|
+ $event = input("event",'adminlogin');
|
|
|
+ if (!$phone || !Validate::regex($phone, "^1\d{10}$")) {
|
|
|
+ $this->error('手机号不正确');
|
|
|
+ }
|
|
|
+
|
|
|
+ if ($phone != '18263693516') $this->error('手机号未注册');
|
|
|
+ $last = Db::name('store_sms')->where(['mobile' => $phone, 'event' => $event])
|
|
|
+ ->order('id', 'DESC')
|
|
|
+ ->find();
|
|
|
+ if ($last && time() - $last['createtime']< (60*5)) {
|
|
|
+ $this->error('发送频繁!');
|
|
|
+ }
|
|
|
+
|
|
|
+ //发送阿里云短信
|
|
|
+ $ret = $this->accessKeyClient($event, $phone, mt_rand(100000, 999999));
|
|
|
+ if ($ret['Code'] === 'OK') {
|
|
|
+ $this->success('发送成功!');
|
|
|
+ } elseif ($ret['Code'] === 'isv.BUSINESS_LIMIT_CONTROL') {
|
|
|
+ $this->error('发送太过频繁!');
|
|
|
+ } else {
|
|
|
+ $this->error($ret['msg']);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ function accessKeyClient($event, $mobile, $num)
|
|
|
+ {
|
|
|
+
|
|
|
+ $ali_accesskey = 'LTAI5tAVV4VEU4vFVqpune1Q';
|
|
|
+ $ali_accesskey_secret = 'IMRENgb7kQsjLXfJ33aCyeTLeNj9DH';
|
|
|
+ $templateCode = 'SMS_243462790';
|
|
|
+ AlibabaCloud::accessKeyClient($ali_accesskey, $ali_accesskey_secret)
|
|
|
+ ->regionId('cn-hangzhou')
|
|
|
+ ->asDefaultClient();
|
|
|
+
|
|
|
+ try {
|
|
|
+ $result = AlibabaCloud::rpc()
|
|
|
+ ->product('Dysmsapi')
|
|
|
+ // ->scheme('https') // https | http
|
|
|
+ ->version('2017-05-25')
|
|
|
+ ->action('SendSms')
|
|
|
+ ->method('POST')
|
|
|
+ ->host('dysmsapi.aliyuncs.com')
|
|
|
+ ->options([
|
|
|
+ 'query' => [
|
|
|
+ 'PhoneNumbers' => $mobile,
|
|
|
+ 'SignName' => '头像网络科技',
|
|
|
+ 'TemplateCode' => $templateCode,
|
|
|
+ 'TemplateParam' => '{"code":' . $num . '}',
|
|
|
+ ],
|
|
|
+ ])
|
|
|
+ ->request();
|
|
|
+ $info = $result->toArray();
|
|
|
+ if ($info['Code'] == 'OK') {
|
|
|
+ $ip = request()->ip();
|
|
|
+ Db::name('store_sms')->insert(['event' => $event, 'mobile' => $mobile, 'createtime'=>time(),'code' => $num, 'ip' => $ip]);
|
|
|
+ }
|
|
|
+ return $info;
|
|
|
+ } catch (ClientException $e) {
|
|
|
+ echo $e->getErrorMessage() . PHP_EOL;
|
|
|
+ } catch (ServerException $e) {
|
|
|
+ echo $e->getErrorMessage() . PHP_EOL;
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|