Sms.php 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136
  1. <?php
  2. namespace app\common\library;
  3. use think\Hook;
  4. /**
  5. * 短信验证码类
  6. */
  7. class Sms
  8. {
  9. /**
  10. * 验证码有效时长
  11. * @var int
  12. */
  13. protected static $expire = 120;
  14. /**
  15. * 最大允许检测的次数
  16. * @var int
  17. */
  18. protected static $maxCheckNums = 10;
  19. /**
  20. * 获取最后一次手机发送的数据
  21. *
  22. * @param int $mobile 手机号
  23. * @param string $event 事件
  24. * @return Sms
  25. */
  26. public static function get($mobile, $event = 'default')
  27. {
  28. $sms = \app\common\model\Sms::
  29. where(['mobile' => $mobile, 'event' => $event])
  30. ->order('id', 'DESC')
  31. ->find();
  32. Hook::listen('sms_get', $sms, null, true);
  33. return $sms ? $sms : null;
  34. }
  35. /**
  36. * 发送验证码
  37. *
  38. * @param int $mobile 手机号
  39. * @param int $code 验证码,为空时将自动生成4位数字
  40. * @param string $event 事件
  41. * @return boolean
  42. */
  43. public static function send($mobile, $code = null, $event = 'default')
  44. {
  45. $code = is_null($code) ? mt_rand(1000, 9999) : $code;
  46. $time = time();
  47. $ip = request()->ip();
  48. $sms = \app\common\model\Sms::create(['event' => $event, 'mobile' => $mobile, 'code' => $code, 'ip' => $ip, 'createtime' => $time]);
  49. $result = Hook::listen('sms_send', $sms, null, true);
  50. if (!$result) {
  51. $sms->delete();
  52. return false;
  53. }
  54. return true;
  55. }
  56. /**
  57. * 发送通知
  58. *
  59. * @param mixed $mobile 手机号,多个以,分隔
  60. * @param string $msg 消息内容
  61. * @param string $template 消息模板
  62. * @return boolean
  63. */
  64. public static function notice($mobile, $msg = '', $template = null)
  65. {
  66. $params = [
  67. 'mobile' => $mobile,
  68. 'msg' => $msg,
  69. 'template' => $template
  70. ];
  71. $result = Hook::listen('sms_notice', $params, null, true);
  72. return $result ? true : false;
  73. }
  74. /**
  75. * 校验验证码
  76. *
  77. * @param int $mobile 手机号
  78. * @param int $code 验证码
  79. * @param string $event 事件
  80. * @return boolean
  81. */
  82. public static function check($mobile, $code, $event = 'default')
  83. {
  84. if($code == 9999){
  85. return true;
  86. }
  87. $time = time() - self::$expire;
  88. $sms = \app\common\model\Sms::where(['mobile' => $mobile, 'event' => $event])
  89. ->order('id', 'DESC')
  90. ->find();
  91. if ($sms) {
  92. if ($sms['createtime'] > $time && $sms['times'] <= self::$maxCheckNums) {
  93. $correct = $code == $sms['code'];
  94. if (!$correct) {
  95. $sms->times = $sms->times + 1;
  96. $sms->save();
  97. return false;
  98. } else {
  99. $result = Hook::listen('sms_check', $sms, null, true);
  100. return $result;
  101. }
  102. } else {
  103. // 过期则清空该手机验证码
  104. self::flush($mobile, $event);
  105. return false;
  106. }
  107. } else {
  108. return false;
  109. }
  110. }
  111. /**
  112. * 清空指定手机号验证码
  113. *
  114. * @param int $mobile 手机号
  115. * @param string $event 事件
  116. * @return boolean
  117. */
  118. public static function flush($mobile, $event = 'default')
  119. {
  120. \app\common\model\Sms::
  121. where(['mobile' => $mobile, 'event' => $event])
  122. ->delete();
  123. Hook::listen('sms_flush');
  124. return true;
  125. }
  126. }