Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 
 
 
 

64 строки
1.8 KiB

  1. <?php
  2. /**
  3. * Created by PhpStorm.
  4. * User: zhengmingwei
  5. * Date: 2020/4/27
  6. * Time: 12:45 PM
  7. */
  8. namespace addons\unishop\controller;
  9. use app\common\library\Sms as Smslib;
  10. use addons\unishop\model\User;
  11. class Sms extends Base
  12. {
  13. protected $noNeedLogin = '*';
  14. protected $noNeedRight = '*';
  15. /**
  16. * 发送验证码
  17. *
  18. * @param string $mobile 手机号
  19. * @param string $event 事件名称
  20. */
  21. public function send()
  22. {
  23. $mobile = $this->request->post("mobile");
  24. $event = $this->request->post("event");
  25. $event = $event ? $event : 'register';
  26. if (!$mobile || !\think\Validate::regex($mobile, "^1\d{10}$")) {
  27. $this->error(__('手机号不正确'));
  28. }
  29. $last = Smslib::get($mobile, $event);
  30. if ($last && time() - $last['createtime'] < 60) {
  31. $this->error(__('发送频繁'));
  32. }
  33. $ipSendTotal = \app\common\model\Sms::where(['ip' => $this->request->ip()])->whereTime('createtime', '-1 hours')->count();
  34. if ($ipSendTotal >= 5) {
  35. $this->error(__('发送频繁'));
  36. }
  37. if ($event) {
  38. $userinfo = User::getByMobile($mobile);
  39. if ($event == 'register' && $userinfo) {
  40. //已被注册
  41. $this->error(__('手机号已被注册'));
  42. } elseif (in_array($event, ['changemobile']) && $userinfo) {
  43. //被占用
  44. $this->error(__('手机号已被占用'));
  45. } elseif (in_array($event, ['changepwd', 'resetpwd']) && !$userinfo) {
  46. //未注册
  47. $this->error(__('未注册'));
  48. }
  49. }
  50. $ret = Smslib::send($mobile, null, $event);
  51. if ($ret) {
  52. $this->success(__('发送成功'), 1);
  53. } else {
  54. $this->error(__('发送失败'), 0);
  55. }
  56. }
  57. }