mirror of
				https://github.com/v2board/v2board.git
				synced 2025-10-31 09:21:46 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			101 lines
		
	
	
		
			3.3 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			101 lines
		
	
	
		
			3.3 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| namespace App\Http\Controllers\Passport;
 | |
| 
 | |
| use App\Http\Requests\Passport\CommSendEmailVerify;
 | |
| use Illuminate\Http\Request;
 | |
| use App\Http\Controllers\Controller;
 | |
| use Illuminate\Http\Exceptions\HttpResponseException;
 | |
| use Illuminate\Support\Facades\Mail;
 | |
| use App\Utils\Helper;
 | |
| use Illuminate\Support\Facades\Cache;
 | |
| use App\Jobs\SendEmailJob;
 | |
| use App\Models\InviteCode;
 | |
| use App\Utils\Dict;
 | |
| use App\Utils\CacheKey;
 | |
| use ReCaptcha\ReCaptcha;
 | |
| 
 | |
| class CommController extends Controller
 | |
| {
 | |
|     // TODO: remove on 1.5.5
 | |
|     public function config()
 | |
|     {
 | |
|         return response([
 | |
|             'data' => [
 | |
|                 'isEmailVerify' => (int)config('v2board.email_verify', 0) ? 1 : 0,
 | |
|                 'isInviteForce' => (int)config('v2board.invite_force', 0) ? 1 : 0,
 | |
|                 'emailWhitelistSuffix' => (int)config('v2board.email_whitelist_enable', 0)
 | |
|                     ? $this->getEmailSuffix()
 | |
|                     : 0,
 | |
|                 'isRecaptcha' => (int)config('v2board.recaptcha_enable', 0) ? 1 : 0,
 | |
|                 'recaptchaSiteKey' => config('v2board.recaptcha_site_key'),
 | |
|                 'appDescription' => config('v2board.app_description'),
 | |
|                 'appUrl' => config('v2board.app_url')
 | |
|             ]
 | |
|         ]);
 | |
|     }
 | |
| 
 | |
|     private function isEmailVerify()
 | |
|     {
 | |
|         return response([
 | |
|             'data' => (int)config('v2board.email_verify', 0) ? 1 : 0
 | |
|         ]);
 | |
|     }
 | |
| 
 | |
|     public function sendEmailVerify(CommSendEmailVerify $request)
 | |
|     {
 | |
|         if ((int)config('v2board.recaptcha_enable', 0)) {
 | |
|             $recaptcha = new ReCaptcha(config('v2board.recaptcha_key'));
 | |
|             $recaptchaResp = $recaptcha->verify($request->input('recaptcha_data'));
 | |
|             if (!$recaptchaResp->isSuccess()) {
 | |
|                 abort(500, __('Invalid code is incorrect'));
 | |
|             }
 | |
|         }
 | |
|         $email = $request->input('email');
 | |
|         if (Cache::get(CacheKey::get('LAST_SEND_EMAIL_VERIFY_TIMESTAMP', $email))) {
 | |
|             abort(500, __('Email verification code has been sent, please request again later'));
 | |
|         }
 | |
|         $code = rand(100000, 999999);
 | |
|         $subject = config('v2board.app_name', 'V2Board') . __('Email verification code');
 | |
| 
 | |
|         SendEmailJob::dispatch([
 | |
|             'email' => $email,
 | |
|             'subject' => $subject,
 | |
|             'template_name' => 'verify',
 | |
|             'template_value' => [
 | |
|                 'name' => config('v2board.app_name', 'V2Board'),
 | |
|                 'code' => $code,
 | |
|                 'url' => config('v2board.app_url')
 | |
|             ]
 | |
|         ]);
 | |
| 
 | |
|         Cache::put(CacheKey::get('EMAIL_VERIFY_CODE', $email), $code, 300);
 | |
|         Cache::put(CacheKey::get('LAST_SEND_EMAIL_VERIFY_TIMESTAMP', $email), time(), 60);
 | |
|         return response([
 | |
|             'data' => true
 | |
|         ]);
 | |
|     }
 | |
| 
 | |
|     public function pv(Request $request)
 | |
|     {
 | |
|         $inviteCode = InviteCode::where('code', $request->input('invite_code'))->first();
 | |
|         if ($inviteCode) {
 | |
|             $inviteCode->pv = $inviteCode->pv + 1;
 | |
|             $inviteCode->save();
 | |
|         }
 | |
| 
 | |
|         return response([
 | |
|             'data' => true
 | |
|         ]);
 | |
|     }
 | |
| 
 | |
|     private function getEmailSuffix()
 | |
|     {
 | |
|         $suffix = config('v2board.email_whitelist_suffix', Dict::EMAIL_WHITELIST_SUFFIX_DEFAULT);
 | |
|         if (!is_array($suffix)) {
 | |
|             return preg_split('/,/', $suffix);
 | |
|         }
 | |
|         return $suffix;
 | |
|     }
 | |
| }
 |