mirror of
https://github.com/lkddi/nexusphp.git
synced 2026-04-14 12:30:49 +08:00
Introduce a configurable captcha manager with drivers for image, Cloudflare Turnstile, and Google reCAPTCHA, including fallback behaviour. Refactor login, signup, complain, and related flows to use the new abstraction while simplifying the legacy image endpoint. Document captcha environment options and restore classic defaults in .env.example. Signed-off-by: Qi HU <github@spcsky.com>
135 lines
4.1 KiB
PHP
135 lines
4.1 KiB
PHP
<?php
|
|
|
|
namespace App\Services\Captcha\Drivers;
|
|
|
|
use App\Services\Captcha\CaptchaDriverInterface;
|
|
use App\Services\Captcha\Exceptions\CaptchaValidationException;
|
|
|
|
class RecaptchaV2CaptchaDriver implements CaptchaDriverInterface
|
|
{
|
|
protected array $config;
|
|
|
|
public function __construct(array $config = [])
|
|
{
|
|
$this->config = $config;
|
|
}
|
|
|
|
public function isEnabled(): bool
|
|
{
|
|
return !empty($this->config['site_key']) && !empty($this->config['secret_key']);
|
|
}
|
|
|
|
public function render(array $context = []): string
|
|
{
|
|
if (!$this->isEnabled()) {
|
|
return '';
|
|
}
|
|
|
|
$labels = $context['labels'] ?? [];
|
|
$label = $labels['image'] ?? $labels['code'] ?? 'Security Check';
|
|
$theme = $this->config['theme'] ?? 'light';
|
|
$size = $this->config['size'] ?? 'normal';
|
|
$validSizes = ['compact', 'normal'];
|
|
if (!in_array($size, $validSizes, true)) {
|
|
$size = 'normal';
|
|
}
|
|
|
|
$attributes = sprintf(
|
|
'class="g-recaptcha" data-sitekey="%s" data-theme="%s" data-size="%s"',
|
|
htmlspecialchars($this->config['site_key'], ENT_QUOTES, 'UTF-8'),
|
|
htmlspecialchars($theme, ENT_QUOTES, 'UTF-8'),
|
|
htmlspecialchars($size, ENT_QUOTES, 'UTF-8')
|
|
);
|
|
|
|
return sprintf(
|
|
'<tr><td class="rowhead">%s</td><td align="left"><div %s></div>%s</td></tr>',
|
|
htmlspecialchars($label, ENT_QUOTES, 'UTF-8'),
|
|
$attributes,
|
|
'<script src="https://www.google.com/recaptcha/api.js" async defer></script>'
|
|
);
|
|
}
|
|
|
|
public function verify(array $payload, array $context = []): bool
|
|
{
|
|
$token = trim((string) ($payload['request']['g-recaptcha-response'] ?? ''));
|
|
|
|
if ($token === '') {
|
|
throw new CaptchaValidationException('Captcha verification token is missing.');
|
|
}
|
|
|
|
$secret = $this->config['secret_key'] ?? '';
|
|
|
|
if ($secret === '') {
|
|
throw new CaptchaValidationException('Captcha secret key is not configured.');
|
|
}
|
|
|
|
$data = [
|
|
'secret' => $secret,
|
|
'response' => $token,
|
|
];
|
|
|
|
$remoteIp = $context['ip'] ?? null;
|
|
|
|
if (!empty($remoteIp)) {
|
|
$data['remoteip'] = $remoteIp;
|
|
}
|
|
|
|
$result = $this->sendVerificationRequest('https://www.google.com/recaptcha/api/siteverify', $data);
|
|
|
|
if (!($result['success'] ?? false)) {
|
|
throw new CaptchaValidationException('Captcha verification failed.');
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
protected function sendVerificationRequest(string $url, array $data): array
|
|
{
|
|
$payload = http_build_query($data);
|
|
|
|
if (function_exists('curl_init')) {
|
|
$ch = curl_init($url);
|
|
curl_setopt_array($ch, [
|
|
CURLOPT_RETURNTRANSFER => true,
|
|
CURLOPT_POST => true,
|
|
CURLOPT_POSTFIELDS => $payload,
|
|
CURLOPT_TIMEOUT => 10,
|
|
CURLOPT_SSL_VERIFYPEER => true,
|
|
]);
|
|
|
|
$response = curl_exec($ch);
|
|
|
|
if ($response === false) {
|
|
$error = curl_error($ch);
|
|
curl_close($ch);
|
|
throw new CaptchaValidationException('Captcha verification request failed: ' . $error);
|
|
}
|
|
|
|
curl_close($ch);
|
|
} else {
|
|
$context = stream_context_create([
|
|
'http' => [
|
|
'method' => 'POST',
|
|
'header' => "Content-type: application/x-www-form-urlencoded\r\n",
|
|
'content' => $payload,
|
|
'timeout' => 10,
|
|
],
|
|
]);
|
|
|
|
$response = file_get_contents($url, false, $context);
|
|
|
|
if ($response === false) {
|
|
throw new CaptchaValidationException('Captcha verification request failed.');
|
|
}
|
|
}
|
|
|
|
$decoded = json_decode($response, true);
|
|
|
|
if (!is_array($decoded)) {
|
|
throw new CaptchaValidationException('Unexpected captcha verification response.');
|
|
}
|
|
|
|
return $decoded;
|
|
}
|
|
}
|