mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/ConfirmEdit
synced 2024-11-15 03:35:15 +00:00
3e3b91b527
Also remove references to "two words" from ReCaptcha labels. The captcha image doesn't always contain two words. Bug: T110302 Change-Id: I544656289480056152a1db195babb6dadf29bc71
39 lines
941 B
PHP
39 lines
941 B
PHP
<?php
|
|
|
|
use MediaWiki\Auth\AuthenticationRequest;
|
|
|
|
/**
|
|
* Authentication request for ReCaptcha v1. Unlike the parent class, no session storage is used;
|
|
* that's handled by Google.
|
|
*/
|
|
class ReCaptchaAuthenticationRequest extends CaptchaAuthenticationRequest {
|
|
public function __construct() {
|
|
parent::__construct( null, null );
|
|
}
|
|
|
|
public function loadFromSubmission( array $data ) {
|
|
// unhack the hack in parent
|
|
return AuthenticationRequest::loadFromSubmission( $data );
|
|
}
|
|
|
|
public function getFieldInfo() {
|
|
$fieldInfo = parent::getFieldInfo();
|
|
if ( !$fieldInfo ) {
|
|
return false;
|
|
}
|
|
|
|
return array_merge( $fieldInfo, [
|
|
'captchaId' => [
|
|
'type' => 'string',
|
|
'label' => wfMessage( 'recaptcha-id-label' ),
|
|
'help' => wfMessage( 'recaptcha-id-help' ),
|
|
],
|
|
'captchaWord' => [
|
|
'type' => 'string',
|
|
'label' => wfMessage( 'recaptcha-label' ),
|
|
'help' => wfMessage( 'recaptcha-help' ),
|
|
],
|
|
] );
|
|
}
|
|
}
|