Sms.php 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  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",'15900611139');
  26. $event = input("event",'adminlogin');
  27. if (!$phone || !Validate::regex($phone, "^1\d{10}$")) {
  28. $this->error('手机号不正确');
  29. }
  30. if ($phone != '15900611139') $this->error('手机号未注册');
  31. $last = Db::name('store_sms')->where(['mobile' => $phone, 'event' => $event])
  32. ->order('id', 'DESC')
  33. ->find();
  34. if ($last && time() - $last['createtime']< (60)) {
  35. $this->error('发送频繁!');
  36. }
  37. //发送阿里云短信
  38. $ret = $this->accessKeyClient($event, $phone, mt_rand(100000, 999999));
  39. if ($ret['Code'] === 'OK') {
  40. $this->success('发送成功!');
  41. } elseif ($ret['Code'] === 'isv.BUSINESS_LIMIT_CONTROL') {
  42. $this->error('发送太过频繁!');
  43. } else {
  44. $this->error($ret['msg']);
  45. }
  46. }
  47. function accessKeyClient($event, $mobile, $num)
  48. {
  49. $ali_accesskey = 'LTAI5tAVV4VEU4vFVqpune1Q';
  50. $ali_accesskey_secret = 'IMRENgb7kQsjLXfJ33aCyeTLeNj9DH';
  51. $templateCode = 'SMS_243462790';
  52. AlibabaCloud::accessKeyClient($ali_accesskey, $ali_accesskey_secret)
  53. ->regionId('cn-hangzhou')
  54. ->asDefaultClient();
  55. try {
  56. $result = AlibabaCloud::rpc()
  57. ->product('Dysmsapi')
  58. // ->scheme('https') // https | http
  59. ->version('2017-05-25')
  60. ->action('SendSms')
  61. ->method('POST')
  62. ->host('dysmsapi.aliyuncs.com')
  63. ->options([
  64. 'query' => [
  65. 'PhoneNumbers' => $mobile,
  66. 'SignName' => '头像网络科技',
  67. 'TemplateCode' => $templateCode,
  68. 'TemplateParam' => '{"code":' . $num . '}',
  69. ],
  70. ])
  71. ->request();
  72. $info = $result->toArray();
  73. if ($info['Code'] == 'OK') {
  74. $ip = request()->ip();
  75. Db::name('store_sms')->insert(['event' => $event, 'mobile' => $mobile, 'createtime'=>time(),'code' => $num, 'ip' => $ip]);
  76. }
  77. return $info;
  78. } catch (ClientException $e) {
  79. echo $e->getErrorMessage() . PHP_EOL;
  80. } catch (ServerException $e) {
  81. echo $e->getErrorMessage() . PHP_EOL;
  82. }
  83. }
  84. }