admin-bar-notice.js
1 year ago
class-admin-bar-notice.php
2 years ago
class-admin-sidebar-link.php
1 year ago
scan.php
2 years ago
class-admin-sidebar-link.php
260 lines
| 1 | <?php |
| 2 | /** |
| 3 | * A class that adds a scan and backup link to the admin sidebar. |
| 4 | * |
| 5 | * @package automattic/jetpack |
| 6 | */ |
| 7 | |
| 8 | namespace Automattic\Jetpack\Scan; |
| 9 | |
| 10 | use Automattic\Jetpack\Admin_UI\Admin_Menu; |
| 11 | use Automattic\Jetpack\My_Jetpack\Products\Backup; |
| 12 | use Automattic\Jetpack\Redirect; |
| 13 | use Automattic\Jetpack\Status\Host; |
| 14 | use Jetpack_Core_Json_Api_Endpoints; |
| 15 | |
| 16 | /** |
| 17 | * Class Main |
| 18 | * |
| 19 | * Responsible for showing the link if available. |
| 20 | * |
| 21 | * @package Automattic\Jetpack\Scan |
| 22 | */ |
| 23 | class Admin_Sidebar_Link { |
| 24 | |
| 25 | const SCHEDULE_ACTION_HOOK = 'jetpack_scan_refresh_states_event'; |
| 26 | |
| 27 | /** |
| 28 | * The singleton instance of this class. |
| 29 | * |
| 30 | * @var Admin_Sidebar_Link |
| 31 | */ |
| 32 | protected static $instance; |
| 33 | |
| 34 | /** |
| 35 | * Used to check if we need to schedule the refresh or we need to do it. |
| 36 | * |
| 37 | * @var boolean | null |
| 38 | */ |
| 39 | private $schedule_refresh_checked; |
| 40 | |
| 41 | /** |
| 42 | * Get the singleton instance of the class. |
| 43 | * |
| 44 | * @return Admin_Sidebar_Link |
| 45 | */ |
| 46 | public static function instance() { |
| 47 | if ( ! isset( self::$instance ) ) { |
| 48 | self::$instance = new Admin_Sidebar_Link(); |
| 49 | self::$instance->init_hooks(); |
| 50 | } |
| 51 | |
| 52 | return self::$instance; |
| 53 | } |
| 54 | |
| 55 | /** |
| 56 | * Adds action hooks. |
| 57 | */ |
| 58 | public function init_hooks() { |
| 59 | add_action( 'jetpack_admin_menu', array( $this, 'maybe_add_admin_link' ), 99 ); |
| 60 | add_action( self::SCHEDULE_ACTION_HOOK, array( $this, 'refresh_state_cache' ) ); |
| 61 | } |
| 62 | |
| 63 | /** |
| 64 | * Adds a link to the Scan and Backup page. |
| 65 | */ |
| 66 | public function maybe_add_admin_link() { |
| 67 | if ( ! $this->should_show_link() ) { |
| 68 | return; |
| 69 | } |
| 70 | |
| 71 | if ( $this->should_show_scan() ) { |
| 72 | Admin_Menu::add_menu( |
| 73 | __( 'Scan', 'jetpack' ), |
| 74 | __( 'Scan', 'jetpack' ) . ' <span class="dashicons dashicons-external"></span>', |
| 75 | 'manage_options', |
| 76 | esc_url( Redirect::get_url( 'cloud-scan-history-wp-menu' ) ), |
| 77 | null, |
| 78 | $this->get_link_offset() |
| 79 | ); |
| 80 | } |
| 81 | |
| 82 | // Add scan item which shows history page only. This is mutally exclusive from the scan item above and is only shown for Atomic sitse. |
| 83 | if ( $this->should_show_scan_history_only() ) { |
| 84 | Admin_Menu::add_menu( |
| 85 | __( 'Scan', 'jetpack' ), |
| 86 | __( 'Scan', 'jetpack' ) . ' <span class="dashicons dashicons-external"></span>', |
| 87 | 'manage_options', |
| 88 | esc_url( Redirect::get_url( 'cloud-scan-history-wp-menu' ) ), |
| 89 | null, |
| 90 | $this->get_link_offset() |
| 91 | ); |
| 92 | } |
| 93 | |
| 94 | if ( $this->should_show_backup() ) { |
| 95 | Admin_Menu::add_menu( |
| 96 | __( 'VaultPress Backup', 'jetpack' ), |
| 97 | __( 'VaultPress Backup', 'jetpack' ) . ' <span class="dashicons dashicons-external"></span>', |
| 98 | 'manage_options', |
| 99 | esc_url( Redirect::get_url( 'calypso-backups' ) ), |
| 100 | null, |
| 101 | $this->get_link_offset() |
| 102 | ); |
| 103 | } |
| 104 | } |
| 105 | |
| 106 | /** |
| 107 | * We create a menu offset by counting all the pages that have a jetpack_admin_page set as the capability. |
| 108 | * |
| 109 | * This makes it so that the highlight of the pages works as expected. When you click on the Setting or Dashboard. |
| 110 | * |
| 111 | * @return int Menu offset. |
| 112 | */ |
| 113 | private function get_link_offset() { |
| 114 | global $submenu; |
| 115 | $offset = 9; |
| 116 | |
| 117 | if ( ! array_key_exists( 'jetpack', $submenu ) ) { |
| 118 | return $offset; |
| 119 | } |
| 120 | |
| 121 | foreach ( $submenu['jetpack'] as $link ) { |
| 122 | if ( 'jetpack_admin_page' !== $link[1] ) { |
| 123 | break; |
| 124 | } |
| 125 | ++$offset; |
| 126 | } |
| 127 | |
| 128 | return $offset; |
| 129 | } |
| 130 | |
| 131 | /** |
| 132 | * Refreshes the state cache via API call. Called via cron. |
| 133 | */ |
| 134 | public function refresh_state_cache() { |
| 135 | Jetpack_Core_Json_Api_Endpoints::get_scan_state(); |
| 136 | Jetpack_Core_Json_Api_Endpoints::get_rewind_data(); |
| 137 | } |
| 138 | |
| 139 | /** |
| 140 | * Returns true if the link should appear. |
| 141 | * |
| 142 | * @return boolean |
| 143 | */ |
| 144 | private function should_show_link() { |
| 145 | // Jetpack Scan/Backup is currently not supported on multisite. |
| 146 | if ( is_multisite() ) { |
| 147 | return false; |
| 148 | } |
| 149 | |
| 150 | // Check if VaultPress is active, the assumption there is that VaultPress is working. |
| 151 | // It has its link the adminbar. |
| 152 | if ( class_exists( 'VaultPress' ) ) { |
| 153 | return false; |
| 154 | } |
| 155 | |
| 156 | return $this->should_show_scan() || $this->should_show_backup() || $this->should_show_scan_history_only(); |
| 157 | } |
| 158 | |
| 159 | /** |
| 160 | * Check if we should display the Scan menu item. |
| 161 | * |
| 162 | * It will only be displayed if site has Scan enabled, is not an Atomic site, and the stand-alone Protect plugin is not active, because it will have a menu item of its own. |
| 163 | * |
| 164 | * @return boolean |
| 165 | */ |
| 166 | private function should_show_scan() { |
| 167 | return $this->has_scan() && ! $this->has_protect_plugin() && ! ( new Host() )->is_woa_site(); |
| 168 | } |
| 169 | |
| 170 | /** |
| 171 | * Check if we should display the Scan menu item history. |
| 172 | * |
| 173 | * It will only be displayed if site has Scan enabled, is an Atomic site. |
| 174 | * |
| 175 | * @return boolean |
| 176 | */ |
| 177 | private function should_show_scan_history_only() { |
| 178 | return $this->has_scan() && ( new Host() )->is_woa_site() && get_option( 'wpcom_admin_interface' ) === 'wp-admin'; |
| 179 | } |
| 180 | |
| 181 | /** |
| 182 | * Check if we should display the Backup menu item. |
| 183 | * |
| 184 | * It will only be displayed if site has Backup enabled and the stand-alone Backup plugin is not active, because it will have a menu item of its own. |
| 185 | * |
| 186 | * @return boolean |
| 187 | */ |
| 188 | private function should_show_backup() { |
| 189 | return $this->has_backup() && ! $this->has_backup_plugin(); |
| 190 | } |
| 191 | |
| 192 | /** |
| 193 | * Detects if Scan is enabled. |
| 194 | * |
| 195 | * @return boolean |
| 196 | */ |
| 197 | private function has_scan() { |
| 198 | $this->maybe_refresh_transient_cache(); |
| 199 | $scan_state = get_transient( 'jetpack_scan_state' ); |
| 200 | if ( ! $scan_state ) { |
| 201 | return false; |
| 202 | } |
| 203 | |
| 204 | return isset( $scan_state->state ) && 'unavailable' !== $scan_state->state; |
| 205 | } |
| 206 | |
| 207 | /** |
| 208 | * Detects if Protect plugin is active. |
| 209 | * |
| 210 | * @return boolean |
| 211 | */ |
| 212 | private function has_protect_plugin() { |
| 213 | return class_exists( 'Jetpack_Protect' ); |
| 214 | } |
| 215 | |
| 216 | /** |
| 217 | * Detects if Backup is enabled. |
| 218 | * |
| 219 | * @return boolean |
| 220 | */ |
| 221 | private function has_backup() { |
| 222 | $this->maybe_refresh_transient_cache(); |
| 223 | $rewind_state = get_transient( 'jetpack_rewind_state' ); |
| 224 | if ( ! $rewind_state ) { |
| 225 | return false; |
| 226 | } |
| 227 | |
| 228 | return isset( $rewind_state->state ) && 'unavailable' !== $rewind_state->state; |
| 229 | } |
| 230 | |
| 231 | /** |
| 232 | * Detects if Backup plugin is active. |
| 233 | * |
| 234 | * @return boolean |
| 235 | */ |
| 236 | private function has_backup_plugin() { |
| 237 | return Backup::is_standalone_plugin_active(); |
| 238 | } |
| 239 | |
| 240 | /** |
| 241 | * Triggers a cron job to refresh the Scan and Rewind state cache. |
| 242 | */ |
| 243 | private function maybe_refresh_transient_cache() { |
| 244 | if ( $this->schedule_refresh_checked ) { |
| 245 | return; |
| 246 | } |
| 247 | |
| 248 | // Do we have a jetpack_scan and jetpack_rewind state set? |
| 249 | if ( get_transient( 'jetpack_scan_state' ) && get_transient( 'jetpack_rewind_state' ) ) { |
| 250 | return; |
| 251 | } |
| 252 | |
| 253 | if ( false === wp_next_scheduled( self::SCHEDULE_ACTION_HOOK ) ) { |
| 254 | wp_schedule_single_event( time(), self::SCHEDULE_ACTION_HOOK ); |
| 255 | } |
| 256 | |
| 257 | $this->schedule_refresh_checked = true; |
| 258 | } |
| 259 | } |
| 260 |