| Server IP : 192.241.186.36 / Your IP : 216.73.216.164 Web Server : Apache/2.4.29 (Ubuntu) System : Linux webserver7 4.15.0-194-generic #205-Ubuntu SMP Fri Sep 16 19:49:27 UTC 2022 x86_64 User : root ( 0) PHP Version : 7.4.32 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /var/www/html/myairtrip/wp-content/plugins/elementor/includes/ |
Upload File : |
<?php
namespace Elementor\Includes;
class EditorAssetsAPI {
protected array $config;
const ASSETS_DATA_TRANSIENT_KEY = 'ASSETS_DATA_TRANSIENT_KEY';
const ASSETS_DATA_URL = 'ASSETS_DATA_URL';
const ASSETS_DATA_KEY = 'ASSETS_DATA_KEY';
public function __construct( array $config ) {
$this->config = $config;
}
public function config( $key ): string {
return $this->config[ $key ] ?? '';
}
public function get_assets_data( $force_request = false ): array {
$assets_data = $this->get_transient( $this->config( static::ASSETS_DATA_TRANSIENT_KEY ) );
if ( $force_request || false === $assets_data ) {
$assets_data = $this->fetch_data();
$this->set_transient( $this->config( static::ASSETS_DATA_TRANSIENT_KEY ), $assets_data, '+1 hour' );
}
return $assets_data;
}
private function fetch_data(): array {
$response = wp_remote_get( $this->config( static::ASSETS_DATA_URL ) );
if ( is_wp_error( $response ) ) {
return [];
}
$data = json_decode( wp_remote_retrieve_body( $response ), true );
if ( empty( $data[ $this->config( static::ASSETS_DATA_KEY ) ] ) || ! is_array( $data[ $this->config( static::ASSETS_DATA_KEY ) ] ) ) {
return [];
}
return $data[ $this->config( static::ASSETS_DATA_KEY ) ];
}
private function get_transient( $cache_key ) {
$cache = get_option( $cache_key );
if ( empty( $cache['timeout'] ) ) {
return false;
}
if ( current_time( 'timestamp' ) > $cache['timeout'] ) {
return false;
}
return json_decode( $cache['value'], true );
}
private function set_transient( $cache_key, $value, $expiration = '+12 hours' ): bool {
$data = [
'timeout' => strtotime( $expiration, current_time( 'timestamp' ) ),
'value' => wp_json_encode( $value ),
];
return update_option( $cache_key, $data, false );
}
}