Sms.php 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143
  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. $sms = \app\common\model\Sms::create(['event' => $event, 'mobile' => $mobile, 'code' => $code, 'createtime' => $time]);
  48. $result = Hook::listen('sms_send', $sms, null, true);
  49. if (!$result)
  50. {
  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. $time = time() - self::$expire;
  85. $sms = \app\common\model\Sms::where(['mobile' => $mobile, 'event' => $event])
  86. ->order('id', 'DESC')
  87. ->find();
  88. if ($sms)
  89. {
  90. if ($sms['createtime'] > $time && $sms['times'] <= self::$maxCheckNums)
  91. {
  92. $correct = $code == $sms['code'];
  93. if (!$correct)
  94. {
  95. $sms->times = $sms->times + 1;
  96. $sms->save();
  97. return FALSE;
  98. }
  99. else
  100. {
  101. $result = Hook::listen('sms_check', $sms, null, true);
  102. return $result;
  103. }
  104. }
  105. else
  106. {
  107. // 过期则清空该手机验证码
  108. self::flush($mobile, $event);
  109. return FALSE;
  110. }
  111. }
  112. else
  113. {
  114. return FALSE;
  115. }
  116. }
  117. /**
  118. * 清空指定手机号验证码
  119. *
  120. * @param int $mobile 手机号
  121. * @param string $event 事件
  122. * @return boolean
  123. */
  124. public static function flush($mobile, $event = 'default')
  125. {
  126. \app\common\model\Sms::
  127. where(['mobile' => $mobile, 'event' => $event])
  128. ->delete();
  129. Hook::listen('sms_flush');
  130. return TRUE;
  131. }
  132. }