截流自动化的商城平台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

SmsLogic.php 3.7KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | likeshop开源商城系统
  4. // +----------------------------------------------------------------------
  5. // | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
  6. // | gitee下载:https://gitee.com/likeshop_gitee
  7. // | github下载:https://github.com/likeshop-github
  8. // | 访问官网:https://www.likeshop.cn
  9. // | 访问社区:https://home.likeshop.cn
  10. // | 访问手册:http://doc.likeshop.cn
  11. // | 微信公众号:likeshop技术社区
  12. // | likeshop系列产品在gitee、github等公开渠道开源版本可免费商用,未经许可不能去除前后端官方版权标识
  13. // | likeshop系列产品收费版本务必购买商业授权,购买去版权授权后,方可去除前后端官方版权标识
  14. // | 禁止对系统程序代码以任何目的,任何形式的再发布
  15. // | likeshop团队版权所有并拥有最终解释权
  16. // +----------------------------------------------------------------------
  17. // | author: likeshop.cn.team
  18. // +----------------------------------------------------------------------
  19. namespace app\common\logic;
  20. use app\common\basics\Logic;
  21. use app\common\enum\NoticeEnum;
  22. use app\common\model\SmsLog;
  23. /**
  24. * 短信
  25. * Class SmsLogic
  26. * @package app\common\logic
  27. */
  28. class SmsLogic extends Logic
  29. {
  30. protected static $expire_time = 300; //验证码有效时间
  31. protected static $check_num = 5; //验证次数
  32. /**
  33. * Notes: 发送验证码
  34. * @param $mobile
  35. * @param $scene
  36. * @param int $user_id
  37. * @author 段誉(2021/6/23 7:17)
  38. * @return string
  39. */
  40. public static function send($mobile, $scene, $user_id = 0)
  41. {
  42. try {
  43. $code = create_sms_code(4);
  44. $send_data = [
  45. 'scene' => NoticeEnum::SMS_SCENE[$scene],
  46. 'mobile' => $mobile,
  47. 'params' => ['code' => $code]
  48. ];
  49. if (!empty($user_id)) {
  50. $send_data['user_id'] = $user_id;
  51. }
  52. $res = event('Notice', $send_data);
  53. if (false === $res) {
  54. throw new \Exception('发送失败');
  55. }
  56. return true;
  57. } catch (\Exception $e) {
  58. return $e->getMessage();
  59. }
  60. }
  61. /**
  62. * Notes: 验证短信验证码是否正确
  63. * @param $message_key
  64. * @param $mobile
  65. * @param int $code
  66. * @author 段誉(2021/6/23 2:53)
  67. * @return bool
  68. * @remark 有效时间,检测次数内短信验证码是否正确
  69. */
  70. public static function check($message_key, $mobile, $code = 0)
  71. {
  72. $log = SmsLog::where([
  73. 'mobile' => $mobile,
  74. 'message_key' => $message_key,
  75. 'is_verify' => 0
  76. ])->order('id desc')->find();
  77. if (empty($log)) {
  78. self::$error = '验证码错误';
  79. return false;
  80. }
  81. $diff_time = time() - ($log->getData('create_time'));
  82. if ($diff_time < self::$expire_time && $log['check_num'] <= self::$check_num) {
  83. $check_num = $log['check_num'] + 1;
  84. if ($log['code'] == $code) {
  85. SmsLog::where(['id' => $log['id']])->update([
  86. 'is_verify' => 1,
  87. 'check_num' => $check_num,
  88. 'update_time' => time()
  89. ]);
  90. return true;
  91. }
  92. SmsLog::where(['id' => $log['id']])->update([
  93. 'check_num' => $check_num,
  94. 'update_time' => time()
  95. ]);
  96. self::$error = '验证码错误!';
  97. return false;
  98. }
  99. self::$error = '验证码错误或失败次数过多';
  100. return false;
  101. }
  102. }