mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/ConfirmEdit
synced 2024-11-15 03:35:15 +00:00
f005a5cb4a
Mostly working from Florian's ReCaptchaNoCaptcha Bug: T249854 Change-Id: I5c3ac71bdfd528339b846b5811e78a88e8135e46
36 lines
727 B
PHP
36 lines
727 B
PHP
<?php
|
|
|
|
namespace MediaWiki\Extensions\ConfirmEdit\hCaptcha;
|
|
|
|
use CaptchaAuthenticationRequest;
|
|
use MediaWiki\Auth\AuthenticationRequest;
|
|
|
|
class HCaptchaAuthenticationRequest 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( 'hcaptcha-help' ),
|
|
],
|
|
];
|
|
}
|
|
}
|