ion admin_init() { self::$site_info = self::get_site_info(); add_filter( 'identity_crisis_container_id', array( static::class, 'get_idc_container_id' ) ); add_action( 'admin_enqueue_scripts', array( __CLASS__, 'enqueue_scripts' ) ); // Product statuses are constantly changing, so we never want to cache the page. header( 'Cache-Control: no-cache, no-store, must-revalidate' ); header( 'Pragma: no-cache' ); header( 'Expires: 0' ); } /** * Returns whether we are in condition to track to use * Analytics functionality like Tracks, MC, or GA. */ public static function can_use_analytics() { $status = new Status(); $connection = new Connection_Manager(); $tracking = new Tracking( 'jetpack', $connection ); return $tracking->should_enable_tracking( new Terms_Of_Service(), $status ); } /** * Enqueue admin page assets. * * @return void */ public static function enqueue_scripts() { Assets::register_script( 'my_jetpack_main_app', '../build/index.js', __FILE__, array( 'enqueue' => true, 'in_footer' => true, 'textdomain' => 'jetpack-my-jetpack', ) ); $modules = new Modules(); $connection = new Connection_Manager(); $speed_score_history = new Speed_Score_History( get_site_url() ); $latest_score = $speed_score_history->latest(); $previous_score = array(); if ( $speed_score_history->count() > 1 ) { $previous_score = $speed_score_history->latest( 1 ); } $latest_score['previousScores'] = $previous_score['scores'] ?? array(); wp_localize_script( 'my_jetpack_main_app', 'myJetpackInitialState', array( 'products' => array( 'items' => Products::get_products(), ), 'purchases' => array( 'items' => array(), ), 'plugins' => Plugins_Installer::get_plugins(), 'myJetpackUrl' => admin_url( 'admin.php?page=my-jetpack' ), 'myJetpackCheckoutUri' => admin_url( 'admin.php?page=my-jetpack' ), 'topJetpackMenuItemUrl' => Admin_Menu::get_top_level_menu_item_url(), 'siteSuffix' => ( new Status() )->get_site_suffix(), 'siteUrl' => esc_url( get_site_url() ), 'blogID' => Connection_Manager::get_site_id( true ), 'myJetpackVersion' => self::PACKAGE_VERSION, 'myJetpackFlags' => self::get_my_jetpack_flags(), 'fileSystemWriteAccess' => self::has_file_system_write_access(), 'loadAddLicenseScreen' => self::is_licensing_ui_enabled(), 'adminUrl' => esc_url( admin_url() ), 'IDCContainerID' => static::get_idc_container_id(), 'userIsAdmin' => current_user_can( 'manage_options' ), 'userIsNewToJetpack' => self::is_jetpack_user_new(), 'lifecycleStats' => array( 'jetpackPlugins' => self::get_installed_jetpack_plugins(), 'isSiteConnected' => $connection->is_connected(), 'isUserConnected' => $connection->is_user_connected(), 'purchases' => self::get_purchases(), 'modules' => self::get_active_modules(), ), 'redBubbleAlerts' => self::get_red_bubble_alerts(), 'isStatsModuleActive' => $modules->is_active( 'stats' ), 'isUserFromKnownHost' => self::is_user_from_known_host(), 'isCommercial' => self::is_commercial_site(), 'isAtomic' => ( new Status_Host() )->is_woa_site(), 'jetpackManage' => array( 'isEnabled' => Jetpack_Manage::could_use_jp_manage(), 'isAgencyAccount' => Jetpack_Manage::is_agency_account(), ), 'latestBoostSpeedScores' => $latest_score, ) ); wp_localize_script( 'my_jetpack_main_app', 'myJetpackRest', array( 'apiRoot' => esc_url_raw( rest_url() ), 'apiNonce' => wp_create_nonce( 'wp_rest' ), ) ); // Connection Initial State. Connection_Initial_State::render_script( 'my_jetpack_main_app' ); // Required for Analytics. if ( self::can_use_analytics() ) { Tracking::register_tracks_functions_scripts( true ); } } /** * Get product slugs of the active purchases * * @return array */ public static function get_purchases() { $purchases = Wpcom_Products::get_site_current_purchases(); if ( is_wp_error( $purchases ) ) { return array(); } return array_map( function ( $purchase ) { return $purchase->product_slug; }, $purchases ); } /** * Get installed Jetpack plugins * * @return array */ public static function get_installed_jetpack_plugins() { $plugin_slugs = array_keys( Plugins_Installer::get_plugins() ); $plugin_slugs = array_map( static function ( $slug ) { $parts = explode( '/', $slug ); if ( empty( $parts ) ) { return ''; } // Return the last segment of the filepath without the PHP extension return str_replace( '.php', '', $parts[ count( $parts ) - 1 ] ); }, $plugin_slugs ); return array_values( array_intersect( self::JETPACK_PLUGIN_SLUGS, $plugin_slugs ) ); } /** * Get active modules (except ones enabled by default) * * @return array */ public static function get_active_modules() { $modules = new Modules(); $active_modules = $modules->get_active(); // if the Jetpack plugin is active, filter out the modules that are active by default if ( class_exists( 'Jetpack' ) && ! empty( $active_modules ) ) { $active_modules = array_diff( $active_modules, Jetpack::get_default_modules() ); } return $active_modules; } /** * Determine if the current user is "new" to Jetpack * This is used to vary some messaging in My Jetpack * * On the front-end, purchases are also taken into account * * @return bool */ public static function is_jetpack_user_new() { // is the user connected? $connection = new Connection_Manager(); if ( $connection->is_user_connected() ) { return false; } // TODO: add a data point for the last known connection/ disconnection time // are any modules active? $modules = new Modules(); $active_modules = $modules->get_active(); // if the Jetpack plugin is active, filter out the modules that are active by default if ( class_exists( 'Jetpack' ) && ! empty( $active_modules ) ) { $active_modules = array_diff( $active_modules, Jetpack::get_default_modules() ); } if ( ! empty( $active_modules ) ) { return false; } // check for other Jetpack plugins that are installed on the site (active or not) // If there's more than one Jetpack plugin active, this user is not "new" $plugin_slugs = array_keys( Plugins_Installer::get_plugins() ); $plugin_slugs = array_map( static function ( $slug ) { $parts = explode( '/', $slug ); if ( empty( $parts ) ) { return ''; } // Return the last segment of the filepath without the PHP extension return str_replace( '.php', '', $parts[ count( $parts ) - 1 ] ); }, $plugin_slugs ); $installed_jetpack_plugins = array_intersect( self::JETPACK_PLUGIN_SLUGS, $plugin_slugs ); if ( is_countable( $installed_jetpack_plugins ) && count( $installed_jetpack_plugins ) >= 2 ) { return false; } // Does the site have any purchases? $purchases = Wpcom_Products::get_site_current_purchases(); if ( ! empty( $purchases ) && ! is_wp_error( $purchases ) ) { return false; } return true; } /** * Determines whether the user has come from a host we can recognize. * * @return string */ public static function is_user_from_known_host() { // Known (external) host is the one that has been determined and is not dotcom. return ! in_array( ( new Status_Host() )->get_known_host_guess(), array( 'unknown', 'wpcom' ), true ); } /** * Build flags for My Jetpack UI * * @return array */ public static function get_my_jetpack_flags() { $flags = array( 'videoPressStats' => Jetpack_Constants::is_true( 'JETPACK_MY_JETPACK_VIDEOPRESS_STATS_ENABLED' ), 'showFullJetpackStatsCard' => class_exists( 'Jetpack' ), ); return $flags; } /** * Echoes the admin page content. * * @return void */ public static function admin_page() { echo '
'; } /** * Register the REST API routes. * * @return void */ public static function register_rest_endpoints() { new REST_Products(); new REST_Purchases(); new REST_Zendesk_Chat(); new REST_Product_Data(); new REST_AI(); register_rest_route( 'my-jetpack/v1', 'site', array( 'methods' => \WP_REST_Server::READABLE, 'callback' => __CLASS__ . '::get_site', 'permission_callback' => __CLASS__ . '::permissions_callback', ) ); register_rest_route( 'my-jetpack/v1', 'site/dismiss-welcome-banner', array( 'methods' => \WP_REST_Server::EDITABLE, 'callback' => __CLASS__ . '::dismiss_welcome_banner', 'permission_callback' => __CLASS__ . '::permissions_callback', ) ); } /** * Check user capability to access the endpoint. * * @access public * @static * * @return true|WP_Error */ public static function permissions_callback() { return current_user_can( 'manage_options' ); } /** * Return true if we should initialize the My Jetpack admin page. */ public static function should_initialize() { $should = true; if ( is_multisite() ) { $should = false; } // All options presented in My Jetpack require a connection to WordPress.com. if ( ( new Status() )->is_offline_mode() ) { $should = false; } /** * Allows filtering whether My Jetpack should be initialized. * * @since 0.5.0-alpha * * @param bool $shoud_initialize Should we initialize My Jetpack? */ return apply_filters( 'jetpack_my_jetpack_should_initialize', $should ); } /** * Site full-data endpoint. * * @return object Site data. */ public static function get_site() { $site_id = \Jetpack_Options::get_option( 'id' ); $wpcom_endpoint = sprintf( '/sites/%d?force=wpcom', $site_id ); $wpcom_api_version = '1.1'; $response = Client::wpcom_json_api_request_as_blog( $wpcom_endpoint, $wpcom_api_version ); $response_code = wp_remote_retrieve_response_code( $response ); $body = json_decode( wp_remote_retrieve_body( $response ) ); if ( is_wp_error( $response ) || empty( $response['body'] ) ) { return new WP_Error( 'site_data_fetch_failed', 'Site data fetch failed', array( 'status' => $response_code ) ); } return rest_ensure_response( $body, 200 ); } /** * Populates the self::$site_info var with site data from the /sites/%d endpoint * * @return object|WP_Error */ public static function get_site_info() { static $site_info = null; if ( $site_info !== null ) { return $site_info; } // Check for a cached value before doing lookup $stored_site_info = get_transient( self::MY_JETPACK_SITE_INFO_TRANSIENT_KEY ); if ( $stored_site_info !== false ) { return $stored_site_info; } $response = self::get_site(); if ( is_wp_error( $response ) ) { return $response; } $site_info = $response->data; set_transient( self::MY_JETPACK_SITE_INFO_TRANSIENT_KEY, $site_info, DAY_IN_SECONDS ); return $site_info; } /** * Returns whether a site has been determined "commercial" or not. * * @return bool */ public static function is_commercial_site() { if ( is_wp_error( self::$site_info ) ) { return null; } return empty( self::$site_info->options->is_commercial ) ? false : self::$site_info->options->is_commercial; } /** * Check if site is registered (has been connected before). * * @return bool */ public static function is_registered() { return (bool) \Jetpack_Options::get_option( 'id' ); } /** * Dismiss the welcome banner. * * @return \WP_REST_Response */ public static function dismiss_welcome_banner() { \Jetpack_Options::update_option( 'dismissed_welcome_banner', true ); return rest_ensure_response( array( 'success' => true ), 200 ); } /** * Returns true if the site has file write access to the plugins folder, false otherwise. * * @return bool **/ public static function has_file_system_write_access() { $cache = get_transient( 'my_jetpack_write_access' ); if ( false !== $cache ) { return $cache; } if ( ! function_exists( 'get_filesystem_method' ) ) { require_once ABSPATH . 'wp-admin/includes/file.php'; } require_once ABSPATH . 'wp-admin/includes/template.php'; $write_access = 'no'; $filesystem_method = get_filesystem_method( array(), WP_PLUGIN_DIR ); if ( 'direct' === $filesystem_method ) { $write_access = 'yes'; } if ( ! $write_access ) { ob_start(); $filesystem_credentials_are_stored = request_filesystem_credentials( self_admin_url() ); ob_end_clean(); if ( $filesystem_credentials_are_stored ) { $write_access = 'yes'; } } set_transient( 'my_jetpack_write_access', $write_access, 30 * MINUTE_IN_SECONDS ); return $write_access; } /** * Get container IDC for the IDC screen. * * @return string */ public static function get_idc_container_id() { return static::IDC_CONTAINER_ID; } /** * Conditionally append the red bubble notification to the "Jetpack" menu item if there are alerts to show * * @return void */ public static function maybe_show_red_bubble() { global $menu; // filters for the items in this file add_filter( 'my_jetpack_red_bubble_notification_slugs', array( __CLASS__, 'add_red_bubble_alerts' ) ); $red_bubble_alerts = self::get_red_bubble_alerts(); // The Jetpack menu item should be on index 3 if ( ! empty( $red_bubble_alerts ) && is_countable( $red_bubble_alerts ) && isset( $menu[3] ) && $menu[3][0] === 'Jetpack' ) { // phpcs:ignore WordPress.WP.GlobalVariablesOverride.Prohibited $menu[3][0] .= sprintf( ' %d', count( $red_bubble_alerts ) ); } } /** * Collect all possible alerts that we might use a red bubble notification for * * @return array */ public static function get_red_bubble_alerts() { static $red_bubble_alerts = array(); // using a static cache since we call this function more than once in the class if ( ! empty( $red_bubble_alerts ) ) { return $red_bubble_alerts; } // go find the alerts $red_bubble_alerts = apply_filters( 'my_jetpack_red_bubble_notification_slugs', $red_bubble_alerts ); return $red_bubble_alerts; } /** * Add relevant red bubble notifications * * @param array $red_bubble_slugs - slugs that describe the reasons the red bubble is showing. * @return array */ public static function add_red_bubble_alerts( array $red_bubble_slugs ) { $welcome_banner_dismissed = \Jetpack_Options::get_option( 'dismissed_welcome_banner', false ); if ( self::is_jetpack_user_new() && ! $welcome_banner_dismissed ) { $red_bubble_slugs['welcome-banner-active'] = null; return $red_bubble_slugs; } else { return self::alert_if_missing_site_connection( $red_bubble_slugs ); } } /** * Add an alert slug if the site is missing a site connection * * @param array $red_bubble_slugs - slugs that describe the reasons the red bubble is showing. * @return array */ public static function alert_if_missing_site_connection( array $red_bubble_slugs ) { if ( ! ( new Connection_Manager() )->is_connected() ) { $red_bubble_slugs[ self::MISSING_SITE_CONNECTION_NOTIFICATION_KEY ] = null; } return $red_bubble_slugs; } }
Fatal error: Uncaught Error: Class "Automattic\Jetpack\My_Jetpack\Initializer" not found in /htdocs/wp-content/plugins/jetpack/class.jetpack.php:976 Stack trace: #0 /htdocs/wp-includes/class-wp-hook.php(324): Jetpack->late_initialization('') #1 /htdocs/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #2 /htdocs/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #3 /htdocs/wp-settings.php(559): do_action('plugins_loaded') #4 /htdocs/wp-config.php(85): require_once('/htdocs/wp-sett...') #5 /htdocs/wp-load.php(50): require_once('/htdocs/wp-conf...') #6 /htdocs/wp-blog-header.php(13): require_once('/htdocs/wp-load...') #7 /htdocs/index.php(17): require('/htdocs/wp-blog...') #8 {main} thrown in /htdocs/wp-content/plugins/jetpack/class.jetpack.php on line 976