Sms.php 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. <?php
  2. namespace app\api\controller;
  3. use app\common\controller\Api;
  4. use app\common\library\Sms as Smslib;
  5. use app\common\model\User;
  6. use think\Hook;
  7. /**
  8. * 发送验证码
  9. */
  10. class Sms extends Api
  11. {
  12. protected $noNeedLogin = '*';
  13. protected $noNeedRight = '*';
  14. /**
  15. * 发送验证码
  16. * @ApiMethod (POST)
  17. * @ApiParams (name="mobile", type="string", required=true, description="手机号")
  18. */
  19. public function send()
  20. {
  21. $mobile = $this->request->post("mobile");
  22. $event = $this->request->post("event");
  23. $event = $event ? $event : 'register';
  24. if (!$mobile || !\think\Validate::regex($mobile, "^1\d{10}$")) {
  25. $this->error(__('手机号不正确'));
  26. }
  27. $last = Smslib::get($mobile, $event);
  28. if ($last && time() - $last['createtime'] < 60) {
  29. $this->error(__('发送频繁'));
  30. }
  31. $ipSendTotal = \app\common\model\Sms::where(['ip' => $this->request->ip()])->whereTime('createtime', '-1 hours')->count();
  32. if ($ipSendTotal >= 5) {
  33. $this->error(__('发送频繁'));
  34. }
  35. if ($event) {
  36. $userinfo = User::getByMobile($mobile);
  37. if ($event == 'register' && $userinfo) {
  38. //已被注册
  39. //$this->error(__('已被注册'));
  40. } elseif (in_array($event, ['changemobile']) && $userinfo) {
  41. //被占用
  42. $this->error(__('已被占用'));
  43. } elseif (in_array($event, ['changepwd', 'resetpwd']) && !$userinfo) {
  44. //未注册
  45. $this->error(__('未注册'));
  46. }
  47. }
  48. if (!Hook::get('sms_send')) {
  49. $this->error(__('请在后台插件管理安装短信验证插件'));
  50. }
  51. $ret = Smslib::send($mobile, null, $event);
  52. if ($ret) {
  53. $this->success(__('发送成功'));
  54. } else {
  55. $this->error(__('发送失败,请检查短信配置是否正确'));
  56. }
  57. }
  58. /**
  59. * 检测验证码
  60. *
  61. * @ApiMethod (POST)
  62. * @param string $mobile 手机号
  63. * @param string $event 事件名称
  64. * @param string $captcha 验证码
  65. */
  66. public function check()
  67. {
  68. $mobile = $this->request->post("mobile");
  69. $event = $this->request->post("event");
  70. $event = $event ? $event : 'register';
  71. $captcha = $this->request->post("captcha");
  72. if (!$mobile || !\think\Validate::regex($mobile, "^1\d{10}$")) {
  73. $this->error(__('手机号不正确'));
  74. }
  75. if ($event) {
  76. $userinfo = User::getByMobile($mobile);
  77. if ($event == 'register' && $userinfo) {
  78. //已被注册
  79. $this->error(__('已被注册'));
  80. } elseif (in_array($event, ['changemobile']) && $userinfo) {
  81. //被占用
  82. $this->error(__('已被占用'));
  83. } elseif (in_array($event, ['changepwd', 'resetpwd']) && !$userinfo) {
  84. //未注册
  85. $this->error(__('未注册'));
  86. }
  87. }
  88. $ret = Smslib::check($mobile, $captcha, $event);
  89. if ($ret) {
  90. $this->success(__('成功'));
  91. } else {
  92. $this->error(__('验证码不正确'));
  93. }
  94. }
  95. }