mediawiki-extensions-Confir.../hCaptcha/includes/HCaptchaAuthenticationRequest.php
Reedy f005a5cb4a Add hCaptcha
Mostly working from Florian's ReCaptchaNoCaptcha

Bug: T249854
Change-Id: I5c3ac71bdfd528339b846b5811e78a88e8135e46
2020-04-17 16:43:27 +02:00

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' ),
],
];
}
}