Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
0.00% covered (danger)
0.00%
0 / 44
0.00% covered (danger)
0.00%
0 / 3
CRAP
n/a
0 / 0
Automattic\Jetpack\Masterbar\should_customize_nav
0.00% covered (danger)
0.00%
0 / 6
0.00% covered (danger)
0.00%
0 / 1
72
Automattic\Jetpack\Masterbar\get_admin_menu_class
0.00% covered (danger)
0.00%
0 / 24
0.00% covered (danger)
0.00%
0 / 1
132
Automattic\Jetpack\Masterbar\dashboard_quick_switcher_record_usage
0.00% covered (danger)
0.00%
0 / 7
0.00% covered (danger)
0.00%
0 / 1
2
1<?php
2/**
3 * Admin Menu loader.
4 *
5 * @package automattic/jetpack-masterbar
6 */
7
8namespace Automattic\Jetpack\Masterbar;
9
10use Automattic\Jetpack\Modules;
11use Automattic\Jetpack\Status\Host;
12use Automattic\Jetpack\Tracking;
13
14if ( ! defined( 'ABSPATH' ) ) {
15    exit( 0 );
16}
17
18/**
19 * Checks whether the navigation customizations should be performed for the given class.
20 *
21 * @param string $admin_menu_class Class name.
22 *
23 * @return bool
24 */
25function should_customize_nav( $admin_menu_class ) {
26    // Make sure the class extends the base admin menu class.
27    if ( ! is_subclass_of( $admin_menu_class, Base_Admin_Menu::class ) ) {
28        return false;
29    }
30
31    $is_api_request = defined( 'REST_REQUEST' ) && REST_REQUEST || isset( $_SERVER['REQUEST_URI'] ) && str_starts_with( filter_var( wp_unslash( $_SERVER['REQUEST_URI'] ) ), '/?rest_route=%2Fwpcom%2Fv2%2Fadmin-menu' );
32
33    // No nav customizations on WP Admin of Atomic sites when SSO is disabled.
34    if ( is_a( $admin_menu_class, Atomic_Admin_Menu::class, true ) && ! $is_api_request && ! ( new Modules() )->is_active( 'sso' ) ) {
35        return false;
36    }
37
38    return true;
39}
40
41/**
42 * Gets the name of the class that customizes the admin menu.
43 *
44 * @return string Class name.
45 */
46function get_admin_menu_class() {
47    // WordPress.com Atomic sites.
48    if ( ( new Host() )->is_woa_site() ) {
49
50        // DIFM Lite In Progress Atomic Sites. Uses the same menu used for domain-only sites.
51        // Ignore this check if we are in a support session.
52        $is_difm_lite_in_progress = wpcomsh_is_site_sticker_active( 'difm-lite-in-progress' );
53        $is_support_session       = defined( 'WPCOM_SUPPORT_SESSION' ) && WPCOM_SUPPORT_SESSION;
54        if ( $is_difm_lite_in_progress && ! $is_support_session ) {
55            require_once __DIR__ . '/class-domain-only-admin-menu.php';
56            return Domain_Only_Admin_Menu::class;
57        }
58
59        require_once __DIR__ . '/class-atomic-admin-menu.php';
60        return Atomic_Admin_Menu::class;
61    }
62
63    // WordPress.com Simple sites.
64    if ( defined( 'IS_WPCOM' ) && IS_WPCOM ) {
65        $blog_id = get_current_blog_id();
66
67        // Domain-only sites.
68        $blog_options   = get_blog_option( $blog_id, 'options' );
69        $is_domain_only = ! empty( $blog_options['is_domain_only'] );
70        if ( $is_domain_only ) {
71            require_once __DIR__ . '/class-domain-only-admin-menu.php';
72            return Domain_Only_Admin_Menu::class;
73        }
74
75        // DIFM Lite In Progress Sites. Uses the same menu used for domain-only sites.
76        // Ignore this check if we are in a support session.
77        $is_difm_lite_in_progress = has_blog_sticker( 'difm-lite-in-progress' );
78        $is_support_session       = defined( 'WPCOM_SUPPORT_SESSION' ) && WPCOM_SUPPORT_SESSION;
79        if ( $is_difm_lite_in_progress && ! $is_support_session ) {
80            require_once __DIR__ . '/class-domain-only-admin-menu.php';
81            return Domain_Only_Admin_Menu::class;
82        }
83
84        // Rest of simple sites.
85        require_once __DIR__ . '/class-wpcom-admin-menu.php';
86        return WPcom_Admin_Menu::class;
87    }
88
89    // Default menu class.
90    require_once __DIR__ . '/class-admin-menu.php';
91    return Admin_Menu::class;
92}
93
94/**
95 * Filters the name of the class that customizes the admin menu. It should extends the `Base_Admin_Menu` class.
96 *
97 * @module masterbar
98 *
99 * @since jetpack-9.6.0
100 *
101 * @param string $admin_menu_class Class name.
102 */
103$admin_menu_class = apply_filters( 'jetpack_admin_menu_class', get_admin_menu_class() );
104if ( should_customize_nav( $admin_menu_class ) ) {
105    /** The admin menu singleton instance. @var Base_Admin_Menu $instance */
106    $admin_menu_class::get_instance();
107
108    /**
109     * Trigger an event when the user uses the dashboard quick switcher.
110     *
111     * @param string $screen The current screen.
112     * @param string $view The view the user choosed to go to.
113     */
114    function dashboard_quick_switcher_record_usage( $screen, $view ) {
115        require_once __DIR__ . '/class-dashboard-switcher-tracking.php';
116
117        $tracking = new Dashboard_Switcher_Tracking(
118            new Tracking( Dashboard_Switcher_Tracking::get_jetpack_tracking_product() ),
119            array( Dashboard_Switcher_Tracking::class, 'wpcom_tracks_record_event' ),
120            Dashboard_Switcher_Tracking::get_plan()
121        );
122
123        $tracking->record_switch_event( $screen, $view );
124    }
125
126    \add_action( 'jetpack_dashboard_switcher_changed_view', __NAMESPACE__ . '\dashboard_quick_switcher_record_usage', 10, 2 );
127} else {
128    \add_filter( 'jetpack_load_admin_menu_class', '__return_false' );
129}