| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253 |
- <?php
- use Automattic\Jetpack\Connection\Manager as Connection_Manager;
- use Automattic\Jetpack\Status;
- include_once( 'class.jetpack-admin-page.php' );
- require_once __DIR__ . '/class-jetpack-redux-state-helper.php';
- // Builds the landing page and its menu
- class Jetpack_React_Page extends Jetpack_Admin_Page {
- protected $dont_show_if_not_active = false;
- protected $is_redirecting = false;
- function get_page_hook() {
- // Add the main admin Jetpack menu
- return add_menu_page( 'Jetpack', 'Jetpack', 'jetpack_admin_page', 'jetpack', array( $this, 'render' ), 'div', 3 );
- }
- function add_page_actions( $hook ) {
- /** This action is documented in class.jetpack.php */
- do_action( 'jetpack_admin_menu', $hook );
- if ( ! isset( $_GET['page'] ) || 'jetpack' !== $_GET['page'] ) {
- return; // No need to handle the fallback redirection if we are not on the Jetpack page
- }
- // Adding a redirect meta tag if the REST API is disabled
- if ( ! $this->is_rest_api_enabled() ) {
- $this->is_redirecting = true;
- add_action( 'admin_head', array( $this, 'add_fallback_head_meta' ) );
- }
- // Adding a redirect meta tag wrapped in noscript tags for all browsers in case they have JavaScript disabled
- add_action( 'admin_head', array( $this, 'add_noscript_head_meta' ) );
- // If this is the first time the user is viewing the admin, don't show JITMs.
- // This filter is added just in time because this function is called on admin_menu
- // and JITMs are initialized on admin_init
- if ( Jetpack::is_connection_ready() && ! Jetpack_Options::get_option( 'first_admin_view', false ) ) {
- Jetpack_Options::update_option( 'first_admin_view', true );
- add_filter( 'jetpack_just_in_time_msgs', '__return_false' );
- }
- }
- /**
- * Add Jetpack Dashboard sub-link and point it to AAG if the user can view stats, manage modules or if Protect is active.
- *
- * Works in Dev Mode or when user is connected.
- *
- * @since 4.3.0
- */
- function jetpack_add_dashboard_sub_nav_item() {
- if ( ( new Status() )->is_offline_mode() || Jetpack::is_connection_ready() ) {
- add_submenu_page( 'jetpack', __( 'Dashboard', 'jetpack' ), __( 'Dashboard', 'jetpack' ), 'jetpack_admin_page', 'jetpack#/dashboard', '__return_null' );
- remove_submenu_page( 'jetpack', 'jetpack' );
- }
- }
- /**
- * Determine whether a user can access the Jetpack Settings page.
- *
- * Rules are:
- * - user is allowed to see the Jetpack Admin
- * - site is connected or in offline mode
- * - non-admins only need access to the settings when there are modules they can manage.
- *
- * @return bool $can_access_settings Can the user access settings.
- */
- private function can_access_settings() {
- $connection = new Connection_Manager( 'jetpack' );
- $status = new Status();
- // User must have the necessary permissions to see the Jetpack settings pages.
- if ( ! current_user_can( 'edit_posts' ) ) {
- return false;
- }
- // In offline mode, allow access to admins.
- if ( $status->is_offline_mode() && current_user_can( 'manage_options' ) ) {
- return true;
- }
- // If not in offline mode but site is not connected, bail.
- if ( ! Jetpack::is_connection_ready() ) {
- return false;
- }
- /*
- * Additional checks for non-admins.
- */
- if ( ! current_user_can( 'manage_options' ) ) {
- // If the site isn't connected at all, bail.
- if ( ! $connection->has_connected_owner() ) {
- return false;
- }
- /*
- * If they haven't connected their own account yet,
- * they have no use for the settings page.
- * They will not be able to manage any settings.
- */
- if ( ! $connection->is_user_connected() ) {
- return false;
- }
- /*
- * Non-admins only have access to settings
- * for the following modules:
- * - Publicize
- * - Post By Email
- * If those modules are not available, bail.
- */
- if (
- ! Jetpack::is_module_active( 'post-by-email' )
- && ! Jetpack::is_module_active( 'publicize' )
- ) {
- return false;
- }
- }
- // fallback.
- return true;
- }
- /**
- * Jetpack Settings sub-link.
- *
- * @since 4.3.0
- * @since 9.7.0 If Connection does not have an owner, restrict it to admins
- */
- function jetpack_add_settings_sub_nav_item() {
- if ( $this->can_access_settings() ) {
- add_submenu_page( 'jetpack', __( 'Settings', 'jetpack' ), __( 'Settings', 'jetpack' ), 'jetpack_admin_page', 'jetpack#/settings', '__return_null' );
- }
- }
- function add_fallback_head_meta() {
- echo '<meta http-equiv="refresh" content="0; url=?page=jetpack_modules">';
- }
- function add_noscript_head_meta() {
- echo '<noscript>';
- $this->add_fallback_head_meta();
- echo '</noscript>';
- }
- /**
- * Custom menu order.
- *
- * @deprecated since 9.2.0
- * @param array $menu_order Menu order.
- * @return array
- */
- function jetpack_menu_order( $menu_order ) {
- _deprecated_function( __METHOD__, 'jetpack-9.2' );
- return $menu_order;
- }
- function page_render() {
- /** This action is already documented in views/admin/admin-page.php */
- do_action( 'jetpack_notices' );
- // Try fetching by patch
- $static_html = @file_get_contents( JETPACK__PLUGIN_DIR . '_inc/build/static.html' );
- if ( false === $static_html ) {
- // If we still have nothing, display an error
- echo '<p>';
- esc_html_e( 'Error fetching static.html. Try running: ', 'jetpack' );
- echo '<code>pnpm run distclean && pnpx jetpack build plugins/jetpack</code>';
- echo '</p>';
- } else {
- // We got the static.html so let's display it
- echo $static_html;
- }
- }
- /**
- * Allow robust deep links to React.
- *
- * The Jetpack dashboard requires fragments/hash values to make
- * a deep link to it but passing fragments as part of a return URL
- * will most often be discarded throughout the process.
- * This logic aims to bridge this gap and reduce the chance of React
- * specific links being broken while passing them along.
- */
- public function react_redirects() {
- global $pagenow;
- // phpcs:ignore WordPress.Security.NonceVerification.Recommended
- if ( 'admin.php' !== $pagenow || ! isset( $_GET['jp-react-redirect'] ) ) {
- return;
- }
- $allowed_paths = array(
- 'product-purchased' => admin_url( '/admin.php?page=jetpack#/recommendations/product-purchased' ),
- );
- // phpcs:ignore WordPress.Security.NonceVerification.Recommended
- $target = sanitize_text_field( (string) $_GET['jp-react-redirect'] );
- if ( isset( $allowed_paths[ $target ] ) ) {
- wp_safe_redirect( $allowed_paths[ $target ] );
- exit;
- }
- }
- function additional_styles() {
- Jetpack_Admin_Page::load_wrapper_styles();
- }
- function page_admin_scripts() {
- if ( $this->is_redirecting ) {
- return; // No need for scripts on a fallback page
- }
- $status = new Status();
- $is_offline_mode = $status->is_offline_mode();
- $site_suffix = $status->get_site_suffix();
- $script_deps_path = JETPACK__PLUGIN_DIR . '_inc/build/admin.asset.php';
- $script_dependencies = array( 'wp-polyfill' );
- if ( file_exists( $script_deps_path ) ) {
- $asset_manifest = include $script_deps_path;
- $script_dependencies = $asset_manifest['dependencies'];
- }
- wp_enqueue_script(
- 'react-plugin',
- plugins_url( '_inc/build/admin.js', JETPACK__PLUGIN_FILE ),
- $script_dependencies,
- JETPACK__VERSION,
- true
- );
- if ( ! $is_offline_mode && Jetpack::is_connection_ready() ) {
- // Required for Analytics.
- wp_enqueue_script( 'jp-tracks', '//stats.wp.com/w.js', array(), gmdate( 'YW' ), true );
- }
- wp_set_script_translations( 'react-plugin', 'jetpack' );
- // Add objects to be passed to the initial state of the app.
- // Use wp_add_inline_script instead of wp_localize_script, see https://core.trac.wordpress.org/ticket/25280.
- wp_add_inline_script( 'react-plugin', 'var Initial_State=JSON.parse(decodeURIComponent("' . rawurlencode( wp_json_encode( Jetpack_Redux_State_Helper::get_initial_state() ) ) . '"));', 'before' );
- // This will set the default URL of the jp_redirects lib.
- wp_add_inline_script( 'react-plugin', 'var jetpack_redirects = { currentSiteRawUrl: "' . $site_suffix . '" };', 'before' );
- }
- }
|