ruạṛ
<?php /** * Updater class. * * @since 1.7.0 * * @package Envira_Gallery * @author Envira Gallery Team <support@enviragallery.com> */ namespace Envira\Utils; // Exit if accessed directly. if ( ! defined( 'ABSPATH' ) ) { exit; } use Envira\Admin\License; /** * Updater class. * * @since 1.7.0 * * @package Envira_Gallery * @author Envira Gallery Team <support@enviragallery.com> */ class Updater { /** * Plugin name. * * @since 1.7.0 * * @var bool|string */ public $plugin_name = false; /** * Plugin slug. * * @since 1.7.0 * * @var bool|string */ public $plugin_slug = false; /** * Plugin path. * * @since 1.7.0 * * @var bool|string */ public $plugin_path = false; /** * URL of the plugin. * * @since 1.7.0 * * @var bool|string */ public $plugin_url = false; /** * Remote URL for getting plugin updates. * * @since 1.7.0 * * @var bool|string */ public $remote_url = false; /** * License key for the plugin. * * @since 1.7.0 * * @var bool|string */ public $key = false; /** * Holds the update data returned from the API. * * @since 2.1.3 * * @var bool|object */ public $update = false; /** * Holds the update url. * * @since 2.1.3 * * @var string */ private $api_url = 'https://enviragallery.com/'; /** * Holds the update data returned from the API. * * @since 2.1.3 * * @var array */ private $api_data = []; /** * Holds the name. * * @since 2.1.3 * * @var string */ private $name = ''; /** * Holds the slug. * * @since 2.1.3 * * @var string */ private $slug = ''; /** * Version #. * * @since 2.1.3 * * @var string */ private $version = ''; /** * WP Override. * * @since 2.1.3 * * @var bool */ private $wp_overide = false; /** * Beta. * * @since 2.1.3 * * @var bool */ private $beta = false; /** * Cache Key. * * @since 2.1.3 * * @var string */ private $cache_key = ''; /** * Holds the plugin info details for the update. * * @since 2.1.3 * * @var bool */ public $info = false; /** * WP Override. * * @var boolean */ private $wp_override; /** * Primary class constructor. * * @param array $config Config data. * @since 1.7.0 */ public function __construct( array $config ) { // If the user cannot update plugins, stop processing here. if ( ! current_user_can( 'update_plugins' ) ) { return; } // Set class properties. $accepted_args = [ 'plugin_name', 'plugin_slug', 'plugin_path', 'plugin_url', 'remote_url', 'version', 'key', ]; foreach ( $accepted_args as $arg ) { $this->$arg = $config[ $arg ]; } $this->api_url = defined( 'ENVIRA_API_URL' ) ? ENVIRA_API_URL : 'https://enviragallery.com'; $this->name = $config['plugin_name']; $this->slug = $config['plugin_slug']; $this->version = $config['version']; $this->wp_override = false; $this->beta = false; $this->key = $config['key']; $this->cache_key = 'eg_' . md5( serialize( $this->slug . $config['key'] ) ); // phpcs:ignore WordPress.PHP.DiscouragedPHPFunctions.serialize_serialize $this->plugin_path = $config['plugin_path']; $this->init(); } /** * Init Method * * @since 1.8.9 * * @return void */ public function init() { // Load the updater hooks and filters. add_filter( 'pre_set_site_transient_update_plugins', [ $this, 'check_update' ] ); add_filter( 'http_request_args', [ $this, 'http_request_args' ], 10, 2 ); add_filter( 'plugins_api', [ $this, 'plugins_api' ], 10, 3 ); } /** * Infuse plugin update details when WordPress runs its update checker. * * @since 1.7.0 * * @param object $_transient_data The WordPress update object. * @return object $_transient_data Amended WordPress update object on success, default if object is empty. */ public function check_update( $_transient_data ) { global $pagenow; // If no update object exists, return early. if ( empty( $_transient_data ) ) { return $_transient_data; } if ( ! is_object( $_transient_data ) ) { $_transient_data = new \stdClass(); } // START: Hotfix to force Elementor update. GH 4265. // Check and see if Elementor addon is installed/active. if ( class_exists( 'Elementor_Envira' ) ) : // Ping the external API. $version_info = $this->perform_remote_request( 'get-plugin-update', [ 'tgm-updater-plugin' => 'envira-elementor' ] ); $elementor_envira = new \Elementor_Envira(); $current_version = $elementor_envira->version; // Check the version info, only consider updating if the version in the API is 1.1.0. if ( isset( $version_info->new_version ) && '1.1.0' === $version_info->new_version && '1.0.0' === $current_version ) { // Grab the info, and place it into the transient. $_transient_data->response['envira-elementor/envira-elementor.php'] = $version_info; $_transient_data->response['envira-elementor/envira-elementor.php']->plugin = 'Envira Elementor'; } // that's it, allow the normal checking for core to take place. endif; // END Hotfix. if ( ! empty( $_transient_data->response ) && ! empty( $_transient_data->response[ $this->slug . '/' . $this->slug . '.php' ] ) && false === $this->wp_override ) { return $_transient_data; } $version_info = $this->get_cached_info(); $is_beta = 'b' === substr( $this->version, -1 ) ? true : false; $beta_enabled = envira_get_setting( 'beta_enabled' ); // Run update check by pinging the external API. If it fails, return the default update object. if ( false === $version_info ) { $version_info = $this->perform_remote_request( 'get-plugin-update', [ 'tgm-updater-plugin' => $this->slug ] ); $this->set_cache_info( $version_info ); if ( false === $version_info ) { return $_transient_data; } } $update_plugin = false; if ( isset( $version_info->new_version ) && substr( $this->version, -1 ) === 'b' && substr( $version_info->new_version, -1 ) === 'b' ) { /* both new and old versions are beta */ $current_version = substr( $this->version, 0, -1 ); $new_version = substr( $version_info->new_version, 0, -1 ); if ( version_compare( $current_version, $new_version, '<' ) ) { $update_plugin = true; } } elseif ( isset( $version_info->new_version ) && version_compare( $this->version, $version_info->new_version, '<' ) ) { $update_plugin = true; } if ( $is_beta && ! $beta_enabled ) { $update_plugin = true; } if ( true === $update_plugin ) { $data = new \stdClass(); foreach ( get_object_vars( $version_info ) as $key => $value ) { $data->$key = $value; } if ( ! isset( $data->plugin ) ) { $data->plugin = $this->name; } $_transient_data->response[ $this->slug . '/' . $this->slug . '.php' ] = $data; } if ( false !== $version_info && is_object( $version_info ) && isset( $version_info->new_version ) ) { $_transient_data->last_checked = current_time( 'timestamp' ); // phpcs:ignore WordPress.DateTime.CurrentTimeTimestamp.Requested $_transient_data->checked[ $this->slug . '/' . $this->slug . '.php' ] = $this->version; } return $_transient_data; } /** * Disables SSL verification to prevent download package failures. * * @since 1.7.0 * * @param array $args Array of request args. * @param string $url The URL to be pinged. * @return array $args Amended array of request args. */ public function http_request_args( $args, $url ) { // If this is an SSL request and we are performing an upgrade routine, disable SSL verification. if ( strpos( $url, 'https://' ) !== false && strpos( $url, 'tgm-updater-action=get-plugin-update' ) ) { $args['sslverify'] = false; } return $args; } /** * Filters the plugins_api function to get our own custom plugin information * from our private repo. * * @since 1.7.0 * * @param object $api The original plugins_api object. * @param string $action The action sent by plugins_api. * @param array $args Additional args to send to plugins_api. * @return object $api New stdClass with plugin information on success, default response on failure. */ public function plugins_api( $api, $action = '', $args = null ) { if ( 'plugin_information' !== $action ) { return $api; } if ( ! isset( $args->slug ) || ( $args->slug !== $this->slug ) ) { return $api; } if ( trailingslashit( home_url() ) === $this->api_url ) { return $api; } $version_info = $this->get_cached_info(); if ( false === $version_info ) { $version_info = $this->perform_remote_request( 'get-plugin-update', [ 'tgm-updater-plugin' => $this->slug ] ); $this->set_cache_info( $version_info ); } if ( ! is_object( $version_info ) ) { return $api; } // Fix for PHP 8.3+. $api = new \stdClass(); foreach ( get_object_vars( $version_info ) as $key => $value ) { $api->$key = $value; } if ( ! isset( $api->plugin ) ) { $api->plugin = $this->name; } if ( isset( $api->changelog ) ) { $api->sections = [ 'changelog' => $api->changelog ]; } return $api; } /** * Queries the remote URL via wp_remote_post and returns a json decoded response. * * @since 1.7.0 * * @param string $action The name of the $_POST action var. * @param array $body The content to retrieve from the remote URL. * @param array $headers The headers to send to the remote URL. * @param string $return_format The format for returning content from the remote URL. * @return object|bool Json decoded response on success, false on failure. */ public function perform_remote_request( $action, $body = [], $headers = [], $return_format = 'json' ) { $can_beta = get_option( 'envira_can_beta', false ); $beta_enabled = envira_get_setting( 'beta_enabled' ); // Build the body of the request. $body = wp_parse_args( $body, [ 'tgm-updater-action' => $action, 'tgm-updater-key' => $this->key, 'tgm-updater-wp-version' => get_bloginfo( 'version' ), 'tgm-updater-referer' => site_url(), 'tgm-updater-beta' => ( intval( $can_beta ) === 1 && intval( $beta_enabled ) === 1 ) ? true : false, // do I add this here? ] ); $body = http_build_query( $body, '', '&' ); $content_length = strlen( $body ); // Build the headers of the request. $headers = wp_parse_args( $headers, [ 'Content-Type' => 'application/x-www-form-urlencoded', 'Content-Length' => $content_length, ] ); // Setup variable for wp_remote_post. $post = [ 'headers' => $headers, 'body' => $body, ]; // Perform the query and retrieve the response. $response = wp_remote_post( esc_url_raw( $this->api_url ), $post ); $response_code = wp_remote_retrieve_response_code( $response ); /* log this for API issues */ $response_body = wp_remote_retrieve_body( $response ); // Bail out early if there are any errors. if ( 200 !== $response_code || is_wp_error( $response_body ) ) { return false; } // Return the json decoded content. return json_decode( $response_body ); } /** * Queries the remote URL via wp_remote_post and returns a json decoded response. * * @since 1.7.0 * * @param array $cache_key Cache key. * @return string|bool Json decoded response on success, false on failure. */ public function get_cached_info( $cache_key = '' ) { if ( empty( $cache_key ) ) { $cache_key = $this->cache_key; } $cache = get_option( $cache_key ); if ( empty( $cache['timeout'] ) || current_time( 'timestamp' ) > $cache['timeout'] ) { // phpcs:ignore WordPress.DateTime.CurrentTimeTimestamp.Requested return false; // Cache is expired. } return json_decode( $cache['value'] ); } /** * Queries the remote URL via wp_remote_post and returns a json decoded response. * * @since 1.7.0 * * @param string $value Value. * @param array $cache_key Cache key. */ public function set_cache_info( $value = '', $cache_key = '' ) { if ( empty( $cache_key ) ) { $cache_key = $this->cache_key; } $data = [ 'timeout' => strtotime( '+2 hours', current_time( 'timestamp' ) ), // phpcs:ignore WordPress.DateTime.CurrentTimeTimestamp.Requested 'value' => wp_json_encode( $value ), ]; update_option( $cache_key, $data, 'no' ); } /** * Filter for vertify SSL. * * @since 1.7.0 */ public function verify_ssl() { return (bool) apply_filters( 'envira_api_request_verify_ssl', true, $this ); } }
cải xoăn