phpBB

Code Changes

File: phpbb/captcha/plugins/recaptcha_v3.php

  Unmodified   Added   Modified   Removed
Line 30Line 30
	 */
const GOOGLE = 'google.com';
const RECAPTCHA = 'recaptcha.net';

	 */
const GOOGLE = 'google.com';
const RECAPTCHA = 'recaptcha.net';

 
	const RECAPTCHA_CN	= 'recaptcha.google.cn';

/** @var string[] List of supported domains */
static public $supported_domains = [
self::GOOGLE,
self::RECAPTCHA,
self::RECAPTCHA_CN
];


/** @var array CAPTCHA types mapped to their action */
static protected $actions = [


/** @var array CAPTCHA types mapped to their action */
static protected $actions = [

Line 178Line 186
			if (empty($recaptcha_v3_method))
{
trigger_error($language->lang('EMPTY_RECAPTCHA_V3_REQUEST_METHOD') . adm_back_link($module->u_action), E_USER_WARNING);

			if (empty($recaptcha_v3_method))
{
trigger_error($language->lang('EMPTY_RECAPTCHA_V3_REQUEST_METHOD') . adm_back_link($module->u_action), E_USER_WARNING);

 
			}

$recaptcha_domain = $request->variable('recaptcha_v3_domain', '', true);
if (in_array($recaptcha_domain, self::$supported_domains))
{
$config->set('recaptcha_v3_domain', $recaptcha_domain);

			}

$config->set('recaptcha_v3_key', $request->variable('recaptcha_v3_key', '', true));
$config->set('recaptcha_v3_secret', $request->variable('recaptcha_v3_secret', '', true));

			}

$config->set('recaptcha_v3_key', $request->variable('recaptcha_v3_key', '', true));
$config->set('recaptcha_v3_secret', $request->variable('recaptcha_v3_secret', '', true));

			$config->set('recaptcha_v3_domain', $request->variable('recaptcha_v3_domain', '', true));

 
			$config->set('recaptcha_v3_method', $recaptcha_v3_method);

foreach (self::$actions as $action)

			$config->set('recaptcha_v3_method', $recaptcha_v3_method);

foreach (self::$actions as $action)

Line 211Line 224
			'RECAPTCHA_V3_SECRET'		=> $config['recaptcha_v3_secret'] ?? '',

'RECAPTCHA_V3_DOMAIN' => $config['recaptcha_v3_domain'] ?? self::GOOGLE,

			'RECAPTCHA_V3_SECRET'		=> $config['recaptcha_v3_secret'] ?? '',

'RECAPTCHA_V3_DOMAIN' => $config['recaptcha_v3_domain'] ?? self::GOOGLE,

			'RECAPTCHA_V3_DOMAINS'		=> [self::GOOGLE, self::RECAPTCHA],

			'RECAPTCHA_V3_DOMAINS'		=> self::$supported_domains,


'RECAPTCHA_V3_METHOD' => $config['recaptcha_v3_method'] ?? '',
'RECAPTCHA_V3_METHODS' => [


'RECAPTCHA_V3_METHOD' => $config['recaptcha_v3_method'] ?? '',
'RECAPTCHA_V3_METHODS' => [

Line 351Line 364
		}

return $language->lang('RECAPTCHA_INCORRECT');

		}

return $language->lang('RECAPTCHA_INCORRECT');

 
	}

/**
* {@inheritDoc}
*/
public function get_login_error_attempts(): string
{
global $language;

$language->add_lang('captcha_recaptcha');

return 'RECAPTCHA_V3_LOGIN_ERROR_ATTEMPTS';

	}
}


	}
}