Sindbad~EG File Manager

Current Path : /home/xiedrke/entrepot/wp-content/plugins/thim-core/admin/services/
Upload File :
Current File : /home/xiedrke/entrepot/wp-content/plugins/thim-core/admin/services/class-thim-importer-service.php

<?php

/**
 * Class Thim_Importer_Service.
 *
 * @package   Thim_Core_Admin
 * @since     0.3.1
 */
class Thim_Importer_Service {
	/**
	 * Validate file.
	 *
	 * @param $file
	 *
	 * @return bool
	 * @throws Thim_Error
	 *
	 * @since 0.3.1
	 *
	 */
	private static function _file_validate( $file ) {
		if ( ! file_exists( $file ) ) {
			throw Thim_Error::create( 'File not found!', 5,
				'Please check the existence of file <code>' . $file . '</code>' );
		}

		if ( ! is_readable( $file ) ) {
			throw Thim_Error::create( 'File is not readable!', 6,
				'Please check the permission of file <code>' . $file . '</code>' );
		}

		return true;
	}

	/**
	 * Get file contents.
	 *
	 * @param $file
	 *
	 * @return string
	 * @throws Thim_Error
	 * @since 0.3.1
	 *
	 */
	private static function _file_get_contents( $file ) {
		self::_file_validate( $file );

		$contents = file_get_contents( $file );
		if ( ! $contents ) {
			throw Thim_Error::create( 'Get file content failed!', 6, 'Please check file <code>' . $file . '</code>' );
		}

		return $contents;
	}


	/**
	 * Import theme options.
	 *
	 * @param $options_file
	 *
	 * @return bool
	 * @throws Thim_Error
	 * @since 0.3.1
	 *
	 */
	public static function theme_options( $options_file ) {
		try {
			$content = self::_file_get_contents( $options_file );

			$options = maybe_unserialize( $content );
			if ( ! $options || is_string( $options ) ) {
				throw Thim_Error::create( 'Decode file failed!', 7,
					'Please check file <code>' . $options_file . '</code>' );
			}

			array_walk( $options, array( __CLASS__, 'change_theme_mods_root_url' ) );
//
			$theme = get_option( 'stylesheet' );
//			// Get current theme mods
//			$theme_mods = get_option( "theme_mods_{$theme}" );
//
//			// Mergers new options and clean
//			if ( $theme_mods ) {
//				// Update to a new option so we can restore after that
//				update_option( "theme_mods_backup_$theme", $theme_mods );
//
//				$theme_mods = array_merge( $theme_mods, $options );
//			} else {
//				$theme_mods = $options;
//			}
//			$theme_mods = thim_clean_theme_mods( $theme_mods );

			// Update theme mods
			update_option( "theme_mods_$theme", $options );
		} catch ( Exception $e ) {
			throw Thim_Error::create( $e->getMessage() );
		}

		return true;
	}

	public static function change_theme_mods_root_url( &$item ) {
		$replace = new Thim_Elementor_Import_Service( null, null );
		$item = $replace->replace_image_urls( $item );
	}

	/**
	 * Analyze content for current demo
	 *
	 * @param $xml
	 *
	 * @since 0.5.0
	 */
	public static function analyze_content( $xml ) {
		$thim_wp_import = Thim_WP_Import_Service::instance( true );
		$thim_wp_import->analyze_content( $xml );
	}

	/**
	 * Import widgets
	 *
	 * @param $widget_file
	 * @param $widget_logic
	 *
	 * @return bool
	 * @throws Thim_Error
	 * @since 0.4.0
	 *
	 */
	public static function widget( $widget_file, $widget_logic ) {
		try {
			$json_data = self::_file_get_contents( $widget_file );
			$json_data = json_decode( $json_data, true );

			if ( empty( $json_data ) || ! is_array( $json_data ) ) {
				throw Thim_Error::create( 'Import data could not be read.', 6,
					'Please check file <code>' . $widget_file . '</code>' );
			}

			$thim_widget_importer = new Thim_Widget_Importer_Service();
			$thim_widget_importer->import( $json_data, $widget_logic, true );
		} catch ( Exception $e ) {
			throw Thim_Error::create( $e->getMessage() );
		}

		return true;
	}

	/**
	 * Import Slider Revolution.
	 *
	 * @param array $revsliders
	 *
	 * @return bool
	 * @throws Thim_Error
	 * @since 0.4.0
	 */
	public static function revslider( $revsliders ) {
		try {
			$THEME_PATH     = get_template_directory();

			// download folder data demo to upload
			$prefix_folder_data_demo = apply_filters( 'thim_prefix_folder_download_data_demo', '' );
			if ( $prefix_folder_data_demo ) {
				$dir_revsliders       = Thim_Admin_Config::get( 'demo_data' ) . esc_attr( $prefix_folder_data_demo ) . '/revsliders/';
			} else {
				$dir_revsliders = apply_filters( 'thim_core_importer_directory_revsliders', $THEME_PATH . '/inc/data/revsliders/' );
			}


			if ( ! is_array( $revsliders ) || ! count( $revsliders ) ) {
				return false;
			}

			foreach ( $revsliders as $file ) {
				$f    = $dir_revsliders . $file;
				$file = Thim_File_Helper::download_file( $f );

				if ( is_wp_error( $file ) ) {
					throw Thim_Error::create( 'Download slider data failed.', 8, '' );
				}

				if ( ! is_file( $file ) ) {
					continue;
				}

				$_FILES['import_file']['tmp_name'] = $file;
				if ( class_exists( 'RevSlider' ) ) {
					$slider   = new RevSlider();
					$response = $slider->importSliderFromPost( true, true );
					if ( ! $response['success'] ) {
						return true;
					}
				}
			}
		} catch ( Exception $e ) {
			throw Thim_Error::create( $e->getMessage() );
		}

		return true;
	}

	/**
	 * Update site settings.
	 *
	 * @param $settings_file
	 *
	 * @since 0.5.0
	 *
	 */
	public static function settings( $settings_file ) {
		$text     = self::_file_get_contents( $settings_file );
		$settings = maybe_unserialize( $text );

		if ( ! is_array( $settings ) ) {
			return;
		}

		/**
		 * Update basic settings.
		 */
		$basic_settings = Thim_Importer_Service::get_key_basic_settings();
		foreach ( $basic_settings as $basic_setting ) {
			if ( isset( $settings[ $basic_setting ] ) ) {
				update_option( $basic_setting, $settings[ $basic_setting ] );
			}
		}

		/**
		 * Mapping settings page slug to page id.
		 */
		$settings_key = Thim_Importer_Service::get_key_page_id_settings();
		foreach ( $settings_key as $key ) {

			$page_slug = isset( $settings[ $key ] ) ? $settings[ $key ] : false;

			$page_id = thim_get_page_id_by_path( $page_slug );
			if($key == 'elementor_active_kit'){
				$page = get_page_by_path( $page_slug, OBJECT, 'elementor_library' );
 				if ( $page ) {
					$page_id = $page->ID;
				}
 			}
			if ( $page_id ) {
				update_option( $key, $page_id );
			}
		}
		//tuanta export thim elementor kit mega menu options
		if(isset($settings['thim_enable_mega_menu']) && $settings['thim_enable_mega_menu'] == 1){
			$menu_primary_id = get_theme_mod('nav_menu_locations');
  			update_term_meta($menu_primary_id['primary'], 'thim_enable_mega_menu', 1);
		}
	}

	/**
	 * Reset demo data.
	 *
	 * @return bool
	 * @since 0.6.0
	 *
	 */
	public static function reset_data_demo() {
		$thim_wp_import = Thim_WP_Import_Service::instance();
		$thim_wp_import->clean_demo_content();

		self::remove_all_rev_sliders();

		/**
		 * Remove all widgets.
		 */
		Thim_Widget_Importer_Service::remove_all();

		/**
		 * Reset show on front page.
		 */
		update_option( 'show_on_front', 'posts' );

		/**
		 * Backup theme mods.
		 */
		$theme             = get_option( 'stylesheet' );
		$theme_mods_backup = get_option( "theme_mods_backup_{$theme}" );
		thim_clean_theme_mods( $theme_mods_backup );
		update_option( "theme_mods_$theme", $theme_mods_backup );

		Thim_Importer::update_key_demo_installed( false );

		return true;
	}

	/**
	 * Remove all revolution sliders.
	 *
	 * @since 1.3.4
	 */
	private static function remove_all_rev_sliders() {
		if ( ! class_exists( 'RevSlider' ) ) {
			return;
		}

		$slider     = new RevSlider();
		$arrSliders = $slider->getArrSliders();

		foreach ( $arrSliders as $slider ) {
			if ( method_exists( $slider, 'deleteSlider' ) ) {
				$slider->deleteSlider();
			}
		}
	}

	/**
	 * Get key page id settings.
	 *
	 * @return array
	 * @since 0.8.2
	 *
	 */
	public static function get_key_page_id_settings() {
		$list = array(
			'woocommerce_shop_page_id',
			'woocommerce_cart_page_id',
			'woocommerce_checkout_page_id',
			'woocommerce_terms_page_id',
			'yith_wcwl_wishlist_page_id',
			'page_for_posts',
			'page_on_front',
		);

		return apply_filters( 'thim_importer_page_id_settings', $list );
	}

	/**
	 * Get key basic settings.
	 *
	 * @return array
	 * @since 0.8.2
	 *
	 */
	public static function get_key_basic_settings() {
		$list = array(
			'show_on_front',
			'megamenu_settings',
			'sb_instagram_settings',
		);

		return apply_filters( 'thim_importer_basic_settings', $list );
	}

}

Sindbad File Manager Version 1.0, Coded By Sindbad EG ~ The Terrorists