mirror of
https://github.com/vichan-devel/vichan.git
synced 2024-11-30 18:24:29 +01:00
Fix CaptchaQueries naming
This commit is contained in:
parent
af8240e166
commit
018da09ac5
@ -19,7 +19,7 @@ class RemoteCaptchaQuery {
|
|||||||
* @param string $secret Server side secret.
|
* @param string $secret Server side secret.
|
||||||
* @return CaptchaRemoteQueries A new captcha query instance.
|
* @return CaptchaRemoteQueries A new captcha query instance.
|
||||||
*/
|
*/
|
||||||
public static function with_recaptcha(HttpDriver $http, string $secret): RemoteCaptchaQuery {
|
public static function withRecaptcha(HttpDriver $http, string $secret): RemoteCaptchaQuery {
|
||||||
return new self($http, $secret, 'https://www.google.com/recaptcha/api/siteverify');
|
return new self($http, $secret, 'https://www.google.com/recaptcha/api/siteverify');
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -30,7 +30,7 @@ class RemoteCaptchaQuery {
|
|||||||
* @param string $secret Server side secret.
|
* @param string $secret Server side secret.
|
||||||
* @return CaptchaRemoteQueries A new captcha query instance.
|
* @return CaptchaRemoteQueries A new captcha query instance.
|
||||||
*/
|
*/
|
||||||
public static function with_hcaptcha(HttpDriver $http, string $secret): RemoteCaptchaQuery {
|
public static function withHCaptcha(HttpDriver $http, string $secret): RemoteCaptchaQuery {
|
||||||
return new self($http, $secret, 'https://hcaptcha.com/siteverify');
|
return new self($http, $secret, 'https://hcaptcha.com/siteverify');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
4
post.php
4
post.php
@ -590,7 +590,7 @@ if (isset($_POST['delete'])) {
|
|||||||
error($config['error']['bot']);
|
error($config['error']['bot']);
|
||||||
}
|
}
|
||||||
$response = $_POST['g-recaptcha-response'];
|
$response = $_POST['g-recaptcha-response'];
|
||||||
$query = RemoteCaptchaQuery::with_recaptcha($context->getHttpDriver(), $config['recaptcha_private']);
|
$query = RemoteCaptchaQuery::withRecaptcha($context->getHttpDriver(), $config['recaptcha_private']);
|
||||||
}
|
}
|
||||||
// hCaptcha
|
// hCaptcha
|
||||||
elseif ($config['hcaptcha']) {
|
elseif ($config['hcaptcha']) {
|
||||||
@ -598,7 +598,7 @@ if (isset($_POST['delete'])) {
|
|||||||
error($config['error']['bot']);
|
error($config['error']['bot']);
|
||||||
}
|
}
|
||||||
$response = $_POST['g-recaptcha-response'];
|
$response = $_POST['g-recaptcha-response'];
|
||||||
$query = RemoteCaptchaQuery::with_hcaptcha($context->getHttpDriver(), $config['hcaptcha_private']);
|
$query = RemoteCaptchaQuery::withHCaptcha($context->getHttpDriver(), $config['hcaptcha_private']);
|
||||||
}
|
}
|
||||||
|
|
||||||
$success = $query->verify($response, $_SERVER['REMOTE_ADDR']);
|
$success = $query->verify($response, $_SERVER['REMOTE_ADDR']);
|
||||||
|
Loading…
Reference in New Issue
Block a user