CommController.php 3.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. <?php
  2. namespace App\Http\Controllers\Passport;
  3. use App\Http\Requests\Passport\CommSendEmailVerify;
  4. use Illuminate\Http\Request;
  5. use App\Http\Controllers\Controller;
  6. use Illuminate\Http\Exceptions\HttpResponseException;
  7. use Illuminate\Support\Facades\Mail;
  8. use App\Utils\Helper;
  9. use Illuminate\Support\Facades\Cache;
  10. use App\Jobs\SendEmailJob;
  11. use App\Models\InviteCode;
  12. use App\Utils\Dict;
  13. use App\Utils\CacheKey;
  14. use ReCaptcha\ReCaptcha;
  15. class CommController extends Controller
  16. {
  17. public function config()
  18. {
  19. return response([
  20. 'data' => [
  21. 'isEmailVerify' => (int)config('v2board.email_verify', 0) ? 1 : 0,
  22. 'isInviteForce' => (int)config('v2board.invite_force', 0) ? 1 : 0,
  23. 'emailWhitelistSuffix' => (int)config('v2board.email_whitelist_enable', 0)
  24. ? $this->getEmailSuffix()
  25. : 0,
  26. 'isRecaptcha' => (int)config('v2board.recaptcha_enable', 0) ? 1 : 0,
  27. 'recaptchaSiteKey' => config('v2board.recaptcha_site_key')
  28. ]
  29. ]);
  30. }
  31. private function isEmailVerify()
  32. {
  33. return response([
  34. 'data' => (int)config('v2board.email_verify', 0) ? 1 : 0
  35. ]);
  36. }
  37. public function sendEmailVerify(CommSendEmailVerify $request)
  38. {
  39. if ((int)config('v2board.recaptcha_enable', 0)) {
  40. $recaptcha = new ReCaptcha(config('v2board.recaptcha_key'));
  41. $recaptchaResp = $recaptcha->verify($request->input('recaptcha_data'));
  42. if (!$recaptchaResp->isSuccess()) {
  43. abort(500, '验证码有误');
  44. }
  45. }
  46. $email = $request->input('email');
  47. if (Cache::get(CacheKey::get('LAST_SEND_EMAIL_VERIFY_TIMESTAMP', $email))) {
  48. abort(500, '验证码已发送,请过一会再请求');
  49. }
  50. $code = rand(100000, 999999);
  51. $subject = config('v2board.app_name', 'V2Board') . '邮箱验证码';
  52. SendEmailJob::dispatch([
  53. 'email' => $email,
  54. 'subject' => $subject,
  55. 'template_name' => 'verify',
  56. 'template_value' => [
  57. 'name' => config('v2board.app_name', 'V2Board'),
  58. 'code' => $code,
  59. 'url' => config('v2board.app_url')
  60. ]
  61. ]);
  62. Cache::put(CacheKey::get('EMAIL_VERIFY_CODE', $email), $code, 300);
  63. Cache::put(CacheKey::get('LAST_SEND_EMAIL_VERIFY_TIMESTAMP', $email), time(), 60);
  64. return response([
  65. 'data' => true
  66. ]);
  67. }
  68. public function pv(Request $request)
  69. {
  70. $inviteCode = InviteCode::where('code', $request->input('invite_code'))->first();
  71. if ($inviteCode) {
  72. $inviteCode->pv = $inviteCode->pv + 1;
  73. $inviteCode->save();
  74. }
  75. return response([
  76. 'data' => true
  77. ]);
  78. }
  79. private function getEmailSuffix()
  80. {
  81. $suffix = config('v2board.email_whitelist_suffix', Dict::EMAIL_WHITELIST_SUFFIX_DEFAULT);
  82. if (!is_array($suffix)) {
  83. return preg_split('/,/', $suffix);
  84. }
  85. return $suffix;
  86. }
  87. }