403Webshell
Server IP : 51.254.39.36  /  Your IP : 216.73.217.109
Web Server : Microsoft-IIS/10.0
System : Windows NT WIN-12GDIEC772I 10.0 build 20348 (Windows Server 2022) AMD64
User : IWPD_21(allbatf787) ( 0)
PHP Version : 8.3.32
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : OFF  |  Perl : OFF  |  Python : OFF  |  Sudo : OFF  |  Pkexec : OFF
Directory :  C:/Inetpub/vhosts/allbat-sb.fr/httpdocs/wp-content/plugins/kadence-recaptcha/inc/uplink/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : C:/Inetpub/vhosts/allbat-sb.fr/httpdocs/wp-content/plugins/kadence-recaptcha/inc/uplink/Connect.php
<?php

namespace KadenceWP\ReCaptcha\Uplink;

use KadenceWP\ReCaptcha\Container;
use KadenceWP\ReCaptcha\StellarWP\Uplink\Register;
use KadenceWP\ReCaptcha\StellarWP\Uplink\Config;
use KadenceWP\ReCaptcha\StellarWP\Uplink\Uplink;
use function KadenceWP\ReCaptcha\StellarWP\Uplink\get_license_key;
use function KadenceWP\ReCaptcha\StellarWP\Uplink\validate_license;
use function KadenceWP\ReCaptcha\StellarWP\Uplink\get_license_field;

// Exit if accessed directly.
if ( ! defined( 'ABSPATH' ) ) {
	exit;
}

/**
 * Class Connect
 *
 * @package KadenceWP\KadenceShopKit\Uplink
 */
class Connect {

	/**
	 * Instance of this class
	 *
	 * @var null
	 */
	private static $instance = null;
	/**
	 * Instance Control
	 */
	public static function get_instance() {
		if ( is_null( self::$instance ) ) {
			self::$instance = new self();
		}
		return self::$instance;
	}
	/**
	 * Class Constructor.
	 */
	public function __construct() {
		// Load licensing.
		add_action( 'plugins_loaded', [ $this, 'load_licensing' ], 2 );
	}
	/**
	 * Plugin specific text-domain loader.
	 *
	 * @return void
	 */
	public function load_licensing() {
		$container = new Container();
		Config::set_container( $container );
		Config::set_hook_prefix( 'kadence-captcha' );
		Uplink::init();

		$plugin_slug    = 'kadence-captcha';
		$plugin_name    = 'Kadence CAPTCHA';
		$plugin_version = KT_RECAPTCHA_VERSION;
		$plugin_path    = 'kadence-recaptcha/kadence-recaptcha.php';
		$plugin_class   = KadenceWP\ReCaptcha\Uplink\Helper::class;
		$license_class  = KadenceWP\ReCaptcha\Uplink\Helper::class;

		Register::plugin(
			$plugin_slug,
			$plugin_name,
			$plugin_version,
			$plugin_path,
			$plugin_class,
			$license_class
		);
		add_filter(
			'stellarwp/uplink/kadence-captcha/api_get_base_url',
			function ( $url ) {
				return 'https://licensing.kadencewp.com';
			}
		);
		add_filter(
			'stellarwp/uplink/kadence-captcha/messages/valid_key',
			function ( $message, $expiration ) {
				return esc_html__( 'Your license key is valid', 'kadence-recaptcha' );
			},
			10,
			2
		);
		add_filter(
			'stellarwp/uplink/kadence-captcha/admin_js_source',
			function ( $url ) {
				return KT_RECAPTCHA_URL . 'inc/uplink/admin-views/license-admin.js';
			}
		);
		add_filter(
			'stellarwp/uplink/kadence-captcha/admin_css_source',
			function ( $url ) {
				return KT_RECAPTCHA_URL . 'inc/uplink/admin-views/license-admin.css';
			}
		);
		add_filter(
			'stellarwp/uplink/kadence-captcha/field-template_path',
			function ( $path, $uplink_path ) {
				return KT_RECAPTCHA_PATH . 'inc/uplink/admin-views/field.php';
			},
			10,
			2
		);
		add_filter( 'kadence_settings_enqueue_args', [ $this, 'register_license_validation' ], 10, 2 );
		add_filter( 'stellarwp/uplink/kadence-captcha/license_field_html_render', [ $this, 'get_license_field_html' ], 10, 2 );
		// add_action( 'admin_notices', [ $this, 'inactive_notice' ] );
		add_action( 'kadence_settings_dash_side_panel', [ $this, 'render_settings_field' ] );
	}
	/**
	 * Register settings.
	 */
	public function register_license_validation( $args, $opt_name ) {
		if ( ! empty( $opt_name ) && 'kt_recaptcha' === $opt_name ) {
			$key          = get_license_key( 'kadence-captcha' );
			$license_data = validate_license( 'kadence-captcha', $key );
			if ( isset( $license_data ) && is_object( $license_data ) && method_exists( $license_data, 'is_valid' ) && $license_data->is_valid() ) {
				$license_status = true;
			} else {
				$license_status = false;
			}
			$args['licenseActive'] = $license_status;
		}
		return $args;
	}
	/**
	 * Get license field html.
	 */
	public function get_license_field_html( $field, $args ) {
		$field = sprintf(
			'<div class="%6$s" id="%2$s" data-slug="%2$s" data-plugin="%9$s" data-plugin-slug="%10$s" data-action="%11$s">
					<fieldset class="stellarwp-uplink__settings-group">
						<div class="stellarwp-uplink__settings-group-inline">
						%12$s
						%13$s
						</div>
						<input type="%1$s" name="%3$s" value="%4$s" placeholder="%5$s" class="regular-text stellarwp-uplink__settings-field" />
						%7$s
					</fieldset>
					%8$s
				</div>',
			! empty( $args['value'] ) ? 'hidden' : 'text',
			esc_attr( $args['path'] ),
			esc_attr( $args['id'] ),
			esc_attr( $args['value'] ),
			esc_attr( __( 'License Key', 'kadence-recaptcha' ) ),
			esc_attr( $args['html_classes'] ?: '' ),
			$args['html'],
			'<input type="hidden" value="' . wp_create_nonce( 'stellarwp_uplink_group_' ) . '" class="wp-nonce" />',
			esc_attr( $args['plugin'] ),
			esc_attr( $args['plugin_slug'] ),
			esc_attr( Config::get_hook_prefix_underscored() ),
			! empty( $args['value'] ) ? '<input type="text" name="obfuscated-key" disabled value="' . $this->obfuscate_key( $args['value'] ) . '" class="regular-text stellarwp-uplink__settings-field-obfuscated" />' : '',
			! empty( $args['value'] ) ? '<button type="submit" class="button button-secondary stellarwp-uplink-license-key-field-clear">' . esc_html__( 'Clear', 'kadence-recaptcha' ) . '</button>' : ''
		);

		return $field;
	}
	/**
	 * Obfuscate license key.
	 */
	public function obfuscate_key( $key ) {
		$start       = 3;
		$length      = mb_strlen( $key ) - $start - 3;
		$mask_string = preg_replace( '/\S/', 'X', $key );
		$mask_string = mb_substr( $mask_string, $start, $length );
		return substr_replace( $key, $mask_string, $start, $length );
	}
	/**
	 * Register settings
	 */
	public function render_settings_field( $slug ) {
		if ( empty( $slug ) || 'kt_recaptcha' !== $slug ) {
			return;
		}
		?>
		<div class="license-section sidebar-section components-panel">
			<div class="components-panel__body is-opened">
				<?php
				get_license_field()->render_single( 'kadence-captcha' );
				?>
			</div>
		</div>
		<?php
	}
	/**
	 * Displays an inactive notice when the software is inactive.
	 */
	public function inactive_notice() {
		if ( ! current_user_can( 'manage_options' ) ) {
			return;
		}
		if ( isset( $_GET['page'] ) && ( 'kadence-recaptcha-settings' == $_GET['page'] ) ) {
			// For Now, clear when on the settings page.
			set_transient( 'kadence_recaptcha_license_status_check', false );
			return;
		}
		$valid_license = false;
		// Add below once we've given time for everyones cache to update.
		// $plugin          = get_resource( 'kadence-recaptcha' );
		// if ( $plugin ) {
		// $valid_license = $plugin->has_valid_license();
		// }
		$key = get_license_key( 'kadence-captcha' );
		if ( ! empty( $key ) ) {
			// Check with transient first, if not then check with server.
			$status = get_transient( 'kadence_recaptcha_license_status_check' );
			if ( false === $status || ( strpos( $status, $key ) === false ) ) {
				$license_data = validate_license( 'kadence-captcha', $key );
				if ( isset( $license_data ) && is_object( $license_data ) && method_exists( $license_data, 'is_valid' ) && $license_data->is_valid() ) {
					$status = 'valid';
				} else {
					$status = 'invalid';
				}
				$status = $key . '_' . $status;
				set_transient( 'kadence_recaptcha_license_status_check', $status, WEEK_IN_SECONDS );
			}
			if ( strpos( $status, $key ) !== false ) {
				$valid_check = str_replace( $key . '_', '', $status );
				if ( 'valid' === $valid_check ) {
					$valid_license = true;
				}
			}
		}
		if ( ! $valid_license ) {
			echo '<div class="error">';
			echo '<p>' . __( 'Kadence CAPTCHA has not been activated.', 'kadence-recaptcha' ) . ' <a href="' . esc_url( admin_url( 'admin.php?page=kadence-recaptcha-settings&license=show' ) ) . '">' . __( 'Click here to activate.', 'kadence-recaptcha' ) . '</a></p>';
			echo '</div>';
		}
	}
}
Connect::get_instance();

Youez - 2016 - github.com/yon3zu
LinuXploit