2023-10-02 22:42:57 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace MediaWiki\Extension\ConfirmEdit\Turnstile;
|
|
|
|
|
|
|
|
use MediaWiki\Auth\AuthenticationRequest;
|
|
|
|
use MediaWiki\Extension\ConfirmEdit\Auth\CaptchaAuthenticationRequest;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Authentication request for Turnstile. Functions almost identically to ReCaptchaNoCaptchaAuthenticationRequest.
|
|
|
|
*/
|
|
|
|
class TurnstileAuthenticationRequest extends CaptchaAuthenticationRequest {
|
|
|
|
public function __construct() {
|
|
|
|
parent::__construct( '', [] );
|
|
|
|
}
|
|
|
|
|
2024-10-25 18:24:07 +00:00
|
|
|
/** @inheritDoc */
|
2023-10-02 22:42:57 +00:00
|
|
|
public function loadFromSubmission( array $data ) {
|
|
|
|
// unhack the hack in parent
|
|
|
|
return AuthenticationRequest::loadFromSubmission( $data );
|
|
|
|
}
|
|
|
|
|
2024-10-25 18:24:07 +00:00
|
|
|
/** @inheritDoc */
|
2023-10-02 22:42:57 +00:00
|
|
|
public function getFieldInfo() {
|
|
|
|
$fieldInfo = parent::getFieldInfo();
|
|
|
|
|
|
|
|
return [
|
|
|
|
'captchaWord' => [
|
|
|
|
'type' => 'string',
|
|
|
|
'label' => $fieldInfo['captchaInfo']['label'],
|
|
|
|
'help' => wfMessage( 'turnstile-help' ),
|
|
|
|
],
|
|
|
|
];
|
|
|
|
}
|
|
|
|
}
|