Sms.php 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  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. $member = Db::name('store_member')
  32. ->where('phone',$phone)
  33. ->where('is_deleted',0)
  34. ->count();
  35. switch ($event){
  36. case 'register':
  37. if ($member) $this->error('手机号已注册');
  38. break;
  39. case 'forgetpwd':
  40. if (!$member) $this->error('手机号未注册');
  41. break;
  42. }
  43. //发送阿里云短信
  44. $ret = $this->accessKeyClient($event, $phone, mt_rand(100000, 999999));
  45. if ($ret['Code'] === 'OK') {
  46. $this->success('发送成功!');
  47. } elseif ($ret['Code'] === 'isv.BUSINESS_LIMIT_CONTROL') {
  48. $this->error('发送太过频繁!');
  49. } else {
  50. $this->error($ret['msg']);
  51. }
  52. }
  53. function accessKeyClient($event, $mobile, $num)
  54. {
  55. $ali_accesskey = 'LTAI5tQwNHYvwdtzrwNY4RQb';
  56. $ali_accesskey_secret = 'gV6tFX3P6jap2HlQvRzICzM2WQptf5';
  57. $templateCode = 'SMS_243575114';
  58. AlibabaCloud::accessKeyClient($ali_accesskey, $ali_accesskey_secret)
  59. ->regionId('cn-hangzhou')
  60. ->asDefaultClient();
  61. try {
  62. $result = AlibabaCloud::rpc()
  63. ->product('Dysmsapi')
  64. // ->scheme('https') // https | http
  65. ->version('2017-05-25')
  66. ->action('SendSms')
  67. ->method('POST')
  68. ->host('dysmsapi.aliyuncs.com')
  69. ->options([
  70. 'query' => [
  71. 'PhoneNumbers' => $mobile,
  72. 'SignName' => '中科数艺',
  73. 'TemplateCode' => $templateCode,
  74. 'TemplateParam' => '{"code":' . $num . '}',
  75. ],
  76. ])
  77. ->request();
  78. $info = $result->toArray();
  79. if ($info['Code'] == 'OK') {
  80. $ip = request()->ip();
  81. Db::name('store_sms')->insert(['event' => $event, 'mobile' => $mobile, 'createtime'=>time(),'code' => $num, 'ip' => $ip]);
  82. }
  83. return $info;
  84. } catch (ClientException $e) {
  85. echo $e->getErrorMessage() . PHP_EOL;
  86. } catch (ServerException $e) {
  87. echo $e->getErrorMessage() . PHP_EOL;
  88. }
  89. }
  90. }