Sms.php 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  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:找回密码;change:被更换手机号;new:新的手机号
  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. case 'change':
  53. if (!$member) $this->error('手机号未注册');
  54. break;
  55. case 'new':
  56. if ($member) $this->error('手机号已注册');
  57. break;
  58. }
  59. //发送阿里云短信
  60. $ret = $this->accessKeyClient($event, $phone, mt_rand(100000, 999999));
  61. if ($ret['Code'] === 'OK') {
  62. $this->success('发送成功!');
  63. } elseif ($ret['Code'] === 'isv.BUSINESS_LIMIT_CONTROL') {
  64. $this->error('发送太过频繁!');
  65. } else {
  66. $this->error($ret['msg']);
  67. }
  68. }
  69. function accessKeyClient($event, $mobile, $num)
  70. {
  71. $ali_accesskey = 'LTAI5tAVV4VEU4vFVqpune1Q';
  72. $ali_accesskey_secret = 'IMRENgb7kQsjLXfJ33aCyeTLeNj9DH';
  73. $templateCode = 'SMS_243462790';
  74. AlibabaCloud::accessKeyClient($ali_accesskey, $ali_accesskey_secret)
  75. ->regionId('cn-hangzhou')
  76. ->asDefaultClient();
  77. try {
  78. $result = AlibabaCloud::rpc()
  79. ->product('Dysmsapi')
  80. // ->scheme('https') // https | http
  81. ->version('2017-05-25')
  82. ->action('SendSms')
  83. ->method('POST')
  84. ->host('dysmsapi.aliyuncs.com')
  85. ->options([
  86. 'query' => [
  87. 'PhoneNumbers' => $mobile,
  88. 'SignName' => '头像网络科技',
  89. 'TemplateCode' => $templateCode,
  90. 'TemplateParam' => '{"code":' . $num . '}',
  91. ],
  92. ])
  93. ->request();
  94. $info = $result->toArray();
  95. if ($info['Code'] == 'OK') {
  96. $ip = request()->ip();
  97. Db::name('store_sms')->insert(['event' => $event, 'mobile' => $mobile, 'createtime'=>time(),'code' => $num, 'ip' => $ip]);
  98. }
  99. return $info;
  100. } catch (ClientException $e) {
  101. echo $e->getErrorMessage() . PHP_EOL;
  102. } catch (ServerException $e) {
  103. echo $e->getErrorMessage() . PHP_EOL;
  104. }
  105. }
  106. }