mediawiki-extensions-Confir.../hCaptcha/includes/HTMLHCaptchaField.php
Umherirrender 92bc1f3d2f Use namespaced classes
Changes to the use statements done automatically via script
Addition of missing use statements done manually

Change-Id: Id44f211320e56bc83e4c8f243369dc4eb562cf37
2023-12-11 00:07:55 +01:00

51 lines
1.1 KiB
PHP

<?php
namespace MediaWiki\Extension\ConfirmEdit\hCaptcha;
use HTMLFormField;
use MediaWiki\Html\Html;
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>"
);
HCaptcha::addCSPSources( $out->getCSP() );
return Html::element( 'div', [
'class' => [
'h-captcha',
'mw-confirmedit-captcha-fail' => (bool)$this->error,
],
'data-sitekey' => $this->key,
] );
}
}