Page MenuHomeWickedGov Phorge

ReCaptchaNoCaptchaAuthenticationRequest.php
No OneTemporary

Size
988 B
Referenced Files
None
Subscribers
None

ReCaptchaNoCaptchaAuthenticationRequest.php

<?php
namespace MediaWiki\Extension\ConfirmEdit\ReCaptchaNoCaptcha;
use MediaWiki\Auth\AuthenticationRequest;
use MediaWiki\Extension\ConfirmEdit\Auth\CaptchaAuthenticationRequest;
/**
* Authentication request for ReCaptcha v2. Unlike the parent class, no session storage is used
* and there is no ID; Google provides a single proof string after successfully solving a captcha.
*/
class ReCaptchaNoCaptchaAuthenticationRequest 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( 'renocaptcha-help' ),
],
];
}
}

File Metadata

Mime Type
text/x-php
Expires
Sat, May 16, 22:04 (1 d, 2 h)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
c7/71/1ec97257f0f0bd8375a0273b9b7e
Default Alt Text
ReCaptchaNoCaptchaAuthenticationRequest.php (988 B)

Event Timeline