Sms.php 4.0 KB

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