Sms.php 2.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. <?php
  2. namespace app\admin\Controller;
  3. use library\Controller;
  4. use think\Db;
  5. use think\facade\Validate;
  6. use AlibabaCloud\Client\AlibabaCloud;
  7. /**
  8. * @title 发送短信
  9. * @controller Sms
  10. */
  11. class Sms extends Controller
  12. {
  13. /**
  14. * @title 发送短信
  15. * @desc 发送短信
  16. * @url /api/Sms/send
  17. * @method POST
  18. * @tag 基础
  19. * @header
  20. * @param name:phone type:string require:1 default:-- desc:手机号
  21. * @param name:event type:string require:0 default:register desc:发送类型register:注册forgetpwd:找回密码
  22. */
  23. public function send()
  24. {
  25. $phone = input("phone",'17666660370');
  26. $event = input("event",'adminlogin');
  27. if (!$phone || !Validate::regex($phone, "^1\d{10}$")) {
  28. $this->error('手机号不正确');
  29. }
  30. $last = Db::name('store_sms')->where(['mobile' => $phone, 'event' => $event])
  31. ->order('id', 'DESC')
  32. ->find();
  33. if ($last && time() - $last['createtime']< (60)) {
  34. $this->error('发送频繁!');
  35. }
  36. //发送阿里云短信
  37. $ret = $this->accessKeyClient($event, $phone, mt_rand(100000, 999999));
  38. if ($ret['Code'] === 'OK') {
  39. $this->success('发送成功!');
  40. } elseif ($ret['Code'] === 'isv.BUSINESS_LIMIT_CONTROL') {
  41. $this->error('发送太过频繁!');
  42. } else {
  43. $this->error($ret['msg']);
  44. }
  45. }
  46. function accessKeyClient($event, $mobile, $num)
  47. {
  48. $ali_accesskey = 'LTAI5tAVV4VEU4vFVqpune1Q';
  49. $ali_accesskey_secret = 'IMRENgb7kQsjLXfJ33aCyeTLeNj9DH';
  50. $templateCode = 'SMS_243462790';
  51. AlibabaCloud::accessKeyClient($ali_accesskey, $ali_accesskey_secret)
  52. ->regionId('cn-hangzhou')
  53. ->asDefaultClient();
  54. try {
  55. $result = AlibabaCloud::rpc()
  56. ->product('Dysmsapi')
  57. // ->scheme('https') // https | http
  58. ->version('2017-05-25')
  59. ->action('SendSms')
  60. ->method('POST')
  61. ->host('dysmsapi.aliyuncs.com')
  62. ->options([
  63. 'query' => [
  64. 'PhoneNumbers' => $mobile,
  65. 'SignName' => '头像网络科技',
  66. 'TemplateCode' => $templateCode,
  67. 'TemplateParam' => '{"code":' . $num . '}',
  68. ],
  69. ])
  70. ->request();
  71. $info = $result->toArray();
  72. if ($info['Code'] == 'OK') {
  73. $ip = request()->ip();
  74. Db::name('store_sms')->insert(['event' => $event, 'mobile' => $mobile, 'createtime'=>time(),'code' => $num, 'ip' => $ip]);
  75. }
  76. return $info;
  77. } catch (ClientException $e) {
  78. echo $e->getErrorMessage() . PHP_EOL;
  79. } catch (ServerException $e) {
  80. echo $e->getErrorMessage() . PHP_EOL;
  81. }
  82. }
  83. }