Sms.php 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  1. <?php
  2. namespace app\api\controller;
  3. use Alicode\Alisms;
  4. use app\admin\model\Smslog;
  5. use app\common\controller\Api;
  6. use app\common\library\Sms as Smslib;
  7. use app\common\model\User;
  8. use think\Hook;
  9. /**
  10. * 手机短信接口
  11. */
  12. class Sms extends Api
  13. {
  14. protected $noNeedLogin = '*';
  15. protected $noNeedRight = '*';
  16. public function SmsTemplate($TemplateCode, $phoneNumber, $TemplateParam,$event,$code)
  17. {
  18. $sendSmsRequest = [
  19. "TemplateCode" => $TemplateCode,
  20. "phoneNumber" => $phoneNumber,
  21. "TemplateParam" => $TemplateParam
  22. ];
  23. $res = Alisms::sendSmsCode($sendSmsRequest);
  24. // if($re)
  25. // print_r($res);die;
  26. // 短信发送记录
  27. $sms_model = new \app\common\model\Sms();
  28. $insert_data = [
  29. 'mobile' => $phoneNumber,
  30. 'event' => $event,
  31. 'code' => $code,
  32. 'times'=>1,
  33. 'createtime' => time(),
  34. ];
  35. $sms_model->insert($insert_data);
  36. return $res['Code'] == 'OK' ? true : false;
  37. }
  38. public function send_register(){
  39. $mobile = input('mobile');
  40. $event = 'register';
  41. $TemplateCode = "SMS_269130458";
  42. $phoneNumber = $mobile;
  43. $code = rand('0000','9999');
  44. $TemplateParam = json_encode(['code' => $code]);
  45. $this->SmsTemplate($TemplateCode, $phoneNumber, $TemplateParam,$event,$code);
  46. }
  47. /**
  48. * 发送验证码
  49. *
  50. * @ApiMethod (POST)
  51. * @param string $mobile 手机号
  52. * @param string $event 事件名称
  53. */
  54. public function send()
  55. {
  56. $mobile = $this->request->post("mobile");
  57. $event = $this->request->post("event");
  58. $event = $event ? $event : 'register';
  59. if (!$mobile || !\think\Validate::regex($mobile, "^1\d{10}$")) {
  60. $this->error(__('手机号不正确'));
  61. }
  62. $last = Smslib::get($mobile, $event);
  63. if ($last && time() - $last['createtime'] < 60) {
  64. $this->error(__('发送频繁'));
  65. }
  66. $ipSendTotal = \app\common\model\Sms::where(['ip' => $this->request->ip()])->whereTime('createtime', '-1 hours')->count();
  67. if ($ipSendTotal >= 5) {
  68. $this->error(__('发送频繁'));
  69. }
  70. if ($event) {
  71. $userinfo = User::getByMobile($mobile);
  72. if ($event == 'register' && $userinfo) {
  73. //已被注册
  74. $this->error(__('已被注册'));
  75. } elseif (in_array($event, ['changemobile']) && $userinfo) {
  76. //被占用
  77. $this->error(__('已被占用'));
  78. } elseif (in_array($event, ['changepwd', 'resetpwd']) && !$userinfo) {
  79. //未注册
  80. $this->error(__('未注册'));
  81. }
  82. }
  83. if (!Hook::get('sms_send')) {
  84. $this->error(__('请在后台插件管理安装短信验证插件'));
  85. }
  86. $ret = Smslib::send($mobile, null, $event);
  87. if ($ret) {
  88. $this->success(__('发送成功'));
  89. } else {
  90. $this->error(__('发送失败,请检查短信配置是否正确'));
  91. }
  92. }
  93. /**
  94. * 检测验证码
  95. *
  96. * @ApiMethod (POST)
  97. * @param string $mobile 手机号
  98. * @param string $event 事件名称
  99. * @param string $captcha 验证码
  100. */
  101. public function check()
  102. {
  103. $mobile = $this->request->post("mobile");
  104. $event = $this->request->post("event");
  105. $event = $event ? $event : 'register';
  106. $captcha = $this->request->post("captcha");
  107. if (!$mobile || !\think\Validate::regex($mobile, "^1\d{10}$")) {
  108. $this->error(__('手机号不正确'));
  109. }
  110. if ($event) {
  111. $userinfo = User::getByMobile($mobile);
  112. if ($event == 'register' && $userinfo) {
  113. //已被注册
  114. $this->error(__('已被注册'));
  115. } elseif (in_array($event, ['changemobile']) && $userinfo) {
  116. //被占用
  117. $this->error(__('已被占用'));
  118. } elseif (in_array($event, ['changepwd', 'resetpwd']) && !$userinfo) {
  119. //未注册
  120. $this->error(__('未注册'));
  121. }
  122. }
  123. $ret = Smslib::check($mobile, $captcha, $event);
  124. if ($ret) {
  125. $this->success(__('成功'));
  126. } else {
  127. $this->error(__('验证码不正确'));
  128. }
  129. }
  130. }