HEX
Server: LiteSpeed
System: Linux premium321.web-hosting.com 4.18.0-553.50.1.lve.el8.x86_64 #1 SMP Thu Apr 17 19:10:24 UTC 2025 x86_64
User: paksjuts (1314)
PHP: 8.1.33
Disabled: NONE
Upload Files
File: /home/paksjuts/apkhoop.com/wp-content/plugins/hello-plus/includes/utils.php
<?php
namespace HelloPlus\Includes;

if ( ! defined( 'ABSPATH' ) ) {
	exit;
}

class Utils {

	public static function elementor(): ?\Elementor\Plugin {
		return class_exists( '\Elementor\Plugin' ) ? \Elementor\Plugin::instance() : null;
	}

	public static function has_pro(): bool {
		return defined( 'ELEMENTOR_PRO_VERSION' );
	}

	public static function are_we_on_elementor_domains(): bool {
		$current_domain = filter_input( INPUT_SERVER, 'HTTP_HOST', FILTER_SANITIZE_URL );
		if ( null === $current_domain ) {
			return false;
		}
		$allowed_domains = [
			'elementor.com',
			'elementor.red',
		];

		$is_elementor_domain = false;

		foreach ( $allowed_domains as $domain ) {
			if ( str_ends_with( $current_domain, $domain ) ) {
								$is_elementor_domain = true;
								break;
			}
		}

		return $is_elementor_domain;
	}

	public static function has_hello_biz(): bool {
		if ( defined( 'WP_TESTS_DOMAIN' ) ) {
			return true;
		}

		if ( self::are_we_on_elementor_domains() ) {
			return true;
		}

		return defined( 'EHP_THEME_SLUG' );
	}

	public static function has_hello_elementor_theme(): bool {
		return defined( 'EHP_THEME_SLUG' ) && ( 'hello-elementor' === EHP_THEME_SLUG );
	}

	public static function is_elementor_active(): bool {
		static $elementor_active = null;
		if ( is_null( $elementor_active ) ) {
			$elementor_active = defined( 'ELEMENTOR_VERSION' );
		}

		return $elementor_active;
	}

	public static function is_elementor_installed(): bool {
		static $elementor_installed = null;
		if ( is_null( $elementor_installed ) ) {
			$elementor_installed = file_exists( WP_PLUGIN_DIR . '/elementor/elementor.php' );
		}

		return $elementor_installed;
	}

	public static function get_current_post_id(): int {
		if ( self::elementor() && isset( self::elementor()->documents ) && self::elementor()->documents->get_current() ) {
			return self::elementor()->documents->get_current()->get_main_id();
		}

		return get_the_ID();
	}

	public static function get_update_elementor_message(): string {
		return sprintf(
			__( 'Elementor plugin version needs to be at least %s for Hello Plus to Work. Please update.', 'hello-plus' ),
			HELLOPLUS_MIN_ELEMENTOR_VERSION,
		);
	}

	public static function get_client_ip(): string {
		$server_ip_keys = [
			'HTTP_CLIENT_IP',
			'HTTP_X_FORWARDED_FOR',
			'HTTP_X_FORWARDED',
			'HTTP_X_CLUSTER_CLIENT_IP',
			'HTTP_FORWARDED_FOR',
			'HTTP_FORWARDED',
			'REMOTE_ADDR',
		];

		foreach ( $server_ip_keys as $key ) {
			$value = filter_input( INPUT_SERVER, $key, FILTER_VALIDATE_IP );

			if ( $value ) {
				return $value;
			}
		}

		return '127.0.0.1';
	}

	public static function ends_with( $full_string, $end_string ): bool {
		$len = strlen( $end_string );
		if ( 0 === $len ) {
			return true;
		}

		return ( substr( $full_string, -$len ) === $end_string );
	}

	public static function get_theme_slug(): string {
		if ( defined( 'EHP_THEME_SLUG' ) ) {
			return EHP_THEME_SLUG;
		}

		return 'hello-plus';
	}

	public static function get_theme_admin_home(): string {
		if ( defined( 'EHP_THEME_SLUG' ) ) {
			return add_query_arg( [ 'page' => EHP_THEME_SLUG ], self_admin_url( 'edit.php' ) );
		}

		return self_admin_url();
	}

	public static function is_preview_for_document( $post_id ): bool {
		$preview_id = filter_input( INPUT_GET, 'preview_id', FILTER_VALIDATE_INT );
		$preview = filter_input( INPUT_GET, 'preview', FILTER_SANITIZE_FULL_SPECIAL_CHARS );

		return 'true' === $preview && (int) $post_id === (int) $preview_id;
	}

	public static function is_installed_elementor_version_supported(): bool {
		$plugin_file = WP_PLUGIN_DIR . '/elementor/elementor.php';

		if ( ! file_exists( $plugin_file ) ) {
			return true;
		}

		require_once ABSPATH . 'wp-admin/includes/plugin.php';

		$plugin_data = get_plugin_data( $plugin_file );
		$plugin_version = $plugin_data['Version'];

		return self::is_elementor_version_supported( $plugin_version );
	}

	public static function is_active_elementor_version_supported(): bool {
		return self::is_elementor_version_supported( ELEMENTOR_VERSION );
	}

	public static function is_elementor_version_supported( string $version ): bool {
		return version_compare( $version, HELLOPLUS_MIN_ELEMENTOR_VERSION, 'ge' );
	}

	public static function plugin_title(): string {
		return __( 'Hello+', 'hello-plus' );
	}

	public static function are_submissions_enabled(): bool {
		return static::has_pro() &&
			class_exists( '\ElementorPro\Modules\Forms\Submissions\Actions\Save_To_Database' ) &&
			class_exists( '\ElementorPro\License\API' ) &&
			class_exists( '\ElementorPro\Modules\Forms\Submissions\Component' ) &&
			self::is_licence_has_feature_compatible(
				\ElementorPro\Modules\Forms\Submissions\Component::NAME
			);
	}

	private static function is_licence_has_feature_compatible( $feature ) {
		$method = new \ReflectionMethod(
			\ElementorPro\License\API::class, 'is_licence_has_feature'
		);
		$num_params = $method->getNumberOfParameters();

		if ( $num_params > 1 ) {
			return \ElementorPro\License\API::is_licence_has_feature(
				$feature,
				\ElementorPro\License\API::BC_VALIDATION_CALLBACK
			);
		} else {
			return \ElementorPro\License\API::is_licence_has_feature(
				$feature
			);
		}
	}

	public static function get_widgets_depends(): array {
		return [ 'helloplus-button', 'helloplus-image', 'helloplus-shapes', 'helloplus-column-structure' ];
	}

	public static function maybe_has_pro_location_docs( string $location = '' ): array {
		if ( ! self::has_pro() ) {
			return [];
		}
		$theme_builder_module = \ElementorPro\Modules\ThemeBuilder\Module::instance();
		$conditions_manager   = $theme_builder_module->get_conditions_manager();

		return $conditions_manager->get_documents_for_location( $location );
	}

	public static function get_pro_part( string $part = '' ) {
		if ( ! self::has_pro() ) {
			return false;
		}

		$pro_part = self::maybe_has_pro_location_docs( $part );
		$first_pro_part_id  = array_key_first( $pro_part );
		return ! empty( $first_pro_part_id ) ? $first_pro_part_id : false;
	}

	public static function is_test_environment(): bool {

		if ( defined( 'WP_TESTS_DOMAIN' ) ) {
			return true;
		}

		if ( getenv( 'TEST_PARALLEL_INDEX' ) !== false ) {
			return true;
		}

		$wp_env = getenv( 'WP_ENV' );
		if ( $wp_env && in_array( strtolower( $wp_env ), [ 'test', 'testing', 'playwright' ], true ) ) {
			return true;
		}

		if ( defined( 'WP_TESTS_CONFIG_FILE_PATH' ) || defined( 'WP_PHPUNIT__TESTS_CONFIG' ) ) {
			return true;
		}

		if (
			defined( 'WP_DEBUG' ) &&
			defined( 'WP_DEBUG_LOG' ) &&
			filter_input( INPUT_SERVER, 'HTTP_HOST', FILTER_SANITIZE_URL ) === 'localhost:8888'
		) {
			return true;
		}

		return false;
	}

	public static function has_at_least_one_kit() {
		static $is_setup_wizard_completed = null;

		if ( ! class_exists( '\Elementor\App\Modules\ImportExport\Processes\Revert' ) ) {
			return false;
		}

		if ( ! is_null( $is_setup_wizard_completed ) ) {
			return $is_setup_wizard_completed;
		}

		$sessions = \Elementor\App\Modules\ImportExport\Processes\Revert::get_import_sessions();

		if ( ! $sessions ) {
			return false;
		}

		$last_session = end( $sessions );

		return ! empty( $last_session );
	}
}