File "library-source.php"
Full Path: /home/bytebmoc/tideswithin.com/editor/server-request/library-source.php
File size: 4.54 KB
MIME-type: text/x-php
Charset: utf-8
<?php
namespace ElementPack\Includes\TemplateLibrary\Editor\ServerRequest;
use Elementor\TemplateLibrary\Source_Base;
defined( 'ABSPATH' ) || exit;
class Library_Source extends Source_Base {
/**
* Template library data cache
*/
const LIBRARY_CACHE_KEY = 'ElementPack_library_cache';
public function get_id() {
return 'bdthemes-element-pack-library';
}
public function get_title() {
return esc_html__( 'ElementPack Library', 'bdthemes-element-pack' );
}
public function register_data() {}
public function save_item( $template_data ) {
return new \WP_Error( 'invalid_request', 'Cannot save template to a ElementPack library' );
}
public function update_item( $new_data ) {
return new \WP_Error( 'invalid_request', 'Cannot update template to a ElementPack library' );
}
public function delete_template( $template_id ) {
return new \WP_Error( 'invalid_request', 'Cannot delete template from a ElementPack library' );
}
public function export_template( $template_id ) {
return new \WP_Error( 'invalid_request', 'Cannot export template from a ElementPack library' );
}
public function get_items( $args = [] ) {
$library_data = self::get_library_data();
$templates = [];
if ( ! empty( $library_data['templates'] ) ) {
foreach ( $library_data['templates'] as $template_data ) {
$templates[] = $this->prepare_template( $template_data );
}
}
return $templates;
}
public function get_tags() {
$library_data = self::get_library_data();
return ( ! empty( $library_data['tags'] ) ? $library_data['tags'] : [] );
}
/**
* Prepare template items to match model
*
* @param array $template_data
* @return array
*/
private function prepare_template( array $template_data ) {
return [
'template_id' => $template_data['id'],
'title' => $template_data['title'],
'type' => $template_data['type'],
'thumbnail' => $template_data['thumbnail'],
'date' => $template_data['created_at'],
'tags' => $template_data['tags'],
'isPro' => $template_data['is_pro'],
'url' => $template_data['url'],
];
}
/**
* Get library data from remote source and cache
*
* @param boolean $force_update
*/
private static function request_library_data( $force_update = false ) {
$data = get_option( self::LIBRARY_CACHE_KEY );
if ( $force_update || false === $data ) {
$timeout = ( $force_update ) ? 25 : 8;
$response = wp_remote_get( self::API_TEMPLATES_INFO_URL, [
'timeout' => $timeout,
] );
if ( is_wp_error( $response ) || 200 !== (int) wp_remote_retrieve_response_code( $response ) ) {
update_option( self::LIBRARY_CACHE_KEY, [] );
return false;
}
$data = json_decode( wp_remote_retrieve_body( $response ), true );
if ( empty( $data ) || ! is_array( $data ) ) {
update_option( self::LIBRARY_CACHE_KEY, [] );
return false;
}
update_option( self::LIBRARY_CACHE_KEY, $data, 'no' );
}
return $data;
}
/**
* @param bool $force_update
* @return array|mixed|void|null
*/
public static function get_library_data( $force_update = false ) {
self::request_library_data( $force_update );
$data = get_option( self::LIBRARY_CACHE_KEY );
if ( empty( $data ) ) {
return [];
}
return $data;
}
/**
* @param int $template_id
* @return mixed
*/
public function get_item( $template_id ) {
$templates = $this->get_items();
return $templates[ $template_id ];
}
public function request_template_data( $request_url ) {
if ( empty( $request_url ) ) {
return;
}
$response = wp_remote_get( $request_url,
array(
'timeout' => 120,
'httpversion' => '1.1',
)
);
return wp_remote_retrieve_body( $response );
}
/**
* @param array $args
* @param string $context
* @return array|mixed|object|string|void
* @throws \Exception
*/
public function get_data( array $args, $context = 'display' ) {
$data = $this->request_template_data( $args['demo_json'] );
$data = json_decode( $data, true );
if ( empty( $data ) || empty( $data['content'] ) ) {
throw new \Exception( esc_html__( 'Template does not have any content', 'bdthemes-element-pack' ) );
}
$data['content'] = $this->replace_elements_ids( $data['content'] );
$data['content'] = $this->process_export_import_content( $data['content'], 'on_import' );
$post_id = $args['editor_post_id'];
$document = \Elementor\Plugin::instance()->documents->get( $post_id );
if ( $document ) {
$data['content'] = $document->get_elements_raw_data( $data['content'], true );
}
return $data;
}
}