jetpack
Last commit date
3rd-party
3 years ago
_inc
3 years ago
css
3 years ago
extensions
3 years ago
images
3 years ago
jetpack_vendor
21 hours ago
json-endpoints
3 years ago
modules
1 year ago
sal
3 years ago
src
3 years ago
vendor
3 years ago
views
3 years ago
CHANGELOG.md
3 years ago
LICENSE.txt
5 years ago
SECURITY.md
5 years ago
class-jetpack-connection-status.php
5 years ago
class-jetpack-connection-widget.php
3 years ago
class-jetpack-gallery-settings.php
3 years ago
class-jetpack-pre-connection-jitms.php
4 years ago
class-jetpack-recommendations-banner.php
3 years ago
class-jetpack-stats-dashboard-widget.php
3 years ago
class-jetpack-wizard-banner.php
5 years ago
class-jetpack-xmlrpc-methods.php
3 years ago
class.frame-nonce-preview.php
4 years ago
class.jetpack-admin.php
3 years ago
class.jetpack-affiliate.php
4 years ago
class.jetpack-autoupdate.php
3 years ago
class.jetpack-bbpress-json-api.compat.php
5 years ago
class.jetpack-boost-modules.php
3 years ago
class.jetpack-cli.php
3 years ago
class.jetpack-client-server.php
4 years ago
class.jetpack-connection-banner.php
3 years ago
class.jetpack-data.php
5 years ago
class.jetpack-gutenberg.php
3 years ago
class.jetpack-heartbeat.php
4 years ago
class.jetpack-idc.php
5 years ago
class.jetpack-modules-list-table.php
3 years ago
class.jetpack-network-sites-list-table.php
3 years ago
class.jetpack-network.php
3 years ago
class.jetpack-plan.php
3 years ago
class.jetpack-post-images.php
3 years ago
class.jetpack-twitter-cards.php
3 years ago
class.jetpack-user-agent.php
3 years ago
class.jetpack.php
3 years ago
class.json-api-endpoints.php
3 years ago
class.json-api.php
3 years ago
class.photon.php
3 years ago
composer.json
3 years ago
enhanced-open-graph.php
3 years ago
functions.compat.php
4 years ago
functions.cookies.php
5 years ago
functions.global.php
3 years ago
functions.is-mobile.php
3 years ago
functions.opengraph.php
3 years ago
functions.photon.php
3 years ago
jetpack.php
21 hours ago
json-api-config.php
3 years ago
json-endpoints.php
3 years ago
load-jetpack.php
3 years ago
locales.php
4 years ago
readme.txt
21 hours ago
uninstall.php
5 years ago
wpml-config.xml
4 years ago
class.jetpack-connection-banner.php
392 lines
| 1 | <?php // phpcs:ignore WordPress.Files.FileName.InvalidClassFileName |
| 2 | /** |
| 3 | * Jetpack connection banner. |
| 4 | * |
| 5 | * @package automattic/jetpack |
| 6 | */ |
| 7 | |
| 8 | use Automattic\Jetpack\Assets; |
| 9 | use Automattic\Jetpack\Assets\Logo; |
| 10 | use Automattic\Jetpack\Licensing; |
| 11 | |
| 12 | /** |
| 13 | * Jetpack connection banner. |
| 14 | */ |
| 15 | class Jetpack_Connection_Banner { |
| 16 | /** |
| 17 | * Static instance. |
| 18 | * |
| 19 | * @var Jetpack_Connection_Banner |
| 20 | */ |
| 21 | private static $instance = null; |
| 22 | |
| 23 | /** |
| 24 | * Initialize and fetch the static instance. |
| 25 | * |
| 26 | * @return self |
| 27 | */ |
| 28 | public static function init() { |
| 29 | if ( self::$instance === null ) { |
| 30 | self::$instance = new Jetpack_Connection_Banner(); |
| 31 | } |
| 32 | |
| 33 | return self::$instance; |
| 34 | } |
| 35 | |
| 36 | /** |
| 37 | * Jetpack_Connection_Banner constructor. |
| 38 | * |
| 39 | * Since we call the Jetpack_Connection_Banner:init() method from the `Jetpack` class, and after |
| 40 | * the admin_init action fires, we know that the admin is initialized at this point. |
| 41 | */ |
| 42 | private function __construct() { |
| 43 | add_action( 'current_screen', array( $this, 'maybe_initialize_hooks' ) ); |
| 44 | } |
| 45 | |
| 46 | /** |
| 47 | * The banner is forcibly displayed. |
| 48 | * |
| 49 | * @return bool |
| 50 | */ |
| 51 | public static function force_display() { |
| 52 | /** |
| 53 | * This is an experiment for partners to test. Allow customization of the behavior of pre-connection banners. |
| 54 | * |
| 55 | * @since 8.6.0 |
| 56 | * |
| 57 | * @param bool $always_show_prompt Should this prompt always appear? Default to false. |
| 58 | */ |
| 59 | return apply_filters( 'jetpack_pre_connection_prompt_helpers', false ); |
| 60 | } |
| 61 | |
| 62 | /** |
| 63 | * Can the banner be displayed for the given screen? |
| 64 | * |
| 65 | * @param \WP_Screen $current_screen Current WordPress screen. |
| 66 | * |
| 67 | * @return bool |
| 68 | */ |
| 69 | public static function can_be_displayed( $current_screen ) { |
| 70 | $has_connected_owner = Jetpack::connection()->has_connected_owner(); |
| 71 | $is_connected = Jetpack::is_connection_ready(); |
| 72 | $has_licenses = ! empty( Licensing::instance()->stored_licenses() ); |
| 73 | |
| 74 | // Don't show the connect notice if the site has a connected owner. |
| 75 | if ( $has_connected_owner ) { |
| 76 | return false; |
| 77 | } |
| 78 | |
| 79 | // Don't show the connect notice if a site connection is established and there are no stored licenses. |
| 80 | // Stored licenses indicate that a purchased product may not be provisioned yet hence we need to keep |
| 81 | // showing the notice to nudge the user to connect in order to have their product(s) provisioned. |
| 82 | if ( $is_connected && ! $has_licenses ) { |
| 83 | return false; |
| 84 | } |
| 85 | |
| 86 | // Kill if banner has been dismissed and the pre-connection helpers filter is not set. |
| 87 | if ( |
| 88 | Jetpack_Options::get_option( 'dismissed_connection_banner' ) && |
| 89 | ! self::force_display() |
| 90 | ) { |
| 91 | return false; |
| 92 | } |
| 93 | |
| 94 | // Don't show the connect notice anywhere but the plugins.php after activating. |
| 95 | if ( 'plugins' !== $current_screen->base && 'dashboard' !== $current_screen->base ) { |
| 96 | return false; |
| 97 | } |
| 98 | |
| 99 | if ( ! current_user_can( 'jetpack_connect' ) ) { |
| 100 | return false; |
| 101 | } |
| 102 | |
| 103 | return true; |
| 104 | } |
| 105 | |
| 106 | /** |
| 107 | * Given a string for the the banner was added, and an int that represents the slide to |
| 108 | * a URL for, this function returns a connection URL with a from parameter that will |
| 109 | * support split testing. |
| 110 | * |
| 111 | * @since 7.2 Event key format is now banner-connect-banner-72-dashboard or connect-banner-72-plugins. |
| 112 | * The param $slide_num was removed since we removed all slides but the first one. |
| 113 | * @since 4.4.0 |
| 114 | * |
| 115 | * @param string $jp_version_banner_added A short version of when the banner was added. Ex. 44. |
| 116 | * @return string |
| 117 | */ |
| 118 | public function build_connect_url_for_slide( $jp_version_banner_added ) { |
| 119 | global $current_screen; |
| 120 | $url = Jetpack::init()->build_connect_url( |
| 121 | true, |
| 122 | false, |
| 123 | sprintf( 'connect-banner-%s-%s', $jp_version_banner_added, $current_screen->base ) |
| 124 | ); |
| 125 | return add_query_arg( 'auth_approved', 'true', $url ); |
| 126 | } |
| 127 | |
| 128 | /** |
| 129 | * Will initialize hooks to display the new (as of 4.4) connection banner if the current user can |
| 130 | * connect Jetpack, if Jetpack has not been deactivated, and if the current page is the plugins or dashboard page. |
| 131 | * |
| 132 | * @since 4.4.0 |
| 133 | * @since 4.5.0 Made the new (as of 4.4) connection banner display to everyone by default. |
| 134 | * @since 5.3.0 Running another split test between 4.4 banner and a new one in 5.3. |
| 135 | * @since 7.2 B test was removed. |
| 136 | * @since 9.7 Moved the connection condition checking to this method to fulfill Licensing requirements. |
| 137 | * |
| 138 | * @param \WP_Screen $current_screen Current WordPress screen. |
| 139 | */ |
| 140 | public function maybe_initialize_hooks( $current_screen ) { |
| 141 | if ( ! self::can_be_displayed( $current_screen ) ) { |
| 142 | return; |
| 143 | } |
| 144 | |
| 145 | if ( ! empty( Licensing::instance()->stored_licenses() ) ) { |
| 146 | add_action( 'admin_notices', array( $this, 'render_license_aware_banner' ) ); |
| 147 | } else { |
| 148 | add_action( 'admin_notices', array( $this, 'render_banner' ) ); |
| 149 | } |
| 150 | |
| 151 | add_action( 'admin_enqueue_scripts', array( $this, 'enqueue_banner_scripts' ) ); |
| 152 | add_action( 'admin_print_styles', array( $this, 'admin_banner_styles' ) ); |
| 153 | |
| 154 | if ( Jetpack::state( 'network_nag' ) ) { |
| 155 | add_action( 'network_admin_notices', array( $this, 'network_connect_notice' ) ); |
| 156 | } |
| 157 | |
| 158 | // Only fires immediately after plugin activation. |
| 159 | if ( get_transient( 'activated_jetpack' ) ) { |
| 160 | if ( |
| 161 | ! \Jetpack_Options::get_option( 'has_seen_wc_connection_modal', false ) |
| 162 | && in_array( 'woocommerce/woocommerce.php', apply_filters( 'active_plugins', Jetpack::get_active_plugins() ), true ) |
| 163 | ) { |
| 164 | wp_safe_redirect( Jetpack::admin_url( 'page=jetpack#/woo-setup' ) ); |
| 165 | } else { |
| 166 | add_action( 'admin_enqueue_scripts', array( Jetpack::init(), 'activate_dialog' ) ); |
| 167 | } |
| 168 | delete_transient( 'activated_jetpack' ); |
| 169 | } |
| 170 | } |
| 171 | |
| 172 | /** |
| 173 | * Include the needed styles |
| 174 | */ |
| 175 | public function admin_banner_styles() { |
| 176 | wp_enqueue_style( |
| 177 | 'jetpack-connection-banner', |
| 178 | Assets::get_file_url_for_environment( |
| 179 | 'css/jetpack-connection-banner.min.css', |
| 180 | 'css/jetpack-connection-banner.css' |
| 181 | ), |
| 182 | array(), |
| 183 | JETPACK__VERSION |
| 184 | ); |
| 185 | } |
| 186 | |
| 187 | /** |
| 188 | * Enqueues JavaScript for new connection banner. |
| 189 | * |
| 190 | * @since 4.4.0 |
| 191 | */ |
| 192 | public static function enqueue_banner_scripts() { |
| 193 | wp_enqueue_script( |
| 194 | 'jetpack-connection-banner-js', |
| 195 | Assets::get_file_url_for_environment( |
| 196 | '_inc/build/jetpack-connection-banner.min.js', |
| 197 | '_inc/jetpack-connection-banner.js' |
| 198 | ), |
| 199 | array( 'jquery' ), |
| 200 | JETPACK__VERSION, |
| 201 | true |
| 202 | ); |
| 203 | |
| 204 | wp_localize_script( |
| 205 | 'jetpack-connection-banner-js', |
| 206 | 'jp_banner', |
| 207 | array( |
| 208 | 'ajax_url' => admin_url( 'admin-ajax.php' ), |
| 209 | 'connectionBannerNonce' => wp_create_nonce( 'jp-connection-banner-nonce' ), |
| 210 | ) |
| 211 | ); |
| 212 | } |
| 213 | |
| 214 | /** |
| 215 | * Enqueues JavaScript and CSS for the connection button. |
| 216 | * |
| 217 | * @since 7.7 |
| 218 | */ |
| 219 | public static function enqueue_connect_button_scripts() { |
| 220 | wp_enqueue_script( |
| 221 | 'jetpack-connect-button', |
| 222 | Assets::get_file_url_for_environment( |
| 223 | '_inc/build/connect-button.min.js', |
| 224 | '_inc/connect-button.js' |
| 225 | ), |
| 226 | array( 'jquery' ), |
| 227 | JETPACK__VERSION, |
| 228 | true |
| 229 | ); |
| 230 | |
| 231 | wp_enqueue_style( |
| 232 | 'jetpack-connect-button', |
| 233 | Assets::get_file_url_for_environment( |
| 234 | 'css/jetpack-connect.min.css', |
| 235 | 'css/jetpack-connect.css' |
| 236 | ), |
| 237 | array(), |
| 238 | JETPACK__VERSION |
| 239 | ); |
| 240 | |
| 241 | $tracking = new Automattic\Jetpack\Tracking(); |
| 242 | $identity = $tracking->tracks_get_identity( get_current_user_id() ); |
| 243 | |
| 244 | wp_localize_script( |
| 245 | 'jetpack-connect-button', |
| 246 | 'jpConnect', |
| 247 | array( |
| 248 | 'buttonTextRegistering' => __( 'Loading...', 'jetpack' ), |
| 249 | 'connectUrl' => Jetpack::admin_url( 'page=jetpack#/setup' ), |
| 250 | 'identity' => $identity, |
| 251 | 'preFetchScript' => plugins_url( '_inc/build/admin.js', JETPACK__PLUGIN_FILE ) . '?ver=' . JETPACK__VERSION, |
| 252 | ) |
| 253 | ); |
| 254 | } |
| 255 | |
| 256 | /** |
| 257 | * Renders the new connection banner as of 4.4.0. |
| 258 | * |
| 259 | * @since 4.4.0 |
| 260 | * @since 7.2 Copy and visual elements reduced to show the new focus of Jetpack on Security and Performance. |
| 261 | * @since 11.1 Adjusted the banner to Emerald style |
| 262 | */ |
| 263 | public function render_banner() { |
| 264 | $jetpack_logo = new Logo(); |
| 265 | ?> |
| 266 | <div class="jp-connection-banner"> |
| 267 | <div class="jp-connection-banner__container-top-text"> |
| 268 | <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><rect x="0" fill="none" width="24" height="24"/><g><path d="M12 2C6.477 2 2 6.477 2 12s4.477 10 10 10 10-4.477 10-10S17.523 2 12 2zm1 15h-2v-2h2v2zm0-4h-2l-.5-6h3l-.5 6z"/></g></svg> |
| 269 | <span> |
| 270 | <?php esc_html_e( 'You’re almost done. Set up Jetpack to enable powerful security and performance tools for WordPress.', 'jetpack' ); ?> |
| 271 | </span> |
| 272 | </div> |
| 273 | <?php |
| 274 | if ( ! static::force_display() ) : |
| 275 | ?> |
| 276 | <span |
| 277 | class="notice-dismiss jp-connection-banner__dismiss" |
| 278 | title="<?php esc_attr_e( 'Dismiss this notice', 'jetpack' ); ?>"> |
| 279 | </span> |
| 280 | |
| 281 | <?php |
| 282 | endif; |
| 283 | ?> |
| 284 | <div class="jp-connection-banner__inner"> |
| 285 | <div class="jp-connection-banner__content"> |
| 286 | <div class="jp-connection-banner__logo"> |
| 287 | <?php echo $jetpack_logo->get_jp_emblem_larger(); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?> |
| 288 | </div> |
| 289 | <h2 class="jp-connection-banner__title"><?php esc_html_e( 'Simplify your site security and performance with Jetpack', 'jetpack' ); ?></h2> |
| 290 | <div class="jp-connection-banner__columns"> |
| 291 | <div class="jp-connection-banner__text"><?php esc_html_e( 'Jetpack provides easy-to-use, comprehensive WordPress site security and backups, so you can focus on running your business.', 'jetpack' ); ?></div> |
| 292 | <div class="jp-connection-banner__text"><?php esc_html_e( 'Jetpack’s performance features make your site lightning-fast, while also improving your SEO and giving your visitors a better experience.', 'jetpack' ); ?></div> |
| 293 | </div> |
| 294 | <div class="jp-connection-banner__footer"> |
| 295 | <div class="jp-connection-banner__text jp-connection-banner__text--caption"><?php jetpack_render_tos_blurb(); ?></div> |
| 296 | <a id="jp-connect-button--alt" href="<?php echo esc_url( $this->build_connect_url_for_slide( '111' ) ); ?>" class="jp-banner-cta-button"> |
| 297 | <?php esc_html_e( 'Set up Jetpack', 'jetpack' ); ?> |
| 298 | </a> |
| 299 | </div> |
| 300 | </div> |
| 301 | <div class="jp-connection-banner__image-container"> |
| 302 | <img class="jp-connection-banner__image-background" src="<?php echo esc_url( plugins_url( 'images/jetpack-connection-banner-background.svg', JETPACK__PLUGIN_FILE ) ); ?>" /> |
| 303 | <picture> |
| 304 | <source |
| 305 | type="image/webp" |
| 306 | srcset="<?php echo esc_url( plugins_url( 'images/jetpack-connection-image.webp', JETPACK__PLUGIN_FILE ) ); ?> 1x, <?php echo esc_url( plugins_url( 'images/jetpack-connection-image-2x.webp', JETPACK__PLUGIN_FILE ) ); ?> 2x"> |
| 307 | <img |
| 308 | class="jp-connection-banner__image" |
| 309 | srcset="<?php echo esc_url( plugins_url( 'images/jetpack-connection-image.png', JETPACK__PLUGIN_FILE ) ); ?> 1x, <?php echo esc_url( plugins_url( 'images/jetpack-connection-image-2x.png', JETPACK__PLUGIN_FILE ) ); ?> 2x" |
| 310 | src="<?php echo esc_url( plugins_url( 'images/jetpack-connection-image.png', JETPACK__PLUGIN_FILE ) ); ?>" |
| 311 | alt=""> |
| 312 | </picture> |
| 313 | </div> |
| 314 | </div> |
| 315 | </div> |
| 316 | <?php |
| 317 | } |
| 318 | |
| 319 | /** |
| 320 | * Renders the license-away version of the connection banner. |
| 321 | * |
| 322 | * @since 9.0.0 |
| 323 | * @since 11.1 Adjusted the banner to Emerald style |
| 324 | */ |
| 325 | public function render_license_aware_banner() { |
| 326 | $jetpack_logo = new Logo(); |
| 327 | ?> |
| 328 | <div class="jp-connection-banner"> |
| 329 | <div class="jp-connection-banner__inner"> |
| 330 | <div class="jp-connection-banner__content"> |
| 331 | <div class="jp-connection-banner__logo"> |
| 332 | <?php echo $jetpack_logo->get_jp_emblem_larger(); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?> |
| 333 | </div> |
| 334 | <h2 class="jp-connection-banner__title jp-connection-banner__title--warning"> |
| 335 | <svg height="38" width="38" viewBox="0 0 24 24" class="jp-connection-banner__warning-icon"> |
| 336 | <g> |
| 337 | <rect x="8" y="6" width="8" height="12" style="fill:#000000" /> |
| 338 | <path d="M12 2C6.477 2 2 6.477 2 12s4.477 10 10 10 10-4.477 10-10S17.523 2 12 2zm1 15h-2v-2h2v2zm0-4h-2l-.5-6h3l-.5 6z" style="fill:#eec74f"></path> |
| 339 | </g> |
| 340 | </svg> |
| 341 | <?php esc_html_e( 'Finish setting up Jetpack', 'jetpack' ); ?> |
| 342 | </h2> |
| 343 | <div class="jp-connection-banner__text"><?php esc_html_e( "Thanks for purchasing a Jetpack subscription.\nThere’s just one more step to complete the installation.", 'jetpack' ); ?></div> |
| 344 | <div class="jp-connection-banner__footer"> |
| 345 | <div class="jp-connection-banner__text jp-connection-banner__text--caption"><?php jetpack_render_tos_blurb(); ?></div> |
| 346 | <a id="jp-connect-button--alt" href="<?php echo esc_url( $this->build_connect_url_for_slide( '111' ) ); ?>" class="jp-banner-cta-button"> |
| 347 | <?php esc_html_e( 'Set up Jetpack', 'jetpack' ); ?> |
| 348 | </a> |
| 349 | </div> |
| 350 | </div> |
| 351 | <div class="jp-connection-banner__image-container"> |
| 352 | <img class="jp-connection-banner__image-background" src="<?php echo esc_url( plugins_url( 'images/jetpack-connection-banner-background.svg', JETPACK__PLUGIN_FILE ) ); ?>" /> |
| 353 | <picture> |
| 354 | <source |
| 355 | type="image/webp" |
| 356 | srcset="<?php echo esc_url( plugins_url( 'images/jetpack-connection-image.webp', JETPACK__PLUGIN_FILE ) ); ?> 1x, <?php echo esc_url( plugins_url( 'images/jetpack-connection-image-2x.webp', JETPACK__PLUGIN_FILE ) ); ?> 2x"> |
| 357 | <img |
| 358 | class="jp-connection-banner__image" |
| 359 | srcset="<?php echo esc_url( plugins_url( 'images/jetpack-connection-image.png', JETPACK__PLUGIN_FILE ) ); ?> 1x, <?php echo esc_url( plugins_url( 'images/jetpack-connection-image-2x.png', JETPACK__PLUGIN_FILE ) ); ?> 2x" |
| 360 | src="<?php echo esc_url( plugins_url( 'images/jetpack-connection-image.png', JETPACK__PLUGIN_FILE ) ); ?>" |
| 361 | alt=""> |
| 362 | </picture> |
| 363 | </div> |
| 364 | </div> |
| 365 | </div> |
| 366 | <?php |
| 367 | } |
| 368 | |
| 369 | /** |
| 370 | * Renders the legacy network connection banner. |
| 371 | */ |
| 372 | public function network_connect_notice() { |
| 373 | ?> |
| 374 | <div id="message" class="updated jetpack-message"> |
| 375 | <div class="squeezer"> |
| 376 | <h2> |
| 377 | <?php |
| 378 | echo wp_kses( |
| 379 | __( |
| 380 | '<strong>Jetpack is activated!</strong> Each site on your network must be connected individually by an admin on that site.', |
| 381 | 'jetpack' |
| 382 | ), |
| 383 | array( 'strong' => array() ) |
| 384 | ); |
| 385 | ?> |
| 386 | </h2> |
| 387 | </div> |
| 388 | </div> |
| 389 | <?php |
| 390 | } |
| 391 | } |
| 392 |