Page MenuHomeWickedGov Phorge

TurnstileAuthenticationRequest.php
No OneTemporary

Size
875 B
Referenced Files
None
Subscribers
None

TurnstileAuthenticationRequest.php

<?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( '', [] );
}
/** @inheritDoc */
public function loadFromSubmission( array $data ) {
// unhack the hack in parent
return AuthenticationRequest::loadFromSubmission( $data );
}
/** @inheritDoc */
public function getFieldInfo() {
$fieldInfo = parent::getFieldInfo();
return [
'captchaWord' => [
'type' => 'string',
'label' => $fieldInfo['captchaInfo']['label'],
'help' => wfMessage( 'turnstile-help' ),
],
];
}
}

File Metadata

Mime Type
text/x-php
Expires
Sat, May 16, 18:14 (6 h, 55 m)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
32/fe/3cc60ab04291623d37d80bba165f
Default Alt Text
TurnstileAuthenticationRequest.php (875 B)

Event Timeline