mirror of
https://github.com/v2board/v2board.git
synced 2024-11-10 17:49:11 +08:00
100 lines
3.2 KiB
PHP
100 lines
3.2 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
|
|
{
|
|
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, '验证码有误');
|
|
}
|
|
}
|
|
$email = $request->input('email');
|
|
if (Cache::get(CacheKey::get('LAST_SEND_EMAIL_VERIFY_TIMESTAMP', $email))) {
|
|
abort(500, '验证码已发送,请过一会再请求');
|
|
}
|
|
$code = rand(100000, 999999);
|
|
$subject = config('v2board.app_name', 'V2Board') . '邮箱验证码';
|
|
|
|
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;
|
|
}
|
|
}
|