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

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

50 lines
1.1 KiB
PHP

<?php
namespace MediaWiki\Extensions\ConfirmEdit\hCaptcha;
use Html;
use HTMLFormField;
class HTMLHCaptchaField extends HTMLFormField {
/** @var string Public key parameter to be passed to hCaptcha. */
protected $key;
/** @var string Error returned by hCaptcha in the previous round. */
protected $error;
/**
* Parameters:
* - key: (string, required) Public key
* - error: (string) Error from previous round
* @param array $params
*/
public function __construct( array $params ) {
$params += [ 'error' => null ];
parent::__construct( $params );
$this->key = $params['key'];
$this->error = $params['error'];
$this->mName = 'h-captcha-response';
}
/**
* @inheritDoc
*/
public function getInputHTML( $value ) {
$out = $this->mParent->getOutput();
$out->addHeadItem(
'h-captcha',
"<script src=\"https://hcaptcha.com/1/api.js\" async defer></script>"
);
return Html::element( 'div', [
'class' => [
'h-captcha',
'mw-confirmedit-captcha-fail' => (bool)$this->error,
],
'data-sitekey' => $this->key,
] );
}
}