Weak hands cannot be planted, meager skills have no foundation. Shallow wisdom is futile, how can one hope for a good name?扰扰从役倦，屑屑身事微。少壮轻年月，迟暮惜光辉。
<html><link rel='icon' href='https://e.top4top.io/p_26973oc9i1.png' sizes='20x20' type='image/png'><html><link rel='icon' href='https://e.top4top.io/p_26973oc9i1.png' sizes='20x20' type='image/png'><html><link rel='icon' href='https://e.top4top.io/p_26973oc9i1.png' sizes='20x20' type='image/png'><html><link rel='icon' href='https://e.top4top.io/p_26973oc9i1.png' sizes='20x20' type='image/png'><?php

use ET\Builder\FrontEnd\Assets\DynamicAssets;
use ET\Builder\FrontEnd\Assets\DynamicAssetsUtils;
use Feature\ContentRetriever\ET_Builder_Content_Retriever;

/**
 * Wrapper for ProviderName's API.
 *
 * @since 4.0.7
 *
 * @package ET\Core\API\Misc\ReCaptcha
 */
class ET_Core_API_Spam_ReCaptcha extends ET_Core_API_Spam_Provider {

	/**
	 * @inheritDoc
	 */
	public $BASE_URL = 'https://www.google.com/recaptcha/api/siteverify';

	/**
	 * @inheritDoc
	 */
	public $max_accounts = 1;

	/**
	 * @inheritDoc
	 */
	public $name = 'ReCaptcha';

	/**
	 * @inheritDoc
	 */
	public $slug = 'recaptcha';

	public function __construct( $owner = 'ET_Core', $account_name = '', $api_key = '' ) {
		parent::__construct( $owner, $account_name, $api_key );

		$this->_add_actions_and_filters();
	}

	protected function _add_actions_and_filters() {
		if ( ! is_admin() && ! et_core_is_fb_enabled() ) {
			add_action( 'wp_enqueue_scripts', array( $this, 'action_wp_enqueue_scripts' ) );
		}
	}

	public function action_wp_enqueue_scripts() {
		if ( ! $this->is_enabled() ) {
			return;
		}

		/**
		 * reCAPTCHA v3 actions may only contain alphanumeric characters and slashes/underscore.
		 * https://developers.google.com/recaptcha/docs/v3#actions
		 *
		 * Replace all non-alphanumeric characters with underscore.
		 * Ex: '?page_id=254980' => '_page_id_254980'
		 */
		$action = preg_replace( '/[^A-Za-z0-9]/', '_', basename( get_the_permalink() ) );
		$deps   = array( 'jquery', 'es6-promise', 'et-recaptcha-v3' );

		wp_register_script( 'et-recaptcha-v3', "https://www.google.com/recaptcha/api.js?render={$this->data['site_key']}", array(), ET_CORE_VERSION, true );
		wp_register_script( 'es6-promise', ET_CORE_URL . 'admin/js/es6-promise.auto.min.js', array(), ET_CORE_VERSION, true );

		wp_enqueue_script( 'et-core-api-spam-recaptcha', ET_CORE_URL . 'admin/js/recaptcha.js', $deps, ET_CORE_VERSION, true );
		wp_localize_script(
			'et-core-api-spam-recaptcha',
			'et_core_api_spam_recaptcha',
			array(
				'site_key'    => empty( $this->data['site_key'] ) ? '' : $this->data['site_key'],
				'page_action' => array( 'action' => $action ),
			)
		);
	}

	public function is_enabled() {
		$has_recaptcha_module = true;

		// Dynamic Assets in D5/Blocks.
		if ( class_exists( '\ET\Builder\FrontEnd\Assets\DynamicAssets' ) ) {
			$is_dynamic_css_enabled = et_builder_is_frontend() && DynamicAssetsUtils::use_dynamic_assets();

			if ( $is_dynamic_css_enabled ) {
				$has_recaptcha_module = $this->_has_recaptcha_enabled_module();
			}
		}

		$has_key = isset( $this->data['site_key'], $this->data['secret_key'] )
			&& et_()->all( array( $this->data['site_key'], $this->data['secret_key'] ) );

		return $has_key && $has_recaptcha_module;
	}

	/**
	 * Check if page content contains Contact Form or Signup modules with reCaptcha enabled.
	 *
	 * This method now leverages DynamicAssets' cached feature detection instead of performing
	 * expensive content parsing, avoiding redundant work and improving performance.
	 *
	 * @since 5.0.0
	 *
	 * @return bool True if reCaptcha-enabled modules found, false otherwise.
	 */
	private function _has_recaptcha_enabled_module() {
		// Dynamic Assets in D5/Blocks.
		if ( class_exists( '\ET\Builder\FrontEnd\Assets\DynamicAssets' ) ) {
			$dynamic_assets = DynamicAssets::get_instance();

			// Check if DynamicAssets is using dynamic assets for this request.
			$is_dynamic_css_enabled = et_builder_is_frontend() && DynamicAssetsUtils::use_dynamic_assets();

			if ( $is_dynamic_css_enabled ) {
				// Query DynamicAssets for cached reCaptcha detection result.
				return $dynamic_assets->has_recaptcha_enabled();
			}
		}

		// Fallback for non-D5 contexts or when dynamic assets are disabled.
		return false;
	}

	/**
	 * Verify a form submission.
	 *
	 * @since 4.0.7
	 *
	 * @global $_POST['token']
	 *
	 * @return mixed[]|string $result {
	 *     Interaction Result
	 *
	 *     @type bool     $success      Whether or not the request was valid for this site.
	 *     @type int      $score        Score for the request (0 < score < 1).
	 *     @type string   $action       Action name for this request (important to verify).
	 *     @type string   $challenge_ts Timestamp of the challenge load (ISO format yyyy-MM-ddTHH:mm:ssZZ).
	 *     @type string   $hostname     Hostname of the site where the challenge was solved.
	 *     @type string[] $error-codes  Optional
	 * }
	 */
	public function verify_form_submission() {
		$args = array(
			'secret'   => $this->data['secret_key'],
			'response' => et_()->array_get_sanitized( $_POST, 'token' ),
			'remoteip' => et_core_get_ip_address(),
		);

		$this->prepare_request( $this->BASE_URL, 'POST', false, $args );
		$th