Ems.php 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144
  1. <?php
  2. namespace app\common\library;
  3. use think\Hook;
  4. /**
  5. * 邮箱验证码类
  6. */
  7. class Ems
  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 $email 邮箱
  23. * @param string $event 事件
  24. * @return Ems
  25. */
  26. public static function get($email, $event = 'default')
  27. {
  28. $ems = \app\common\model\Ems::
  29. where(['email' => $email, 'event' => $event])
  30. ->order('id', 'DESC')
  31. ->find();
  32. Hook::listen('ems_get', $ems, null, true);
  33. return $ems ? $ems : NULL;
  34. }
  35. /**
  36. * 发送验证码
  37. *
  38. * @param int $email 邮箱
  39. * @param int $code 验证码,为空时将自动生成4位数字
  40. * @param string $event 事件
  41. * @return boolean
  42. */
  43. public static function send($email, $code = NULL, $event = 'default')
  44. {
  45. $code = is_null($code) ? mt_rand(1000, 9999) : $code;
  46. $time = time();
  47. $ip = request()->ip();
  48. $ems = \app\common\model\Ems::create(['event' => $event, 'email' => $email, 'code' => $code, 'ip' => $ip, 'createtime' => $time]);
  49. $result = Hook::listen('ems_send', $ems, null, true);
  50. if (!$result)
  51. {
  52. $ems->delete();
  53. return FALSE;
  54. }
  55. return TRUE;
  56. }
  57. /**
  58. * 发送通知
  59. *
  60. * @param mixed $email 邮箱,多个以,分隔
  61. * @param string $msg 消息内容
  62. * @param string $template 消息模板
  63. * @return boolean
  64. */
  65. public static function notice($email, $msg = '', $template = NULL)
  66. {
  67. $params = [
  68. 'email' => $email,
  69. 'msg' => $msg,
  70. 'template' => $template
  71. ];
  72. $result = Hook::listen('ems_notice', $params, null, true);
  73. return $result ? TRUE : FALSE;
  74. }
  75. /**
  76. * 校验验证码
  77. *
  78. * @param int $email 邮箱
  79. * @param int $code 验证码
  80. * @param string $event 事件
  81. * @return boolean
  82. */
  83. public static function check($email, $code, $event = 'default')
  84. {
  85. $time = time() - self::$expire;
  86. $ems = \app\common\model\Ems::where(['email' => $email, 'event' => $event])
  87. ->order('id', 'DESC')
  88. ->find();
  89. if ($ems)
  90. {
  91. if (strtotime($ems['createtime']) > $time && $ems['times'] <= self::$maxCheckNums)
  92. {
  93. $correct = $code == $ems['code'];
  94. if (!$correct)
  95. {
  96. $ems->times = $ems->times + 1;
  97. $ems->save();
  98. return FALSE;
  99. }
  100. else
  101. {
  102. $result = Hook::listen('ems_check', $ems, null, true);
  103. return TRUE;
  104. }
  105. }
  106. else
  107. {
  108. // 过期则清空该邮箱验证码
  109. self::flush($email, $event);
  110. return FALSE;
  111. }
  112. }
  113. else
  114. {
  115. return FALSE;
  116. }
  117. }
  118. /**
  119. * 清空指定邮箱验证码
  120. *
  121. * @param int $email 邮箱
  122. * @param string $event 事件
  123. * @return boolean
  124. */
  125. public static function flush($email, $event = 'default')
  126. {
  127. \app\common\model\Ems::
  128. where(['email' => $email, 'event' => $event])
  129. ->delete();
  130. Hook::listen('ems_flush');
  131. return TRUE;
  132. }
  133. }