1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- <?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",'17666660370');
- $event = input("event",'adminlogin');
- if (!$phone || !Validate::regex($phone, "^1\d{10}$")) {
- $this->error('手机号不正确');
- }
- $last = Db::name('store_sms')->where(['mobile' => $phone, 'event' => $event])
- ->order('id', 'DESC')
- ->find();
- if ($last && time() - $last['createtime']< (60)) {
- $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;
- }
- }
- }
|