VerificationCodeController.php 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  1. <?php
  2. // +—————————————————————————————————————————————————————————————————————
  3. // | Created by Yunbao
  4. // +—————————————————————————————————————————————————————————————————————
  5. // | Copyright (c) 2013~2022 http://www.yunbaokj.com All rights reserved.
  6. // +—————————————————————————————————————————————————————————————————————
  7. // | Author: https://gitee.com/yunbaokeji
  8. // +—————————————————————————————————————————————————————————————————————
  9. // | Date: 2022-02-17
  10. // +—————————————————————————————————————————————————————————————————————
  11. namespace app\user\controller;
  12. use cmf\controller\HomeBaseController;
  13. use think\facade\Validate;
  14. class VerificationCodeController extends HomeBaseController
  15. {
  16. public function send()
  17. {
  18. $validate = new \think\Validate([
  19. 'username' => 'require',
  20. 'captcha' => 'require',
  21. ]);
  22. $validate->message([
  23. 'username.require' => '请输入手机号或邮箱!',
  24. 'captcha.require' => '图片验证码不能为空',
  25. ]);
  26. $data = $this->request->param();
  27. if (!$validate->check($data)) {
  28. $this->error($validate->getError());
  29. }
  30. $captchaId = empty($data['captcha_id']) ? '' : $data['captcha_id'];
  31. if (!cmf_captcha_check($data['captcha'], $captchaId, false)) {
  32. $this->error('图片验证码错误!');
  33. }
  34. $registerCaptcha = session('register_captcha');
  35. session('register_captcha', $data['captcha']);
  36. if ($registerCaptcha == $data['captcha']) {
  37. cmf_captcha_check($data['captcha'], $captchaId, true);
  38. $this->error('请输入新图片验证码!');
  39. }
  40. $accountType = '';
  41. if (Validate::is($data['username'], 'email')) {
  42. $accountType = 'email';
  43. } else if (cmf_check_mobile($data['username'])) {
  44. $accountType = 'mobile';
  45. } else {
  46. $this->error("请输入正确的手机或者邮箱格式!");
  47. }
  48. if (isset($data['type']) && $data['type'] == 'register') {
  49. if ($accountType == 'email') {
  50. $findUserCount = db('user')->where('user_email', $data['username'])->count();
  51. } else if ($accountType == 'mobile') {
  52. $findUserCount = db('user')->where('mobile', $data['username'])->count();
  53. }
  54. if ($findUserCount > 0) {
  55. $this->error('账号已注册!');
  56. }
  57. }
  58. //TODO 限制 每个ip 的发送次数
  59. $code = cmf_get_verification_code($data['username']);
  60. if (empty($code)) {
  61. $this->error("验证码发送过多,请明天再试!");
  62. }
  63. if ($accountType == 'email') {
  64. $emailTemplate = cmf_get_option('email_template_verification_code');
  65. $user = cmf_get_current_user();
  66. $username = empty($user['user_nicename']) ? $user['user_login'] : $user['user_nicename'];
  67. $message = htmlspecialchars_decode($emailTemplate['template']);
  68. $message = $this->view->display($message, ['code' => $code, 'username' => $username]);
  69. $subject = empty($emailTemplate['subject']) ? 'ThinkCMF验证码' : $emailTemplate['subject'];
  70. $result = cmf_send_email($data['username'], $subject, $message);
  71. if (empty($result['error'])) {
  72. cmf_verification_code_log($data['username'], $code);
  73. $this->success("验证码已经发送成功!");
  74. } else {
  75. $this->error("邮箱验证码发送失败:" . $result['message']);
  76. }
  77. } else if ($accountType == 'mobile') {
  78. $param = ['mobile' => $data['username'], 'code' => $code];
  79. $result = hook_one("send_mobile_verification_code", $param);
  80. if ($result !== false && !empty($result['error'])) {
  81. $this->error($result['message']);
  82. }
  83. if ($result === false) {
  84. $this->error('未安装验证码发送插件,请联系管理员!');
  85. }
  86. $expireTime = empty($result['expire_time']) ? 0 : $result['expire_time'];
  87. cmf_verification_code_log($data['username'], $code, $expireTime);
  88. if (!empty($result['message'])) {
  89. $this->success($result['message']);
  90. } else {
  91. $this->success('验证码已经发送成功!');
  92. }
  93. }
  94. }
  95. }