Sms.php 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. <?php
  2. namespace app\api\controller;
  3. use app\common\library\Common;
  4. use think\Db;
  5. use think\facade\Validate;
  6. use think\Request;
  7. use AlibabaCloud\Client\AlibabaCloud;
  8. /**
  9. * @title 发送短信
  10. * @controller Sms
  11. */
  12. class Sms extends Base
  13. {
  14. /**
  15. * @title 发送短信
  16. * @desc 发送短信
  17. * @url /api/Sms/send
  18. * @method POST
  19. * @tag 基础
  20. * @header
  21. * @param name:phone type:string require:1 default:-- desc:手机号
  22. * @param name:event type:string require:0 default:register desc:发送类型register:注册forgetpwd:找回密码
  23. */
  24. public function send()
  25. {
  26. $phone = input("phone");
  27. $event = input("event",'register');
  28. if (!$phone || !Validate::regex($phone, "^1\d{10}$")) {
  29. $this->error('手机号不正确');
  30. }
  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. // $ipSendTotal = Db::name('store_sms')->where(['ip' => request()->ip()])->whereTime('createtime', '-1 hours')->count();
  38. // if ($ipSendTotal >= 5) {
  39. // $this->error('发送频繁!');
  40. // }
  41. $member = Db::name('store_member')
  42. ->where('phone',$phone)
  43. ->where('is_deleted',0)
  44. ->count();
  45. switch ($event){
  46. case 'register':
  47. if ($member) $this->error('手机号已注册');
  48. break;
  49. case 'forgetpwd':
  50. if (!$member) $this->error('手机号未注册');
  51. break;
  52. }
  53. //发送阿里云短信
  54. $ret = $this->accessKeyClient($event, $phone, mt_rand(100000, 999999));
  55. if ($ret['Code'] === 'OK') {
  56. $this->success('发送成功!');
  57. } elseif ($ret['Code'] === 'isv.BUSINESS_LIMIT_CONTROL') {
  58. $this->error('发送太过频繁!');
  59. } else {
  60. $this->error($ret['msg']);
  61. }
  62. }
  63. function accessKeyClient($event, $mobile, $num)
  64. {
  65. $ali_accesskey = 'LTAI5tBUgBoi8dxsgkvBsE4q';
  66. $ali_accesskey_secret = 'S3BvVTKNdM7PJDrmW5oIotcrn0KvMI';
  67. $templateCode = 'SMS_217915472';
  68. AlibabaCloud::accessKeyClient($ali_accesskey, $ali_accesskey_secret)
  69. ->regionId('cn-hangzhou')
  70. ->asDefaultClient();
  71. try {
  72. $result = AlibabaCloud::rpc()
  73. ->product('Dysmsapi')
  74. // ->scheme('https') // https | http
  75. ->version('2017-05-25')
  76. ->action('SendSms')
  77. ->method('POST')
  78. ->host('dysmsapi.aliyuncs.com')
  79. ->options([
  80. 'query' => [
  81. 'PhoneNumbers' => $mobile,
  82. 'SignName' => '栩贝贸易',
  83. 'TemplateCode' => $templateCode,
  84. 'TemplateParam' => '{"code":' . $num . '}',
  85. ],
  86. ])
  87. ->request();
  88. $info = $result->toArray();
  89. if ($info['Code'] == 'OK') {
  90. $ip = request()->ip();
  91. Db::name('store_sms')->insert(['event' => $event, 'mobile' => $mobile, 'createtime'=>time(),'code' => $num, 'ip' => $ip]);
  92. }
  93. return $info;
  94. } catch (ClientException $e) {
  95. echo $e->getErrorMessage() . PHP_EOL;
  96. } catch (ServerException $e) {
  97. echo $e->getErrorMessage() . PHP_EOL;
  98. }
  99. }
  100. }