Your IP : 216.73.216.196


Current Path : /home/icmq6107/clients/AYIMOLOU/wp-content/plugins/uichemy/includes/admin/
Upload File :
Current File : /home/icmq6107/clients/AYIMOLOU/wp-content/plugins/uichemy/includes/admin/class-uich-api.php

<?php
/**
 * This file Call Only One time when click and active Plugin
 *
 * @link       https://posimyth.com/
 * @since      1.0.0
 *
 * @package    Uichemy
 */

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

if ( ! class_exists( 'Uich_Globals' ) ) {
	require_once UICH_PATH . 'includes/admin/globals/class-uich-globals.php';
	require_once UICH_PATH . 'includes/admin/globals/class-uich-bricks-globals.php';
}

if ( ! class_exists( 'Uich_Api' ) ) {

	/**
	 * Here Enqueue all js and css script
	 */
	class Uich_Api {

		/**
		 * Member Variable
		 *
		 * @var staring $flexbox_container_db
		 */
		public $flexbox_container_db = 'elementor_experiment-container';

		/**
		 * Member Variable
		 *
		 * @var staring $file_uploads_db
		 */
		public $file_uploads_db = 'elementor_unfiltered_files_upload';

		/**
		 * Member Variable
		 *
		 * @var staring $elementor_pluginpath
		 */
		public $elementor_pluginpath = 'elementor/elementor.php';

		/**
		 * TPGB Plugin Path
		 *
		 * @var string $tpgb_plugin_path
		 */
		public $tpgb_plugin_path = 'the-plus-addons-for-block-editor/the-plus-addons-for-block-editor.php';

		/**
		 * Onbording Popup Close
		 *
		 * @since 1.2.2
		 * @var uich_onbording_end of the class.
		 */
		public $uich_onbording_end = 'uich_onbording_end';

		/**
		 * Initialize the class and set its properties.
		 *
		 * @since   1.0.0
		 */
		public function __construct() {
			add_filter( 'rest_pre_serve_request', array( $this, 'uiche_rest_send_cors_headers' ) );
			add_filter( 'upload_mimes', array( $this, 'add_svg_to_upload_mimes' ) );
			add_filter( 'http_request_timeout', array( $this, 'uich_modify_http_request_default_timeout' ), 10 );

			add_action( 'wp_ajax_uich_regenerate_token', array( $this, 'uiche_regenerate_token' ) );
			add_action( 'wp_ajax_uich_select_user', array( $this, 'uich_select_user' ) );
			add_action( 'wp_ajax_uich_uichemy', array( $this, 'uich_api_call' ) );

			add_filter( 'uich_recommended_settings', array( $this, 'uich_recommended_settings' ), 10, 1 );

			add_action(
				'rest_api_init',
				function () {
					register_rest_route(
						'uichemy/v1',
						'/import',
						array(
							'methods'             => 'POST',
							'callback'            => array( $this, 'uich_handle_import' ),
							'permission_callback' => '__return_true',
						)
					);

					register_rest_route(
						'uichemy/v2',
						'/elementor/import',
						array(
							'methods'             => 'POST',
							'callback'            => array( $this, 'uich_handle_elementor_import_v2' ),
							'permission_callback' => '__return_true',
						)
					);

					register_rest_route(
						'uichemy/v2',
						'/elementor/get_posts',
						array(
							'methods'             => 'GET',
							'callback'            => array( $this, 'uich_get_elementor_posts' ),
							'permission_callback' => '__return_true',
						)
					);

					register_rest_route(
						'uichemy/v2',
						'/elementor/get_config',
						array(
							'methods'             => 'GET',
							'callback'            => array( $this, 'uich_get_elementor_config' ),
							'permission_callback' => '__return_true',
						)
					);

					register_rest_route(
						'uichemy/v2',
						'/gutenberg/import',
						array(
							'methods'             => 'POST',
							'callback'            => array( $this, 'uich_handle_gutenberg_import' ),
							'permission_callback' => '__return_true',
						)
					);

					register_rest_route(
						'uichemy/v2',
						'/gutenberg/get_posts',
						array(
							'methods'             => 'GET',
							'callback'            => array( $this, 'uich_get_gutenberg_posts' ),
							'permission_callback' => '__return_true',
						)
					);

					register_rest_route(
						'uichemy/v2',
						'/gutenberg/get_config',
						array(
							'methods'             => 'GET',
							'callback'            => array( $this, 'uich_get_gutenberg_config' ),
							'permission_callback' => '__return_true',
						)
					);

					register_rest_route(
						'uichemy/v2',
						'/bricks/import',
						array(
							'methods'             => 'POST',
							'callback'            => array( $this, 'uich_handle_bricks_import_v2' ),
							'permission_callback' => '__return_true',
						)
					);

					register_rest_route(
						'uichemy/v2',
						'/bricks/get_posts',
						array(
							'methods'             => 'GET',
							'callback'            => array( $this, 'uich_get_bricks_posts' ),
							'permission_callback' => '__return_true',
						)
					);

					register_rest_route(
						'uichemy/v2',
						'/bricks/get_config',
						array(
							'methods'             => 'GET',
							'callback'            => array( $this, 'uich_get_bricks_config' ),
							'permission_callback' => '__return_true',
						)
					);

					register_rest_route(
						'uichemy/v1',
						'/check',
						array(
							'methods'             => array( 'GET', 'POST' ),
							'callback'            => array( $this, 'uich_handle_check' ),
							'permission_callback' => '__return_true',
						)
					);

					register_rest_route(
						'uichemy/v1',
						'/bricks/getnonce',
						array(
							'methods'             => array( 'GET' ),
							'callback'            => array( $this, 'uich_handle_bricks_get_nonce' ),
							'permission_callback' => '__return_true',
						)
					);

					register_rest_route(
						'uichemy/v1',
						'/bricks/import',
						array(
							'methods'             => array( 'POST' ),
							'callback'            => array( $this, 'uich_handle_bricks_import' ),
							'permission_callback' => '__return_true',
						)
					);

					register_rest_route(
						'uichemy/v1',
						'/elementor/globals',
						array(
							'methods'             => array( 'GET' ),
							'callback'            => array( $this, 'uich_handle_elementor_globals_list' ),
							'permission_callback' => '__return_true',
						)
					);

					register_rest_route(
						'uichemy/v1',
						'/elementor/globals/sync',
						array(
							'methods'             => array( 'POST' ),
							'callback'            => array( $this, 'uich_handle_elementor_globals_sync' ),
							'permission_callback' => '__return_true',
						)
					);

					register_rest_route(
						'uichemy/v1',
						'/bricks/globals',
						array(
							'methods'             => array( 'GET' ),
							'callback'            => array( $this, 'uich_handle_bricks_globals_list' ),
							'permission_callback' => '__return_true',
						)
					);

					register_rest_route(
						'uichemy/v1',
						'/bricks/globals/sync',
						array(
							'methods'             => array( 'POST' ),
							'callback'            => array( $this, 'uich_handle_bricks_globals_sync' ),
							'permission_callback' => '__return_true',
						)
					);
				}
			);
		}

		/**
		 * Globals
		 */
		public function uich_handle_elementor_globals_list( WP_REST_Request $request ){
			// Match Security Token.
			$this->uich_check_token( $request );

			return  Uich_Globals::get_globals();
		}

		/**
		 * Sync Globals
		 */
		public function uich_handle_elementor_globals_sync( WP_REST_Request $request ){
			// Match Security Token.
			$this->uich_check_token( $request );

			$sync_data = json_decode( $request->get_body() );

			$update_sync_data = Uich_Globals::sync_globals( $sync_data );

			return array(
				'success' => true,
				'data' => $update_sync_data,
			);
		}

		public function uich_handle_bricks_globals_list( WP_REST_Request $request ){
			// Match Security Token.
			$this->uich_check_token( $request );

			return array(
				'success' => true,
				'data' => Uich_Bricks_Globals::get_uich_bricks_globals(),
			);
		}

		public function uich_handle_bricks_globals_sync( WP_REST_Request $request ){
			// Match Security Token.
			$this->uich_check_token( $request );

			$sync_data = json_decode( $request->get_body() );

			$update_sync_data = Uich_Bricks_Globals::sync_uich_globals($sync_data);

			return array(
				'success' => true,
				'data' => $update_sync_data,
			);
		}

		/**
		 * Upload mimes Type
		 */
		public function add_svg_to_upload_mimes($mimes) {
			if(current_user_can('import') ) $mimes['svg'] = 'image/svg+xml';
            return $mimes;
		}

		/**
		 * Check regenerate token
		 *
		 * @since   1.0.0
		 */
		public function uiche_regenerate_token() {
			$nonce = ( isset( $_POST['nonce'] ) ) ? sanitize_key( wp_unslash( $_POST['nonce'] ) ) : '';

			if ( ! isset( $nonce ) || empty( $nonce ) || ! wp_verify_nonce( $nonce, 'uichemy-ajax-nonce' ) ) {
				wp_send_json_error( null, 400 );
			}

			if ( ! is_user_logged_in() || ! current_user_can( 'manage_options' ) ) {
				wp_send_json_error( null, 400 );
			}

			apply_filters( 'uich_manage_token', 'reset_token' );

			// Prepare the response with the new token.
			$response = array(
				'message' => esc_html__( 'Reset Successful', 'uichemy' ),
				'token'   => apply_filters( 'uich_manage_token', 'get_token' ),
			);

			// Send the JSON response back to the client-side JavaScript.
			wp_send_json_success( $response );
		}

		/**
		 * Select User role
		 *
		 * @since   1.0.0
		 */
		public function uich_select_user() {

			check_ajax_referer( 'uichemy-ajax-nonce', 'nonce' );

			if ( ! is_user_logged_in() || ! current_user_can( 'manage_options' ) ) {
				wp_send_json_error( null, 400 );
			}

			$newuser = ! empty( $_POST['new_user'] ) ? sanitize_text_field( wp_unslash( $_POST['new_user'] ) ) : '';

			apply_filters( 'uich_manage_usermanager', 'set_user', $newuser );

			$response = array(
				'message'  => 'Set Successful',
				'new_user' => apply_filters( 'uich_manage_usermanager', 'get_user' ),
			);

			wp_send_json_success( $response );
		}

		public function uich_get_elementor_posts( WP_REST_Request $request ){
			// Match Security Token.
			$this->uich_check_token( $request );


			// fetch all post Types
			$all_post_types = get_post_types( [
				'public' => true,
				'can_export' => true,
				'_builtin' => false,
			] );


			// Create a response
			$response = array(
				'success' => true,
			);

			// Establishing installed things
			$is_elementor_installed = class_exists( 'Elementor\Plugin' );
			$is_nexter_installed = array_key_exists('nxt_builder', $all_post_types);

			// To Check if required plugins have been installed
			$response['is_elementor_pro_installed'] = class_exists( 'ElementorPro\Plugin' );
			$response['is_elementor_installed'] = $is_elementor_installed;
			$response['is_nexter_installed'] = $is_nexter_installed;

			// Initiate empty array for gathering posts
			$response['posts'] = array(
				'elementor_library' => array(),
				'page' => array(),
				'nxt_builder' => array(),
			);

			// all post types to gather
			$post_types_to_query = array();

			// Add built-in post types
			// $post_types_to_query['post'] = 'post';
			$post_types_to_query['page'] = 'page';
			if($is_elementor_installed) $post_types_to_query['elementor_library'] = 'elementor_library';
			if($is_nexter_installed) $post_types_to_query['nxt_builder'] = 'nxt_builder';

			if ( !class_exists( '\Elementor\Plugin' ) ) {
				return $response;
			}
			
			// Fetch posts for each post type
			foreach ( $post_types_to_query as $post_type ) {
				$args = array(
					'post_type'      => $post_type,
					'posts_per_page' => -1,
					'post_status'	 => 'any',
				);

				$query = new WP_Query( $args );

				if ( $query->have_posts() ) {
					while ( $query->have_posts() ) {
						$query->the_post();
						$document = Elementor\Plugin::$instance->documents->get( get_the_ID() );

						if($document->is_built_with_elementor()){

							array_push($response['posts'][$post_type], array(
								'id' => get_the_ID(),
								'title' => html_entity_decode(get_the_title()),
							));

						}
					}
					wp_reset_postdata();
				}
			}

			return $response;
		}

		public function uich_get_elementor_config( WP_REST_Request $request){
			// Match Security Token.
			$this->uich_check_token( $request );

			$response = array(
				'success' => true,
				'version' => UICH_VERSION,
			);

			// fetch all post Types
			$all_post_types = get_post_types( [
				'public' => true,
				'can_export' => true,
				'_builtin' => false,
			] );

			$response['is_elementor_pro_installed'] = class_exists( 'ElementorPro\Plugin' );
			$response['is_elementor_installed'] = class_exists( 'Elementor\Plugin' );
			$response['isNexterInstalled'] = array_key_exists('nxt_builder', $all_post_types);

			return $response;
		}


		public function uich_get_gutenberg_posts( WP_REST_Request $request ){
			// Match Security Token.
			$this->uich_check_token( $request );

			// fetch all post Types
			$all_post_types = get_post_types( [
				'public' => true,
				'can_export' => true,
				'_builtin' => false,
			] );

			// Create a response
			$response = array(
				'success' => true,
			);

			// Establishing installed things
			$is_nexter_installed = array_key_exists('nxt_builder', $all_post_types);

			// To Check if required plugins have been installed
			$response['is_tpag_installed'] = defined('TPGB_VERSION');
			$response['is_nexter_installed'] = $is_nexter_installed;

			// Initiate empty array for gathering posts
			$response['posts'] = array(
				'wp_block' => array(),
				'page' => array(),
				'nxt_builder' => array(),
			);

			// all post types to gather
			$post_types_to_query = array();

			// Add built-in post types
			$post_types_to_query['page'] = 'page';
			$post_types_to_query['wp_block'] = 'wp_block';
			if($is_nexter_installed) $post_types_to_query['nxt_builder'] = 'nxt_builder';

			// Fetch posts for each post type
			foreach ( $post_types_to_query as $post_type ) {
				$args = array(
					'post_type'      => $post_type,
					'posts_per_page' => -1,
					'post_status'	 => 'any',
				);

				$query = new WP_Query( $args );

				if ( $query->have_posts() ) {
					while ( $query->have_posts() ) {
						$query->the_post();

						array_push($response['posts'][$post_type], array(
							'id' => get_the_ID(),
							'title' => html_entity_decode(get_the_title()),
						));
					}

					wp_reset_postdata();
				}
			}

			return $response;
		}

		public function uich_get_gutenberg_config( WP_REST_Request $request ){
			// Match Security Token.
			$this->uich_check_token( $request );

			// Create a response
			$response = array(
				'success' => true,
				'version' => UICH_VERSION,
			);

			// fetch all post Types
			$all_post_types = get_post_types( [
				'public' => true,
				'can_export' => true,
				'_builtin' => false,
			] );

			// Establishing installed things
			$is_nexter_installed = array_key_exists('nxt_builder', $all_post_types);

			// To Check if required plugins have been installed
			$response['is_tpag_installed'] = defined('TPGB_VERSION');
			$response['is_nexter_installed'] = $is_nexter_installed;
			$response['is_spectra_installed'] = defined('UAGB_PLUGIN_NAME');
			$response['is_kadence_installed'] = defined('KADENCE_BLOCKS_VERSION');
			$response['is_generate_block_installed'] = defined('GENERATEBLOCKS_VERSION');

			return $response;
		}


		public function uich_get_bricks_posts( WP_REST_Request $request ){
			// Match Security Token.
			$this->uich_check_token( $request );

			// Create a response
			$response = array(
				'success' => true,
			);

			// Establishing installed things
			$is_bricks_installed = ( class_exists( '\Bricks\Theme' ) && class_exists(( '\Bricks\Templates' )) );

			// To Check if required plugins have been installed
			$response['is_bricks_installed'] = $is_bricks_installed;

			// Initiate empty array for gathering posts
			$response['posts'] = array(
				'page' => array(),
				'bricks_template' => array(),
			);

			// all post types to gather
			$post_types_to_query = array();

			// Add built-in post types
			$post_types_to_query['page'] = 'page';
			if($is_bricks_installed) $post_types_to_query['bricks_template'] = 'bricks_template';


			//Fetch posts for each post type
			foreach ( $post_types_to_query as $post_type ) {
				$args = array(
					'post_type'      => $post_type,
					'posts_per_page' => -1,
					'post_status'	 => 'any',
				);

				$query = new WP_Query( $args );

				if ( $query->have_posts() ) {
					while ( $query->have_posts() ) {
						$query->the_post();
						$check_bricks = get_post_meta( get_the_ID(), '_bricks_editor_mode', true );

						if($check_bricks == 'bricks'){

							array_push($response['posts'][$post_type], array(
								'id' => get_the_ID(),
								'title' => html_entity_decode(get_the_title()),
							));

						}
					}
					wp_reset_postdata();
				}
			}

			return $response;
		}

		public function uich_get_bricks_config( WP_REST_Request $request ){
			// Match Security Token.
			$this->uich_check_token( $request );

			// Create a response
			$response = array(
				'success' => true,
				'version' => UICH_VERSION,
			);

			// Establishing installed things
			$is_bricks_installed = ( class_exists( '\Bricks\Theme' ) && class_exists(( '\Bricks\Templates' )) );

			// To Check if required plugins have been installed
			$response['is_bricks_installed'] = $is_bricks_installed;

			return $response;
		}


		/**
		 * Check Handle import
		 *
		 * @since   1.0.0
		 *
		 * @param WP_REST_Request $request WP_REST_Request object.
		 */
		public function uich_handle_import( WP_REST_Request $request ) {

			// Match Security Token.
			$this->uich_check_token( $request );

			$json = $request->get_body();

			// Check if JSON data is present.
			if ( ! empty( $json ) && class_exists( '\Elementor\Plugin' ) ) {

				$file_name = 'export.json';

				// Using the elementor tmp_file creator.
				$temp_filename = \Elementor\Plugin::$instance->uploads_manager->create_temp_file( $json, $file_name );
				$file_data     = array(
					'fileName' => $file_name,
            		'fileData' => base64_encode($json),
				);

				$selected_user = apply_filters( 'uich_manage_usermanager', 'get_user' );

				// Set current user as admin.
				wp_set_current_user( null, $selected_user );

				// Disable Error Displaying
				ini_set( 'display_errors', 0 );
				
				// Start the import.
				$import_result = \Elementor\Plugin::$instance->templates_manager->import_template( $file_data );

				return array(
					'success' => true,
					'result'  => $import_result,
				);
			} else {
				// Return an error response.
				return array(
					'success' => false,
					'message' => esc_html__( 'No JSON data found.', 'uichemy' ),
				);
			}

			// Remove added filter.
			remove_filter( 'http_request_timeout', 'uich_modify_http_request_default_timeout', 1 );
		}

		/**
		 * Handle import v2
		 *
		 * @param WP_REST_Request $request WP_REST_Request object.
		 */
		public function uich_handle_elementor_import_v2( WP_REST_Request $request ) {

			// Match Security Token.
			$this->uich_check_token( $request );

			if( !class_exists( '\Elementor\Plugin' ) ){
				return array(
					'success' => false,
					'message' => esc_html__( 'Required Elementor Plugin Please Install and Active.', 'uichemy' ),
				);
			}

			// Get Parameters
			$new_import = ( isset( $_GET['newImport'] ) && ! empty( $_GET['newImport'] ) ) ? sanitize_text_field( wp_unslash( $_GET['newImport'] ) ) : 'true';
			$post_type = (isset( $_GET['postType'] ) && !empty( $_GET['postType'] )) ? sanitize_text_field(wp_unslash($_GET['postType'])) : 'elementor';
			$elementor_post_sub_type = (isset( $_GET['elementorPostSubType'] ) && !empty( $_GET['elementorPostSubType'] )) ? sanitize_text_field( wp_unslash($_GET['elementorPostSubType']) ) : '';
			$nexter_post_sub_type = (isset( $_GET['nexterPostSubType'] ) && !empty( $_GET['nexterPostSubType'] )) ? sanitize_text_field( wp_unslash($_GET['nexterPostSubType']) ) : '';

			// postType: 'page' | 'nexter' | 'elementor'
			$post_type_map = array(
				'page' => 'page',
				'elementor' => 'elementor_library',
				'nexter' => 'nxt_builder',
			);
			$post_type = array_key_exists($post_type, $post_type_map) ? $post_type_map[$post_type] : 'elementor_library';


			// elementorPostSubType: "header" | "footer" | "single-post" | "single-page" | "archive-page" | "search-page" | "404-page" | null
			if('elementor_library' === $post_type){
				$el_type_map = array(
					'standard-template' => 'page',
					'header' => 'header',
					'footer' => 'footer',
					'single-post' => 'single-post',
					'single-page' => 'single-page',
					'archive-page' => 'archive',
					'search-page' => 'search-results',
					'404-page' => 'error-404',
				);

				$el_type = array_key_exists($elementor_post_sub_type, $el_type_map)
					? $el_type_map[$elementor_post_sub_type]
					: 'single-page';

			} elseif ('nxt_builder' === $post_type){
				$el_type_map = array(
					'standard-template' => 'none',
					'header' => 'header',
					'footer' => 'footer',
					'singular' => 'singular',
					'archive-page' => 'archives',
					'404-page' => 'page-404',
				);

				$el_type = array_key_exists($nexter_post_sub_type, $el_type_map)
					? $el_type_map[$nexter_post_sub_type]
					: 'none';
			}

			// Get The Body
			$json = $request->get_body();

			// Check if Empty
			if ( empty( $json ) ){
				// Return an error response.
				return array(
					'success' => false,
					'message' => esc_html__( 'No JSON data found.', 'uichemy' ),
				);
			}

			// Import
			if($new_import === "true"){

				$json = json_decode( $json, true );
				$selected_user = apply_filters( 'uich_manage_usermanager', 'get_user' );

				// Set current user as admin.
				wp_set_current_user( null, $selected_user );

				// Disable Error Displaying
				ini_set( 'display_errors', 0 );
				
				$post_title = !empty($json) && isset($json['title']) ? sanitize_text_field($json['title']) : 'Temp 1';

				$post_attributes = array(
					'post_title'  => $post_title,
					'post_type'   => $post_type,
					'post_status' => 'draft',
				);

				if ( 'elementor_library' === $post_type ) {
					$ell_type = empty($el_type) ? 'page' : $el_type;
					$new_document = \Elementor\Plugin::$instance->documents->create(
						$ell_type,
						$post_attributes
					);
				} else {
					$new_document = \Elementor\Plugin::$instance->documents->create(
						$post_attributes['post_type'],
						$post_attributes
					);
				}

				if ( is_wp_error( $new_document ) ) {
					return array(
						'success' => false,
						'import_failed' => $new_document->get_error_message(),
						'code'          => $new_document->get_error_code(),
					);
				}

				$post_content = isset($json) && !empty($json) && isset($json['content']) ? $json['content'] : [];
				$post_settings = isset($json) && !empty($json) && isset($json['page_settings']) ? $json['page_settings'] : [];
				$post_content = $this->ele_media_import($post_content);

				$new_document->save(
					array(
						'elements' => $post_content,
						'settings' => $post_settings,
					)
				);

				$inserted_id = $new_document->get_main_id();

				if('nxt_builder'===$post_type && !empty($el_type)){
					if ( '' === get_post_meta( $inserted_id, 'nxt-hooks-layout', true ) ) {
						if($el_type=='header' || $el_type=='footer'){
							add_post_meta( $inserted_id, 'nxt-hooks-layout-sections', $el_type );
							add_post_meta( $inserted_id, 'nxt-hooks-layout', 'sections' );
						}
						if($el_type=='page-404' || $el_type=='singular' || $el_type=='archives'){
							add_post_meta( $inserted_id, 'nxt-hooks-layout-pages', $el_type );
							add_post_meta( $inserted_id, 'nxt-hooks-layout', 'pages' );
						}
					}
				}

				return array(
					'success' => true,
					'result'  => array(
						'title'     => get_the_title( $inserted_id ),
						'edit_link' => get_edit_post_link( $inserted_id, 'internal' ),
						'view'      => get_permalink( $inserted_id ),
					),
				);

			}else if($new_import === "false"){
				$exist_post_id = (isset($_GET['importToPost']) && !empty($_GET['importToPost'])) ? (int) sanitize_text_field(wp_unslash($_GET['importToPost'])) : '';
				$importByReplacing = (isset($_GET['importByReplacing']) && !empty($_GET['importByReplacing'])) ? sanitize_text_field(wp_unslash($_GET['importByReplacing'])) : 'false';

				if(empty($exist_post_id)){
					return array(
						'success' => false,
						'message' => esc_html__( 'Post ID not provided for Updating.', 'uichemy' ),
					);
				}

				$exits_post_type = get_post_type( $exist_post_id );

				if(empty($exits_post_type) || $exits_post_type !== $post_type ) {
					return array(
						'success' => false,
						'message' => esc_html__( 'Post does not exist with given ID & Type.', 'uichemy' ),
					);
				}

				$document = Elementor\Plugin::$instance->documents->get_doc_or_auto_save($exist_post_id);

				if ($document) {
					$selected_user = apply_filters( 'uich_manage_usermanager', 'get_user' );

					// Set current user as admin.
					wp_set_current_user( null, $selected_user );

					// Get the content and convert it to JSON
					$exits_content = $document->get_elements_data();
					
					$json_array = json_decode($json, true);
					$update_content = !empty($json_array) && isset($json_array['content']) ? $json_array['content'] : [];

					if(!empty($importByReplacing) && $importByReplacing=='false'){
						$merged_content = array_merge($exits_content, $update_content);
					}else if(!empty($importByReplacing) && $importByReplacing=='true'){
						$merged_content = $update_content;
					}

					// Save Images <-- Test this
					$merged_content = $this->ele_media_import($merged_content);

					$document->save(
						array(
							'elements' => $merged_content,
						)
					);

					return array(
						'success' => true,
						'result'  => array(
							'title'     => get_the_title( $exist_post_id ),
							'edit_link' => get_edit_post_link( $exist_post_id, 'internal' ),
							'view'      => get_permalink( $exist_post_id ),
						),
					);

				} else {
					return array(
						'success' => false,
						'message' => esc_html__( 'This post doesn\'t have Elementor data.', 'uichemy' ),
					);
				}
			}

			// Remove added filter.
			remove_filter( 'http_request_timeout', 'uich_modify_http_request_default_timeout', 1 );
		}


		/**
		 * Handle Gutenberg import
		 *
		 * @param WP_REST_Request $request WP_REST_Request object.
		 */
		public function uich_handle_gutenberg_import( WP_REST_Request $request ) {
			// Match Security Token.
			$this->uich_check_token( $request );

			// Sub builder type
			$builder = sanitize_text_field( $request->get_param( 'subBuilderType' ) ?? '' );

			// Get Parameters
			$new_import = (isset( $_GET['newImport'] ) && !empty( $_GET['newImport'] )) ? sanitize_text_field(wp_unslash($_GET['newImport'])) : "true";
			$post_type = (isset( $_GET['postType'] ) && !empty( $_GET['postType'] )) ? sanitize_text_field(wp_unslash($_GET['postType'])) : 'page';
			$nexter_post_sub_type = (isset( $_GET['nexterPostSubType'] ) && !empty( $_GET['nexterPostSubType'] )) ? sanitize_text_field( wp_unslash($_GET['nexterPostSubType']) ) : '';
			$post_title = (isset( $_GET['postTitle'] ) && !empty( $_GET['postTitle'] )) ? sanitize_text_field(wp_unslash($_GET['postTitle'])) : "New Post - UiChemy";

			
			// postType: 'page' | 'nexter' | 'gutenberg_pattern'
			$post_type_map = array(
				'page' => 'page',
				'gutenberg_pattern' => 'wp_block',
				'nexter' => 'nxt_builder',
			);
			$post_type = array_key_exists($post_type, $post_type_map)
				? $post_type_map[$post_type]
				: 'wp_block';

			// nexterPostSubType: "standard-template" | "header" | "footer" | "singular" | "archive-page" | "404-page" | null
			if ('nxt_builder' === $post_type){
				$temp_type_map = array(
					'standard-template' => 'none',
					'header' => 'header',
					'footer' => 'footer',
					'singular' => 'singular',
					'archive-page' => 'archives',
					'404-page' => 'page-404',
				);

				$el_type = array_key_exists($nexter_post_sub_type, $temp_type_map)
					? $temp_type_map[$nexter_post_sub_type]
					: 'none';
			}

			// Get the Data to Import
			$data = $request->get_body();

			// Check if Empty
			if ( empty( $data ) ){
				// Return an error response.
				return array(
					'success' => false,
					'message' => esc_html__( 'No data Provided for Importing.', 'uichemy' ),
				);
			}

			if($new_import === "true"){

				// Get the data & Import
				$selected_user = apply_filters( 'uich_manage_usermanager', 'get_user' );

				// Set current user as admin.
				wp_set_current_user( null, $selected_user );

				// Disable Error Displaying
				ini_set( 'display_errors', 0 );

				$data = $this->import_gutenberg_media($data);

				// Replace \n with \\n for custom css
				$data = preg_replace('/\\\\n/', "\\\\\\\\n", $data);

				$post_attributes = array(
					'post_title'  => $post_title,
					'post_content' => $data,
					'post_type'   => $post_type,
					'post_status' => 'draft',
				);

				$inserted_id = wp_insert_post($post_attributes);

				if (is_wp_error($inserted_id)) {
					return array(
						'success' => false,
						'message' => $inserted_id->get_error_message(),
					);
				} else {
					if('nxt_builder'===$post_type && !empty($el_type)){
						if ( '' === get_post_meta( $inserted_id, 'nxt-hooks-layout', true ) ) {
							if($el_type=='header' || $el_type=='footer'){
								add_post_meta( $inserted_id, 'nxt-hooks-layout-sections', $el_type );
								add_post_meta( $inserted_id, 'nxt-hooks-layout', 'sections' );
							}
							if($el_type=='page-404' || $el_type=='singular' || $el_type=='archives'){
								add_post_meta( $inserted_id, 'nxt-hooks-layout-pages', $el_type );
								add_post_meta( $inserted_id, 'nxt-hooks-layout', 'pages' );
							}
						}
					}

					return array(
						'success' => true,
						'result'  => array(
							'title'     => get_the_title( $inserted_id ),
							'edit_link' => get_edit_post_link( $inserted_id, 'internal' ),
							'view'      =>  $post_type === 'wp_block' || $builder === 'GenBlocks'
								? get_edit_post_link( $inserted_id, 'internal' )
								: get_permalink( $inserted_id ),
						),
					);
				}

			}else if( $new_import === "false"){
				// In case of Existing Import
				$exist_post_id = (isset($_GET['importToPost']) && !empty($_GET['importToPost'])) ? (int) sanitize_text_field(wp_unslash($_GET['importToPost'])) : '';
				$importByReplacing = (isset($_GET['importByReplacing']) && !empty($_GET['importByReplacing'])) ? sanitize_text_field(wp_unslash($_GET['importByReplacing'])) : 'false';

				if(empty($exist_post_id)){
					return array(
						'success' => false,
						'message' => esc_html__( 'Post ID not provided for Updating.', 'uichemy' ),
					);
				}

				$exits_post_type = get_post_type( $exist_post_id );

				if(empty($exits_post_type) || $exits_post_type !== $post_type ) {
					return array(
						'success' => false,
						'message' => esc_html__( 'Post does not exist with given ID & Type.', 'uichemy' ),
					);
				}

				// Get selected user for Import
				$selected_user = apply_filters( 'uich_manage_usermanager', 'get_user' );

				// Set current user as admin.
				wp_set_current_user( null, $selected_user );

				// Get the content and convert it to JSON
				$post = get_post($exist_post_id);

				// Initialize a variable to store the post content
				$exits_content = '';

				if (!empty($post) && isset($post->post_content)) {
					$exits_content = $post->post_content;
				}

				// Content to Update
				$data = $this->import_gutenberg_media($data);

				// Replace \n with \\n for custom css
				$data = preg_replace('/\\\\n/', "\\\\\\\\n", $data);

				if(!empty($importByReplacing) && $importByReplacing=='false'){
					$merged_content = $exits_content . $data;
				}else if(!empty($importByReplacing) && $importByReplacing=='true'){
					$merged_content = $data;
				}

				// Post to Update
				$post_attributes = array(
					'ID'           => $exist_post_id,
					'post_content' => $merged_content,
				);

				// Update the Post
				$update_post = wp_update_post($post_attributes);

				if (is_wp_error($update_post)) {
					return array(
						'success' => false,
						'message' => $update_post->get_error_message(),
					);
				} else {
					// Remove Dynamic Cache
					// tpgb_library()->remove_dir_files(TPGB_ASSET_PATH);
					// tpgb_library()->remove_dir_dynamic_style_files(TPGB_ASSET_PATH);

					return array(
						'success' => true,
						'result'  => array(
							'title'     => get_the_title( $exist_post_id ),
							'edit_link' => get_edit_post_link( $exist_post_id, 'internal' ),
							'view'      => get_edit_post_link( $exist_post_id, 'internal' ), // Temp Fix for Caching Issue
							// 'view'      => $post_type === 'wp_block'
							// 	? get_edit_post_link( $exist_post_id, 'internal' )
							// 	: get_permalink( $exist_post_id ),
						),
					);
				}
			}

			// Remove added filter.
			remove_filter( 'http_request_timeout', 'uich_modify_http_request_default_timeout', 1 );
		}


		/**
		 * Handle Bricks import
		 *
		 * @param WP_REST_Request $request WP_REST_Request object.
		 */
		public function uich_handle_bricks_import_v2( WP_REST_Request $request ) {
			// Match Security Token.
			$this->uich_check_token( $request );

			// Check if Bricks Installed
			if( !class_exists( '\Bricks\Theme' ) || !class_exists(( '\Bricks\Templates' )) || !class_exists('Bricks\Frontend')) {
				return array(
					'success' => false,
					'message' => 'Please Install & Activate Bricks First.',
				);
			}

			// Get Parameters
			$new_import = (isset( $_GET['newImport'] ) && !empty( $_GET['newImport'] )) ? sanitize_text_field(wp_unslash($_GET['newImport'])) : "true";
			$post_type = (isset( $_GET['postType'] ) && !empty( $_GET['postType'] )) ? sanitize_text_field(wp_unslash($_GET['postType'])) : 'page';
			$bricks_post_sub_type = (isset( $_GET['bricksPostSubType'] ) && !empty( $_GET['bricksPostSubType'] )) ? sanitize_text_field( wp_unslash($_GET['bricksPostSubType']) ) : '';

			// postType: 'page' | 'bricks'
			$post_type_map = array(
				'page' => 'page',
				'bricks' => 'bricks_template',
			);
			$post_type = array_key_exists($post_type, $post_type_map) ? $post_type_map[$post_type] : 'page';

			// bricksPostSubType: "standard-template" | "header" | "footer" | "section" | "popup" | "archive" | "search-results" | "error-page" | null
			$el_type = 'content';
			if ('bricks_template' === $post_type){
				$temp_type_map = array(
					'standard-template' => 'content',
					'header' => 'header',
					'footer' => 'footer',
					'section' => 'section',
					'popup' => 'popup',
					'archive' => 'archive',
					'search-results' => 'search',
					'error-page' => 'error',
				);

				$el_type = array_key_exists($bricks_post_sub_type, $temp_type_map)
					? $temp_type_map[$bricks_post_sub_type]
					: 'content';
			}

			// Get The Body
			$json = $request->get_body();

			// Check if Empty
			if ( empty( $json ) ){
				// Return an error response.
				return array(
					'success' => false,
					'message' => esc_html__( 'No JSON data found.', 'uichemy' ),
				);
			}

			// Import
			if($new_import === "true"){

				// Get the data & Import
				$json = json_decode( $json, true );

				// Get selected user for Import
				$selected_user = apply_filters( 'uich_manage_usermanager', 'get_user' );

				// Set current user as admin.
				wp_set_current_user( null, $selected_user );

				// Disable Error Displaying
				ini_set( 'display_errors', 0 );

				$post_title = !empty($json) && isset($json['title']) ? sanitize_text_field($json['title']) : 'Bricks Template';
				$post_content = isset($json) && !empty($json) && isset($json['content']) ? $json['content'] : [];
				$post_content = $this->import_bricks_media($post_content);

				// for page settings
				$page_settings = isset($json) && !empty($json) && isset($json['pageSettings']) ? $json['pageSettings'] : [];
				$page_settings = $this->import_bricks_media($page_settings); // Optional: Process media in pageSettings if needed

				$post_attributes = array(
					'post_title'  => $post_title,
					'post_content' => '',
					'post_type'   => $post_type,
					'post_status' => 'draft',
				);

				$inserted_id = wp_insert_post($post_attributes);

				if (is_wp_error($inserted_id)) {
					return array(
						'success' => false,
						'message' => $inserted_id->get_error_message(),
					);
				} else {
					$meta_el_type = $el_type === 'header' || $el_type === 'footer'
						? $el_type
						: 'content';

					// Add the Bricks content meta key
					update_post_meta($inserted_id, '_bricks_page_'.esc_attr($meta_el_type).'_2', $post_content);

					update_post_meta($inserted_id, '_bricks_editor_mode', 'bricks');
					update_post_meta($inserted_id, '_bricks_template_type', esc_attr($el_type));
					update_post_meta($inserted_id, '_bricks_page_settings', $page_settings);

					return array(
						'success' => true,
						'result'  => array(
							'title'     => get_the_title( $inserted_id ),
							'edit_link' => get_edit_post_link( $inserted_id, 'internal' ),
							'view'      => get_permalink( $inserted_id ),
						),
					);
				}

			}else if( $new_import === "false"){
				// In case of Existing Import
				$exist_post_id = (isset($_GET['importToPost']) && !empty($_GET['importToPost'])) ? (int) sanitize_text_field(wp_unslash($_GET['importToPost'])) : '';
				$importByReplacing = (isset($_GET['importByReplacing']) && !empty($_GET['importByReplacing'])) ? sanitize_text_field(wp_unslash($_GET['importByReplacing'])) : 'false';

				if(empty($exist_post_id)){
					return array(
						'success' => false,
						'message' => esc_html__( 'Post ID not provided for Updating.', 'uichemy' ),
					);
				}

				$exits_post_type = get_post_type( $exist_post_id );

				if(empty($exits_post_type) || $exits_post_type !== $post_type ) {
					return array(
						'success' => false,
						'message' => esc_html__( 'Post does not exist with given ID & Type.', 'uichemy' ),
					);
				}

				// Get the Selected Uer for Importing.
				$selected_user = apply_filters( 'uich_manage_usermanager', 'get_user' );

				// Set current user as admin.
				wp_set_current_user( null, $selected_user );

				// Get the content and convert it to JSON
				$post = get_post($exist_post_id);

				// Initialize a variable to store the post content
				$exits_content = [];
				$exits_page_settings = [];
				$get_temp_type = 'content';
				if (!empty($post) ) {
					$get_temp_type = get_post_meta($exist_post_id, '_bricks_template_type', true);

					// Content key
					$get_temp_type = $get_temp_type === 'header' || $get_temp_type === 'footer'
						? $get_temp_type
						: 'content';

					if(!empty($get_temp_type)){
						$exits_content = get_post_meta($exist_post_id, '_bricks_page_'.esc_attr($get_temp_type).'_2', true);
						$exits_page_settings = get_post_meta($exist_post_id, '_bricks_page_settings', true);
					}
				}

				$json_array = json_decode($json, true);
				$update_content = !empty($json_array) && isset($json_array['content']) ? $json_array['content'] : [];
				$update_page_settings = !empty($json_array) && isset($json_array['pageSettings']) ? $json_array['pageSettings'] : [];
				$update_page_settings = $this->import_bricks_media($update_page_settings);
				$update_content = $this->import_bricks_media($update_content);

				if(!empty($importByReplacing) && $importByReplacing=='false'){
					$merged_content = array_merge($exits_content, $update_content);
					$merged_page_settings = array_merge($exits_page_settings, $update_page_settings);
				}else if(!empty($importByReplacing) && $importByReplacing=='true'){
					$merged_content = $update_content;
					$merged_page_settings = $update_page_settings;
				}

				if(!empty($get_temp_type)){

					update_post_meta($exist_post_id, '_bricks_page_'.esc_attr($get_temp_type).'_2', $merged_content);
					update_post_meta($exist_post_id, '_bricks_page_settings', $merged_page_settings);
					return array(
						'success' => true,
						'result'  => array(
							'title'     => get_the_title( $exist_post_id ),
							'edit_link' => get_edit_post_link( $exist_post_id, 'internal' ),
							'view'      => get_permalink( $exist_post_id ),
						),
					);
				}

				return array(
					'success' => false,
					'message' => esc_html__( 'Could not update the data.', 'uichemy' ),
				);
			}
		}



		/**
		 * Check handle check
		 *
		 * @since   1.0.0
		 *
		 * @param WP_REST_Request $request get current page slug.
		 */
		public function uich_handle_check( WP_REST_Request $request ) {

			$this->uich_check_token( $request );

			return array(
				'success' => true,
				'message' => esc_html__( 'All Good.', 'uichemy' ),
			);
		}

		/**
		 * Filter to allow "token" header in Requests.
		 *
		 * @since 1.0.0
		 *
		 * @param mixed $value The value to check and return.
		 */
		public function uiche_rest_send_cors_headers( $value ) {
			$origin     = get_http_origin();
			$requesturi = (isset( $_SERVER['REQUEST_URI'] ) && ! empty( $_SERVER['REQUEST_URI'] )) ? sanitize_text_field( wp_unslash( $_SERVER['REQUEST_URI'] ) ) : '';

			// In case of non-pretty REST URLs
			$rest_route_str = '';
			if ( isset( $_GET['rest_route'] ) && ! empty( $_GET['rest_route'] ) ) {
				// Sanitize GET param
				$rest_route_str = sanitize_text_field( wp_unslash( $_GET['rest_route'] ) );
			}

			if ( ! empty( $origin )
				&& ((preg_match( '/\/wp-json\/uichemy\/v/', wp_parse_url( $requesturi, PHP_URL_PATH ) ) === 1)
				|| (preg_match( '/^\/uichemy\/v/', $rest_route_str ) === 1))
			) {
				// WP REST Takes care of Access-Control-Allow-Origin

				// Allow security token header.
				header( 'Access-Control-Allow-Headers: UiChemy-Security-Token, Content-Type' );
			}

			return $value;
		}

		/**
		 * Check token matching
		 *
		 * @since   1.0.0
		 *
		 * @param WP_REST_Request $request WP_REST_Request object.
		 */
		public function uich_check_token( WP_REST_Request $request ) {

			// In case of shutdown.
			header( 'Access-Control-Allow-Origin: *' );

			$token         = $request->get_header( 'UiChemy-Security-Token' );
			$current_token = apply_filters( 'uich_manage_token', 'get_token' );

			if ( is_null( $token ) || empty( $current_token ) || $current_token !== $token ) {
				wp_send_json(
					array(
						'success' => false,
						'message' => esc_html__( 'Invalid Security Token', 'uichemy' ),
					)
				);

				wp_die();
			}
		}

		/**
		 * Check http_request time
		 *
		 * @since   1.0.0
		 */
		public function uich_modify_http_request_default_timeout() {
			return 30;
		}

		/**
		 * Send nonce for Bricks Import
		 *
		 * @since   1.0.0
		 *
		 * @param WP_REST_Request $request WP_REST_Request object.
		 */
		public function uich_handle_bricks_get_nonce( WP_REST_Request $request ) {

			// Match Security Token.
			$this->uich_check_token( $request );

			// Get the user to use
			$selected_user = apply_filters( 'uich_manage_usermanager', 'get_user' );

			// Set current user as admin.
			wp_set_current_user( null, $selected_user );

			// Create Nonce
			$nonce = wp_create_nonce("bricks-nonce-admin");

			return array(
		        'success' => true,
		        'nonce' => $nonce,
		    );
		}
		
		/**
		 * Handle import for Bricks
		 *
		 * @since   1.0.0
		 *
		 * @param WP_REST_Request $request WP_REST_Request object.
		 */
		public function uich_handle_bricks_import( WP_REST_Request $request ) {

			// Match Security Token.
			$this->uich_check_token( $request );

			if( !class_exists( '\Bricks\Theme' ) || !class_exists(( '\Bricks\Templates' )) ) {
				return array(
					'success' => false,
					'message' => 'Please Install & Activate Bricks First.',
				);
			}

			if( empty($_FILES) || empty($_FILES['files']) ) {
				return array(
					'success' => false,
					'message' => 'No file provided',
				);
			}

			// Get the user to use & Set current user
			$selected_user = apply_filters( 'uich_manage_usermanager', 'get_user' );
			wp_set_current_user( null, $selected_user );

			// Load WP_WP_Filesystem for temp file URL access
			global $wp_filesystem;

			if ( empty( $wp_filesystem ) ) {
				require_once ABSPATH . '/wp-admin/includes/file.php';

				WP_Filesystem();
			}

			/**
			 * Safe template import with sanitization
			 */
			if ( isset( $_FILES['files']['tmp_name'][0] ) && isset($_FILES['files']['name'][0]) ) {
				// Sanitize uploaded file info
				$file_tmp  = sanitize_text_field( wp_unslash( $_FILES['files']['tmp_name'][0] ) );
				$file_name = sanitize_file_name( wp_unslash( $_FILES['files']['name'][0] ) );

				// Verify JSON file type
				$filetype = wp_check_filetype_and_ext( $file_tmp, $file_name );
				if ( $filetype['ext'] === 'json' && $filetype['type'] === 'application/json' ) {

					// Read contents
					$contents = $wp_filesystem->get_contents( $file_tmp );

					if ( $contents ) {
						$template = json_decode( $contents, true );

						if ( is_array( $template ) && isset( $template['content'] ) && is_array( $template['content'] ) ) {

							$elements = $template['content'];

							\Bricks\Templates::$template_images = [];

							foreach ( $elements as $index => $element ) {
								if ( ! empty( $element['settings'] ) && is_array( $element['settings'] ) ) {
									\Bricks\Theme::instance()->templates->import_images(
										$element['settings'],
										true
									);
								}
							}

							// STEP: Replace remote image data with imported/existing image data.
							if ( count( \Bricks\Templates::$template_images ) ) {
								$elements_encoded = wp_json_encode( $elements );

								foreach ( \Bricks\Templates::$template_images as $template_image ) {
									$elements_encoded = str_replace(
										wp_json_encode( $template_image['old'] ),
										wp_json_encode( $template_image['new'] ),
										$elements_encoded
									);
								}

								$elements = json_decode( $elements_encoded, true );

								$template['content'] = $elements;

								// Replace Uploaded File Contents for Importing (safe JSON encoding)
								$wp_filesystem->put_contents( $file_tmp, wp_json_encode( $template ) );
							}

							// Import & Return the value
							\Bricks\Theme::instance()->templates->import_template();
						}
					}
				}
			}


		}

		/**
		 * Error JSON message
		 *
		 * @param array  $data give array.
		 * @param string $status api code number.
		 * */
		public function uich_error_msg( $data = null, $status = null ) {
			wp_send_json_error( $data );
			wp_die();
		}

		/**
		 * Response Message
		 *
		 * @param array  $success give array.
		 * @param message $status api code number.
		 * @param message $description api code number.
		 * @param message $data give array or string.
		 * */
		public function uich_response( $message = '', $description = '', $success = false, $data = '' ){

			return array( 
				'message' => $message, 
				'description' => $description, 
				'success' => $success,
				'data' => $data, 
			);
		}

		/**
		 * Create Default setting data in db
		 *
		 * @since 1.2.2
		 *
		 * @param string $type use for check page type.
		 */
		public function uich_recommended_settings( $type ) {

			if ( 'elementor_install' === $type ) {
				if ( is_plugin_active( $this->elementor_pluginpath ) ) {
					return $this->uich_response( 'Elementor Activated', 'Elementor Activated', true, '' );
				}else{
					return $this->uich_response( 'Elementor Not Activated', 'Elementor Not Activated', false, '' );
				}
			}else if ( 'flexbox_container' === $type ) {
				$get_default = get_option( $this->flexbox_container_db );

				return $this->uich_response( '', '', true, $get_default );
			}else if( 'enable_unfiltered_file_uploads' === $type ){
				$get_default = get_option( $this->file_uploads_db );

				return $this->uich_response( '', '', true, $get_default );
			}else if( 'bricks_svg_uploads' === $type ) {
				$uroles = get_editable_roles();
				$capability = 'bricks_upload_svg';
				$briRole = array();
				foreach ($uroles as $role_key => $role_data) {
					if (isset($role_data['capabilities'][$capability]) && $role_data['capabilities'][$capability] === true) {
						$briRole[$role_key] = $role_data;
					}
				}

				return $this->uich_response( '', '', true, $briRole );
			}else if ( 'tpgb_install' === $type ) {
				if ( is_plugin_active( $this->tpgb_plugin_path ) ) {
					return $this->uich_response( 'The Plus Blocks for Block Editor Activated', 'The Plus Blocks for Block Edito Activated', true, '' );
				}else{
					return $this->uich_response( 'The Plus Blocks for Block Editor Not Activated', 'The Plus Blocks for Block Edito Not Activated', false, '' );
				}
			}else if( 'kadence_install' === $type ) {
				if ( is_plugin_active( 'kadence-blocks/kadence-blocks.php' ) ) {
					return $this->uich_response( 'Kadence Blocks Activated', 'Kadence Blocks Activated', true, '' );
				}else{
					return $this->uich_response( 'Kadence Blocks Not Activated', 'Kadence Blocks Not Activated', false, '' );
				}
			}else if( 'generateblocks_install' === $type ) {
				if ( is_plugin_active( 'generateblocks/plugin.php' ) ) {
					return $this->uich_response( 'GenerateBlocks Activated', 'GenerateBlocks Activated', true, '' );
				}else{
					return $this->uich_response( 'GenerateBlocks Not Activated', 'GenerateBlocks Not Activated', false, '' );
				}
			}else if( 'spectra_install' === $type ) {
				if ( is_plugin_active( 'ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php' ) ) {
					return $this->uich_response( 'Spectra Activated', 'Spectra Activated', true, '' );
				}else{
					return $this->uich_response( 'Spectra Not Activated', 'Spectra Not Activated', false, '' );
				}
			}
		}

		/**
		 * Get uichemy Api Call Ajax.
		 *
		 * @since 1.0.10
		 */
		public function uich_api_call() {

			check_ajax_referer( 'uichemy-ajax-nonce', 'nonce' );

			if ( ! is_user_logged_in() || ! current_user_can( 'manage_options' ) ) {
				wp_send_json( $this->uich_response( 'User Roll Issue', 'is_user_logged_in', true, '' ) );
				wp_die();
			}

			$type = isset( $_POST['type'] ) ? strtolower( sanitize_text_field( wp_unslash( $_POST['type'] ) ) ) : false;
			if ( empty( $type ) ) {
				wp_send_json( $this->uich_response( 'Something went wrong.', 'Type Not Found', true, '' ) );
				wp_die();
			}

            $key = isset( $_POST['key'] ) ? strtolower( sanitize_text_field( wp_unslash( $_POST['key'] ) ) ) : false;
           
			switch ( $type ) {
				case 'install_elementor':
					$data = $this->uich_install_elementor();
				break;
				case 'flexbox_container':
					$data = $this->uich_flexbox_container();
				break;
				case 'elementor_file_uploads':
					$data = $this->uich_elementor_file_uploads();
				break;
				case 'bricks_file_uploads':
					$data = $this->uich_bricks_file_uploads();
				break;
				case 'install_tpgb':
					$data = $this->uich_install_tpgb();
                break;
                case 'add_custom_option':
                    $data = $this->uich_add_option($key);
				break;
			}

			wp_send_json( $data );
			wp_die();
		}

		/**
		 * Install Elementor
		 * 
		 * @since 1.0.0
		 * */
		public function uich_install_elementor() {
			include_once ABSPATH . 'wp-admin/includes/file.php';
			include_once ABSPATH . 'wp-admin/includes/class-wp-upgrader.php';
			include_once ABSPATH . 'wp-admin/includes/class-automatic-upgrader-skin.php';

			$response = wp_remote_post('http://api.wordpress.org/plugins/info/1.0/',
				[
					'body' => [
						'action' => 'plugin_information',
						'request' => serialize((object) [
							'slug' => 'elementor',
							'fields' => [
								'version' => false,
							],
						]),
					],
				]
			);

			$elementor_plugin = unserialize(wp_remote_retrieve_body($response));
			if ( is_wp_error($elementor_plugin) ) {
				return $this->uich_response( 'Something Went Wrong', 'get body', false, $elementor_plugin );
			}

			$upgrad = new \Plugin_Upgrader(new \Automatic_Upgrader_Skin());

			/**Install Plugin*/
			$elementor_Install = $upgrad->install($elementor_plugin->download_link);
			if ( is_wp_error($elementor_Install) ) {
				return $this->uich_response( 'Something Went Wrong', 'Install Plugin', false, $elementor_Install );
			}

			/**Activate Plugin*/
			if ( true === $elementor_Install ) {
				$elementor_active = activate_plugin( $upgrad->plugin_info(), '', false, true );

				if ( is_wp_error($elementor_active) ) {
					return $this->uich_response( 'Something Went Wrong', 'Activate Plugin', false, $elementor_active );
				}

				$success = null === $elementor_active;

				return $this->uich_response( 'Successfully Activated!', 'Elementor Installed and Activated Successfully.', $success, '' );
			}else{
				activate_plugin( $this->elementor_pluginpath );

				if ( is_plugin_active( $this->elementor_pluginpath ) ) {
					return $this->uich_response( 'Successfully Activated!', 'Elementor Installed and Activated Successfully.', true, '' );
				} else {
					return $this->uich_response( 'Something Went Wrong', 'Not Activate Plugin', false, '' );
				}

			}
		}

		/**
		 * Flexbox Container
		 *
		 * @since 1.2.2
		 * */
		public function uich_flexbox_container() {
			
			if ( 'active' !== get_option( $this->flexbox_container_db ) ) {
				update_option( $this->flexbox_container_db, 'active' );

				return $this->uich_response( 'Successfully Enabled!', 'Flexbox Container activated Successfully.', true, '' );
			}else {
				return $this->uich_response( 'Something Went Wrong', 'Flexbox Container Alredy Activated', true, '' );
			}
		}

		/**
		 * Flexbox Container
		 * 
		 * @since 1.2.2
		 * */
		public function uich_elementor_file_uploads() {
			$fileupload = get_option( $this->file_uploads_db );

			if ( empty( $fileupload ) && $fileupload !== 1 ) {
				update_option( $this->file_uploads_db, 1 );

				return $this->uich_response( 'Successfully Enabled!', 'Unfiltered File Uploads activated Successfully.', true, '' );
			}else {
				return $this->uich_response( 'Something Went Wrong', 'File Uploads Alredy Activated', true, '' );
			}
		}

		/**
		 * Bricks File Uploads
		 *
		 * @since 1.2.2
		 */
		public function uich_bricks_file_uploads(){

			$roles = wp_roles()->get_names();
			foreach ( $roles as $role_key => $label ) {
				$role = get_role( $role_key );
				if( $role && $role->has_cap( 'import' ) ) wp_roles()->add_cap( $role_key, 'bricks_upload_svg' );
			}

			return $this->uich_response( 'Successfully Enabled!', 'Unfiltered File Uploads activated Successfully.', true, '' );
		}

		public function ele_media_import( $content = array() ) {
			if ( ! class_exists( 'Uich_Import_Images' ) ) {
				require_once UICH_PATH . 'includes/admin/class-uich-import-images.php';
			}
			if ( ! empty( $content ) ) {
				$media_import = array( $content );
				$media_import = Uich_Import_Images::widgets_elements_id_change( $media_import );
				$media_import = Uich_Import_Images::widgets_import_media_copy_content( $media_import );
				$content      = $media_import[0];
			}
			return $content;
		}


		public function import_gutenberg_media($content = ''){
			if ( ! class_exists( 'Uich_Import_Images' ) ) {
				require_once UICH_PATH . 'includes/admin/class-uich-import-images.php';
			}

			if(defined('TPGB_VERSION') && defined('TPGB_PATH')){

				require_once TPGB_PATH . 'classes/global-options/tp-import-media.php';
				
				$content = parse_blocks( $content );
				
				$new_content = Uich_Import_Images::gutenberg_import_media_copy_content( $content );
				
				$content = '';
				foreach ($new_content as $block) {
					$content .= serialize_block($block);
				}

			} else {
				$content = parse_blocks( $content );
				
				$new_content = Uich_Import_Images::gutenberg_import_media_copy_content( $content );
				
				$content = '';
				foreach ($new_content as $block) {
					$content .= serialize_block($block);
				}
			}

			return $content;
		}

		public function import_bricks_media($content = []){
			
			if(!empty($content)){
				$elements = $content;
				\Bricks\Templates::$template_images = [];
	
				foreach ( $elements as $index => $element ) {
					if ( !empty( $element['settings'] ) ) {
						\Bricks\Theme::instance()->templates->import_images( $element['settings'], true );
					}
				}

				// STEP: Replace remote image data with imported/existing image data.
				if ( count( \Bricks\Templates::$template_images ) ) {
					$elements_encoded = wp_json_encode( $elements );
	
					foreach ( \Bricks\Templates::$template_images as $template_image ) {
						$elements_encoded = str_replace(
							wp_json_encode( $template_image['old'] ),
							wp_json_encode( $template_image['new'] ),
							$elements_encoded
						);
					}
	
					$content = json_decode( $elements_encoded, true );
				}
			}

			return $content;
		}

		/**
		 * Install The Plus Block For Editor
		 *
		 * @since 2.3.2
		 * */
		public function uich_install_tpgb(){
			include_once ABSPATH . 'wp-admin/includes/file.php';
			include_once ABSPATH . 'wp-admin/includes/class-wp-upgrader.php';
			include_once ABSPATH . 'wp-admin/includes/class-automatic-upgrader-skin.php';

            $pluginName = isset( $_POST['pluginName'] ) ? strtolower( sanitize_text_field( wp_unslash( $_POST['pluginName'] ) ) ) : false;

			$response = wp_remote_post('http://api.wordpress.org/plugins/info/1.0/',
				[
					'body' => [
						'action' => 'plugin_information',
						'request' => serialize((object) [
							'slug' => $pluginName,
							'fields' => [
								'version' => false,
							],
						]),
					],
				]
			);

			$tpgb_plugin = unserialize(wp_remote_retrieve_body($response));
			if ( is_wp_error($tpgb_plugin) ) {
				return $this->uich_response( 'Something Went Wrong', 'get body', false, $tpgb_plugin );
			}

			$upgrad = new \Plugin_Upgrader(new \Automatic_Upgrader_Skin());

			/**Install Plugin*/
			$tpgb_plugin = $upgrad->install($tpgb_plugin->download_link);
			if ( is_wp_error($tpgb_plugin) ) {
				return $this->uich_response( 'Something Went Wrong', 'Install Plugin', false, $tpgb_plugin );
			}

			/**Activate Plugin*/
			if ( true === $tpgb_plugin ) {
				$tpgb_active = activate_plugin( $upgrad->plugin_info(), '', false, true );

				if ( is_wp_error($tpgb_active) ) {
					return $this->uich_response( 'Something Went Wrong', 'Activate Plugin', false, $tpgb_active );
				}

				$success = null === $tpgb_active;

				return $this->uich_response( 'Successfully Activated!', 'The Plus Blocks for Block Editor Installed and Activated Successfully.', $success, '' );
			}else{
				activate_plugin( $pluginName.'/'.$pluginName.'.php' );

				if ( is_plugin_active( $pluginName.'/'.$pluginName.'.php' ) ) {
					return $this->uich_response( 'Successfully Activated!', 'The Plus Blocks for Block Editor Installed and Activated Successfully.', true, '' );
				} else {
					return $this->uich_response( 'Something Went Wrong', 'Not Activate Plugin', false, '' );
				}

			}
		}
        
        public function uich_add_option( $key ) {
            $current_value = get_option( $key );
        
            if ( ! empty( $current_value ) ) {
                update_option( $key, false );
                return $this->uich_response(  'Successfully Disabled!', 'Custom CSS Field Deactivated Successfully.', true, '');
            }  else {
                if ( get_option( $key ) === false ) {
                    add_option( $key, true );
                } else {
                    update_option( $key, true );
                }
        
                return $this->uich_response( 'Successfully Enabled!', 'Custom CSS Field Activated Successfully.', true, '' );
            }
        }
	}

	new Uich_Api();
}