HEX
Server: Apache/2.4.65 (Debian)
System: Linux wordpress-7cb4c6b6f6-z68kl 5.15.0-131-generic #141-Ubuntu SMP Fri Jan 10 21:18:28 UTC 2025 x86_64
User: www-data (33)
PHP: 8.3.27
Disabled: NONE
Upload Files
File: /var/www/html/wp-content/plugins/Crocoblock-wizard/includes/modules/license/api.php
<?php
namespace Crocoblock_Wizard\Modules\License;

// If this file is called directly, abort.
if ( ! defined( 'WPINC' ) ) {
	die;
}

/**
 * Define license API class
 */
class API {

	/**
	 * A reference to an instance of this class.
	 *
	 * @since 1.0.0
	 * @var   object
	 */
	private static $instance = null;

	/**
	 * Config properties
	 */
	public $license_option = 'jet_theme_core_license';
	public $plugins_option = 'jet_excluded_plugins';
	public $api            = 'https://account.crocoblock.com/';
	//public $api            = 'http://192.168.9.40/_2018/04_April/crocoblock-api/';
	public $item_id        = 9;
	public $theme_link     = 'https://account.crocoblock.com/free-download/kava.zip';
	public $theme_slug     = 'kava';

	/**
	 * Error message holder
	 */
	private $error = null;

	/**
	 * Check connection status
	 *
	 * @var mixed
	 */
	public $connection_status = null;

	/**
	 * Retuirn license
	 *
	 * @return [type] [description]
	 */
	public function get_license() {
		return get_option( $this->license_option );
	}

	/**
	 * Delete license option
	 *
	 * @return [type] [description]
	 */
	public function delete_license() {
		$this->reset_template_access();
		return delete_option( $this->license_option );
	}

	/**
	 * Returns installtion data for  Kava theme
	 *
	 * @return [type] [description]
	 */
	public function get_kava_installation_data() {
		return array(
			'id'   => $this->theme_slug,
			'link' => $this->theme_link,
		);
	}

	/**
	 * Send incorrcet key to check is Crocoblock server available
	 *
	 * @return void
	 */
	public function check_connection_status() {
		$this->connection_status = true;
		return;
		return $this->license_request( 'check_license', 'incorrect_key' );
	}

	/**
	 * Check if license is already active
	 *
	 * @return boolean
	 */
	public function is_active() {

		$license = $this->get_license();

		if ( ! $license ) {
			$this->check_connection_status();
			return false;
		}

		$response = $this->license_request( 'check_license', $license );
		$result   = wp_remote_retrieve_body( $response );
		$result   = json_decode( $result, true );

		if ( ! isset( $result['success'] ) ) {
			return false;
		}

		if ( true === $result['success'] && 'valid' === $result['license'] ) {
			return true;
		} else {
			return false;
		}

	}

	/**
	 * Perform a remote request with passed action for passed license key
	 *
	 * @param  string $action  EDD action to perform (activate_license, check_license etc)
	 * @param  string $license License key
	 * @return WP_Error|array
	 */
	public function license_request( $action, $license ) {

		$api_url = $this->api;
		$item_id = $this->item_id;

		$url = add_query_arg(
			array(
				'edd_action' => $action,
				'item_id'    => $item_id,
				'license'    => $license,
				'url'        => urlencode( home_url( '/' ) ),
			),
			$api_url
		);

		$args = array(
			'timeout'   => 60,
			'sslverify' => false
		);

		$response = wp_remote_get( $url, $args );

		if ( is_wp_error( $response ) ) {
			$this->connection_status = $response;
		} else {
			$this->connection_status = true;
		}

		return $response;

	}

	/**
	 * Activate license.
	 *
	 * @return void
	 */
	public function activate_license( $license = null ) {

		if ( ! current_user_can( 'manage_options' ) ) {
			return $this->set_error( __( 'Sorry, you not allowed to activate license', 'crocoblock-wizard' ) );
		}

		if ( ! $license ) {
			return $this->set_error( __( 'Please provide valid license key', 'crocoblock-wizard' ) );
		}

		$response = $this->license_request( 'activate_license', $license );

		if ( is_wp_error( $response ) ) {
			return $this->set_error( __( 'Request failed: ', 'crocoblock-wizard' ) . $response->get_error_message() );
		}

		$result = wp_remote_retrieve_body( $response );
		$result = json_decode( $result, true );

		if ( isset( $result['has_templates_access'] ) ) {
			$template_access = true === $result['has_templates_access'] ? 1 : -1;
			update_option( 'has_template_access', $template_access, false );
		} else {
			$this->reset_template_access();
		}

		if ( isset( $result['has_design_templates_access'] ) ) {
			$design_templates_access = true === $result['has_design_templates_access'] ? 1 : -1;
			update_option( 'has_design_templates_access', $design_templates_access, false );
		}

		if ( ! isset( $result['success'] ) ) {
			return $this->set_error( __( 'Internal error, please try again later.', 'crocoblock-wizard' ) );
		}

		if ( true === $result['success'] ) {

			if ( 'valid' === $result['license'] ) {

				update_option( $this->license_option, $license, 'no' );

				if ( isset( $result['excluded_plugins'] ) ) {
					update_option( $this->plugins_option, $result['excluded_plugins'], 'no' );
				}

				return $this->get_kava_installation_data();

			} else {
				return $this->set_error( $this->get_error_by_code( 'default' ) );
			}

		} else {

			if ( ! empty( $result['error'] ) ) {
				return $this->set_error( $this->get_error_by_code( $result['error'] ) );
			} else {
				return $this->set_error( $this->get_error_by_code( 'default' ) );
			}

		}

	}

	/**
	 * Store error
	 *
	 * @param [type] $error [description]
	 */
	public function set_error( $error ) {
		$this->error = $error;
	}

	/**
	 * Check if current license has template access
	 * @return boolean [description]
	 */
	public function has_template_access() {
		$option_val = intval( get_option( 'has_template_access', false ) );
		return ( 0 <= $option_val );
	}

	/**
	 * Check if current license has template access
	 * @return boolean [description]
	 */
	public function has_design_template_access() {
		$option_val = intval( get_option( 'has_design_templates_access', false ) );
		return ( 0 <= $option_val );
	}

	/**
	 * Reset template access option
	 *
	 * @return [type] [description]
	 */
	public function reset_template_access() {
		delete_option( 'has_template_access' );
	}

	/**
	 * Return error message.
	 *
	 * @return string
	 */
	public function get_error() {
		return $this->error;
	}

	/**
	 * Retrirve error message by error code
	 *
	 * @return string
	 */
	public function get_error_by_code( $code ) {

		$messages = array(
			'missing' => __( 'Your license is missing. Please check your key again.', 'crocoblock-wizard' ),
			'no_activations_left' => __( '<strong>You have no more activations left.</strong> Please upgrade to a more advanced license (you\'ll only need to cover the difference).', 'crocoblock-wizard' ),
			'expired' => __( '<strong>Your License Has Expired.</strong> Renew your license today to keep getting feature updates, premium support and unlimited access to the template library.', 'crocoblock-wizard' ),
			'revoked' => __( '<strong>Your license key has been cancelled</strong> (most likely due to a refund request). Please consider acquiring a new license.', 'crocoblock-wizard' ),
			'disabled' => __( '<strong>Your license key has been cancelled</strong> (most likely due to a refund request). Please consider acquiring a new license.', 'crocoblock-wizard' ),
			'invalid' => __( '<strong>Your license key doesn\'t match your current domain</strong>. This is most likely due to a change in the domain URL of your site (including HTTPS/SSL migration). Please deactivate the license and then reactivate it again.', 'crocoblock-wizard' ),
			'site_inactive' => __( '<strong>Your license key doesn\'t match your current domain</strong>. This is most likely due to a change in the domain URL. Please deactivate the license and then reactivate it again.', 'crocoblock-wizard' ),
			'inactive' => __( '<strong>Your license key doesn\'t match your current domain</strong>. This is most likely due to a change in the domain URL of your site (including HTTPS/SSL migration). Please deactivate the license and then reactivate it again.', 'crocoblock-wizard' ),
		);

		$default = __( 'An error occurred. Please check your internet connection and try again. If the problem persists, contact our support.', 'crocoblock-wizard' );

		return isset( $messages[ $code ] ) ? $messages[ $code ] : $default;

	}

}