PluginProbe
Jetpack – WP Security, Backup, Speed, & Growth / 16.2
Jetpack – WP Security, Backup, Speed, & Growth v16.2
16.3-a.1 16.2 16.2-beta 12.0.3 12.1.3 12.2.3 12.3.2 12.4.2 12.5.2 12.6.4 12.7.3 12.8.3 12.9.5 13.0.2 13.1.5 13.2.4 13.3.3 13.4.5 13.5.2 13.6.2 13.7.2 13.8.3 13.9.2 14.0.1 14.1.1 All 503 releases
← All changes | class.jetpack.php +1144 -1174 12.6.416.2 View file →
@@ -6,20 +6,19 @@
6 6 *
7 7 * @package automattic/jetpack
8 8 */
9 9
10 +use Automattic\Jetpack\Activity_Log\Jetpack_Activity_Log as Activity_Log_Init;
10 11 use Automattic\Jetpack\Assets;
11 -use Automattic\Jetpack\Assets\Logo as Jetpack_Logo;
12 12 use Automattic\Jetpack\Boost_Speed_Score\Speed_Score;
13 13 use Automattic\Jetpack\Config;
14 +use Automattic\Jetpack\Connection\Authorize_Json_Api;
14 15 use Automattic\Jetpack\Connection\Client;
15 -use Automattic\Jetpack\Connection\Initial_State as Connection_Initial_State;
16 16 use Automattic\Jetpack\Connection\Manager as Connection_Manager;
17 -use Automattic\Jetpack\Connection\Nonce_Handler;
18 17 use Automattic\Jetpack\Connection\Rest_Authentication as Connection_Rest_Authentication;
19 18 use Automattic\Jetpack\Connection\Secrets;
20 19 use Automattic\Jetpack\Connection\Tokens;
21 -use Automattic\Jetpack\Connection\Utils as Connection_Utils;
20 +use Automattic\Jetpack\Connection\Webhooks\Authorize_Redirect;
22 21 use Automattic\Jetpack\Constants;
23 22 use Automattic\Jetpack\CookieState;
24 23 use Automattic\Jetpack\Current_Plan as Jetpack_Plan;
25 24 use Automattic\Jetpack\Device_Detection\User_Agent_Info;
@@ -24,16 +23,22 @@
24 23 use Automattic\Jetpack\Current_Plan as Jetpack_Plan;
25 24 use Automattic\Jetpack\Device_Detection\User_Agent_Info;
26 25 use Automattic\Jetpack\Errors;
27 26 use Automattic\Jetpack\Files;
27 +use Automattic\Jetpack\Heartbeat;
28 28 use Automattic\Jetpack\Identity_Crisis;
29 +use Automattic\Jetpack\Import\Main as Import_Main;
29 30 use Automattic\Jetpack\Licensing;
30 31 use Automattic\Jetpack\Modules;
31 32 use Automattic\Jetpack\My_Jetpack\Initializer as My_Jetpack_Initializer;
32 -use Automattic\Jetpack\Partner;
33 +use Automattic\Jetpack\Newsletter\Reader_Link;
33 34 use Automattic\Jetpack\Paths;
35 +use Automattic\Jetpack\Plugin\Deprecate;
34 36 use Automattic\Jetpack\Plugin\Tracking as Plugin_Tracking;
37 +use Automattic\Jetpack\Podcast\Podcast;
35 38 use Automattic\Jetpack\Redirect;
39 +use Automattic\Jetpack\Scan_Page\Jetpack_Scan as Scan_Page_Init;
40 +use Automattic\Jetpack\SEO\Initializer as Jetpack_SEO_Initializer;
36 41 use Automattic\Jetpack\Status;
37 42 use Automattic\Jetpack\Status\Host;
38 43 use Automattic\Jetpack\Status\Visitor;
39 44 use Automattic\Jetpack\Sync\Actions as Sync_Actions;
@@ -40,9 +45,14 @@
40 45 use Automattic\Jetpack\Sync\Health;
41 46 use Automattic\Jetpack\Sync\Sender;
42 47 use Automattic\Jetpack\Terms_Of_Service;
43 48 use Automattic\Jetpack\Tracking;
49 +use Automattic\Woocommerce_Analytics;
44 50
51 +if ( ! defined( 'ABSPATH' ) ) {
52 + exit( 0 );
53 +}
54 +
45 55 /*
46 56 Options:
47 57 jetpack_options (array)
48 58 An array of options.
@@ -70,54 +80,25 @@
70 80 * The Jetpack class.
71 81 */
72 82 class Jetpack {
73 83 /**
74 - * XMLRPC server instance.
84 + * Marks that the durable Jetpack SEO module-state options have been reconciled against
85 + * the site's module configuration, so the repair runs at most once.
75 86 *
76 - * @var null|Jetpack_XMLRPC_Server XMLRPC server used by Jetpack.
87 + * {@see self::reconcile_seo_module_state_options()}
88 + *
89 + * @since 16.1
90 + *
91 + * @var string
77 92 */
78 - public $xmlrpc_server = null;
93 + const SEO_MODULE_STATE_RECONCILED_OPTION = 'jetpack_seo_module_state_reconciled';
79 94
80 95 /**
81 - * The handles of styles that are concatenated into jetpack.css.
96 + * XMLRPC server instance.
82 97 *
83 - * When making changes to that list, you must also update concat_list in tools/webpack.config.css.js.
84 - *
85 - * @var array The handles of styles that are concatenated into jetpack.css.
98 + * @var null|Jetpack_XMLRPC_Server XMLRPC server used by Jetpack.
86 99 */
87 - public $concatenated_style_handles = array(
88 - 'jetpack-carousel-swiper-css',
89 - 'jetpack-carousel',
90 - 'grunion.css',
91 - 'the-neverending-homepage',
92 - 'jetpack_likes',
93 - 'jetpack_related-posts',
94 - 'sharedaddy',
95 - 'jetpack-slideshow',
96 - 'presentations',
97 - 'quiz',
98 - 'jetpack-subscriptions',
99 - 'jetpack-responsive-videos',
100 - 'jetpack-social-menu',
101 - 'tiled-gallery',
102 - 'jetpack_display_posts_widget',
103 - 'gravatar-profile-widget',
104 - 'goodreads-widget',
105 - 'jetpack_social_media_icons_widget',
106 - 'jetpack-top-posts-widget',
107 - 'jetpack_image_widget',
108 - 'jetpack-my-community-widget',
109 - 'jetpack-authors-widget',
110 - 'wordads',
111 - 'eu-cookie-law-style',
112 - 'flickr-widget-style',
113 - 'jetpack-search-widget',
114 - 'jetpack-simple-payments-widget-style',
115 - 'jetpack-widget-social-icons-styles',
116 - 'wpcom_instagram_widget',
117 - 'milestone-widget',
118 - 'subscribe-modal-css',
119 - );
100 + public $xmlrpc_server = null;
120 101
121 102 /**
122 103 * Contains all assets that have had their URL rewritten to minified versions.
123 104 *
@@ -134,11 +115,8 @@
134 115 'contact-form' => array(
135 116 array( 'grunion-contact-form/grunion-contact-form.php', 'Grunion Contact Form' ),
136 117 array( 'mullet/mullet-contact-form.php', 'Mullet Contact Form' ),
137 118 ),
138 - 'custom-css' => array(
139 - array( 'safecss/safecss.php', 'WordPress.com Custom CSS' ),
140 - ),
141 119 'gravatar-hovercards' => array(
142 120 array( 'jetpack-gravatar-hovercards/gravatar-hovercards.php', 'Jetpack Gravatar Hovercards' ),
143 121 ),
144 122 'latex' => array(
@@ -299,13 +277,8 @@
299 277 'MSM Sitemaps' => 'msm-sitemap/msm-sitemap.php',
300 278 'Rank Math' => 'seo-by-rank-math/rank-math.php',
301 279 'Slim SEO' => 'slim-seo/slim-seo.php',
302 280 ),
303 - 'lazy-images' => array(
304 - 'Lazy Load' => 'lazy-load/lazy-load.php',
305 - 'BJ Lazy Load' => 'bj-lazy-load/bj-lazy-load.php',
306 - 'Lazy Load by WP Rocket' => 'rocket-lazy-load/rocket-lazy-load.php',
307 - ),
308 281 );
309 282
310 283 /**
311 284 * Plugins for which we turn off our Facebook OG Tags implementation.
@@ -314,9 +287,8 @@
314 287 * Graph tags via filter when their Social Meta modules are active:
315 288 *
316 289 * - All in One SEO Pack, All in one SEO Pack Pro
317 290 * - WordPress SEO by Yoast, WordPress SEO Premium by Yoast
318 - * - SEOPress, SEOPress Pro
319 291 *
320 292 * Plugin authors: If you'd like to prevent Jetpack's Open Graph tag generation in your plugin, you can do so via this filter:
321 293 * add_filter( 'jetpack_enable_open_graph', '__return_false' );
322 294 *
@@ -359,8 +331,10 @@
359 331 'wp-caregiver/wp-caregiver.php', // WP Caregiver.
360 332 'wp-facebook-like-send-open-graph-meta/wp-facebook-like-send-open-graph-meta.php', // WP Facebook Like Send & Open Graph Meta.
361 333 'wp-facebook-open-graph-protocol/wp-facebook-ogp.php', // WP Facebook Open Graph protocol.
362 334 'wp-ogp/wp-ogp.php', // WP-OGP.
335 + 'wp-seopress/seopress.php', // SEOPress.
336 + 'wp-seopress-pro/seopress-pro.php', // SEOPress Pro.
363 337 'zoltonorg-social-plugin/zosp.php', // Zolton.org Social Plugin.
364 338 'wp-fb-share-like-button/wp_fb_share-like_widget.php', // WP Facebook Like Button.
365 339 'open-graph-metabox/open-graph-metabox.php', // Open Graph Metabox.
366 340 'seo-by-rank-math/rank-math.php', // Rank Math.
@@ -427,8 +401,10 @@
427 401
428 402 /**
429 403 * Verified data for JSON authorization request
430 404 *
405 + * @deprecated 13.4
406 + *
431 407 * @var array
432 408 */
433 409 public $json_api_authorization_request = array();
434 410
@@ -469,8 +445,16 @@
469 445 */
470 446 public static $instance = false;
471 447
472 448 /**
449 + * Resolved answer for `is_premium_analytics_enabled()`, or null before the first call.
450 + *
451 + * @since 16.1
452 + * @var bool|null
453 + */
454 + private static $premium_analytics_enabled = null;
455 +
456 + /**
473 457 * Singleton
474 458 *
475 459 * @static
476 460 */
@@ -510,9 +494,9 @@
510 494 if ( array_diff( $unfiltered_modules, $modules ) ) {
511 495 self::update_active_modules( $modules );
512 496 }
513 497
514 - add_action( 'init', array( __CLASS__, 'activate_new_modules' ) );
498 + self::register_upgrade_init_hooks();
515 499
516 500 // Upgrade to 4.3.0.
517 501 if ( Jetpack_Options::get_option( 'identity_crisis_whitelist' ) ) {
518 502 Jetpack_Options::delete_option( 'identity_crisis_whitelist' );
@@ -567,8 +551,13 @@
567 551 Jetpack_Options::delete_option( 'autoupdate_plugins' );
568 552 } // Should we have some type of fallback if something fails here?
569 553 }
570 554
555 + // Set the newsletter send default option for existing sites.
556 + if ( false === get_option( 'wpcom_newsletter_send_default' ) ) {
557 + add_option( 'wpcom_newsletter_send_default', 1 );
558 + }
559 +
571 560 if ( did_action( 'wp_loaded' ) ) {
572 561 self::upgrade_on_load();
573 562 } else {
574 563 add_action(
@@ -602,9 +591,8 @@
602 591 }
603 592
604 593 if (
605 594 class_exists( 'Jetpack_Sitemap_Manager' )
606 - && version_compare( JETPACK__VERSION, '5.3', '>=' )
607 595 ) {
608 596 do_action( 'jetpack_sitemaps_purge_data' );
609 597 }
610 598
@@ -619,9 +607,9 @@
619 607 * Also fires Action hooks for each newly activated and deactivated module.
620 608 *
621 609 * @param array $modules Array of active modules to be saved in options.
622 610 *
623 - * @return $success bool true for success, false for failure.
611 + * @return bool $success true for success, false for failure.
624 612 */
625 613 public static function update_active_modules( $modules ) {
626 614 return ( new Modules() )->update_active( $modules );
627 615 }
@@ -651,10 +639,10 @@
651 639 sort( $taken_priorities );
652 640
653 641 $first_priority = array_shift( $taken_priorities );
654 642
655 - if ( defined( 'PHP_INT_MAX' ) && $first_priority <= - PHP_INT_MAX ) {
656 - $new_priority = - PHP_INT_MAX;
643 + if ( $first_priority <= PHP_INT_MIN ) {
644 + $new_priority = PHP_INT_MIN;
657 645 } else {
658 646 $new_priority = $first_priority - 1;
659 647 }
660 648
@@ -675,41 +663,17 @@
675 663 add_action( 'network_plugin_loaded', array( $this, 'add_configure_hook' ), 90 );
676 664 add_action( 'mu_plugin_loaded', array( $this, 'add_configure_hook' ), 90 );
677 665 add_action( 'plugins_loaded', array( $this, 'late_initialization' ), 90 );
678 666
679 - add_action( 'jetpack_verify_signature_error', array( $this, 'track_xmlrpc_error' ) );
680 -
681 - add_filter(
682 - 'jetpack_signature_check_token',
683 - array( __CLASS__, 'verify_onboarding_token' ),
684 - 10,
685 - 3
686 - );
687 -
688 667 /**
689 668 * Prepare Gutenberg Editor functionality
669 + *
670 + * The hooks previously here have been moved to modules/blocks.php but leaving this here pending
671 + * a longer investigation to see if code is expecting the Gutenberg class to always be available.
690 672 */
691 673 require_once JETPACK__PLUGIN_DIR . 'class.jetpack-gutenberg.php';
692 - add_action( 'plugins_loaded', array( 'Jetpack_Gutenberg', 'load_independent_blocks' ) );
693 - add_action( 'plugins_loaded', array( 'Jetpack_Gutenberg', 'load_block_editor_extensions' ), 9 );
694 - /**
695 - * We've switched from enqueue_block_editor_assets to enqueue_block_assets in WP-Admin because the assets with the former are loaded on the main site-editor.php.
696 - *
697 - * With the latter, the assets are now loaded in the SE iframe; the implementation is now faster because Gutenberg doesn't need to inject the assets in the iframe on client-side.
698 - */
699 - if ( is_admin() ) {
700 - add_action( 'enqueue_block_assets', array( 'Jetpack_Gutenberg', 'enqueue_block_editor_assets' ) );
701 - } else {
702 - add_action( 'enqueue_block_editor_assets', array( 'Jetpack_Gutenberg', 'enqueue_block_editor_assets' ) );
703 - }
704 - add_filter( 'render_block', array( 'Jetpack_Gutenberg', 'display_deprecated_block_message' ), 10, 2 );
705 -
706 674 add_action( 'set_user_role', array( $this, 'maybe_clear_other_linked_admins_transient' ), 10, 3 );
707 675
708 - // Unlink user before deleting the user from WP.com.
709 - add_action( 'deleted_user', array( $this, 'disconnect_user' ), 10, 1 );
710 - add_action( 'remove_user_from_blog', array( $this, 'disconnect_user' ), 10, 1 );
711 -
712 676 add_action( 'jetpack_event_log', array( 'Jetpack', 'log' ), 10, 2 );
713 677
714 678 add_filter( 'login_url', array( $this, 'login_url' ), 10, 2 );
715 679 add_action( 'login_init', array( $this, 'login_init' ) );
@@ -716,8 +680,13 @@
716 680
717 681 // Set up the REST authentication hooks.
718 682 Connection_Rest_Authentication::init();
719 683
684 + // Register Jetpack-specific connection tests (sync health, etc.) with the connection
685 + // package's health test suite. This runs on all requests (not just admin), because
686 + // the connection/test REST endpoint can be called outside admin context.
687 + add_action( 'jetpack_connection_tests_loaded', array( $this, 'register_jetpack_connection_tests' ) );
688 +
720 689 add_action( 'admin_init', array( $this, 'admin_init' ) );
721 690 add_action( 'admin_init', array( $this, 'dismiss_jetpack_notice' ) );
722 691
723 692 add_filter( 'admin_body_class', array( $this, 'admin_body_class' ), 20 );
@@ -731,12 +700,8 @@
731 700
732 701 // Returns HTTPS support status.
733 702 add_action( 'wp_ajax_jetpack-recheck-ssl', array( $this, 'ajax_recheck_ssl' ) );
734 703
735 - add_action( 'wp_ajax_jetpack_connection_banner', array( $this, 'jetpack_connection_banner_callback' ) );
736 -
737 - add_action( 'wp_ajax_jetpack_recommendations_banner', array( 'Jetpack_Recommendations_Banner', 'ajax_callback' ) );
738 -
739 704 add_action( 'wp_loaded', array( $this, 'register_assets' ) );
740 705
741 706 /**
742 707 * These actions run checks to load additional files.
@@ -754,29 +719,8 @@
754 719
755 720 add_filter( 'jetpack_get_default_modules', array( $this, 'filter_default_modules' ) );
756 721 add_filter( 'jetpack_get_default_modules', array( $this, 'handle_deprecated_modules' ), 99 );
757 722
758 - require_once JETPACK__PLUGIN_DIR . 'class-jetpack-pre-connection-jitms.php';
759 - $jetpack_jitm_messages = ( new Jetpack_Pre_Connection_JITMs() );
760 - add_filter( 'jetpack_pre_connection_jitms', array( $jetpack_jitm_messages, 'add_pre_connection_jitms' ) );
761 -
762 - /*
763 - * If enabled, point edit post, page, and comment links to Calypso instead of WP-Admin.
764 - * We should make sure to only do this for front end links.
765 - */
766 - if ( self::get_option( 'edit_links_calypso_redirect' ) && ! is_admin() ) {
767 - add_filter( 'get_edit_post_link', array( $this, 'point_edit_post_links_to_calypso' ), 1, 2 );
768 - add_filter( 'get_edit_comment_link', array( $this, 'point_edit_comment_links_to_calypso' ), 1 );
769 -
770 - /*
771 - * We'll shortcircuit wp_notify_postauthor and wp_notify_moderator pluggable functions
772 - * so they point moderation links on emails to Calypso.
773 - */
774 - require_once JETPACK__PLUGIN_DIR . '_inc/lib/functions.wp-notify.php';
775 - add_filter( 'comment_notification_recipients', 'jetpack_notify_postauthor', 1, 2 );
776 - add_filter( 'notify_moderator', 'jetpack_notify_moderator', 1, 2 );
777 - }
778 -
779 723 add_action(
780 724 'plugins_loaded',
781 725 function () {
782 726 if ( User_Agent_Info::is_mobile_app() ) {
@@ -787,18 +731,10 @@
787 731
788 732 // Update the site's Jetpack plan and products from API on heartbeats.
789 733 add_action( 'jetpack_heartbeat', array( Jetpack_Plan::class, 'refresh_from_wpcom' ) );
790 734
791 - /**
792 - * This is the hack to concatenate all css files into one.
793 - * For description and reasoning see the implode_frontend_css method.
794 - *
795 - * Super late priority so we catch all the registered styles.
796 - */
797 - if ( ! is_admin() ) {
798 - add_action( 'wp_print_styles', array( $this, 'implode_frontend_css' ), -1 ); // Run first.
799 - add_action( 'wp_print_footer_scripts', array( $this, 'implode_frontend_css' ), -1 ); // Run first to trigger before `print_late_styles`.
800 - }
735 + // The Connection package fetches the site record for `jetpack/v4/site`; reuse it to refresh the plan.
736 + add_action( 'jetpack_site_data_fetched', array( Jetpack_Plan::class, 'update_from_site_record' ) );
801 737
802 738 // Actually push the stats on shutdown.
803 739 if ( ! has_action( 'shutdown', array( $this, 'push_stats' ) ) ) {
804 740 add_action( 'shutdown', array( $this, 'push_stats' ) );
@@ -806,8 +742,10 @@
806 742
807 743 // After a successful connection.
808 744 add_action( 'jetpack_site_registered', array( $this, 'activate_default_modules_on_site_register' ) );
809 745 add_action( 'jetpack_site_registered', array( $this, 'handle_unique_registrations_stats' ) );
746 + add_action( 'jetpack_site_registered', array( Reader_Link::class, 'activate_on_connection' ), 9 );
747 + add_action( 'jetpack_site_registered', array( \Automattic\Jetpack\Reprint_Export\Reprint_Exporter::class, 'discard_credentials' ) );
810 748
811 749 // Actions for Manager::authorize().
812 750 add_action( 'jetpack_authorize_starting', array( $this, 'authorize_starting' ) );
813 751 add_action( 'jetpack_authorize_ending_linked', array( $this, 'authorize_ending_linked' ) );
@@ -812,8 +750,9 @@
812 750 add_action( 'jetpack_authorize_starting', array( $this, 'authorize_starting' ) );
813 751 add_action( 'jetpack_authorize_ending_linked', array( $this, 'authorize_ending_linked' ) );
814 752 add_action( 'jetpack_authorize_ending_authorized', array( $this, 'authorize_ending_authorized' ) );
815 753
754 + Jetpack_Client_Server::init();
816 755 add_action( 'jetpack_client_authorize_error', array( Jetpack_Client_Server::class, 'client_authorize_error' ) );
817 756 add_filter( 'jetpack_client_authorize_already_authorized_url', array( Jetpack_Client_Server::class, 'client_authorize_already_authorized_url' ) );
818 757 add_action( 'jetpack_client_authorize_processing', array( Jetpack_Client_Server::class, 'client_authorize_processing' ) );
819 758 add_filter( 'jetpack_client_authorize_fallback_url', array( Jetpack_Client_Server::class, 'client_authorize_fallback_url' ) );
@@ -818,9 +757,9 @@
818 757 add_action( 'jetpack_client_authorize_processing', array( Jetpack_Client_Server::class, 'client_authorize_processing' ) );
819 758 add_filter( 'jetpack_client_authorize_fallback_url', array( Jetpack_Client_Server::class, 'client_authorize_fallback_url' ) );
820 759
821 760 // Filters for the Manager::get_token() urls and request body.
822 - add_filter( 'jetpack_token_redirect_url', array( __CLASS__, 'filter_connect_redirect_url' ) );
761 + add_filter( 'jetpack_token_redirect_url', array( Authorize_Redirect::class, 'filter_connect_redirect_url' ) );
823 762 add_filter( 'jetpack_token_request_body', array( __CLASS__, 'filter_token_request_body' ) );
824 763
825 764 // Filter for the `jetpack/v4/connection/data` API response.
826 765 add_filter( 'jetpack_current_user_connection_data', array( __CLASS__, 'filter_jetpack_current_user_connection_data' ) );
@@ -841,9 +780,9 @@
841 780 // Make resources use static domain when possible.
842 781 add_filter( 'jetpack_static_url', array( 'Automattic\\Jetpack\\Assets', 'staticize_subdomain' ) );
843 782
844 783 // Validate the domain names in Jetpack development versions.
845 - add_action( 'jetpack_pre_register', array( get_called_class(), 'registration_check_domains' ) );
784 + add_action( 'jetpack_pre_register', array( static::class, 'registration_check_domains' ) );
846 785
847 786 // Register product descriptions for partner coupon usage.
848 787 add_filter( 'jetpack_partner_coupon_products', array( $this, 'get_partner_coupon_product_descriptions' ) );
849 788
@@ -848,11 +787,143 @@
848 787 add_filter( 'jetpack_partner_coupon_products', array( $this, 'get_partner_coupon_product_descriptions' ) );
849 788
850 789 // Actions for conditional recommendations.
851 790 add_action( 'plugins_loaded', array( 'Jetpack_Recommendations', 'init_conditional_recommendation_actions' ) );
791 +
792 + // Add 5-star
793 + add_filter( 'plugin_row_meta', array( $this, 'add_5_star_review_link' ), 10, 2 );
794 + add_action( 'init', array( Deprecate::class, 'instance' ) );
795 +
796 + // Register Jetpack module management abilities (WordPress Abilities API, WP 6.9+).
797 + \Automattic\Jetpack\Plugin\Abilities\Modules_Abilities::init();
798 +
799 + // Register Connection abilities (WordPress Abilities API, WP 6.9+). Scoped to the
800 + // Jetpack plugin for now: the Connection package no longer auto-wires these, so
801 + // connection-only consumers (Boost, Protect, Search, etc.) do not register them yet.
802 + \Automattic\Jetpack\Connection\Abilities\Connection_Abilities::init();
852 803 }
853 804
854 805 /**
806 + * Whether the current request should eagerly initialize the admin/REST-only
807 + * packages (the Import package and My Jetpack) now, at `plugins_loaded` time.
808 + *
809 + * Returns true for admin, cron, POST, and WP-CLI requests — the contexts,
810 + * knowable this early, where those packages have work to do. Returns false
811 + * for a plain front-end GET *and* for a REST request: the two can't be told
812 + * apart yet (this runs before `rest_api_init`), so callers defer the REST
813 + * case by initializing the package on `rest_api_init` instead, while a plain
814 + * page view never fires that hook and so loads nothing. This keeps
815 + * admin/REST-only PHP out of opcache on the front-end GET hot path.
816 + *
817 + * No in-repo code depends on the deferral. The one externally observable
818 + * change is timing: the packages' documented init hooks
819 + * (`jetpack_import_initialized`, `jetpack_feature_import_enabled`, and
820 + * `my_jetpack_init`) no longer fire on a plain front-end GET — they fire on
821 + * the admin, cron, POST, WP-CLI, and REST requests where the packages load.
822 + *
823 + * @return bool
824 + */
825 + private static function should_eager_load_packages() {
826 + $is_post_request = isset( $_SERVER['REQUEST_METHOD'] ) && 'POST' === strtoupper( sanitize_text_field( wp_unslash( $_SERVER['REQUEST_METHOD'] ) ) );
827 + $is_wp_cli = Constants::is_true( 'WP_CLI' );
828 +
829 + return is_admin() || wp_doing_cron() || $is_post_request || $is_wp_cli;
830 + }
831 +
832 + /**
833 + * Configure the Import package from a deferred hook.
834 + *
835 + * The eager path uses Config::ensure( 'import' ), but the deferred REST path
836 + * runs after Config::on_plugins_loaded() has already processed its feature
837 + * flags, so it needs a hookable bootstrap callback. Preserve Config's
838 + * feature-enabled action for hook consumers.
839 + *
840 + * @since 16.0
841 + *
842 + * @return void
843 + */
844 + public static function configure_import_package() {
845 + if ( class_exists( Import_Main::class ) ) {
846 + Import_Main::configure();
847 +
848 + if ( ! did_action( 'jetpack_feature_import_enabled' ) ) {
849 + do_action( 'jetpack_feature_import_enabled' );
850 + }
851 + }
852 + }
853 +
854 + /**
855 + * Whether the bundled Stats v2 dashboard is enabled.
856 + *
857 + * Stats v2 (formerly "Premium Analytics") ships with the plugin behind this
858 + * flag while it rolls out (WOOA7S-1595). When enabled it adds its own admin
859 + * menu alongside the existing Stats UI; it never replaces or hides the
860 + * legacy Stats menu, admin-bar entries, post-list column, or WP dashboard
861 + * widget. The Stats module's tracking is unaffected either way, and Stats v2
862 + * reads what that module collects, so while the module is off the plugin
863 + * answers false here before even reading the flag.
864 + *
865 + * The package has to be loadable for this to be true, so a site with the
866 + * flag on but a missing package answers false here and never adds the
867 + * Stats v2 menu (a warning is logged instead).
868 + *
869 + * @since 16.1
870 + *
871 + * @return bool
872 + */
873 + public static function is_premium_analytics_enabled() {
874 + if ( null !== self::$premium_analytics_enabled ) {
875 + return self::$premium_analytics_enabled;
876 + }
877 +
878 + if ( ! self::is_module_active( 'stats' ) ) {
879 + self::$premium_analytics_enabled = false;
880 + return false;
881 + }
882 +
883 + /**
884 + * Filters whether the bundled Premium Analytics dashboard is enabled.
885 + *
886 + * Resolved once, from `Jetpack::configure()` on `plugins_loaded`, and only
887 + * while the Stats module is active. Register this from a mu-plugin or a
888 + * plugin's main file — a callback added on `plugins_loaded` or later runs
889 + * too late to be seen.
890 + *
891 + * @since 16.1
892 + *
893 + * @param bool $enabled Defaults to the `jetpack_premium_analytics_enabled` option (false).
894 + */
895 + $flag = (bool) apply_filters( 'jetpack_premium_analytics_enabled', (bool) get_option( 'jetpack_premium_analytics_enabled' ) );
896 +
897 + self::$premium_analytics_enabled = $flag && class_exists( 'Automattic\Jetpack\PremiumAnalytics\Analytics' );
898 +
899 + if ( $flag && ! self::$premium_analytics_enabled ) {
900 + wp_trigger_error(
901 + __METHOD__,
902 + 'The jetpack_premium_analytics_enabled flag is on but the Premium Analytics package is not loadable; keeping the Stats UI in place.'
903 + );
904 + }
905 +
906 + return self::$premium_analytics_enabled;
907 + }
908 +
909 + /**
910 + * Expose the setting that turns the Premium Analytics dashboard on and off.
911 + *
912 + * Deliberately not behind is_premium_analytics_enabled(): this is the setting that flips that
913 + * check, so it has to answer while the dashboard is still off.
914 + *
915 + * @since 16.2
916 + *
917 + * @return void
918 + */
919 + public static function register_premium_analytics_enablement_setting() {
920 + if ( class_exists( 'Automattic\Jetpack\PremiumAnalytics\Enablement_Setting' ) ) {
921 + \Automattic\Jetpack\PremiumAnalytics\Enablement_Setting::register();
922 + }
923 + }
924 +
925 + /**
855 926 * Before everything else starts getting initalized, we need to initialize Jetpack using the
856 927 * Config object.
857 928 */
858 929 public function configure() {
@@ -861,13 +932,10 @@
861 932 foreach (
862 933 array(
863 934 'jitm',
864 935 'sync',
936 + 'account_protection',
865 937 'waf',
866 - 'videopress',
867 - 'stats',
868 - 'stats_admin',
869 - 'import',
870 938 )
871 939 as $feature
872 940 ) {
873 941 $config->ensure( $feature );
@@ -872,8 +940,103 @@
872 940 ) {
873 941 $config->ensure( $feature );
874 942 }
875 943
944 + // Enable the VideoPress admin UI (the "Jetpack > VideoPress" dashboard) inside the
945 + // Jetpack plugin, mirroring the standalone Jetpack VideoPress plugin. The dashboard
946 + // only renders when the VideoPress module is active (Status::is_active()); when it
947 + // is not, the menu item links to the My Jetpack interstitial to activate it.
948 + $config->ensure( 'videopress', array( 'admin_ui' => true ) );
949 +
950 + /*
951 + * The Import package only registers `jetpack/v4/import` REST routes — it
952 + * does nothing when rendering a front-end page — so gate its `ensure()`
953 + * to keep its PHP out of opcache on the front-end GET hot path. It still
954 + * loads on admin, cron, POST, and WP-CLI requests, and on `rest_api_init`
955 + * for REST: a REST request can't be identified yet at `plugins_loaded`
956 + * (this runs before `Config::on_plugins_loaded`, and `rest_api_init`
957 + * fires later), so it is initialized directly when that hook fires, while
958 + * a plain page view never fires it and so loads nothing.
959 + *
960 + * JITM stays eager (above): unlike Import, its `register()` adds a
961 + * `jetpack_sync_before_send_updated_option` filter that records the
962 + * `jetpack_last_plugin_sync` transient, and a Jetpack Sync send can fire
963 + * on a plain front-end GET — including the dedicated-sync `spawn-sync`
964 + * GET, which runs on `init` and exits before `rest_api_init`. Deferring
965 + * JITM would skip that bookkeeping and leave its message cache stale after
966 + * a plugin change, so it loads on every request as before.
967 + */
968 + if ( self::should_eager_load_packages() ) {
969 + $config->ensure( 'import' );
970 + } else {
971 + add_action(
972 + 'rest_api_init',
973 + array( __CLASS__, 'configure_import_package' ),
974 + 0
975 + );
976 + }
977 +
978 + /*
979 + * The Stats and Stats Admin packages only do work when the Stats module
980 + * is active (the front-end tracking pixel) or on wp-admin, REST, cron,
981 + * POST, and WP-CLI requests: the Stats dashboard page, the stats /
982 + * stats-app REST endpoints (which the block editor also calls for
983 + * email-open rates), the transient-cleanup cron, the connection
984 + * package's package-version tracker (which runs on POSTs and reads the
985 + * `jetpack_package_versions` filter that Stats registers), and CLI
986 + * introspection such as the heartbeat inspector. On a plain front-end
987 + * GET page view with the module off they are inert: the pixel
988 + * short-circuits on `Stats\Main::should_track()` and every other entry
989 + * point only hooks rest_api_init, admin, cron, the POST-only tracker, or
990 + * is reached through WP-CLI.
991 + * Skip loading them — and eagerly constructing the Stats Admin REST
992 + * controller — on that hot path to keep their PHP out of opcache, but
993 + * keep loading them everywhere else exactly as before so the stats REST
994 + * permission mapping (view_stats, registered by Stats\Main), the
995 + * editor's stats-app calls, the cleanup cron, and the package-version
996 + * tracker are all unchanged.
997 + *
998 + * REST requests are not yet identifiable here (REST_REQUEST is defined
999 + * after plugins_loaded), so defer those to rest_api_init. Call the
1000 + * package initializers directly rather than `$config->ensure()`: ensure()
1001 + * only flags a feature for `Config::on_plugins_loaded()` (plugins_loaded
1002 + * priority 2), which has already run by the time rest_api_init fires.
1003 + * Priority 0 runs before each package's own priority-10 route
1004 + * registration, so their routes still register within the same dispatch.
1005 + * A plain page view never fires rest_api_init, so the packages stay
1006 + * unloaded there. See JETPACK-1747.
1007 + */
1008 + $is_post_request = isset( $_SERVER['REQUEST_METHOD'] ) && 'POST' === $_SERVER['REQUEST_METHOD'];
1009 + $is_wp_cli = defined( 'WP_CLI' ) && WP_CLI;
1010 +
1011 + if ( self::is_module_active( 'stats' ) || is_admin() || wp_doing_cron() || $is_post_request || $is_wp_cli ) {
1012 + $config->ensure( 'stats' );
1013 + $config->ensure( 'stats_admin' );
1014 + } else {
1015 + add_action(
1016 + 'rest_api_init',
1017 + static function () {
1018 + if ( class_exists( 'Automattic\Jetpack\Stats\Main' ) ) {
1019 + \Automattic\Jetpack\Stats\Main::init();
1020 + }
1021 + if ( class_exists( 'Automattic\Jetpack\Stats_Admin\Main' ) ) {
1022 + \Automattic\Jetpack\Stats_Admin\Main::init();
1023 + }
1024 + },
1025 + 0
1026 + );
1027 + }
1028 +
1029 + // Stats v2 (WOOA7S-1595). Unlike Stats above it cannot be deferred when enabled — see
1030 + // Analytics::init() for why, and for why it takes no menu_title here.
1031 + if ( self::is_premium_analytics_enabled() ) {
1032 + \Automattic\Jetpack\PremiumAnalytics\Analytics::init();
1033 + }
1034 +
1035 + // Outside the check above on purpose — see Enablement_Setting. Deferred like Stats, to keep
1036 + // the autoload off the front-end hot path.
1037 + add_action( 'rest_api_init', array( __CLASS__, 'register_premium_analytics_enablement_setting' ), 0 );
1038 +
876 1039 $config->ensure(
877 1040 'connection',
878 1041 array(
879 1042 'slug' => 'jetpack',
@@ -891,12 +1054,8 @@
891 1054 );
892 1055
893 1056 $config->ensure( 'search' );
894 1057
895 - if ( defined( 'ENABLE_WORDADS_SHARED_UI' ) && ENABLE_WORDADS_SHARED_UI ) {
896 - $config->ensure( 'wordads' );
897 - }
898 -
899 1058 if ( ! $this->connection_manager ) {
900 1059 $this->connection_manager = new Connection_Manager( 'jetpack' );
901 1060 }
902 1061
@@ -904,8 +1063,10 @@
904 1063 if ( $modules->is_active( 'publicize' ) && $this->connection_manager->has_connected_user() ) {
905 1064 $config->ensure( 'publicize' );
906 1065 }
907 1066
1067 + add_action( 'jetpack_initialize_tracking', array( $this, 'initialize_tracking' ) );
1068 +
908 1069 /*
909 1070 * Load things that should only be in Network Admin.
910 1071 *
911 1072 * For now blow away everything else until a more full
@@ -920,8 +1081,9 @@
920 1081 $is_connection_ready = self::is_connection_ready();
921 1082
922 1083 if ( $is_connection_ready ) {
923 1084 add_action( 'login_form_jetpack_json_api_authorization', array( $this, 'login_form_json_api_authorization' ) );
1085 + $this->run_initialize_tracking_action();
924 1086
925 1087 Jetpack_Heartbeat::init();
926 1088 if ( self::is_module_active( 'stats' ) && self::is_module_active( 'search' ) ) {
927 1089 require_once JETPACK__PLUGIN_DIR . '_inc/lib/class.jetpack-search-performance-logger.php';
@@ -926,8 +1088,19 @@
926 1088 if ( self::is_module_active( 'stats' ) && self::is_module_active( 'search' ) ) {
927 1089 require_once JETPACK__PLUGIN_DIR . '_inc/lib/class.jetpack-search-performance-logger.php';
928 1090 Jetpack_Search_Performance_Logger::init();
929 1091 }
1092 + } else {
1093 + add_action( 'jetpack_agreed_to_terms_of_service', array( $this, 'run_initialize_tracking_action' ) );
1094 + add_action( 'rest_api_init', array( $this, 'run_initialize_tracking_action' ) );
1095 + add_filter(
1096 + 'xmlrpc_methods',
1097 + function ( $methods ) {
1098 + $this->run_initialize_tracking_action();
1099 + return $methods;
1100 + },
1101 + 1
1102 + );
930 1103 }
931 1104
932 1105 // Initialize remote file upload request handlers.
933 1106 $this->add_remote_request_handlers();
@@ -937,20 +1110,10 @@
937 1110 */
938 1111 if ( $is_connection_ready ) {
939 1112 require_once JETPACK__PLUGIN_DIR . '_inc/lib/class.jetpack-iframe-embed.php';
940 1113 add_action( 'init', array( 'Jetpack_Iframe_Embed', 'init' ), 9, 0 );
941 - require_once JETPACK__PLUGIN_DIR . '_inc/lib/class.jetpack-keyring-service-helper.php';
942 - add_action( 'init', array( 'Jetpack_Keyring_Service_Helper', 'init' ), 9, 0 );
1114 + add_action( 'rest_api_init', array( $this, 'maybe_initialize_rest_jsonapi' ) );
943 1115 }
944 -
945 - if ( ( new Tracking( 'jetpack', $this->connection_manager ) )->should_enable_tracking( new Terms_Of_Service(), new Status() ) ) {
946 - add_action( 'init', array( new Plugin_Tracking(), 'init' ) );
947 - } else {
948 - /**
949 - * Initialize tracking right after the user agrees to the terms of service.
950 - */
951 - add_action( 'jetpack_agreed_to_terms_of_service', array( new Plugin_Tracking(), 'init' ) );
952 - }
953 1116 }
954 1117
955 1118 /**
956 1119 * Runs on plugins_loaded. Use this to add code that needs to be executed later than other
@@ -958,17 +1121,59 @@
958 1121 *
959 1122 * @action plugins_loaded
960 1123 */
961 1124 public function late_initialization() {
962 - add_action( 'plugins_loaded', array( 'Jetpack', 'load_modules' ), 100 );
1125 + add_action( 'after_setup_theme', array( 'Jetpack', 'load_modules' ), -2 );
963 1126
964 - Partner::init();
965 - My_Jetpack_Initializer::init();
1127 + /*
1128 + * My Jetpack is a wp-admin dashboard. Its Initializer::init() only wires
1129 + * up admin-menu, admin_init, and rest_api_init surfaces — and eagerly
1130 + * loads every product class (backup, boost, protect, …) just to register
1131 + * admin plugin-action links — so none of it is needed on a plain
1132 + * front-end GET page view. (The pieces that do immediate work, e.g.
1133 + * Connection REST authentication and Licensing, are already initialized
1134 + * unconditionally in Jetpack's constructor, so they are unaffected here.)
1135 + *
1136 + * Gate the call to the request types where My Jetpack actually does work.
1137 + * REST can't be detected yet at plugins_loaded, so initialize on
1138 + * rest_api_init for that branch; a plain page view never fires it, so My
1139 + * Jetpack stays unloaded there.
1140 + */
1141 + if ( self::should_eager_load_packages() ) {
1142 + My_Jetpack_Initializer::init();
1143 + } else {
1144 + add_action( 'rest_api_init', array( My_Jetpack_Initializer::class, 'init' ), 0 );
1145 + }
966 1146
967 - // Initialize Boost Speed Score
968 - $modules = Jetpack_Boost_Modules::init();
969 - new Speed_Score( $modules, 'jetpack-dashboard' );
1147 + Activity_Log_Init::initialize();
1148 + Scan_Page_Init::initialize();
1149 + Jetpack_SEO_Initializer::init();
970 1150
1151 + if ( ( new Modules() )->is_active( 'podcast' ) ) {
1152 + Podcast::init();
1153 + }
1154 +
1155 + /*
1156 + * Initialize Boost Speed Score. It only does work on REST requests (the
1157 + * dashboard speed-score endpoints) and on a few Jetpack Boost lifecycle
1158 + * actions, so defer constructing it — and loading the boost-speed-score
1159 + * package classes — until one of those hooks actually fires instead of on
1160 + * every request. Priority 0 ensures the object's own callbacks (added in
1161 + * its constructor at the default priority) still run for the firing hook.
1162 + */
1163 + $initialize_speed_score = static function () {
1164 + static $initialized = false;
1165 + if ( $initialized ) {
1166 + return;
1167 + }
1168 + $initialized = true;
1169 + new Speed_Score( array(), 'jetpack-dashboard' );
1170 + };
1171 + add_action( 'rest_api_init', $initialize_speed_score, 0 );
1172 + add_action( 'jetpack_boost_deactivate', $initialize_speed_score, 0 );
1173 + add_action( 'jetpack_boost_environment_changed', $initialize_speed_score, 0 );
1174 + add_action( 'handle_environment_change', $initialize_speed_score, 0 );
1175 +
971 1176 /**
972 1177 * Fires when Jetpack is fully loaded and ready. This is the point where it's safe
973 1178 * to instantiate classes from packages and namespaces that are managed by the Jetpack Autoloader.
974 1179 *
@@ -1006,8 +1211,10 @@
1006 1211
1007 1212 /**
1008 1213 * Redirect edit post links to Calypso.
1009 1214 *
1215 + * @deprecated since 13.9
1216 + *
1010 1217 * @param string $default_url Post edit URL.
1011 1218 * @param int $post_id Post ID.
1012 1219 *
1013 1220 * @return string
@@ -1012,8 +1219,10 @@
1012 1219 *
1013 1220 * @return string
1014 1221 */
1015 1222 public function point_edit_post_links_to_calypso( $default_url, $post_id ) {
1223 + _deprecated_function( __METHOD__, '13.9' );
1224 +
1016 1225 $post = get_post( $post_id );
1017 1226
1018 1227 if ( empty( $post ) ) {
1019 1228 return $default_url;
@@ -1044,13 +1253,17 @@
1044 1253
1045 1254 /**
1046 1255 * Redirect edit comment links to Calypso.
1047 1256 *
1257 + * @deprecated since 13.9
1258 + *
1048 1259 * @param string $url Comment edit URL.
1049 1260 *
1050 1261 * @return string
1051 1262 */
1052 1263 public function point_edit_comment_links_to_calypso( $url ) {
1264 + _deprecated_function( __METHOD__, '13.9' );
1265 +
1053 1266 // Take the `query` key value from the URL, and parse its parts to the $query_args. `amp;c` matches the comment ID.
1054 1267 $query_args = null;
1055 1268 wp_parse_str( wp_parse_url( $url, PHP_URL_QUERY ), $query_args );
1056 1269
@@ -1069,9 +1282,8 @@
1069 1282 *
1070 1283 * @return array list of callables.
1071 1284 */
1072 1285 public function filter_sync_callable_whitelist( $callables ) {
1073 -
1074 1286 // Jetpack Functions.
1075 1287 $jetpack_callables = array(
1076 1288 'single_user_site' => array( 'Jetpack', 'is_single_user_site' ),
1077 1289 'updates' => array( 'Jetpack', 'get_updates' ),
@@ -1076,23 +1288,9 @@
1076 1288 'single_user_site' => array( 'Jetpack', 'is_single_user_site' ),
1077 1289 'updates' => array( 'Jetpack', 'get_updates' ),
1078 1290 'available_jetpack_blocks' => array( 'Jetpack_Gutenberg', 'get_availability' ), // Includes both Gutenberg blocks *and* plugins.
1079 1291 );
1080 - $callables = array_merge( $callables, $jetpack_callables );
1081 -
1082 - // Jetpack_SSO_Helpers.
1083 - if ( include_once JETPACK__PLUGIN_DIR . 'modules/sso/class.jetpack-sso-helpers.php' ) {
1084 - $sso_helpers = array(
1085 - 'sso_is_two_step_required' => array( 'Jetpack_SSO_Helpers', 'is_two_step_required' ),
1086 - 'sso_should_hide_login_form' => array( 'Jetpack_SSO_Helpers', 'should_hide_login_form' ),
1087 - 'sso_match_by_email' => array( 'Jetpack_SSO_Helpers', 'match_by_email' ),
1088 - 'sso_new_user_override' => array( 'Jetpack_SSO_Helpers', 'new_user_override' ),
1089 - 'sso_bypass_default_login_form' => array( 'Jetpack_SSO_Helpers', 'bypass_login_forward_wpcom' ),
1090 - );
1091 - $callables = array_merge( $callables, $sso_helpers );
1092 - }
1093 -
1094 - return $callables;
1292 + return array_merge( $callables, $jetpack_callables );
1095 1293 }
1096 1294
1097 1295 /**
1098 1296 * Extend Sync multisite callables with Jetpack Plugin functions.
@@ -1117,41 +1315,8 @@
1117 1315 return $callables;
1118 1316 }
1119 1317
1120 1318 /**
1121 - * Deprecated
1122 - * Please use Automattic\Jetpack\JITMS\JITM::jetpack_track_last_sync_callback instead.
1123 - *
1124 - * @param array $params The action parameters.
1125 - *
1126 - * @deprecated since 9.8.
1127 - */
1128 - public function jetpack_track_last_sync_callback( $params ) {
1129 - _deprecated_function( __METHOD__, 'jetpack-9.8', '\Automattic\Jetpack\JITMS\JITM->jetpack_track_last_sync_callback' );
1130 - return Automattic\Jetpack\JITMS\JITM::get_instance()->jetpack_track_last_sync_callback( $params );
1131 - }
1132 -
1133 - /**
1134 - * Jetpack Connection banner callback function.
1135 - *
1136 - * @return void
1137 - */
1138 - public function jetpack_connection_banner_callback() {
1139 - check_ajax_referer( 'jp-connection-banner-nonce', 'nonce' );
1140 -
1141 - // Disable the banner dismiss functionality if the pre-connection prompt helpers filter is set.
1142 - if (
1143 - isset( $_REQUEST['dismissBanner'] ) &&
1144 - ! Jetpack_Connection_Banner::force_display()
1145 - ) {
1146 - Jetpack_Options::update_option( 'dismissed_connection_banner', 1 );
1147 - wp_send_json_success();
1148 - }
1149 -
1150 - wp_die();
1151 - }
1152 -
1153 - /**
1154 1319 * If there are any stats that need to be pushed, but haven't been, push them now.
1155 1320 */
1156 1321 public function push_stats() {
1157 1322 if ( ! empty( $this->stats ) ) {
@@ -1166,16 +1331,8 @@
1166 1331 * @param string $cap Capability name.
1167 1332 */
1168 1333 public function jetpack_custom_caps( $caps, $cap ) {
1169 1334 switch ( $cap ) {
1170 - case 'jetpack_manage_modules':
1171 - case 'jetpack_activate_modules':
1172 - case 'jetpack_deactivate_modules':
1173 - $caps = array( 'manage_options' );
1174 - break;
1175 - case 'jetpack_configure_modules':
1176 - $caps = array( 'manage_options' );
1177 - break;
1178 1335 case 'jetpack_manage_autoupdates':
1179 1336 $caps = array(
1180 1337 'manage_options',
1181 1338 'update_plugins',
@@ -1193,9 +1350,9 @@
1193 1350 if ( $is_offline_mode ) {
1194 1351 $caps = array( 'manage_options' );
1195 1352 break;
1196 1353 } else {
1197 - $caps = array( 'read' );
1354 + $caps = array( 'edit_posts' );
1198 1355 }
1199 1356 break;
1200 1357 }
1201 1358 return $caps;
@@ -1354,9 +1511,9 @@
1354 1511 }
1355 1512 /**
1356 1513 * Does the network allow admins to add new users.
1357 1514 *
1358 - * @return boolian
1515 + * @return bool
1359 1516 */
1360 1517 public static function network_add_new_users() {
1361 1518 return (bool) get_site_option( 'add_new_users' );
1362 1519 }
@@ -1363,9 +1520,9 @@
1363 1520 /**
1364 1521 * File upload psace left per site in MB.
1365 1522 * -1 means NO LIMIT.
1366 1523 *
1367 - * @return number
1524 + * @return int
1368 1525 */
1369 1526 public static function network_site_upload_space() {
1370 1527 // value in MB.
1371 1528 return ( get_site_option( 'upload_space_check_disabled' ) ? -1 : get_space_allowed() );
@@ -1382,9 +1539,9 @@
1382 1539
1383 1540 /**
1384 1541 * Maximum file upload size set by the network.
1385 1542 *
1386 - * @return number
1543 + * @return int
1387 1544 */
1388 1545 public static function network_max_upload_file_size() {
1389 1546 // value in KB.
1390 1547 return get_site_option( 'fileupload_maxk', 300 );
@@ -1561,8 +1718,9 @@
1561 1718 *
1562 1719 * @return array
1563 1720 */
1564 1721 public static function get_updates() {
1722 + $updates = array();
1565 1723 $update_data = wp_get_update_data();
1566 1724
1567 1725 // Stores the individual update counts as well as the total count.
1568 1726 if ( isset( $update_data['counts'] ) ) {
@@ -1575,9 +1733,9 @@
1575 1733 if ( isset( $cur->response ) && 'upgrade' === $cur->response ) {
1576 1734 $updates['wp_update_version'] = $cur->current;
1577 1735 }
1578 1736 }
1579 - return isset( $updates ) ? $updates : array();
1737 + return $updates;
1580 1738 }
1581 1739 // phpcs:enable WordPress.WP.CapitalPDangit.MisspelledInComment
1582 1740
1583 1741 /**
@@ -1637,44 +1795,8 @@
1637 1795 return apply_filters( 'jetpack_is_connection_ready', self::connection()->is_connected(), self::connection() );
1638 1796 }
1639 1797
1640 1798 /**
1641 - * Deprecated: Is Jetpack in development (offline) mode?
1642 - *
1643 - * This static method is being left here intentionally without the use of _deprecated_function(), as other plugins
1644 - * and themes still use it, and we do not want to flood them with notices.
1645 - *
1646 - * Please use Automattic\Jetpack\Status()->is_offline_mode() instead.
1647 - *
1648 - * @deprecated since 8.0.
1649 - */
1650 - public static function is_development_mode() {
1651 - _deprecated_function( __METHOD__, 'jetpack-8.0', '\Automattic\Jetpack\Status->is_offline_mode' );
1652 - return ( new Status() )->is_offline_mode();
1653 - }
1654 -
1655 - /**
1656 - * Whether the site is currently onboarding or not.
1657 - * A site is considered as being onboarded if it currently has an onboarding token.
1658 - *
1659 - * @since 5.8
1660 - * @deprecated Use \Automattic\Jetpack\Status()->is_onboarding()
1661 - *
1662 - * @access public
1663 - * @static
1664 - *
1665 - * @return bool True if the site is currently onboarding, false otherwise
1666 - */
1667 - public static function is_onboarding() {
1668 - _deprecated_function( __METHOD__, 'jetpack-10.9', 'Automattic\\Jetpack\\Status\\is_onboarding' );
1669 -
1670 - if ( ! method_exists( 'Automattic\Jetpack\Status', 'is_onboarding' ) ) {
1671 - return Jetpack_Options::get_option( 'onboarding' ) !== false;
1672 - }
1673 - return ( new Status() )->is_onboarding();
1674 - }
1675 -
1676 - /**
1677 1799 * Determines reason for Jetpack offline mode.
1678 1800 */
1679 1801 public static function development_mode_trigger_text() {
1680 1802 $status = new Status();
@@ -1688,11 +1810,10 @@
1688 1810 } elseif ( defined( 'WP_LOCAL_DEV' ) && WP_LOCAL_DEV ) {
1689 1811 $notice = __( 'The WP_LOCAL_DEV constant is defined in wp-config.php or elsewhere.', 'jetpack' );
1690 1812 } elseif ( $status->is_local_site() ) {
1691 1813 $notice = __( 'The site URL is a known local development environment URL (e.g. http://localhost).', 'jetpack' );
1692 - /** This filter is documented in packages/status/src/class-status.php */
1693 - } elseif ( has_filter( 'jetpack_development_mode' ) && apply_filters( 'jetpack_development_mode', false ) ) { // This is a deprecated filter name.
1694 - $notice = __( 'The jetpack_development_mode filter is set to true.', 'jetpack' );
1814 + } elseif ( get_option( 'jetpack_offline_mode' ) ) {
1815 + $notice = __( 'The jetpack_offline_mode option is set to true.', 'jetpack' );
1695 1816 } else {
1696 1817 $notice = __( 'The jetpack_offline_mode filter is set to true.', 'jetpack' );
1697 1818 }
1698 1819
@@ -1707,9 +1828,9 @@
1707 1828 if ( ( new Status() )->is_offline_mode() ) {
1708 1829 $notice = sprintf(
1709 1830 /* translators: %s is a URL */
1710 1831 __( 'In <a href="%s" target="_blank">Offline Mode</a>:', 'jetpack' ),
1711 - Redirect::get_url( 'jetpack-support-development-mode' )
1832 + esc_url( Redirect::get_url( 'jetpack-support-development-mode' ) )
1712 1833 );
1713 1834
1714 1835 $notice .= ' ' . self::development_mode_trigger_text();
1715 1836
@@ -1718,19 +1839,12 @@
1718 1839
1719 1840 // Throw up a notice if using a development version and as for feedback.
1720 1841 if ( self::is_development_version() ) {
1721 1842 /* translators: %s is a URL */
1722 - $notice = sprintf( __( 'You are currently running a development version of Jetpack. <a href="%s" target="_blank">Submit your feedback</a>', 'jetpack' ), Redirect::get_url( 'jetpack-contact-support-beta-group' ) );
1843 + $notice = sprintf( __( 'You are currently running a development version of Jetpack. <a href="%s" target="_blank">Submit your feedback</a>', 'jetpack' ), esc_url( Redirect::get_url( 'jetpack-contact-support-beta-group' ) ) );
1723 1844
1724 1845 echo '<div class="updated" style="border-color: #f0821e;"><p>' . $notice . '</p></div>'; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped -- All provided text.
1725 1846 }
1726 - // Throw up a notice if using staging mode.
1727 - if ( ( new Status() )->is_staging_site() ) {
1728 - /* translators: %s is a URL */
1729 - $notice = sprintf( __( 'You are running Jetpack on a <a href="%s" target="_blank">staging server</a>.', 'jetpack' ), Redirect::get_url( 'jetpack-support-staging-sites' ) );
1730 -
1731 - echo '<div class="updated" style="border-color: #f0821e;"><p>' . $notice . '</p></div>'; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped -- All provided text.
1732 - }
1733 1847 }
1734 1848
1735 1849 /**
1736 1850 * Whether Jetpack's version maps to a public release, or a development version.
@@ -1751,28 +1865,8 @@
1751 1865 );
1752 1866 }
1753 1867
1754 1868 /**
1755 - * Is a given user (or the current user if none is specified) linked to a WordPress.com user?
1756 - *
1757 - * @param int $user_id User ID or will use get_current_user_id if false/not provided.
1758 - */
1759 - public static function is_user_connected( $user_id = false ) {
1760 - _deprecated_function( __METHOD__, 'jetpack-9.5', 'Automattic\\Jetpack\\Connection\\Manager\\is_user_connected' );
1761 - return self::connection()->is_user_connected( $user_id );
1762 - }
1763 -
1764 - /**
1765 - * Get the wpcom user data of the current|specified connected user.
1766 - *
1767 - * @param null|int $user_id User ID or will use get_current_user_id if null.
1768 - */
1769 - public static function get_connected_user_data( $user_id = null ) {
1770 - _deprecated_function( __METHOD__, 'jetpack-9.5', 'Automattic\\Jetpack\\Connection\\Manager\\get_connected_user_data' );
1771 - return self::connection()->get_connected_user_data( $user_id );
1772 - }
1773 -
1774 - /**
1775 1869 * Get the wpcom email of the current|specified connected user.
1776 1870 *
1777 1871 * @param null|int $user_id User ID or will use get_current_user_id if null.
1778 1872 */
@@ -1824,18 +1918,11 @@
1824 1918 */
1825 1919 public static function load_modules() {
1826 1920 $status = new Status();
1827 1921
1828 - if ( method_exists( $status, 'is_onboarding' ) ) {
1829 - $is_onboarding = $status->is_onboarding();
1830 - } else {
1831 - $is_onboarding = self::is_onboarding();
1832 - }
1833 -
1834 1922 if (
1835 1923 ! self::is_connection_ready()
1836 1924 && ! $status->is_offline_mode()
1837 - && ! $is_onboarding
1838 1925 && (
1839 1926 ! is_multisite()
1840 1927 || ! get_site_option( 'jetpack_protect_active' )
1841 1928 )
@@ -1956,22 +2043,10 @@
1956 2043 *
1957 2044 * @todo Store the result in core's object cache maybe?
1958 2045 */
1959 2046 public static function get_active_plugins() {
1960 - $active_plugins = (array) get_option( 'active_plugins', array() );
1961 -
1962 - if ( is_multisite() ) {
1963 - // Due to legacy code, active_sitewide_plugins stores them in the keys,
1964 - // whereas active_plugins stores them in the values.
1965 - $network_plugins = array_keys( get_site_option( 'active_sitewide_plugins', array() ) );
1966 - if ( $network_plugins ) {
1967 - $active_plugins = array_merge( $active_plugins, $network_plugins );
1968 - }
1969 - }
1970 -
1971 - sort( $active_plugins );
1972 -
1973 - return array_unique( $active_plugins );
2047 + // Delegates to the canonical implementation in the Connection package.
2048 + return Heartbeat::get_active_plugins();
1974 2049 }
1975 2050
1976 2051 /**
1977 2052 * Gets and parses additional plugin data to send with the heartbeat data
@@ -2109,8 +2184,10 @@
2109 2184 *
2110 2185 * @param bool true Should Twitter Card Meta tags be disabled. Default to true.
2111 2186 */
2112 2187 if ( ! apply_filters( 'jetpack_disable_twitter_cards', false ) ) {
2188 + // @todo Remove this require once the deprecated Jetpack_Twitter_Cards wrapper has been removed.
2189 + // Twitter Cards functionality now lives in the jetpack-post-media package (Automattic\Jetpack\Post_Media\Twitter_Cards).
2113 2190 require_once JETPACK__PLUGIN_DIR . 'class.jetpack-twitter-cards.php';
2114 2191 }
2115 2192 }
2116 2193
@@ -2213,9 +2290,9 @@
2213 2290 if ( isset( $_GET['page'] ) && in_array( $_GET['page'], array( 'jetpack', 'jetpack_modules' ), true ) ) { // phpcs:ignore WordPress.Security.NonceVerification.Recommended -- we're not changing the site.
2214 2291 $page = sanitize_text_field( wp_unslash( $_GET['page'] ) ); // phpcs:ignore WordPress.Security.NonceVerification.Recommended -- we're not changing the site.
2215 2292 }
2216 2293 wp_safe_redirect( self::admin_url( 'page=' . rawurlencode( $page ) ) );
2217 - exit;
2294 + exit( 0 );
2218 2295 }
2219 2296 }
2220 2297
2221 2298 /**
@@ -2295,12 +2372,14 @@
2295 2372 * @return array
2296 2373 */
2297 2374 public function handle_deprecated_modules( $modules ) {
2298 2375 $deprecated_modules = array(
2299 - 'debug' => null, // Closed out and moved to the debugger library.
2300 - 'wpcc' => 'sso', // Closed out in 2.6 -- SSO provides the same functionality.
2301 - 'gplus-authorship' => null, // Closed out in 3.2 -- Google dropped support.
2302 - 'minileven' => null, // Closed out in 8.3 -- Responsive themes are common now, and so is AMP.
2376 + 'debug' => null, // Closed out and moved to the debugger library.
2377 + 'wpcc' => 'sso', // Closed out in 2.6 -- SSO provides the same functionality.
2378 + 'gplus-authorship' => null, // Closed out in 3.2 -- Google dropped support.
2379 + 'minileven' => null, // Closed out in 8.3 -- Responsive themes are common now, and so is AMP.
2380 + 'lazy-images' => null, // Closed out in 12.8 -- WordPress core now has native lazy loading.
2381 + 'enhanced-distribution' => null, // Closed out in 13.3 -- WP.com is winding down the firehose.
2303 2382 );
2304 2383
2305 2384 // Don't activate SSO if they never completed activating WPCC.
2306 2385 if ( self::is_module_active( 'wpcc' ) ) {
@@ -2354,8 +2433,17 @@
2354 2433 }
2355 2434 }
2356 2435 }
2357 2436
2437 + // Special case to convert block setting to a block module.
2438 + $block_key = array_search( 'blocks', $modules, true );
2439 + if ( $block_key !== false ) { // Only care if 'blocks' made it through the previous filters.
2440 + $block_option = get_option( 'jetpack_blocks_disabled', null );
2441 + if ( $block_option ) {
2442 + unset( $modules[ $block_key ] );
2443 + }
2444 + }
2445 +
2358 2446 return $modules;
2359 2447 }
2360 2448
2361 2449 /**
@@ -2468,20 +2556,28 @@
2468 2556
2469 2557 /**
2470 2558 * Catches PHP errors. Must be used in conjunction with output buffering.
2471 2559 *
2560 + * @deprecated since 13.5
2472 2561 * @param bool $catch True to start catching, False to stop.
2473 2562 *
2474 2563 * @static
2564 + * @deprecated 13.5
2565 + * @see \Automattic\Jetpack\Errors
2475 2566 */
2476 2567 public static function catch_errors( $catch ) {
2568 + _deprecated_function( __METHOD__, '13.5' );
2569 + // @phan-suppress-next-line PhanDeprecatedClass
2477 2570 return ( new Errors() )->catch_errors( $catch );
2478 2571 }
2479 2572
2480 2573 /**
2481 2574 * Saves any generated PHP errors in ::state( 'php_errors', {errors} )
2575 + *
2576 + * @deprecated since 13.5
2482 2577 */
2483 2578 public static function catch_errors_on_shutdown() {
2579 + _deprecated_function( __METHOD__, '13.5' );
2484 2580 self::state( 'php_errors', self::alias_directories( ob_get_clean() ) );
2485 2581 }
2486 2582
2487 2583 /**
@@ -2585,9 +2681,9 @@
2585 2681 ),
2586 2682 add_query_arg( compact( 'min_version', 'max_version', 'other_modules' ), self::admin_url( 'page=jetpack' ) )
2587 2683 );
2588 2684 wp_safe_redirect( $url );
2589 - exit;
2685 + exit( 0 );
2590 2686 }
2591 2687 }
2592 2688
2593 2689 /**
@@ -2605,9 +2701,8 @@
2605 2701
2606 2702 // Check each module for fatal errors, a la wp-admin/plugins.php::activate before activating.
2607 2703 if ( $send_state_messages ) {
2608 2704 self::restate();
2609 - self::catch_errors( true );
2610 2705 }
2611 2706
2612 2707 $active = self::get_active_modules();
2613 2708
@@ -2675,10 +2770,8 @@
2675 2770 if ( $send_state_messages ) {
2676 2771 self::state( 'error', false );
2677 2772 self::state( 'module', false );
2678 2773 }
2679 -
2680 - self::catch_errors( false );
2681 2774 /**
2682 2775 * Fires when default modules are activated.
2683 2776 *
2684 2777 * @since 1.9.0
@@ -2756,9 +2849,9 @@
2756 2849 *
2757 2850 * @param string $message Error message.
2758 2851 * @param bool $deactivate Deactivate Jetpack or not.
2759 2852 *
2760 - * @return void
2853 + * @return never
2761 2854 */
2762 2855 public static function bail_on_activation( $message, $deactivate = true ) {
2763 2856 ?>
2764 2857 <!doctype html>
@@ -2796,9 +2889,9 @@
2796 2889 if ( $update ) {
2797 2890 update_option( 'active_plugins', array_filter( $plugins ) );
2798 2891 }
2799 2892 }
2800 - exit;
2893 + exit( 0 );
2801 2894 }
2802 2895
2803 2896 /**
2804 2897 * Attached to activate_{ plugin_basename( __FILES__ ) } by register_activation_hook()
@@ -2823,12 +2916,18 @@
2823 2916 update_option( 'jetpack_activation_source', self::get_activation_source( wp_get_referer() ) );
2824 2917
2825 2918 Health::on_jetpack_activated();
2826 2919
2920 + \Automattic\Jetpack\Reprint_Export\Reprint_Exporter::discard_credentials();
2921 +
2827 2922 if ( self::is_connection_ready() && method_exists( 'Automattic\Jetpack\Sync\Actions', 'do_only_first_initial_sync' ) ) {
2828 2923 Sync_Actions::do_only_first_initial_sync();
2829 2924 }
2830 2925
2926 + if ( ! defined( 'WC_ANALYTICS' ) && class_exists( 'Automattic\Woocommerce_Analytics' ) ) {
2927 + Woocommerce_Analytics::maybe_add_proxy_speed_module();
2928 + }
2929 +
2831 2930 self::plugin_initialize();
2832 2931 }
2833 2932
2834 2933 /**
@@ -2863,9 +2962,9 @@
2863 2962
2864 2963 if ( $plugins_path === $referer['path'] ) {
2865 2964 $source_type = 'list';
2866 2965 } elseif ( $plugins_install_path === $referer['path'] ) {
2867 - $tab = isset( $query_parts['tab'] ) ? $query_parts['tab'] : 'featured';
2966 + $tab = $query_parts['tab'] ?? 'featured';
2868 2967 switch ( $tab ) {
2869 2968 case 'popular':
2870 2969 $source_type = 'popular';
2871 2970 break;
@@ -2875,10 +2974,10 @@
2875 2974 case 'favorites':
2876 2975 $source_type = 'favorites';
2877 2976 break;
2878 2977 case 'search':
2879 - $source_type = 'search-' . ( isset( $query_parts['type'] ) ? $query_parts['type'] : 'term' );
2880 - $source_query = isset( $query_parts['s'] ) ? $query_parts['s'] : null;
2978 + $source_type = 'search-' . ( $query_parts['type'] ?? 'term' );
2979 + $source_query = $query_parts['s'] ?? null;
2881 2980 break;
2882 2981 default:
2883 2982 $source_type = 'featured';
2884 2983 }
@@ -2887,29 +2986,351 @@
2887 2986 return array( $source_type, $source_query );
2888 2987 }
2889 2988
2890 2989 /**
2891 - * Runs before bumping version numbers up to a new version
2990 + * Runs before bumping version numbers up to a new version.
2892 2991 *
2893 - * @param string $version Version:timestamp.
2992 + * Only ever registered the hooks for the release post update modal, which has been removed.
2993 + * No longer hooked to `updating_jetpack_version`.
2994 + *
2995 + * @deprecated 16.2
2996 + *
2997 + * @param string $version Version:timestamp.
2894 2998 * @param string $old_version Old Version:timestamp or false if not set yet.
2895 2999 */
2896 - public static function do_version_bump( $version, $old_version ) {
2897 - if ( $old_version ) { // For existing Jetpack installations.
2898 - add_action( 'admin_enqueue_scripts', __CLASS__ . '::enqueue_block_style' );
3000 + public static function do_version_bump( $version, $old_version ) { // phpcs:ignore VariableAnalysis.CodeAnalysis.VariableAnalysis.UnusedVariable -- Signature preserved for the deprecation shim.
3001 + _deprecated_function( __METHOD__, 'jetpack-16.2' );
3002 + }
2899 3003
2900 - // If a front end page is visited after the update, the 'wp' action will fire.
2901 - add_action( 'wp', 'Jetpack::set_update_modal_display' );
3004 + /**
3005 + * Enables the Newsletter (subscriptions) module for existing sites now that it is a default-on module.
3006 + *
3007 + * Fresh installs receive the module via its "Auto Activate: Yes" header, so this only handles sites
3008 + * upgrading from a version where the module defaulted off. It runs once per site (guarded by the
3009 + * subscriptions_default_on_migrated option). Fresh installs are marked as migrated immediately so the
3010 + * migration never runs for them. After it has run, the user's choice to deactivate the module again
3011 + * (for example from the My Jetpack Products page) is respected and never reverted.
3012 + *
3013 + * The module requires a connection, so on a disconnected site the migration is deferred without setting
3014 + * the guard, allowing a later version bump to retry once the site is connected.
3015 + *
3016 + * @param string $version New Jetpack version:timestamp.
3017 + * @param string|false $old_version Previous Jetpack version:timestamp, or false on a fresh install.
3018 + */
3019 + public static function activate_subscriptions_module_for_existing_sites( $version, $old_version ) {
3020 + if ( get_option( 'jetpack_subscriptions_default_on_migrated' ) ) {
3021 + return;
3022 + }
2902 3023
2903 - // If an admin page is visited after the update, the 'current_screen' action will fire.
2904 - add_action( 'current_screen', 'Jetpack::set_update_modal_display' );
3024 + // Fresh installs get the module via its "Auto Activate: Yes" header. Mark them as migrated so a
3025 + // later opt-out is never reverted by the existing-site path on a subsequent version bump.
3026 + if ( ! $old_version ) {
3027 + update_option( 'jetpack_subscriptions_default_on_migrated', true );
3028 + return;
2905 3029 }
3030 +
3031 + if ( ! self::is_connection_ready() ) {
3032 + return;
3033 + }
3034 +
3035 + // Mark as migrated only once the module is active, so a transient activation failure is retried on
3036 + // a later version bump rather than being silently skipped.
3037 + if ( self::is_module_active( 'subscriptions' ) || self::activate_module( 'subscriptions', false, false ) ) {
3038 + update_option( 'jetpack_subscriptions_default_on_migrated', true );
3039 + }
2906 3040 }
2907 3041
2908 3042 /**
3043 + * Option flag that records the AI master-switch opt-out reconciliation has run,
3044 + * so it never runs twice.
3045 + *
3046 + * @var string
3047 + */
3048 + const AI_MASTER_OPTOUT_MIGRATED_OPTION = 'jetpack_ai_master_optout_migrated';
3049 +
3050 + /**
3051 + * Register the on-upgrade init hooks whose relative ORDER matters, extracted so
3052 + * the ordering can be asserted in tests without invoking plugin_upgrade() (whose
3053 + * guards make it unreliable to trigger under test). activate_new_modules()
3054 + * (init, default priority 10) auto-activates "Auto Activate: Yes" modules
3055 + * including the `ai` master; reconcile_ai_master_optout() must run at a LATER
3056 + * priority to honor an explicit AI opt-out.
3057 + *
3058 + * @return void
3059 + */
3060 + public static function register_upgrade_init_hooks() {
3061 + add_action( 'init', array( __CLASS__, 'activate_new_modules' ) );
3062 + add_action( 'init', array( __CLASS__, 'reconcile_ai_master_optout' ), 20 );
3063 + }
3064 +
3065 + /**
3066 + * Preserves an explicit Jetpack AI opt-out when the `ai` module becomes the site-wide
3067 + * master switch off WordPress.com Simple (self-hosted and Atomic).
3068 + *
3069 + * The `ai` module is "Auto Activate: Yes", so on upgrade {@see self::activate_new_modules()}
3070 + * turns it on for connected sites — the desired default-on / auto-enable-on-connection
3071 + * behavior, which this method deliberately leaves alone. The one case it corrects is a site
3072 + * that had explicitly disabled Jetpack AI (the `jetpack_ai_enabled` option present and falsey)
3073 + * before the module shipped: that opt-out must survive the module becoming the master, so the
3074 + * module is deactivated for exactly those sites. An absent or truthy option is left untouched.
3075 + *
3076 + * Ordering is the whole point. `activate_new_modules()` is hooked on `init` at priority 10 and
3077 + * auto-activates the module there; this method is hooked on `init` at priority 20 (see
3078 + * {@see self::plugin_upgrade()}), so it runs AFTER the auto-activation and its deactivation is
3079 + * the final state. A version-guarded block that ran inline during `plugins_loaded` would be
3080 + * undone by the later auto-activation, which is why this is a late-init hook rather than an
3081 + * inline upgrade step.
3082 + *
3083 + * WordPress.com Simple never runs modules — the option stays the master there — so this is a
3084 + * no-op on Simple. The {@see self::AI_MASTER_OPTOUT_MIGRATED_OPTION} flag makes it run exactly
3085 + * once, which matters because off-Simple the option is no longer the master after this runs:
3086 + * a stale falsey option must not keep re-deactivating a module the user later turns back on.
3087 + *
3088 + * @return void
3089 + */
3090 + public static function reconcile_ai_master_optout() {
3091 + if ( get_option( self::AI_MASTER_OPTOUT_MIGRATED_OPTION ) ) {
3092 + return;
3093 + }
3094 +
3095 + // Simple keeps the `jetpack_ai_enabled` option as the master; modules don't run there.
3096 + if ( ( new Host() )->is_wpcom_simple() ) {
3097 + return;
3098 + }
3099 +
3100 + // A sentinel default distinguishes an absent option (leave auto-activation alone) from one
3101 + // explicitly stored falsey (an opt-out to preserve).
3102 + $stored = get_option( 'jetpack_ai_enabled', 'not-set' );
3103 + if ( 'not-set' !== $stored && ! (bool) $stored ) {
3104 + ( new Modules() )->deactivate( 'ai' );
3105 + }
3106 +
3107 + update_option( self::AI_MASTER_OPTOUT_MIGRATED_OPTION, true );
3108 + }
3109 +
3110 + /**
3111 + * Whether a module should be recorded as active in its durable Jetpack SEO option.
3112 + *
3113 + * Permanent module overrides are part of the site's configuration, so the normal
3114 + * filtered module state is authoritative. The exception is wpcomsh's private-site
3115 + * callback, which temporarily suppresses `sitemaps` on Atomic sites without changing
3116 + * the site's configured state. Evaluate the module state with only that callback
3117 + * disabled.
3118 + *
3119 + * The hook is cloned before removing the callback so its ordering remains unchanged for
3120 + * the rest of the request. `$available_only` is false because these migrations can run
3121 + * after the standalone module file has been removed.
3122 + *
3123 + * WordPress.com Simple keeps module state outside this site's options table, so its
3124 + * normal filtered read remains authoritative.
3125 + *
3126 + * @since 16.1
3127 + *
3128 + * @param string $module Module slug.
3129 + * @return bool Whether the module should be recorded as active.
3130 + */
3131 + private static function is_module_active_for_seo_option( $module ) {
3132 + $modules = new Modules();
3133 +
3134 + if ( ( new Host() )->is_wpcom_simple() ) {
3135 + return $modules->is_active( $module, false );
3136 + }
3137 +
3138 + global $wp_filter;
3139 +
3140 + $hook_name = 'jetpack_active_modules';
3141 + $private_site_callback = '\Private_Site\filter_jetpack_active_modules';
3142 + $callback_priority = has_filter( $hook_name, $private_site_callback );
3143 +
3144 + if ( false === $callback_priority ) {
3145 + return $modules->is_active( $module, false );
3146 + }
3147 +
3148 + $original_hook = $wp_filter[ $hook_name ];
3149 + // phpcs:ignore WordPress.WP.GlobalVariablesOverride.Prohibited -- Use an isolated hook copy without changing callback order.
3150 + $wp_filter[ $hook_name ] = clone $original_hook;
3151 + remove_filter( $hook_name, $private_site_callback, $callback_priority );
3152 +
3153 + try {
3154 + return $modules->is_active( $module, false );
3155 + } finally {
3156 + // phpcs:ignore WordPress.WP.GlobalVariablesOverride.Prohibited -- Restore the untouched original hook.
3157 + $wp_filter[ $hook_name ] = $original_hook;
3158 + }
3159 + }
3160 +
3161 + /**
3162 + * Records whether the standalone Sitemaps module is active so the setting survives
3163 + * the module's removal.
3164 + *
3165 + * The Jetpack SEO product reads the {@see Jetpack_SEO_Initializer::SITEMAP_ENABLED_OPTION}
3166 + * option instead of the `sitemaps` module's active state. Module-active state is
3167 + * filtered against the modules present on disk, so once the standalone module is
3168 + * removed it would read as inactive even for sites that had it on. This one-time
3169 + * migration captures the configured module state — which persists regardless of
3170 + * whether the module file is present — into the durable option.
3171 + *
3172 + * Deliberately non-destructive: it never touches generated sitemap data
3173 + * (`jp_sitemap*` posts), the `jetpack-sitemap-state` option, sitemap settings, or the
3174 + * `jp_sitemap_cron_hook` cron, so no regeneration is triggered. `add_option()` only
3175 + * seeds when the option is absent, so it is safe to run on every version bump and
3176 + * never reverts a value the user has since set.
3177 + *
3178 + * Hooked on `updating_jetpack_version`; the version arguments are not needed because
3179 + * `add_option()` provides the run-once guard.
3180 + */
3181 + public static function migrate_sitemaps_module_to_seo_option() {
3182 + // Ignore wpcomsh's temporary private-site suppression while preserving permanent
3183 + // module overrides. {@see self::is_module_active_for_seo_option()}.
3184 + $sitemaps_active = self::is_module_active_for_seo_option( 'sitemaps' );
3185 +
3186 + add_option( Jetpack_SEO_Initializer::SITEMAP_ENABLED_OPTION, $sitemaps_active );
3187 + }
3188 +
3189 + /**
3190 + * Keeps the Jetpack SEO sitemap option in sync with the legacy `sitemaps` module
3191 + * while both still exist.
3192 + *
3193 + * Hooked to the module's activate/deactivate actions, so toggling sitemaps from any
3194 + * surface (the legacy Traffic settings, the SEO Settings tab, or WP-CLI) keeps the
3195 + * durable {@see Jetpack_SEO_Initializer::SITEMAP_ENABLED_OPTION} option current. The
3196 + * actions fire after `active_modules` is updated, so the configured state already
3197 + * reflects the new choice. Ignore temporary private-site suppression without bypassing
3198 + * permanent module overrides. Removed alongside the module itself.
3199 + */
3200 + public static function sync_seo_sitemap_option() {
3201 + update_option( Jetpack_SEO_Initializer::SITEMAP_ENABLED_OPTION, self::is_module_active_for_seo_option( 'sitemaps' ) );
3202 + }
3203 +
3204 + /**
3205 + * Records whether the standalone Canonical URLs module is active so the setting survives
3206 + * the module's removal.
3207 + *
3208 + * The Jetpack SEO product reads the {@see Jetpack_SEO_Initializer::CANONICAL_ENABLED_OPTION}
3209 + * option instead of the `canonical-urls` module's active state. Module-active state is
3210 + * filtered against the modules present on disk, so once the standalone module is
3211 + * removed it would read as inactive even for sites that had it on. This one-time
3212 + * migration captures the configured module state — which persists regardless of
3213 + * whether the module file is present — into the durable option.
3214 + *
3215 + * Deliberately non-destructive: `add_option()` only seeds when the option is absent, so
3216 + * it is safe to run on every version bump and never reverts a value the user has since
3217 + * set.
3218 + *
3219 + * Hooked on `updating_jetpack_version`; the version arguments are not needed because
3220 + * `add_option()` provides the run-once guard.
3221 + */
3222 + public static function migrate_canonical_urls_module_to_seo_option() {
3223 + $canonical_active = self::is_module_active_for_seo_option( 'canonical-urls' );
3224 +
3225 + add_option( Jetpack_SEO_Initializer::CANONICAL_ENABLED_OPTION, $canonical_active );
3226 + }
3227 +
3228 + /**
3229 + * Keeps the Jetpack SEO canonical-urls option in sync with the legacy `canonical-urls`
3230 + * module while both still exist.
3231 + *
3232 + * Hooked to the module's activate/deactivate actions, so toggling canonical URLs from any
3233 + * surface (the legacy Traffic settings, the SEO Settings tab, or WP-CLI) keeps the
3234 + * durable {@see Jetpack_SEO_Initializer::CANONICAL_ENABLED_OPTION} option current. The
3235 + * actions fire after `active_modules` is updated, so the configured state already
3236 + * reflects the new choice. Permanent module overrides remain authoritative. Removed
3237 + * alongside the module itself.
3238 + */
3239 + public static function sync_seo_canonical_urls_option() {
3240 + update_option( Jetpack_SEO_Initializer::CANONICAL_ENABLED_OPTION, self::is_module_active_for_seo_option( 'canonical-urls' ) );
3241 + }
3242 +
3243 + /**
3244 + * Repairs durable SEO module-state options that the first pass of the migration seeded
3245 + * from a filtered read.
3246 + *
3247 + * Jetpack 16.0 seeded {@see Jetpack_SEO_Initializer::SITEMAP_ENABLED_OPTION} and
3248 + * {@see Jetpack_SEO_Initializer::CANONICAL_ENABLED_OPTION} through
3249 + * {@see Modules::is_active()}, which passes the `jetpack_active_modules` filter. A site
3250 + * that was private at the time therefore recorded `sitemaps` as off even though the user
3251 + * had it on, and because the migration seeds with `add_option()` the value was never
3252 + * revisited — making the site public again did not restore the setting.
3253 + *
3254 + * This runs once and rewrites both options from the site's configured module state,
3255 + * including permanent module overrides. That is safe against a choice the user has made
3256 + * since: every surface that toggles these settings (the legacy Traffic page, the SEO
3257 + * Settings tab, WP-CLI) goes through {@see Modules::activate()}/{@see Modules::deactivate()},
3258 + * so the module state and durable option are already in agreement wherever the original
3259 + * migration got it right.
3260 + *
3261 + * Idempotent: the marker is written with `add_option()`, so reruns on later version bumps
3262 + * are no-ops. Like the migrations it seeds from, it touches no sitemap data or cron state.
3263 + *
3264 + * @since 16.1
3265 + */
3266 + public static function reconcile_seo_module_state_options() {
3267 + if ( get_option( self::SEO_MODULE_STATE_RECONCILED_OPTION ) ) {
3268 + return;
3269 + }
3270 +
3271 + update_option( Jetpack_SEO_Initializer::SITEMAP_ENABLED_OPTION, self::is_module_active_for_seo_option( 'sitemaps' ) );
3272 + update_option( Jetpack_SEO_Initializer::CANONICAL_ENABLED_OPTION, self::is_module_active_for_seo_option( 'canonical-urls' ) );
3273 +
3274 + add_option( self::SEO_MODULE_STATE_RECONCILED_OPTION, true );
3275 + }
3276 +
3277 + /**
3278 + * Wires up the migration + sync hooks that keep the durable Jetpack SEO module-state
3279 + * options ({@see Jetpack_SEO_Initializer::SITEMAP_ENABLED_OPTION} /
3280 + * {@see Jetpack_SEO_Initializer::CANONICAL_ENABLED_OPTION}) seeded and in sync with their
3281 + * legacy modules. Called once from `load-jetpack.php`.
3282 + *
3283 + * Extracted from file scope so the wiring is unit-testable (file-scope `add_action()`
3284 + * calls run during bootstrap and can't be exercised by a test). Removed alongside the
3285 + * modules in the deferred post-convergence follow-up that absorbs them into Jetpack SEO.
3286 + */
3287 + public static function register_seo_module_migration_hooks() {
3288 + add_action( 'updating_jetpack_version', array( 'Jetpack', 'migrate_sitemaps_module_to_seo_option' ) );
3289 + add_action( 'jetpack_activate_module_sitemaps', array( 'Jetpack', 'sync_seo_sitemap_option' ) );
3290 + add_action( 'jetpack_deactivate_module_sitemaps', array( 'Jetpack', 'sync_seo_sitemap_option' ) );
3291 +
3292 + add_action( 'updating_jetpack_version', array( 'Jetpack', 'migrate_canonical_urls_module_to_seo_option' ) );
3293 + add_action( 'jetpack_activate_module_canonical-urls', array( 'Jetpack', 'sync_seo_canonical_urls_option' ) );
3294 + add_action( 'jetpack_deactivate_module_canonical-urls', array( 'Jetpack', 'sync_seo_canonical_urls_option' ) );
3295 +
3296 + // Runs after both migrations above (default priority, registered last) so a freshly
3297 + // seeded site is already correct and the reconciliation is a no-op there.
3298 + add_action( 'updating_jetpack_version', array( 'Jetpack', 'reconcile_seo_module_state_options' ) );
3299 + }
3300 +
3301 + /**
3302 + * Seeds the Jetpack SEO discoverability cohort once, so the new SEO surface is
3303 + * auto-discoverable on fresh installs but opt-in on existing ones (JETPACK-1700).
3304 + *
3305 + * Hooked on `updating_jetpack_version`, which fires on every install including the
3306 + * first — with `$old_version === false` on a brand-new site (the same signal
3307 + * {@see self::activate_subscriptions_module_for_existing_sites()} keys off). Fresh
3308 + * installs are seeded visible; existing installs are seeded hidden and opt in later
3309 + * via the legacy Traffic page or My Jetpack. `add_option()` makes this seed-once: it
3310 + * never overrides a value a later opt-in (or opt-out) has set. WordPress.com sites
3311 + * ignore this option entirely (always visible) — see
3312 + * {@see \Automattic\Jetpack\SEO\Initializer::is_seo_surface_visible()}.
3313 + *
3314 + * @param string $version The new Jetpack version (unused).
3315 + * @param string|false $old_version The previous version, or false on a fresh install.
3316 + */
3317 + public static function seed_seo_visibility_cohort( $version, $old_version ) {
3318 + add_option( Jetpack_SEO_Initializer::VISIBILITY_OPTION, ! $old_version );
3319 + }
3320 +
3321 + /**
2909 3322 * Sets the display_update_modal state.
3323 + *
3324 + * The release post update modal that read this state has been removed. The write is kept so the
3325 + * method still behaves as documented for the deprecation window. When this is deleted, also drop
3326 + * the matching `display_update_modal` guard in Automattic\Jetpack\CookieState::should_set_cookie(),
3327 + * which exists only to keep this key out of the cookie on the Jetpack admin screen.
3328 + *
3329 + * @deprecated 16.2
2910 3330 */
2911 3331 public static function set_update_modal_display() {
3332 + _deprecated_function( __METHOD__, 'jetpack-16.2' );
2912 3333 self::state( 'display_update_modal', true );
2913 3334 }
2914 3335
2915 3336 /**
@@ -2914,11 +3335,16 @@
2914 3335
2915 3336 /**
2916 3337 * Enqueues the block library styles.
2917 3338 *
3339 + * Only ever used by the release post update modal, which has been removed.
3340 + *
3341 + * @deprecated 16.2
3342 + *
2918 3343 * @param string $hook The current admin page.
2919 3344 */
2920 3345 public static function enqueue_block_style( $hook ) {
3346 + _deprecated_function( __METHOD__, 'jetpack-16.2' );
2921 3347 if ( 'toplevel_page_jetpack' === $hook ) {
2922 3348 wp_enqueue_style( 'wp-block-library' );
2923 3349 }
2924 3350 }
@@ -2947,9 +3373,8 @@
2947 3373
2948 3374 self::load_modules();
2949 3375
2950 3376 Jetpack_Options::delete_option( 'do_activate' );
2951 - Jetpack_Options::delete_option( 'dismissed_connection_banner' );
2952 3377 }
2953 3378
2954 3379 /**
2955 3380 * Handles the activation of the default modules depending on the current state of the site:
@@ -3008,8 +3433,12 @@
3008 3433 add_filter( 'jetpack_update_activated_state_on_disconnect', '__return_false' );
3009 3434 self::disconnect();
3010 3435 Jetpack_Options::delete_option( 'version' );
3011 3436 }
3437 +
3438 + if ( ! defined( 'WC_ANALYTICS' ) && class_exists( 'Automattic\Woocommerce_Analytics' ) ) {
3439 + Woocommerce_Analytics::maybe_remove_proxy_speed_module();
3440 + }
3012 3441 }
3013 3442
3014 3443 /**
3015 3444 * Set activated option to 4 on jetpack_idc_disconnect action.
@@ -3037,9 +3466,9 @@
3037 3466 $connection->remove_connection( ! Identity_Crisis::validate_sync_error_idc_option() );
3038 3467 }
3039 3468
3040 3469 /**
3041 - * Happens after a successfull disconnection.
3470 + * Happens after a successful disconnection.
3042 3471 *
3043 3472 * @static
3044 3473 */
3045 3474 public static function jetpack_site_disconnected() {
@@ -3044,8 +3473,10 @@
3044 3473 */
3045 3474 public static function jetpack_site_disconnected() {
3046 3475 Identity_Crisis::clear_all_idc_options();
3047 3476
3477 + \Automattic\Jetpack\Reprint_Export\Reprint_Exporter::discard_credentials();
3478 +
3048 3479 // Delete all the sync related data. Since it could be taking up space.
3049 3480 Sender::get_instance()->uninstall();
3050 3481
3051 3482 /**
@@ -3062,10 +3493,13 @@
3062 3493 }
3063 3494 }
3064 3495
3065 3496 /**
3066 - * Disconnects the user
3497 + * Disconnects the user.
3067 3498 *
3499 + * @deprecated 13.4
3500 + * @see \Automattic\Jetpack\Connection\Manager::disconnect_user()
3501 + *
3068 3502 * @param int $user_id The user ID to disconnect.
3069 3503 */
3070 3504 public function disconnect_user( $user_id ) {
3071 3505 $this->connection_manager->disconnect_user( $user_id );
@@ -3071,21 +3505,8 @@
3071 3505 $this->connection_manager->disconnect_user( $user_id );
3072 3506 }
3073 3507
3074 3508 /**
3075 - * Attempts Jetpack registration. If it fail, a state flag is set: @see ::admin_page_load()
3076 - *
3077 - * @deprecated since Jetpack 9.7.0
3078 - * @see Automattic\Jetpack\Connection\Manager::try_registration()
3079 - *
3080 - * @return bool|WP_Error
3081 - */
3082 - public static function try_registration() {
3083 - _deprecated_function( __METHOD__, 'jetpack-9.7', 'Automattic\\Jetpack\\Connection\\Manager::try_registration' );
3084 - return static::connection()->try_registration();
3085 - }
3086 -
3087 - /**
3088 3509 * Checking the domain names in beta versions.
3089 3510 * If this is a development version, before attempting to connect, let's make sure that the domains are viable.
3090 3511 *
3091 3512 * @param null|\WP_Error $error The domain validation error, or `null` if everything's fine.
@@ -3092,9 +3513,9 @@
3092 3513 *
3093 3514 * @return null|\WP_Error The domain validation error, or `null` if everything's fine.
3094 3515 */
3095 3516 public static function registration_check_domains( $error ) {
3096 - if ( static::is_development_version() && defined( 'PHP_URL_HOST' ) ) {
3517 + if ( static::is_development_version() ) {
3097 3518 $domains_to_check = array_unique(
3098 3519 array(
3099 3520 'siteurl' => wp_parse_url( get_site_url(), PHP_URL_HOST ),
3100 3521 'homeurl' => wp_parse_url( get_home_url(), PHP_URL_HOST ),
@@ -3119,10 +3540,17 @@
3119 3540 * @param mixed $code Error code to log.
3120 3541 * @param mixed $data Data to log.
3121 3542 */
3122 3543 public static function log( $code, $data = null ) {
3544 +
3545 + $raw_log = Jetpack_Options::get_option( 'log', array() );
3546 + // This can be modified by the `jetpack_options` filter, so abort if we don't have an array.
3547 + if ( ! is_array( $raw_log ) ) {
3548 + return;
3549 + }
3550 +
3123 3551 // only grab the latest 200 entries.
3124 - $log = array_slice( Jetpack_Options::get_option( 'log', array() ), -199, 199 );
3552 + $log = array_slice( $raw_log, -199, 199 );
3125 3553
3126 3554 // Append our event to the log.
3127 3555 $log_entry = array(
3128 3556 'time' => time(),
@@ -3222,8 +3650,15 @@
3222 3650
3223 3651 /**
3224 3652 * Return stat data for WPCOM sync.
3225 3653 *
3654 + * The Sync stats module was this method's last caller and moved to the Connection package's
3655 + * `Heartbeat::generate_stats_array()`, which assembles the heartbeat data through the
3656 + * `jetpack_heartbeat_stats_array` filter. Note the package method does not include the extended
3657 + * data from `get_additional_stat_data()`, so callers relying on `$extended` need to add it themselves.
3658 + *
3659 + * @deprecated 16.2
3660 + *
3226 3661 * @param bool $encode JSON encode the result.
3227 3662 * @param bool $extended Adds additional stats data.
3228 3663 *
3229 3664 * @return array|string Stats data. Array if $encode is false. JSON-encoded string is $encode is true.
@@ -3228,10 +3663,13 @@
3228 3663 *
3229 3664 * @return array|string Stats data. Array if $encode is false. JSON-encoded string is $encode is true.
3230 3665 */
3231 3666 public static function get_stat_data( $encode = true, $extended = true ) {
3232 - $data = Jetpack_Heartbeat::generate_stats_array();
3667 + _deprecated_function( __METHOD__, 'jetpack-16.2', 'Automattic\\Jetpack\\Heartbeat::generate_stats_array' );
3233 3668
3669 + // Site environment stats now live in the Connection package; merge them with the Jetpack-specific stats.
3670 + $data = array_merge( Jetpack_Heartbeat::generate_stats_array(), Heartbeat::get_environment_stats() );
3671 +
3234 3672 if ( $extended ) {
3235 3673 $additional_data = self::get_additional_stat_data();
3236 3674 $data = array_merge( $data, $additional_data );
3237 3675 }
@@ -3236,9 +3674,9 @@
3236 3674 $data = array_merge( $data, $additional_data );
3237 3675 }
3238 3676
3239 3677 if ( $encode ) {
3240 - return wp_json_encode( $data );
3678 + return wp_json_encode( $data, JSON_UNESCAPED_SLASHES );
3241 3679 }
3242 3680
3243 3681 return $data;
3244 3682 }
@@ -3310,23 +3748,24 @@
3310 3748 $fallback_no_verify_ssl_certs = Jetpack_Options::get_option( 'fallback_no_verify_ssl_certs' );
3311 3749 /** Already documented in automattic/jetpack-connection::src/class-client.php */
3312 3750 $client_verify_ssl_certs = apply_filters( 'jetpack_client_verify_ssl_certs', false );
3313 3751
3314 - if ( ! $is_offline_mode ) {
3315 - Jetpack_Connection_Banner::init();
3316 - Jetpack_Connection_Widget::init();
3317 - }
3752 + // Run post-activation actions if needed.
3753 + $this->plugin_post_activation();
3318 3754
3319 3755 if ( ( self::is_connection_ready() || $is_offline_mode ) && false === $fallback_no_verify_ssl_certs && ! $client_verify_ssl_certs ) {
3320 3756 // Upgrade: 1.1 -> 1.1.1
3321 3757 // Check and see if host can verify the Jetpack servers' SSL certificate.
3322 3758 $args = array();
3759 + // @phan-suppress-next-line PhanAccessMethodInternal -- Phan is correct, but the usage is intentional.
3323 3760 Client::_wp_remote_request( self::connection()->api_url( 'test' ), $args, true );
3324 3761 }
3325 3762
3326 - Jetpack_Recommendations_Banner::init();
3327 -
3328 - if ( current_user_can( 'manage_options' ) && ! self::permit_ssl() ) {
3763 + if (
3764 + current_user_can( 'manage_options' )
3765 + && ! self::permit_ssl()
3766 + && ! $is_offline_mode
3767 + ) {
3329 3768 add_action( 'jetpack_notices', array( $this, 'alert_auto_ssl_fail' ) );
3330 3769 }
3331 3770
3332 3771 add_action( 'load-plugins.php', array( $this, 'intercept_plugin_error_scrape_init' ) );
@@ -3335,12 +3774,8 @@
3335 3774 if ( ! ( is_multisite() && is_plugin_active_for_network( 'jetpack/jetpack.php' ) && ! is_network_admin() ) ) {
3336 3775 add_action( 'admin_enqueue_scripts', array( $this, 'deactivate_dialog' ) );
3337 3776 }
3338 3777
3339 - if ( isset( $_COOKIE['jetpackState']['display_update_modal'] ) ) {
3340 - add_action( 'admin_enqueue_scripts', __CLASS__ . '::enqueue_block_style' );
3341 - }
3342 -
3343 3778 add_filter( 'plugin_action_links_' . plugin_basename( JETPACK__PLUGIN_DIR . 'jetpack.php' ), array( $this, 'plugin_action_links' ) );
3344 3779
3345 3780 if ( self::is_connection_ready() || $is_offline_mode ) {
3346 3781 // Artificially throw errors in certain specific cases during plugin activation.
@@ -3345,13 +3780,8 @@
3345 3780 if ( self::is_connection_ready() || $is_offline_mode ) {
3346 3781 // Artificially throw errors in certain specific cases during plugin activation.
3347 3782 add_action( 'activate_plugin', array( $this, 'throw_error_on_activate_plugin' ) );
3348 3783 }
3349 -
3350 - // Add custom column in wp-admin/users.php to show whether user is linked.
3351 - add_filter( 'manage_users_columns', array( $this, 'jetpack_icon_user_connected' ) );
3352 - add_action( 'manage_users_custom_column', array( $this, 'jetpack_show_user_connected_icon' ), 10, 3 );
3353 - add_action( 'admin_print_styles', array( $this, 'jetpack_user_col_style' ) );
3354 3784 }
3355 3785
3356 3786 /**
3357 3787 * Adds body classes.
@@ -3384,8 +3814,9 @@
3384 3814 * Sometimes a plugin can activate without causing errors, but it will cause errors on the next page load.
3385 3815 * This function artificially throws errors for such cases (per a specific list).
3386 3816 *
3387 3817 * @param string $plugin The activated plugin.
3818 + * @throws RuntimeException If a conflicting plugin is detected.
3388 3819 */
3389 3820 public function throw_error_on_activate_plugin( $plugin ) {
3390 3821 $active_modules = self::get_active_modules();
3391 3822
@@ -3398,8 +3829,9 @@
3398 3829 if ( 'stats.php' === basename( $plugin ) ) {
3399 3830 $throw = true;
3400 3831 }
3401 3832 } else {
3833 + // @phan-suppress-next-line PhanUndeclaredFunctionInCallable -- Checked above. See also https://github.com/phan/phan/issues/1204.
3402 3834 $reflection = new ReflectionFunction( 'stats_get_api_key' );
3403 3835 if ( basename( $plugin ) === basename( $reflection->getFileName() ) ) {
3404 3836 $throw = true;
3405 3837 }
@@ -3406,9 +3838,9 @@
3406 3838 }
3407 3839
3408 3840 if ( $throw ) {
3409 3841 /* translators: Plugin name to deactivate. */
3410 - trigger_error( sprintf( esc_html__( 'Jetpack contains the most recent version of the old &#8220;%1$s&#8221; plugin.', 'jetpack' ), 'WordPress.com Stats' ), E_USER_ERROR ); // phpcs:ignore WordPress.PHP.DevelopmentFunctions.error_log_trigger_error
3842 + throw new RuntimeException( sprintf( __( 'Jetpack contains the most recent version of the old "%1$s" plugin.', 'jetpack' ), 'WordPress.com Stats' ) );
3411 3843 }
3412 3844 }
3413 3845 }
3414 3846
@@ -3490,8 +3922,9 @@
3490 3922 /**
3491 3923 * Handler for Jetpack remote file uploads.
3492 3924 *
3493 3925 * @access public
3926 + * @return never
3494 3927 */
3495 3928 public function remote_request_handlers() {
3496 3929 switch ( current_filter() ) {
3497 3930 case 'wp_ajax_nopriv_jetpack_upload_file':
@@ -3518,18 +3951,17 @@
3518 3951 if ( ! is_int( $status_code ) ) {
3519 3952 $status_code = 400;
3520 3953 }
3521 3954
3522 - status_header( $status_code );
3523 - die( wp_json_encode( (object) compact( 'error', 'error_description' ) ) );
3955 + wp_send_json( (object) compact( 'error', 'error_description' ), $status_code, JSON_UNESCAPED_SLASHES );
3524 3956 }
3525 3957
3526 - status_header( 200 );
3527 3958 if ( true === $response ) {
3528 - exit;
3959 + status_header( 200 );
3960 + exit( 0 );
3529 3961 }
3530 3962
3531 - die( wp_json_encode( (object) $response ) );
3963 + wp_send_json( (object) $response, 200, JSON_UNESCAPED_SLASHES );
3532 3964 }
3533 3965
3534 3966 /**
3535 3967 * Uploads a file gotten from the global $_FILES.
@@ -3537,9 +3969,9 @@
3537 3969 * the attachment file of the media item (gotten through of the post_id)
3538 3970 * will be updated instead of add a new one.
3539 3971 *
3540 3972 * @param boolean $update_media_item - update media attachment.
3541 - * @return array - An array describing the uploadind files process.
3973 + * @return array|WP_Error - An array describing the uploading files process.
3542 3974 */
3543 3975 public function upload_handler( $update_media_item = false ) {
3544 3976 if ( isset( $_SERVER['REQUEST_METHOD'] ) && 'POST' !== strtoupper( sanitize_text_field( wp_unslash( $_SERVER['REQUEST_METHOD'] ) ) ) ) {
3545 3977 return new WP_Error( 405, get_status_header_desc( 405 ), 405 );
@@ -3590,9 +4022,9 @@
3590 4022 return new WP_Error( 'handler_cannot_upload', __( 'The upload handler cannot upload files', 'jetpack' ), 400 );
3591 4023 }
3592 4024
3593 4025 $uploaded_files = array();
3594 - $global_post = isset( $GLOBALS['post'] ) ? $GLOBALS['post'] : null;
4026 + $global_post = $GLOBALS['post'] ?? null;
3595 4027 unset( $GLOBALS['post'] );
3596 4028 if ( empty( $_FILES['media']['name'] ) ) {
3597 4029 // Nothing to process, just return.
3598 4030 return $uploaded_files;
@@ -3599,9 +4031,9 @@
3599 4031 }
3600 4032 foreach ( $_FILES['media']['name'] as $index => $name ) { // phpcs:ignore WordPress.Security.ValidatedSanitizedInput.MissingUnslash, WordPress.Security.ValidatedSanitizedInput.InputNotSanitized -- As above, unslash sniff is wrong. Validation should happen below.
3601 4033 $file = array();
3602 4034 foreach ( $media_keys as $media_key ) {
3603 - $file[ $media_key ] = isset( $_FILES['media'][ $media_key ][ $index ] ) ? $_FILES['media'][ $media_key ][ $index ] : null; // phpcs:ignore WordPress.Security.ValidatedSanitizedInput.MissingUnslash, WordPress.Security.ValidatedSanitizedInput.InputNotSanitized -- As above, the unslash sniff is wrong.
4035 + $file[ $media_key ] = $_FILES['media'][ $media_key ][ $index ] ?? null; // phpcs:ignore WordPress.Security.ValidatedSanitizedInput.MissingUnslash,,WordPress.Security.NonceVerification.Missing,WordPress.Security.ValidatedSanitizedInput.InputNotSanitized -- As above, the unslash sniff is wrong.
3604 4036 }
3605 4037
3606 4038 list( $hmac_provided, $salt ) = isset( $_POST['_jetpack_file_hmac_media'][ $index ] ) ? explode( ':', filter_var( wp_unslash( $_POST['_jetpack_file_hmac_media'][ $index ] ) ) ) : array( 'no', '' ); // phpcs:ignore WordPress.Security.NonceVerification.Missing -- Nonce should have been checked by the caller.
3607 4039
@@ -3647,9 +4079,9 @@
3647 4079 'type' => (string) $edited_media_item->post_mime_type,
3648 4080 'meta' => (array) wp_get_attachment_metadata( $post_id ),
3649 4081 );
3650 4082
3651 - return (array) array( $response );
4083 + return array( $response );
3652 4084 }
3653 4085
3654 4086 $attachment_id = media_handle_upload(
3655 4087 '.jetpack.upload.',
@@ -3688,67 +4120,8 @@
3688 4120 return $uploaded_files;
3689 4121 }
3690 4122
3691 4123 /**
3692 - * Add help to the Jetpack page
3693 - *
3694 - * @since Jetpack (1.2.3)
3695 - * @return void
3696 - */
3697 - public function admin_help() {
3698 - $current_screen = get_current_screen();
3699 -
3700 - // Overview.
3701 - $current_screen->add_help_tab(
3702 - array(
3703 - 'id' => 'home',
3704 - 'title' => __( 'Home', 'jetpack' ),
3705 - 'content' =>
3706 - '<p><strong>' . __( 'Jetpack', 'jetpack' ) . '</strong></p>' .
3707 - '<p>' . __( 'Jetpack supercharges your self-hosted WordPress site with the awesome cloud power of WordPress.com.', 'jetpack' ) . '</p>' .
3708 - '<p>' . __( 'On this page, you are able to view the modules available within Jetpack, learn more about them, and activate or deactivate them as needed.', 'jetpack' ) . '</p>',
3709 - )
3710 - );
3711 -
3712 - // Screen Content.
3713 - if ( current_user_can( 'manage_options' ) ) {
3714 - $current_screen->add_help_tab(
3715 - array(
3716 - 'id' => 'settings',
3717 - 'title' => __( 'Settings', 'jetpack' ),
3718 - 'content' =>
3719 - '<p><strong>' . __( 'Jetpack', 'jetpack' ) . '</strong></p>' .
3720 - '<p>' . __( 'You can activate or deactivate individual Jetpack modules to suit your needs.', 'jetpack' ) . '</p>' .
3721 - '<ol>' .
3722 - '<li>' . __( 'Each module has an Activate or Deactivate link so you can toggle one individually.', 'jetpack' ) . '</li>' .
3723 - '<li>' . __( 'Using the checkboxes next to each module, you can select multiple modules to toggle via the Bulk Actions menu at the top of the list.', 'jetpack' ) . '</li>' .
3724 - '</ol>' .
3725 - '<p>' . __( 'Using the tools on the right, you can search for specific modules, filter by module categories or which are active, or change the sorting order.', 'jetpack' ) . '</p>',
3726 - )
3727 - );
3728 - }
3729 -
3730 - // Help Sidebar.
3731 - $support_url = Redirect::get_url( 'jetpack-support' );
3732 - $faq_url = Redirect::get_url( 'jetpack-faq' );
3733 - $current_screen->set_help_sidebar(
3734 - '<p><strong>' . __( 'For more information:', 'jetpack' ) . '</strong></p>' .
3735 - '<p><a href="' . $faq_url . '" rel="noopener noreferrer" target="_blank">' . __( 'Jetpack FAQ', 'jetpack' ) . '</a></p>' .
3736 - '<p><a href="' . $support_url . '" rel="noopener noreferrer" target="_blank">' . __( 'Jetpack Support', 'jetpack' ) . '</a></p>' .
3737 - '<p><a href="' . self::admin_url( array( 'page' => 'jetpack-debugger' ) ) . '">' . __( 'Jetpack Debugging Center', 'jetpack' ) . '</a></p>'
3738 - );
3739 - }
3740 -
3741 - /**
3742 - * Enqueues the jetpack-icons style.
3743 - *
3744 - * @return void
3745 - */
3746 - public function admin_menu_css() {
3747 - wp_enqueue_style( 'jetpack-icons' );
3748 - }
3749 -
3750 - /**
3751 4124 * Add action links for the Jetpack plugin.
3752 4125 *
3753 4126 * @param array $actions Plugin actions.
3754 4127 *
@@ -3754,14 +4127,11 @@
3754 4127 *
3755 4128 * @return array
3756 4129 */
3757 4130 public function plugin_action_links( $actions ) {
3758 - $support_link = ( new Host() )->is_woa_site() ? 'https://wordpress.com/help/contact/' : self::admin_url( 'page=jetpack-debugger' );
3759 -
3760 4131 if ( current_user_can( 'jetpack_manage_modules' ) && ( self::is_connection_ready() || ( new Status() )->is_offline_mode() ) ) {
3761 4132 return array_merge(
3762 - array( 'settings' => sprintf( '<a href="%s">%s</a>', self::admin_url( 'page=jetpack#/settings' ), __( 'Settings', 'jetpack' ) ) ),
3763 - array( 'support' => sprintf( '<a href="%s">%s</a>', $support_link, __( 'Support', 'jetpack' ) ) ),
4133 + array( 'settings' => sprintf( '<a href="%s">%s</a>', esc_url( self::admin_url( 'page=jetpack#/settings' ) ), __( 'Settings', 'jetpack' ) ) ),
3764 4134 $actions
3765 4135 );
3766 4136 }
3767 4137
@@ -3768,53 +4138,8 @@
3768 4138 return $actions;
3769 4139 }
3770 4140
3771 4141 /**
3772 - * Add an activation modal to the plugins page and the main dashboard.
3773 - *
3774 - * @param string $hook The current admin page.
3775 - *
3776 - * @return void
3777 - */
3778 - public function activate_dialog( $hook ) {
3779 - /*
3780 - * We do not need it on other plugin pages,
3781 - * or when Jetpack is already connected.
3782 - */
3783 - if (
3784 - ! in_array( $hook, array( 'plugins.php', 'index.php' ), true )
3785 - || self::is_connection_ready()
3786 - ) {
3787 - return;
3788 - }
3789 -
3790 - // add an activation script that will pick up deactivation actions for the Jetpack plugin.
3791 - Assets::register_script(
3792 - 'jetpack-full-activation-modal-js',
3793 - '_inc/build/activation-modal.js',
3794 - JETPACK__PLUGIN_FILE,
3795 - array(
3796 - 'enqueue' => true,
3797 - 'in_footer' => true,
3798 - 'textdomain' => 'jetpack',
3799 - 'dependencies' => array(
3800 - 'wp-polyfill',
3801 - 'wp-components',
3802 - ),
3803 - )
3804 - );
3805 -
3806 - // Add objects to be passed to the initial state of the app.
3807 - // Use wp_add_inline_script instead of wp_localize_script, see https://core.trac.wordpress.org/ticket/25280.
3808 - wp_add_inline_script( 'jetpack-full-activation-modal-js', 'var Initial_State=JSON.parse(decodeURIComponent("' . rawurlencode( wp_json_encode( Jetpack_Redux_State_Helper::get_minimal_state() ) ) . '"));', 'before' );
3809 -
3810 - // Adds Connection package initial state.
3811 - Connection_Initial_State::render_script( 'jetpack-full-activation-modal-js' );
3812 -
3813 - add_action( 'admin_notices', array( $this, 'jetpack_plugin_portal_containers' ) );
3814 - }
3815 -
3816 - /**
3817 4142 * Adds the deactivation warning modal for Jetpack.
3818 4143 *
3819 4144 * @param string $hook The current admin page.
3820 4145 *
@@ -3834,14 +4159,10 @@
3834 4159 'jetpack-plugins-page-js',
3835 4160 '_inc/build/plugins-page.js',
3836 4161 JETPACK__PLUGIN_FILE,
3837 4162 array(
3838 - 'in_footer' => true,
3839 - 'textdomain' => 'jetpack',
3840 - 'dependencies' => array(
3841 - 'wp-polyfill',
3842 - 'wp-components',
3843 - ),
4163 + 'in_footer' => true,
4164 + 'textdomain' => 'jetpack',
3844 4165 )
3845 4166 );
3846 4167 Assets::enqueue_script( 'jetpack-plugins-page-js' );
3847 4168
@@ -3846,9 +4167,9 @@
3846 4167 Assets::enqueue_script( 'jetpack-plugins-page-js' );
3847 4168
3848 4169 // Add objects to be passed to the initial state of the app.
3849 4170 // Use wp_add_inline_script instead of wp_localize_script, see https://core.trac.wordpress.org/ticket/25280.
3850 - wp_add_inline_script( 'jetpack-plugins-page-js', 'var Initial_State=JSON.parse(decodeURIComponent("' . rawurlencode( wp_json_encode( Jetpack_Redux_State_Helper::get_minimal_state() ) ) . '"));', 'before' );
4171 + wp_add_inline_script( 'jetpack-plugins-page-js', 'var Initial_State=' . wp_json_encode( Jetpack_Redux_State_Helper::get_minimal_state(), JSON_UNESCAPED_SLASHES | JSON_HEX_TAG | JSON_HEX_AMP ) . ';', 'before' );
3851 4172
3852 4173 add_action( 'admin_footer', array( $this, 'jetpack_plugin_portal_containers' ) );
3853 4174 }
3854 4175 }
@@ -3897,9 +4218,9 @@
3897 4218 // @todo provide way to go to specific calypso env.
3898 4219 self::get_calypso_host() . 'jetpack/connect'
3899 4220 )
3900 4221 );
3901 - exit;
4222 + exit( 0 );
3902 4223 }
3903 4224 }
3904 4225
3905 4226 /*
@@ -3934,8 +4255,28 @@
3934 4255 * Done!
3935 4256 */
3936 4257
3937 4258 /**
4259 + * Build the user-facing description stored alongside a registration error code.
4260 + *
4261 + * @since 16.2
4262 + *
4263 + * @param string $error_code The WP_Error code.
4264 + * @param string $message The WP_Error message.
4265 + * @return string The description, empty when the message is not user-facing copy.
4266 + */
4267 + public static function get_registration_error_description( $error_code, $message ) {
4268 + // Manager::validate_remote_register_response() does not always put user-facing copy in the
4269 + // message slot: wpcom_5??, wpcom_408 and wpcom_bad_response store the HTTP status there,
4270 + // and jetpack_id stores the raw response body, which can also overflow the state cookie.
4271 + if ( 'jetpack_id' === $error_code || is_numeric( $message ) ) {
4272 + return '';
4273 + }
4274 +
4275 + return mb_substr( (string) $message, 0, 250 );
4276 + }
4277 +
4278 + /**
3938 4279 * Handles the page load events for the Jetpack admin page
3939 4280 */
3940 4281 public function admin_page_load() {
3941 4282 $error = false;
@@ -3971,10 +4312,11 @@
3971 4312 $registered = static::connection()->try_registration();
3972 4313 if ( is_wp_error( $registered ) ) {
3973 4314 $error = $registered->get_error_code();
3974 4315 self::state( 'error', $error );
3975 - self::state( 'error', $registered->get_error_message() );
3976 4316
4317 + self::state( 'error_description', self::get_registration_error_description( $error, $registered->get_error_message() ) );
4318 +
3977 4319 /**
3978 4320 * Jetpack registration Error.
3979 4321 *
3980 4322 * @since 7.5.0
@@ -3998,12 +4340,8 @@
3998 4340 do_action( 'jetpack_connection_register_success', $from );
3999 4341
4000 4342 $url = $this->build_connect_url( true, $redirect, $from );
4001 4343
4002 - if ( ! empty( $_GET['onboarding'] ) ) {
4003 - $url = add_query_arg( 'onboarding', rawurlencode_deep( wp_unslash( $_GET['onboarding'] ) ), $url ); // phpcs:ignore WordPress.Security.ValidatedSanitizedInput.InputNotSanitized
4004 - }
4005 -
4006 4344 if ( ! empty( $_GET['auth_approved'] ) && 'true' === $_GET['auth_approved'] ) {
4007 4345 $url = add_query_arg( 'auth_approved', 'true', $url );
4008 4346 }
4009 4347
@@ -4008,9 +4346,9 @@
4008 4346 }
4009 4347
4010 4348 add_filter( 'allowed_redirect_hosts', array( Host::class, 'allow_wpcom_environments' ) );
4011 4349 wp_safe_redirect( $url );
4012 - exit;
4350 + exit( 0 );
4013 4351 case 'activate':
4014 4352 if ( ! current_user_can( 'jetpack_activate_modules' ) ) {
4015 4353 $error = 'cheatin';
4016 4354 break;
@@ -4024,9 +4362,9 @@
4024 4362 self::state( 'error', sprintf( __( 'Could not activate %s', 'jetpack' ), $module ) );
4025 4363 }
4026 4364 // The following two lines will rarely happen, as Jetpack::activate_module normally exits at the end.
4027 4365 wp_safe_redirect( self::admin_url( 'page=jetpack' ) );
4028 - exit;
4366 + exit( 0 );
4029 4367 case 'activate_default_modules':
4030 4368 check_admin_referer( 'activate_default_modules' );
4031 4369 self::log( 'activate_default_modules' );
4032 4370 self::restate();
@@ -4034,9 +4372,9 @@
4034 4372 $max_version = isset( $_GET['max_version'] ) ? sanitize_text_field( wp_unslash( $_GET['max_version'] ) ) : false;
4035 4373 $other_modules = isset( $_GET['other_modules'] ) && is_array( $_GET['other_modules'] ) ? array_map( 'sanitize_text_field', wp_unslash( $_GET['other_modules'] ) ) : array();
4036 4374 self::activate_default_modules( $min_version, $max_version, $other_modules );
4037 4375 wp_safe_redirect( self::admin_url( 'page=jetpack' ) );
4038 - exit;
4376 + exit( 0 );
4039 4377 case 'disconnect':
4040 4378 if ( ! current_user_can( 'jetpack_disconnect' ) ) {
4041 4379 $error = 'cheatin';
4042 4380 break;
@@ -4045,9 +4383,9 @@
4045 4383 check_admin_referer( 'jetpack-disconnect' );
4046 4384 self::log( 'disconnect' );
4047 4385 self::disconnect();
4048 4386 wp_safe_redirect( self::admin_url( 'disconnected=true' ) );
4049 - exit;
4387 + exit( 0 );
4050 4388 case 'reconnect':
4051 4389 if ( ! current_user_can( 'jetpack_reconnect' ) ) {
4052 4390 $error = 'cheatin';
4053 4391 break;
@@ -4058,9 +4396,9 @@
4058 4396 self::disconnect();
4059 4397
4060 4398 add_filter( 'allowed_redirect_hosts', array( Host::class, 'allow_wpcom_environments' ) );
4061 4399 wp_safe_redirect( $this->build_connect_url( true, false, 'reconnect' ) );
4062 - exit;
4400 + exit( 0 );
4063 4401 case 'deactivate':
4064 4402 if ( ! current_user_can( 'jetpack_deactivate_modules' ) ) {
4065 4403 $error = 'cheatin';
4066 4404 break;
@@ -4074,9 +4412,9 @@
4074 4412 self::state( 'message', 'module_deactivated' );
4075 4413 }
4076 4414 self::state( 'module', $modules );
4077 4415 wp_safe_redirect( self::admin_url( 'page=jetpack' ) );
4078 - exit;
4416 + exit( 0 );
4079 4417 case 'unlink':
4080 4418 $redirect = isset( $_GET['redirect'] ) ? sanitize_text_field( wp_unslash( $_GET['redirect'] ) ) : '';
4081 4419 check_admin_referer( 'jetpack-unlink' );
4082 4420 self::log( 'unlink' );
@@ -4086,32 +4424,9 @@
4086 4424 wp_safe_redirect( admin_url() );
4087 4425 } else {
4088 4426 wp_safe_redirect( self::admin_url( array( 'page' => rawurlencode( $redirect ) ) ) );
4089 4427 }
4090 - exit;
4091 - case 'onboard':
4092 - if ( ! current_user_can( 'manage_options' ) ) {
4093 - wp_safe_redirect( self::admin_url( 'page=jetpack' ) );
4094 - } else {
4095 - self::create_onboarding_token();
4096 - $url = $this->build_connect_url( true );
4097 -
4098 - $token = Jetpack_Options::get_option( 'onboarding' );
4099 -
4100 - if ( false !== ( $token ) ) {
4101 - $url = add_query_arg( 'onboarding', $token, $url );
4102 - }
4103 -
4104 - $calypso_env = ( new Host() )->get_calypso_env();
4105 - if ( ! empty( $calypso_env ) ) {
4106 - $url = add_query_arg( 'calypso_env', $calypso_env, $url );
4107 - }
4108 -
4109 - add_filter( 'allowed_redirect_hosts', array( Host::class, 'allow_wpcom_environments' ) );
4110 - wp_safe_redirect( $url );
4111 - exit;
4112 - }
4113 - exit;
4428 + exit( 0 );
4114 4429 default:
4115 4430 /**
4116 4431 * Fires when a Jetpack admin page is loaded with an unrecognized parameter.
4117 4432 *
@@ -4127,9 +4442,10 @@
4127 4442 if ( ! $error ) {
4128 4443 self::activate_new_modules( true );
4129 4444 }
4130 4445
4131 - $message_code = self::state( 'message' );
4446 + $activated_manage = false;
4447 + $message_code = self::state( 'message' );
4132 4448 if ( self::state( 'optin-manage' ) ) {
4133 4449 $activated_manage = $message_code;
4134 4450 $message_code = 'jetpack-manage';
4135 4451 }
@@ -4303,17 +4619,19 @@
4303 4619 count( $privacy_checks ),
4304 4620 '%1$s = deactivation URL, %2$s = "Deactivate {list of Jetpack module/feature names}',
4305 4621 'jetpack'
4306 4622 ),
4307 - wp_nonce_url(
4308 - self::admin_url(
4309 - array(
4310 - 'page' => 'jetpack',
4311 - 'action' => 'deactivate',
4312 - 'module' => rawurlencode( $module_slugs ),
4313 - )
4314 - ),
4315 - "jetpack_deactivate-$module_slugs"
4623 + esc_url(
4624 + wp_nonce_url(
4625 + self::admin_url(
4626 + array(
4627 + 'page' => 'jetpack',
4628 + 'action' => 'deactivate',
4629 + 'module' => rawurlencode( $module_slugs ),
4630 + )
4631 + ),
4632 + "jetpack_deactivate-$module_slugs"
4633 + )
4316 4634 ),
4317 4635 esc_attr( wp_kses( wp_sprintf( _x( 'Deactivate %l', '%l = list of Jetpack module/feature names', 'jetpack' ), $module_names ), array() ) )
4318 4636 ),
4319 4637 array(
@@ -4331,37 +4649,8 @@
4331 4649 endif;
4332 4650 }
4333 4651
4334 4652 /**
4335 - * We can't always respond to a signed XML-RPC request with a
4336 - * helpful error message. In some circumstances, doing so could
4337 - * leak information.
4338 - *
4339 - * Instead, track that the error occurred via a Jetpack_Option,
4340 - * and send that data back in the heartbeat.
4341 - * All this does is increment a number, but it's enough to find
4342 - * trends.
4343 - *
4344 - * @param WP_Error $xmlrpc_error The error produced during
4345 - * signature validation.
4346 - */
4347 - public function track_xmlrpc_error( $xmlrpc_error ) {
4348 - $code = is_wp_error( $xmlrpc_error )
4349 - ? $xmlrpc_error->get_error_code()
4350 - : 'should-not-happen';
4351 -
4352 - $xmlrpc_errors = Jetpack_Options::get_option( 'xmlrpc_errors', array() );
4353 - if ( isset( $xmlrpc_errors[ $code ] ) && $xmlrpc_errors[ $code ] ) {
4354 - // No need to update the option if we already have
4355 - // this code stored.
4356 - return;
4357 - }
4358 - $xmlrpc_errors[ $code ] = true;
4359 -
4360 - Jetpack_Options::update_option( 'xmlrpc_errors', $xmlrpc_errors, false );
4361 - }
4362 -
4363 - /**
4364 4653 * Initialize the jetpack stats instance only when needed
4365 4654 *
4366 4655 * @return void
4367 4656 */
@@ -4484,9 +4773,9 @@
4484 4773 return $this->build_connect_url( $raw, $redirect, $from, true );
4485 4774 }
4486 4775 }
4487 4776
4488 - $url = $this->build_authorize_url( $redirect );
4777 + $url = ( new Authorize_Redirect( static::connection() ) )->build_authorize_url( $redirect );
4489 4778 }
4490 4779
4491 4780 if ( $from ) {
4492 4781 $url = add_query_arg( 'from', $from, $url );
@@ -4511,66 +4800,30 @@
4511 4800 * @param null $deprecated Deprecated since Jetpack 10.9.
4512 4801 *
4513 4802 * @todo Update default value for redirect since the called function expects a string.
4514 4803 *
4804 + * @deprecated 13.4
4805 + *
4515 4806 * @return mixed|void
4516 4807 */
4517 4808 public static function build_authorize_url( $redirect = false, $deprecated = null ) { // phpcs:ignore VariableAnalysis.CodeAnalysis.VariableAnalysis.UnusedVariable
4809 + _deprecated_function( __METHOD__, 'jetpack-13.4', 'Authorize_Redirect::build_authorize_url' );
4518 4810
4519 - add_filter( 'jetpack_connect_request_body', array( __CLASS__, 'filter_connect_request_body' ) );
4520 - add_filter( 'jetpack_connect_redirect_url', array( __CLASS__, 'filter_connect_redirect_url' ) );
4521 -
4522 - $c8n = self::connection();
4523 - $url = $c8n->get_authorization_url( wp_get_current_user(), $redirect );
4524 -
4525 - remove_filter( 'jetpack_connect_request_body', array( __CLASS__, 'filter_connect_request_body' ) );
4526 - remove_filter( 'jetpack_connect_redirect_url', array( __CLASS__, 'filter_connect_redirect_url' ) );
4527 -
4528 - /**
4529 - * Filter the URL used when authorizing a user to a WordPress.com account.
4530 - *
4531 - * @since 8.9.0
4532 - *
4533 - * @param string $url Connection URL.
4534 - */
4535 - return apply_filters( 'jetpack_build_authorize_url', $url );
4811 + return ( new Authorize_Redirect( static::connection() ) )->build_authorize_url( $redirect );
4536 4812 }
4537 4813
4538 4814 /**
4539 4815 * Filters the connection URL parameter array.
4540 4816 *
4817 + * @deprecated 13.4
4818 + *
4541 4819 * @param array $args default URL parameters used by the package.
4542 4820 * @return array the modified URL arguments array.
4543 4821 */
4544 4822 public static function filter_connect_request_body( $args ) {
4545 - if (
4546 - Constants::is_defined( 'JETPACK__GLOTPRESS_LOCALES_PATH' )
4547 - && include_once Constants::get_constant( 'JETPACK__GLOTPRESS_LOCALES_PATH' )
4548 - ) {
4549 - $gp_locale = GP_Locales::by_field( 'wp_locale', get_locale() );
4550 - $args['locale'] = isset( $gp_locale ) && isset( $gp_locale->slug )
4551 - ? $gp_locale->slug
4552 - : '';
4553 - }
4823 + _deprecated_function( __METHOD__, 'jetpack-13.4', 'Authorize_Redirect::filter_connect_request_body' );
4554 4824
4555 - $tracking = new Tracking();
4556 - $tracks_identity = $tracking->tracks_get_identity( $args['state'] );
4557 -
4558 - $args = array_merge(
4559 - $args,
4560 - array(
4561 - '_ui' => $tracks_identity['_ui'],
4562 - '_ut' => $tracks_identity['_ut'],
4563 - )
4564 - );
4565 -
4566 - $calypso_env = ( new Host() )->get_calypso_env();
4567 -
4568 - if ( ! empty( $calypso_env ) ) {
4569 - $args['calypso_env'] = $calypso_env;
4570 - }
4571 -
4572 - return $args;
4825 + return Authorize_Redirect::filter_connect_request_body( $args );
4573 4826 }
4574 4827
4575 4828 /**
4576 4829 * Filters the `jetpack/v4/connection/data` API response of the Connection package in order to
@@ -4607,41 +4860,19 @@
4607 4860 return $current_user_connection_data;
4608 4861 }
4609 4862
4610 4863 /**
4611 - * Filters the URL that will process the connection data. It can be different from the URL
4612 - * that we send the user to after everything is done.
4613 - *
4614 - * @param String $processing_url the default redirect URL used by the package.
4615 - * @return String the modified URL.
4616 - *
4617 - * @deprecated since Jetpack 9.5.0
4618 - */
4619 - public static function filter_connect_processing_url( $processing_url ) {
4620 - _deprecated_function( __METHOD__, 'jetpack-9.5' );
4621 -
4622 - $processing_url = admin_url( 'admin.php?page=jetpack' ); // Making PHPCS happy.
4623 - return $processing_url;
4624 - }
4625 -
4626 - /**
4627 4864 * Filters the redirection URL that is used for connect requests. The redirect
4628 4865 * URL should return the user back to the Jetpack console.
4629 4866 *
4867 + * @deprecated 13.4
4868 + *
4630 4869 * @param String $redirect the default redirect URL used by the package.
4631 4870 * @return String the modified URL.
4632 4871 */
4633 4872 public static function filter_connect_redirect_url( $redirect ) {
4634 - $jetpack_admin_page = esc_url_raw( admin_url( 'admin.php?page=jetpack' ) );
4635 - $redirect = $redirect
4636 - ? wp_validate_redirect( esc_url_raw( $redirect ), $jetpack_admin_page )
4637 - : $jetpack_admin_page;
4638 -
4639 - if ( isset( $_REQUEST['is_multisite'] ) ) { // phpcs:ignore WordPress.Security.NonceVerification.Recommended -- not making a site change here.
4640 - $redirect = Jetpack_Network::init()->get_url( 'network_admin_page' );
4641 - }
4642 -
4643 - return $redirect;
4873 + _deprecated_function( __METHOD__, 'jetpack-13.4', 'Authorize_Redirect::filter_connect_redirect_url' );
4874 + return Authorize_Redirect::filter_connect_redirect_url( $redirect );
4644 4875 }
4645 4876
4646 4877 /**
4647 4878 * This action fires at the beginning of the Manager::authorize method.
@@ -4705,11 +4936,8 @@
4705 4936 *
4706 4937 * @param array $data The request data.
4707 4938 */
4708 4939 public static function authorize_ending_authorized( $data ) {
4709 - // If this site has been through the Jetpack Onboarding flow, delete the onboarding token.
4710 - self::invalidate_onboarding_token();
4711 -
4712 4940 // If redirect_uri is SSO, ensure SSO module is enabled.
4713 4941 parse_str( wp_parse_url( $data['redirect_uri'], PHP_URL_QUERY ), $redirect_options );
4714 4942
4715 4943 /** This filter is documented in class.jetpack-cli.php */
@@ -4833,13 +5061,9 @@
4833 5061 *
4834 5062 * @return int 0 if the same sort or (+/-) to indicate which is greater.
4835 5063 */
4836 5064 public static function sort_modules( $a, $b ) {
4837 - if ( $a['sort'] === $b['sort'] ) {
4838 - return 0;
4839 - }
4840 -
4841 - return ( $a['sort'] < $b['sort'] ) ? -1 : 1;
5065 + return $a['sort'] <=> $b['sort'];
4842 5066 }
4843 5067
4844 5068 /**
4845 5069 * Recheck SSL status for use via an AJAX call.
@@ -4853,10 +5077,12 @@
4853 5077 $result = self::permit_ssl( true );
4854 5078 wp_send_json(
4855 5079 array(
4856 5080 'enabled' => $result,
4857 - 'message' => get_transient( 'jetpack_https_test_message' ),
4858 - )
5081 + 'message' => self::get_ssl_test_message(),
5082 + ),
5083 + null, // @phan-suppress-current-line PhanTypeMismatchArgumentProbablyReal -- It takes null, but its phpdoc only says int.
5084 + JSON_UNESCAPED_SLASHES
4859 5085 );
4860 5086 }
4861 5087
4862 5088 /* Client API */
@@ -4863,8 +5089,10 @@
4863 5089
4864 5090 /**
4865 5091 * Verify the onboarding token.
4866 5092 *
5093 + * @deprecated since 13.9
5094 + *
4867 5095 * @param array $token_data Token data.
4868 5096 * @param string $token Token value.
4869 5097 * @param string $request_data JSON-encoded request data.
4870 5098 *
@@ -4870,8 +5098,9 @@
4870 5098 *
4871 5099 * @return mixed
4872 5100 */
4873 5101 public static function verify_onboarding_token( $token_data, $token, $request_data ) {
5102 + _deprecated_function( __METHOD__, '13.9' );
4874 5103 // Default to a blog token.
4875 5104 $token_type = 'blog';
4876 5105
4877 5106 // Let's see if this is onboarding. In such case, use user token type and the provided user id.
@@ -4899,9 +5128,9 @@
4899 5128 $jp_user = get_user_by( 'email', $jpo_user );
4900 5129 if ( is_a( $jp_user, 'WP_User' ) ) {
4901 5130 wp_set_current_user( $jp_user->ID );
4902 5131 $user_can = is_multisite()
4903 - ? current_user_can_for_blog( get_current_blog_id(), 'manage_options' )
5132 + ? current_user_can_for_site( get_current_blog_id(), 'manage_options' )
4904 5133 : current_user_can( 'manage_options' );
4905 5134 if ( $user_can ) {
4906 5135 $token_type = 'user';
4907 5136 $token->external_user_id = $jp_user->ID;
@@ -4918,11 +5147,13 @@
4918 5147
4919 5148 /**
4920 5149 * Create a random secret for validating onboarding payload
4921 5150 *
5151 + * @deprecated since 13.9
4922 5152 * @return string Secret token
4923 5153 */
4924 5154 public static function create_onboarding_token() {
5155 + _deprecated_function( __METHOD__, '13.9' );
4925 5156 $token = Jetpack_Options::get_option( 'onboarding' );
4926 5157 if ( false === ( $token ) ) {
4927 5158 $token = wp_generate_password( 32, false );
4928 5159 Jetpack_Options::update_option( 'onboarding', $token );
@@ -4933,11 +5164,13 @@
4933 5164
4934 5165 /**
4935 5166 * Remove the onboarding token
4936 5167 *
5168 + * @deprecated since 13.9
4937 5169 * @return bool True on success, false on failure
4938 5170 */
4939 5171 public static function invalidate_onboarding_token() {
5172 + _deprecated_function( __METHOD__, '13.9' );
4940 5173 return Jetpack_Options::delete_option( 'onboarding' );
4941 5174 }
4942 5175
4943 5176 /**
@@ -4942,8 +5175,10 @@
4942 5175
4943 5176 /**
4944 5177 * Validate an onboarding token for a specific action
4945 5178 *
5179 + * @deprecated since 13.9
5180 + *
4946 5181 * @param string $token Onboarding token.
4947 5182 * @param string $action Action name.
4948 5183 *
4949 5184 * @return boolean True if token/action pair is accepted, false if not
@@ -4948,8 +5183,9 @@
4948 5183 *
4949 5184 * @return boolean True if token/action pair is accepted, false if not
4950 5185 */
4951 5186 public static function validate_onboarding_token_action( $token, $action ) {
5187 + _deprecated_function( __METHOD__, '13.9' );
4952 5188 // Compare tokens, bail if tokens do not match.
4953 5189 if ( ! hash_equals( $token, Jetpack_Options::get_option( 'onboarding' ) ) ) {
4954 5190 return false;
4955 5191 }
@@ -4975,39 +5211,33 @@
4975 5211 * @return boolean
4976 5212 * @since 2.3.3
4977 5213 */
4978 5214 public static function permit_ssl( $force_recheck = false ) {
4979 - // Do some fancy tests to see if ssl is being supported.
4980 - if ( ! $force_recheck ) {
4981 - $ssl = get_transient( 'jetpack_https_test' );
4982 - }
5215 + // Delegates to the canonical SSL check in the Connection package.
5216 + return Heartbeat::permit_ssl( $force_recheck );
5217 + }
4983 5218
4984 - if ( $force_recheck || false === $ssl ) {
4985 - $message = '';
4986 - if ( 'https' !== substr( JETPACK__API_BASE, 0, 5 ) ) {
4987 - $ssl = 0;
4988 - } else {
4989 - $ssl = 1;
5219 + /**
5220 + * Returns a localized message describing the last SSL connectivity failure, if any.
5221 + *
5222 + * The Connection package's canonical SSL check stores a neutral reason code; this maps it to
5223 + * a translated, `jetpack`-domain message for display in the admin notice and AJAX recheck.
5224 + *
5225 + * @since 16.1
5226 + *
5227 + * @return string The localized message, or an empty string when there is no failure.
5228 + */
5229 + public static function get_ssl_test_message() {
5230 + $error = Heartbeat::get_ssl_test_error();
4990 5231
4991 - if ( ! wp_http_supports( array( 'ssl' => true ) ) ) {
4992 - $ssl = 0;
4993 - $message = __( 'WordPress reports no SSL support', 'jetpack' );
4994 - } else {
4995 - $response = wp_remote_get( JETPACK__API_BASE . 'test/1/' );
4996 - if ( is_wp_error( $response ) ) {
4997 - $ssl = 0;
4998 - $message = __( 'WordPress reports no SSL support', 'jetpack' );
4999 - } elseif ( 'OK' !== wp_remote_retrieve_body( $response ) ) {
5000 - $ssl = 0;
5001 - $message = __( 'Response was not OK: ', 'jetpack' ) . wp_remote_retrieve_body( $response );
5002 - }
5003 - }
5004 - }
5005 - set_transient( 'jetpack_https_test', $ssl, DAY_IN_SECONDS );
5006 - set_transient( 'jetpack_https_test_message', $message, DAY_IN_SECONDS );
5232 + switch ( $error['code'] ) {
5233 + case 'no_ssl_support':
5234 + return __( 'WordPress reports no SSL support', 'jetpack' );
5235 + case 'bad_response':
5236 + return __( 'Response was not OK: ', 'jetpack' ) . $error['detail'];
5237 + default:
5238 + return '';
5007 5239 }
5008 -
5009 - return (bool) $ssl;
5010 5240 }
5011 5241
5012 5242 /**
5013 5243 * Displays an admin_notice, alerting the user that outbound SSL isn't working.
@@ -5026,9 +5256,9 @@
5026 5256 <p><?php esc_html_e( 'Your site could not connect to WordPress.com via HTTPS. This could be due to any number of reasons, including faulty SSL certificates, misconfigured or missing SSL libraries, or network issues.', 'jetpack' ); ?></p>
5027 5257 <p>
5028 5258 <?php esc_html_e( 'Jetpack will re-test for HTTPS support once a day, but you can click here to try again immediately: ', 'jetpack' ); ?>
5029 5259 <a href="#" id="jetpack-recheck-ssl-button"><?php esc_html_e( 'Try again', 'jetpack' ); ?></a>
5030 - <span id="jetpack-recheck-ssl-output"><?php echo esc_html( get_transient( 'jetpack_https_test_message' ) ); ?></span>
5260 + <span id="jetpack-recheck-ssl-output"><?php echo esc_html( self::get_ssl_test_message() ); ?></span>
5031 5261 </p>
5032 5262 <p>
5033 5263 <?php
5034 5264 printf(
@@ -5047,18 +5277,18 @@
5047 5277 <script type="text/javascript">
5048 5278 jQuery( document ).ready( function( $ ) {
5049 5279 $( '#jetpack-recheck-ssl-button' ).click( function( e ) {
5050 5280 var $this = $( this );
5051 - $this.html( <?php echo wp_json_encode( __( 'Checking', 'jetpack' ) ); ?> );
5281 + $this.html( <?php echo wp_json_encode( esc_html__( 'Checking', 'jetpack' ), JSON_UNESCAPED_SLASHES | JSON_HEX_TAG | JSON_HEX_AMP ); ?> );
5052 5282 $( '#jetpack-recheck-ssl-output' ).html( '' );
5053 5283 e.preventDefault();
5054 - var data = { action: 'jetpack-recheck-ssl', 'ajax-nonce': <?php echo wp_json_encode( $ajax_nonce ); ?> };
5284 + var data = { action: 'jetpack-recheck-ssl', 'ajax-nonce': <?php echo wp_json_encode( $ajax_nonce, JSON_UNESCAPED_SLASHES | JSON_HEX_TAG | JSON_HEX_AMP ); ?> };
5055 5285 $.post( ajaxurl, data )
5056 5286 .done( function( response ) {
5057 5287 if ( response.enabled ) {
5058 5288 $( '#jetpack-ssl-warning' ).hide();
5059 5289 } else {
5060 - this.html( <?php echo wp_json_encode( __( 'Try again', 'jetpack' ) ); ?> );
5290 + this.html( <?php echo wp_json_encode( esc_html__( 'Try again', 'jetpack' ), JSON_UNESCAPED_SLASHES | JSON_HEX_TAG | JSON_HEX_AMP ); ?> );
5061 5291 $( '#jetpack-recheck-ssl-output' ).html( 'SSL Failed: ' + response.message );
5062 5292 }
5063 5293 }.bind( $this ) );
5064 5294 } );
@@ -5084,26 +5314,8 @@
5084 5314 return $jetpack->connection_manager;
5085 5315 }
5086 5316
5087 5317 /**
5088 - * Creates two secret tokens and the end of life timestamp for them.
5089 - *
5090 - * Note these tokens are unique per call, NOT static per site for connecting.
5091 - *
5092 - * @deprecated 9.5 Use Automattic\Jetpack\Connection\Secrets->generate() instead.
5093 - *
5094 - * @since 2.6
5095 - * @param String $action The action name.
5096 - * @param Integer $user_id The user identifier.
5097 - * @param Integer $exp Expiration time in seconds.
5098 - * @return array
5099 - */
5100 - public static function generate_secrets( $action, $user_id = false, $exp = 600 ) {
5101 - _deprecated_function( __METHOD__, 'jetpack-9.5', 'Automattic\\Jetpack\\Connection\\Secrets->generate' );
5102 - return self::connection()->generate_secrets( $action, $user_id, $exp );
5103 - }
5104 -
5105 - /**
5106 5318 * Get verification secrets.
5107 5319 *
5108 5320 * @param string $action Action name.
5109 5321 * @param int $user_id User ID.
@@ -5124,35 +5336,8 @@
5124 5336 return $secrets;
5125 5337 }
5126 5338
5127 5339 /**
5128 - * Register a connection.
5129 - *
5130 - * @deprecated Jetpack 9.7.0
5131 - * @see Automattic\Jetpack\Connection\Manager::try_registration()
5132 - *
5133 - * @return bool|WP_Error
5134 - */
5135 - public static function register() {
5136 - _deprecated_function( __METHOD__, 'jetpack-9.7', 'Automattic\\Jetpack\\Connection\\Manager::try_registration' );
5137 - return static::connection()->try_registration( false );
5138 - }
5139 -
5140 - /**
5141 - * Filters the registration request body to include tracking properties.
5142 - *
5143 - * @deprecated Jetpack 9.7.0
5144 - * @see Automattic\Jetpack\Connection\Utils::filter_register_request_body()
5145 - *
5146 - * @param array $properties Token request properties.
5147 - * @return array amended properties.
5148 - */
5149 - public static function filter_register_request_body( $properties ) {
5150 - _deprecated_function( __METHOD__, 'jetpack-9.7', 'Automattic\\Jetpack\\Connection\\Utils::filter_register_request_body' );
5151 - return Connection_Utils::filter_register_request_body( $properties );
5152 - }
5153 -
5154 - /**
5155 5340 * Filters the token request body to include tracking properties.
5156 5341 *
5157 5342 * @param array $properties Token request properties.
5158 5343 *
@@ -5173,9 +5358,9 @@
5173 5358
5174 5359 /**
5175 5360 * If the db version is showing something other that what we've got now, bump it to current.
5176 5361 *
5177 - * @return bool: True if the option was incorrect and updated, false if nothing happened.
5362 + * @return bool True if the option was incorrect and updated, false if nothing happened.
5178 5363 */
5179 5364 public static function maybe_set_version_option() {
5180 5365 list( $version ) = explode( ':', Jetpack_Options::get_option( 'version' ) );
5181 5366 if ( JETPACK__VERSION !== $version ) {
@@ -5193,21 +5378,8 @@
5193 5378
5194 5379 /* Client Server API */
5195 5380
5196 5381 /**
5197 - * Loads the Jetpack XML-RPC client.
5198 - * No longer necessary, as the XML-RPC client will be automagically loaded.
5199 - *
5200 - * Note: we cannot remove this function yet as it is used in this plugin:
5201 - * https://wordpress.org/plugins/jetpack-subscription-form/
5202 - *
5203 - * @deprecated since 7.7.0
5204 - */
5205 - public static function load_xml_rpc_client() {
5206 - _deprecated_function( __METHOD__, 'jetpack-7.7' );
5207 - }
5208 -
5209 - /**
5210 5382 * State is passed via cookies from one request to the next, but never to subsequent requests.
5211 5383 * SET: state( $key, $value );
5212 5384 * GET: $value = state( $key );
5213 5385 *
@@ -5281,20 +5453,8 @@
5281 5453
5282 5454 self::state( 'privacy_checks', $privacy_checks );
5283 5455 }
5284 5456
5285 - /**
5286 - * Serve a WordPress.com static resource via a randomized wp.com subdomain.
5287 - *
5288 - * @deprecated 9.3.0 Use Assets::staticize_subdomain.
5289 - *
5290 - * @param string $url WordPress.com static resource URL.
5291 - */
5292 - public static function staticize_subdomain( $url ) {
5293 - _deprecated_function( __METHOD__, 'jetpack-9.3.0', 'Automattic\Jetpack\Assets::staticize_subdomain' );
5294 - return Assets::staticize_subdomain( $url );
5295 - }
5296 -
5297 5457 /* JSON API Authorization */
5298 5458
5299 5459 /**
5300 5460 * Handles the login action for Authorizing the JSON API
@@ -5299,13 +5459,14 @@
5299 5459 /**
5300 5460 * Handles the login action for Authorizing the JSON API
5301 5461 */
5302 5462 public function login_form_json_api_authorization() {
5303 - $this->verify_json_api_authorization_request();
5463 + $authorize_json_api = new Authorize_Json_Api();
5464 + $authorize_json_api->verify_json_api_authorization_request();
5304 5465
5305 - add_action( 'wp_login', array( $this, 'store_json_api_authorization_token' ), 10, 2 );
5466 + add_action( 'wp_login', array( $authorize_json_api, 'store_json_api_authorization_token' ), 10, 2 );
5306 5467
5307 - add_action( 'login_message', array( $this, 'login_message_json_api_authorization' ) );
5468 + add_action( 'login_message', array( $authorize_json_api, 'login_message_json_api_authorization' ) );
5308 5469 add_action( 'login_form', array( $this, 'preserve_action_in_login_form_for_json_api_authorization' ) );
5309 5470 add_filter( 'site_url', array( $this, 'post_login_form_to_signed_url' ), 10, 3 );
5310 5471 }
5311 5472
@@ -5343,16 +5504,17 @@
5343 5504
5344 5505 /**
5345 5506 * If someone logs in to approve API access, store the Access Code in usermeta.
5346 5507 *
5508 + * @deprecated 13.4
5509 + *
5347 5510 * @param string $user_login Unused.
5348 5511 * @param WP_User $user User logged in.
5349 5512 */
5350 5513 public function store_json_api_authorization_token( $user_login, $user ) {
5351 - add_filter( 'login_redirect', array( $this, 'add_token_to_login_redirect_json_api_authorization' ), 10, 3 );
5352 - add_filter( 'allowed_redirect_hosts', array( $this, 'allow_wpcom_public_api_domain' ) );
5353 - $token = wp_generate_password( 32, false );
5354 - update_user_meta( $user->ID, 'jetpack_json_api_' . $this->json_api_authorization_request['client_id'], $token );
5514 + _deprecated_function( __METHOD__, 'jetpack-13.4', 'Automattic\\Jetpack\\Connection\\Authorize_Json_Api::store_json_api_authorization_token' );
5515 +
5516 + return ( new Authorize_Json_Api() )->store_json_api_authorization_token( $user_login, $user );
5355 5517 }
5356 5518
5357 5519 /**
5358 5520 * Add public-api.wordpress.com to the safe redirect allowed list - only added when someone allows API access.
@@ -5358,23 +5520,29 @@
5358 5520 * Add public-api.wordpress.com to the safe redirect allowed list - only added when someone allows API access.
5359 5521 *
5360 5522 * To be used with a filter of allowed domains for a redirect.
5361 5523 *
5524 + * @deprecated 13.4
5525 + *
5362 5526 * @param array $domains Allowed WP.com Environments.
5363 5527 */
5364 5528 public function allow_wpcom_public_api_domain( $domains ) {
5365 - $domains[] = 'public-api.wordpress.com';
5366 - return $domains;
5529 + _deprecated_function( __METHOD__, 'jetpack-13.4', 'Automattic\\Jetpack\\Status\\Host::allow_wpcom_public_api_domain' );
5530 +
5531 + return Host::allow_wpcom_public_api_domain( $domains );
5367 5532 }
5368 5533
5369 5534 /**
5370 5535 * Check if the redirect is encoded.
5371 5536 *
5537 + * @deprecated 13.4
5538 + *
5372 5539 * @param string $redirect_url Redirect URL.
5373 5540 *
5374 5541 * @return bool If redirect has been encoded.
5375 5542 */
5376 5543 public static function is_redirect_encoded( $redirect_url ) {
5544 + _deprecated_function( __METHOD__, 'jetpack-13.4' );
5377 5545 return preg_match( '/https?%3A%2F%2F/i', $redirect_url ) > 0;
5378 5546 }
5379 5547
5380 5548 /**
@@ -5392,8 +5560,10 @@
5392 5560
5393 5561 /**
5394 5562 * Add the Access Code details to the public-api.wordpress.com redirect.
5395 5563 *
5564 + * @deprecated 13.4
5565 + *
5396 5566 * @param string $redirect_to URL.
5397 5567 * @param string $original_redirect_to URL.
5398 5568 * @param WP_User $user WP_User for the redirect.
5399 5569 *
@@ -5399,23 +5569,18 @@
5399 5569 *
5400 5570 * @return string
5401 5571 */
5402 5572 public function add_token_to_login_redirect_json_api_authorization( $redirect_to, $original_redirect_to, $user ) {
5403 - return add_query_arg(
5404 - urlencode_deep(
5405 - array(
5406 - 'jetpack-code' => get_user_meta( $user->ID, 'jetpack_json_api_' . $this->json_api_authorization_request['client_id'], true ),
5407 - 'jetpack-user-id' => (int) $user->ID,
5408 - 'jetpack-state' => $this->json_api_authorization_request['state'],
5409 - )
5410 - ),
5411 - $redirect_to
5412 - );
5573 + _deprecated_function( __METHOD__, 'jetpack-13.4', 'Automattic\\Jetpack\\Connection\\Authorize_Json_Api::add_token_to_login_redirect_json_api_authorization' );
5574 +
5575 + return ( new Authorize_Json_Api() )->add_token_to_login_redirect_json_api_authorization( $redirect_to, $original_redirect_to, $user );
5413 5576 }
5414 5577
5415 5578 /**
5416 5579 * Verifies the request by checking the signature
5417 5580 *
5581 + * @deprecated 13.4
5582 + *
5418 5583 * @since 4.6.0 Method was updated to use `$_REQUEST` instead of `$_GET` and `$_POST`. Method also updated to allow
5419 5584 * passing in an `$environment` argument that overrides `$_REQUEST`. This was useful for integrating with SSO.
5420 5585 *
5421 5586 * @param null|array $environment Value to override $_REQUEST.
@@ -5420,194 +5585,24 @@
5420 5585 *
5421 5586 * @param null|array $environment Value to override $_REQUEST.
5422 5587 */
5423 5588 public function verify_json_api_authorization_request( $environment = null ) {
5424 - $environment = $environment === null
5425 - ? $_REQUEST // phpcs:ignore WordPress.Security.NonceVerification.Recommended -- nonce verification handled later in function.
5426 - : $environment;
5589 + _deprecated_function( __METHOD__, 'jetpack-13.4', 'Automattic\\Jetpack\\Connection\\Authorize_Json_Api::verify_json_api_authorization_request' );
5427 5590
5428 - list( $env_token,, $env_user_id ) = explode( ':', $environment['token'] );
5429 - $token = ( new Tokens() )->get_access_token( $env_user_id, $env_token );
5430 - if ( ! $token || empty( $token->secret ) ) {
5431 - wp_die( esc_html__( 'You must connect your Jetpack plugin to WordPress.com to use this feature.', 'jetpack' ) );
5432 - }
5433 -
5434 - $die_error = __( 'Someone may be trying to trick you into giving them access to your site. Or it could be you just encountered a bug :). Either way, please close this window.', 'jetpack' );
5435 -
5436 - // Host has encoded the request URL, probably as a result of a bad http => https redirect.
5437 - if ( self::is_redirect_encoded( esc_url_raw( wp_unslash( $_GET['redirect_to'] ) ) ) ) { // phpcs:ignore WordPress.Security.NonceVerification.Recommended, WordPress.Security.ValidatedSanitizedInput.InputNotValidated -- no site changes, we're erroring out.
5438 - /**
5439 - * Jetpack authorisation request Error.
5440 - *
5441 - * @since 7.5.0
5442 - */
5443 - do_action( 'jetpack_verify_api_authorization_request_error_double_encode' );
5444 - $die_error = sprintf(
5445 - /* translators: %s is a URL */
5446 - __( 'Your site is incorrectly double-encoding redirects from http to https. This is preventing Jetpack from authenticating your connection. Please visit our <a href="%s">support page</a> for details about how to resolve this.', 'jetpack' ),
5447 - Redirect::get_url( 'jetpack-support-double-encoding' )
5448 - );
5449 - }
5450 -
5451 - $jetpack_signature = new Jetpack_Signature( $token->secret, (int) Jetpack_Options::get_option( 'time_diff' ) );
5452 -
5453 - if ( isset( $environment['jetpack_json_api_original_query'] ) ) {
5454 - $signature = $jetpack_signature->sign_request(
5455 - $environment['token'],
5456 - $environment['timestamp'],
5457 - $environment['nonce'],
5458 - '',
5459 - 'GET',
5460 - $environment['jetpack_json_api_original_query'],
5461 - null,
5462 - true
5463 - );
5464 - } else {
5465 - $signature = $jetpack_signature->sign_current_request(
5466 - array(
5467 - 'body' => null,
5468 - 'method' => 'GET',
5469 - )
5470 - );
5471 - }
5472 -
5473 - if ( ! $signature ) {
5474 - wp_die(
5475 - wp_kses(
5476 - $die_error,
5477 - array(
5478 - 'a' => array(
5479 - 'href' => array(),
5480 - ),
5481 - )
5482 - )
5483 - );
5484 - } elseif ( is_wp_error( $signature ) ) {
5485 - wp_die(
5486 - wp_kses(
5487 - $die_error,
5488 - array(
5489 - 'a' => array(
5490 - 'href' => array(),
5491 - ),
5492 - )
5493 - )
5494 - );
5495 - } elseif ( ! hash_equals( $signature, $environment['signature'] ) ) {
5496 - if ( is_ssl() ) {
5497 - // If we signed an HTTP request on the Jetpack Servers, but got redirected to HTTPS by the local blog, check the HTTP signature as well.
5498 - $signature = $jetpack_signature->sign_current_request(
5499 - array(
5500 - 'scheme' => 'http',
5501 - 'body' => null,
5502 - 'method' => 'GET',
5503 - )
5504 - );
5505 - if ( ! $signature || is_wp_error( $signature ) || ! hash_equals( $signature, $environment['signature'] ) ) {
5506 - wp_die(
5507 - wp_kses(
5508 - $die_error,
5509 - array(
5510 - 'a' => array(
5511 - 'href' => array(),
5512 - ),
5513 - )
5514 - )
5515 - );
5516 - }
5517 - } else {
5518 - wp_die(
5519 - wp_kses(
5520 - $die_error,
5521 - array(
5522 - 'a' => array(
5523 - 'href' => array(),
5524 - ),
5525 - )
5526 - )
5527 - );
5528 - }
5529 - }
5530 -
5531 - $timestamp = (int) $environment['timestamp'];
5532 - $nonce = stripslashes( (string) $environment['nonce'] );
5533 -
5534 - if ( ! $this->connection_manager ) {
5535 - $this->connection_manager = new Connection_Manager();
5536 - }
5537 -
5538 - if ( ! ( new Nonce_Handler() )->add( $timestamp, $nonce ) ) {
5539 - // De-nonce the nonce, at least for 5 minutes.
5540 - // We have to reuse this nonce at least once (used the first time when the initial request is made, used a second time when the login form is POSTed).
5541 - $old_nonce_time = get_option( "jetpack_nonce_{$timestamp}_{$nonce}" );
5542 - if ( $old_nonce_time < time() - 300 ) {
5543 - wp_die( esc_html__( 'The authorization process expired. Please go back and try again.', 'jetpack' ) );
5544 - }
5545 - }
5546 -
5547 - $data = json_decode( base64_decode( stripslashes( $environment['data'] ) ) ); // phpcs:ignore WordPress.PHP.DiscouragedPHPFunctions.obfuscation_base64_decode
5548 - $data_filters = array(
5549 - 'state' => 'opaque',
5550 - 'client_id' => 'int',
5551 - 'client_title' => 'string',
5552 - 'client_image' => 'url',
5553 - );
5554 -
5555 - foreach ( $data_filters as $key => $sanitation ) {
5556 - if ( ! isset( $data->$key ) ) {
5557 - wp_die(
5558 - wp_kses(
5559 - $die_error,
5560 - array(
5561 - 'a' => array(
5562 - 'href' => array(),
5563 - ),
5564 - )
5565 - )
5566 - );
5567 - }
5568 -
5569 - switch ( $sanitation ) {
5570 - case 'int':
5571 - $this->json_api_authorization_request[ $key ] = (int) $data->$key;
5572 - break;
5573 - case 'opaque':
5574 - $this->json_api_authorization_request[ $key ] = (string) $data->$key;
5575 - break;
5576 - case 'string':
5577 - $this->json_api_authorization_request[ $key ] = wp_kses( (string) $data->$key, array() );
5578 - break;
5579 - case 'url':
5580 - $this->json_api_authorization_request[ $key ] = esc_url_raw( (string) $data->$key );
5581 - break;
5582 - }
5583 - }
5584 -
5585 - if ( empty( $this->json_api_authorization_request['client_id'] ) ) {
5586 - wp_die(
5587 - wp_kses(
5588 - $die_error,
5589 - array(
5590 - 'a' => array(
5591 - 'href' => array(),
5592 - ),
5593 - )
5594 - )
5595 - );
5596 - }
5591 + return ( new Authorize_Json_Api() )->verify_json_api_authorization_request( $environment );
5597 5592 }
5598 5593
5599 5594 /**
5600 5595 * HTML for the JSON API authorization notice.
5601 5596 *
5597 + * @deprecated 13.4
5598 + *
5602 5599 * @return string
5603 5600 */
5604 5601 public function login_message_json_api_authorization() {
5605 - return '<p class="message">' . sprintf(
5606 - /* translators: Name/image of the client requesting authorization */
5607 - esc_html__( '%s wants to access your site’s data. Log in to authorize that access.', 'jetpack' ),
5608 - '<strong>' . esc_html( $this->json_api_authorization_request['client_title'] ) . '</strong>'
5609 - ) . '<img src="' . esc_url( $this->json_api_authorization_request['client_image'] ) . '" /></p>';
5602 + _deprecated_function( __METHOD__, 'jetpack-13.4', 'Automattic\\Jetpack\\Connection\\Authorize_Json_Api::login_message_json_api_authorization' );
5603 +
5604 + return ( new Authorize_Json_Api() )->login_message_json_api_authorization();
5610 5605 }
5611 5606
5612 5607 /**
5613 5608 * Get $content_width, but with a <s>twist</s> filter.
@@ -5651,32 +5646,23 @@
5651 5646
5652 5647 /**
5653 5648 * Checks if the site is currently in an identity crisis.
5654 5649 *
5650 + * Now delegates to the Connection package so this matches what the heartbeat itself reports.
5651 + * Note the package guards on `Connection\Manager::is_connected()` where this used to guard on
5652 + * `Jetpack::is_connection_ready()`, so the `jetpack_is_connection_ready` filter no longer applies.
5653 + *
5654 + * @deprecated 16.2
5655 + *
5655 5656 * @return array|bool Array of options that are in a crisis, or false if everything is OK.
5656 5657 */
5657 5658 public static function check_identity_crisis() {
5658 - if ( ! self::is_connection_ready() || ( new Status() )->is_offline_mode() || ! Identity_Crisis::validate_sync_error_idc_option() ) {
5659 - return false;
5660 - }
5659 + _deprecated_function( __METHOD__, 'jetpack-16.2', 'Automattic\\Jetpack\\Identity_Crisis::check_identity_crisis' );
5661 5660
5662 - return Jetpack_Options::get_option( 'sync_error_idc' );
5661 + return Identity_Crisis::check_identity_crisis();
5663 5662 }
5664 5663
5665 5664 /**
5666 - * Checks whether the sync_error_idc option is valid or not, and if not, will do cleanup.
5667 - *
5668 - * @since 4.4.0
5669 - * @since 5.4.0 Do not call get_sync_error_idc_option() unless site is in IDC
5670 - *
5671 - * @return bool
5672 - */
5673 - public static function validate_sync_error_idc_option() {
5674 - _deprecated_function( __METHOD__, 'jetpack-9.8', '\\Automattic\\Jetpack\\Identity_Crisis::validate_sync_error_idc_option' );
5675 - return Identity_Crisis::validate_sync_error_idc_option();
5676 - }
5677 -
5678 - /**
5679 5665 * Normalizes a url by doing three things:
5680 5666 * - Strips protocol
5681 5667 * - Strips www
5682 5668 * - Adds a trailing slash
@@ -5697,35 +5683,8 @@
5697 5683 return $url;
5698 5684 }
5699 5685
5700 5686 /**
5701 - * Gets the value that is to be saved in the jetpack_sync_error_idc option.
5702 - *
5703 - * @since 4.4.0
5704 - * @since 5.4.0 Add transient since home/siteurl retrieved directly from DB
5705 - * @deprecated 9.8.0 Use \\Automattic\\Jetpack\\Identity_Crisis::get_sync_error_idc_option
5706 - *
5707 - * @param array $response HTTP response.
5708 - * @return array Array of the local urls, wpcom urls, and error code
5709 - */
5710 - public static function get_sync_error_idc_option( $response = array() ) {
5711 - _deprecated_function( __METHOD__, 'jetpack-9.8', '\\Automattic\\Jetpack\\Identity_Crisis::get_sync_error_idc_option' );
5712 - return Identity_Crisis::get_sync_error_idc_option( $response );
5713 - }
5714 -
5715 - /**
5716 - * Returns the value of the jetpack_sync_idc_optin filter, or constant.
5717 - * If set to true, the site will be put into staging mode.
5718 - *
5719 - * @since 4.3.2
5720 - * @return bool
5721 - */
5722 - public static function sync_idc_optin() {
5723 - _deprecated_function( __METHOD__, 'jetpack-9.8', '\\Automattic\\Jetpack\\Identity_Crisis::sync_idc_optin' );
5724 - return Identity_Crisis::sync_idc_optin();
5725 - }
5726 -
5727 - /**
5728 5687 * Maybe Use a .min.css stylesheet, maybe not.
5729 5688 *
5730 5689 * Hooks onto `plugins_url` filter at priority 1, and accepts all 3 args.
5731 5690 *
@@ -5746,9 +5705,9 @@
5746 5705 // Strip out the abspath.
5747 5706 $base = dirname( plugin_basename( $plugin ) );
5748 5707
5749 5708 // Short out on non-Jetpack assets.
5750 - if ( 'jetpack/' !== substr( $base, 0, 8 ) ) {
5709 + if ( ! str_starts_with( $base, 'jetpack/' ) ) {
5751 5710 return $url;
5752 5711 }
5753 5712
5754 5713 // File name parsing.
@@ -5788,15 +5747,15 @@
5788 5747 *
5789 5748 * @return mixed
5790 5749 */
5791 5750 public static function set_suffix_on_min( $src, $handle ) {
5792 - if ( false === strpos( $src, '.min.css' ) ) {
5751 + if ( ! is_string( $src ) || ! str_contains( $src, '.min.css' ) ) {
5793 5752 return $src;
5794 5753 }
5795 5754
5796 5755 if ( ! empty( self::$min_assets ) ) {
5797 5756 foreach ( self::$min_assets as $file => $path ) {
5798 - if ( false !== strpos( $src, $file ) ) {
5757 + if ( str_contains( $src, $file ) ) {
5799 5758 wp_style_add_data( $handle, 'suffix', '.min' );
5800 5759 return $src;
5801 5760 }
5802 5761 }
@@ -5826,8 +5785,10 @@
5826 5785 *
5827 5786 * Data passed in with the $data parameter will be available in the
5828 5787 * template file as $data['value']
5829 5788 *
5789 + * @html-template-var array $data
5790 + *
5830 5791 * @param string $template - Template file to load.
5831 5792 * @param array $data - Any data to pass along to the template.
5832 5793 * @return boolean - If template file was found.
5833 5794 **/
@@ -5845,8 +5806,19 @@
5845 5806 return false;
5846 5807 }
5847 5808
5848 5809 /**
5810 + * Register Jetpack-specific tests on the connection package's health test suite.
5811 + *
5812 + * @param \Automattic\Jetpack\Connection\Connection_Health_Tests $connection_tests The test suite instance.
5813 + */
5814 + public function register_jetpack_connection_tests( $connection_tests ) {
5815 + require_once JETPACK__PLUGIN_DIR . '_inc/lib/debugger/class-jetpack-cxn-tests.php';
5816 + $jetpack_tests = new Jetpack_Cxn_Tests();
5817 + $jetpack_tests->register_tests_on( $connection_tests );
5818 + }
5819 +
5820 + /**
5849 5821 * Throws warnings for deprecated hooks to be removed from Jetpack that cannot remain in the original place in the code.
5850 5822 */
5851 5823 public function deprecated_hooks() {
5852 5824 $filter_deprecated_list = array(
@@ -5973,13 +5945,8 @@
5973 5945 'jetpack_cache_plans' => array(
5974 5946 'replacement' => null,
5975 5947 'version' => 'jetpack-6.1.0',
5976 5948 ),
5977 -
5978 - 'jetpack_lazy_images_skip_image_with_atttributes' => array(
5979 - 'replacement' => 'jetpack_lazy_images_skip_image_with_attributes',
5980 - 'version' => 'jetpack-6.5.0',
5981 - ),
5982 5949 'jetpack_enable_site_verification' => array(
5983 5950 'replacement' => null,
5984 5951 'version' => 'jetpack-6.5.0',
5985 5952 ),
@@ -6063,8 +6030,22 @@
6063 6030 'jetpack_are_blogging_prompts_enabled' => array(
6064 6031 'replacement' => null,
6065 6032 'version' => 'jetpack-11.8.0',
6066 6033 ),
6034 + 'jetpack_subscriptions_modal_enabled' => array(
6035 + 'replacement' => null,
6036 + 'version' => 'jetpack-12.7.0',
6037 + ),
6038 + 'jetpack_pre_connection_prompt_helpers' => array(
6039 + 'replacement' => null,
6040 + 'version' => 'jetpack-13.2.0',
6041 + ),
6042 + 'jetpack_contact_form_use_package' => array(
6043 + 'replacement' => null,
6044 + 'version' => 'jetpack-13.4.0',
6045 + ),
6046 + // jetpack_implode_frontend_css has been removed, but is not listed here. The updated behavior is exactly the only use of the filter.
6047 + // We can reassess formally deprecating it here later; for now, it would be noise with no functional difference.
6067 6048 );
6068 6049
6069 6050 foreach ( $filter_deprecated_list as $tag => $args ) {
6070 6051 if ( has_filter( $tag ) ) {
@@ -6167,9 +6148,9 @@
6167 6148 foreach ( $matches as $match ) {
6168 6149 $url = trim( $match['path'], "'\" \t" );
6169 6150
6170 6151 // If this is a data url, we don't want to mess with it.
6171 - if ( 'data:' === substr( $url, 0, 5 ) ) {
6152 + if ( str_starts_with( $url, 'data:' ) ) {
6172 6153 continue;
6173 6154 }
6174 6155
6175 6156 // If this is an absolute or protocol-agnostic url,
@@ -6195,113 +6176,8 @@
6195 6176 return $css;
6196 6177 }
6197 6178
6198 6179 /**
6199 - * This methods removes all of the registered css files on the front end
6200 - * from Jetpack in favor of using a single file. In effect "imploding"
6201 - * all the files into one file.
6202 - *
6203 - * Pros:
6204 - * - Uses only ONE css asset connection instead of 15
6205 - * - Saves a minimum of 56k
6206 - * - Reduces server load
6207 - * - Reduces time to first painted byte
6208 - *
6209 - * Cons:
6210 - * - Loads css for ALL modules. However all selectors are prefixed so it
6211 - * should not cause any issues with themes.
6212 - * - Plugins/themes dequeuing styles no longer do anything. See
6213 - * jetpack_implode_frontend_css filter for a workaround
6214 - *
6215 - * For some situations developers may wish to disable css imploding and
6216 - * instead operate in legacy mode where each file loads seperately and
6217 - * can be edited individually or dequeued. This can be accomplished with
6218 - * the following line:
6219 - *
6220 - * add_filter( 'jetpack_implode_frontend_css', '__return_false' );
6221 - *
6222 - * @param bool $travis_test Is this a test run.
6223 - *
6224 - * @since 3.2
6225 - */
6226 - public function implode_frontend_css( $travis_test = false ) {
6227 - $do_implode = true;
6228 - if ( defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ) {
6229 - $do_implode = false;
6230 - }
6231 -
6232 - // Do not implode CSS when the page loads via the AMP plugin.
6233 - if ( class_exists( Jetpack_AMP_Support::class ) && Jetpack_AMP_Support::is_amp_request() ) {
6234 - $do_implode = false;
6235 - }
6236 -
6237 - /**
6238 - * Allow CSS to be concatenated into a single jetpack.css file.
6239 - *
6240 - * @since 3.2.0
6241 - *
6242 - * @param bool $do_implode Should CSS be concatenated? Default to true.
6243 - */
6244 - $do_implode = apply_filters( 'jetpack_implode_frontend_css', $do_implode );
6245 -
6246 - // Do not use the imploded file when default behavior was altered through the filter.
6247 - if ( ! $do_implode ) {
6248 - return;
6249 - }
6250 -
6251 - // We do not want to use the imploded file in dev mode, or if not connected.
6252 - if ( ( new Status() )->is_offline_mode() || ! self::is_connection_ready() ) {
6253 - if ( ! $travis_test ) {
6254 - return;
6255 - }
6256 - }
6257 -
6258 - // Do not use the imploded file if sharing css was dequeued via the sharing settings screen.
6259 - if ( get_option( 'sharedaddy_disable_resources' ) ) {
6260 - return;
6261 - }
6262 -
6263 - /*
6264 - * Now we assume Jetpack is connected and able to serve the single
6265 - * file.
6266 - *
6267 - * In the future there will be a check here to serve the file locally
6268 - * or potentially from the Jetpack CDN
6269 - *
6270 - * For now:
6271 - * - Enqueue a single imploded css file
6272 - * - Zero out the style_loader_tag for the bundled ones
6273 - * - Be happy, drink scotch
6274 - */
6275 -
6276 - add_filter( 'style_loader_tag', array( $this, 'concat_remove_style_loader_tag' ), 10, 2 );
6277 -
6278 - $version = self::is_development_version() ? filemtime( JETPACK__PLUGIN_DIR . 'css/jetpack.css' ) : JETPACK__VERSION;
6279 -
6280 - wp_enqueue_style( 'jetpack_css', plugins_url( 'css/jetpack.css', __FILE__ ), array(), $version );
6281 - wp_style_add_data( 'jetpack_css', 'rtl', 'replace' );
6282 - }
6283 -
6284 - /**
6285 - * Removes styles that are part of concatenated group.
6286 - *
6287 - * @param string $tag Style tag.
6288 - * @param string $handle Style handle.
6289 - *
6290 - * @return string
6291 - */
6292 - public function concat_remove_style_loader_tag( $tag, $handle ) {
6293 - if ( in_array( $handle, $this->concatenated_style_handles, true ) ) {
6294 - $tag = '';
6295 - if ( defined( 'WP_DEBUG' ) && WP_DEBUG ) {
6296 - $tag = '<!-- `' . esc_html( $handle ) . "` is included in the concatenated jetpack.css -->\r\n";
6297 - }
6298 - }
6299 -
6300 - return $tag;
6301 - }
6302 -
6303 - /**
6304 6180 * Check the heartbeat data
6305 6181 *
6306 6182 * Organizes the heartbeat data by severity. For example, if the site
6307 6183 * is in an ID crisis, it will be in the $filtered_data['bad'] array.
@@ -6313,9 +6189,20 @@
6313 6189 *
6314 6190 * $return array $filtered_data
6315 6191 */
6316 6192 public static function jetpack_check_heartbeat_data() {
6317 - $raw_data = Jetpack_Heartbeat::generate_stats_array();
6193 + /*
6194 + * Site environment stats (incl. wp-version/php-version checked below) now live in the Connection package,
6195 + * and the IDC stat is contributed by the Connection package's `jetpack_heartbeat_stats_array` filter
6196 + * callback. We rebuild the stat here rather than running that filter: the filter's callbacks have side
6197 + * effects (Connection\Manager::add_stats_to_heartbeat() consumes and deletes the `xmlrpc_errors` option)
6198 + * and return non-scalar values, neither of which is appropriate for this read-only diagnostic.
6199 + */
6200 + $raw_data = array_merge(
6201 + Jetpack_Heartbeat::generate_stats_array(),
6202 + Heartbeat::get_environment_stats(),
6203 + array( 'identitycrisis' => Identity_Crisis::check_identity_crisis() ? 'yes' : 'no' )
6204 + );
6318 6205
6319 6206 $good = array();
6320 6207 $caution = array();
6321 6208 $bad = array();
@@ -6381,23 +6268,8 @@
6381 6268 return Jetpack_Options::get_options_for_reset();
6382 6269 }
6383 6270
6384 6271 /**
6385 - * Strip http:// or https:// from a url, replaces forward slash with ::,
6386 - * so we can bring them directly to their site in calypso.
6387 - *
6388 - * @deprecated 9.2.0 Use Automattic\Jetpack\Status::get_site_suffix
6389 - *
6390 - * @param string $url URL.
6391 - * @return string url without the guff.
6392 - */
6393 - public static function build_raw_urls( $url ) {
6394 - _deprecated_function( __METHOD__, 'jetpack-9.2.0', 'Automattic\Jetpack\Status::get_site_suffix' );
6395 -
6396 - return ( new Status() )->get_site_suffix( $url );
6397 - }
6398 -
6399 - /**
6400 6272 * Get the user's meta box order.
6401 6273 *
6402 6274 * @param array $sorted Value for the user's option.
6403 6275 * @return mixed
@@ -6407,9 +6279,9 @@
6407 6279 return $sorted;
6408 6280 }
6409 6281
6410 6282 foreach ( $sorted as $box_context => $ids ) {
6411 - if ( false === strpos( $ids, 'dashboard_stats' ) ) {
6283 + if ( ! str_contains( $ids, 'dashboard_stats' ) ) {
6412 6284 // If the old id isn't anywhere in the ids, don't bother exploding and fail out.
6413 6285 continue;
6414 6286 }
6415 6287
@@ -6426,68 +6298,9 @@
6426 6298 }
6427 6299
6428 6300 return $sorted;
6429 6301 }
6430 -
6431 6302 /**
6432 - * Adds a "blank" column in the user admin table to display indication of user connection.
6433 - *
6434 - * @param array $columns User list table columns.
6435 - *
6436 - * @return array
6437 - */
6438 - public function jetpack_icon_user_connected( $columns ) {
6439 - $columns['user_jetpack'] = '';
6440 - return $columns;
6441 - }
6442 -
6443 - /**
6444 - * Show Jetpack icon if the user is linked.
6445 - *
6446 - * @param string $val HTML for the icon.
6447 - * @param string $col User list table column.
6448 - * @param int $user_id User ID.
6449 - *
6450 - * @return string
6451 - */
6452 - public function jetpack_show_user_connected_icon( $val, $col, $user_id ) {
6453 - if ( 'user_jetpack' === $col && self::connection()->is_user_connected( $user_id ) ) {
6454 - $jetpack_logo = new Jetpack_Logo();
6455 - $emblem_html = sprintf(
6456 - '<a title="%1$s" class="jp-emblem-user-admin">%2$s</a>',
6457 - esc_attr__( 'This user is linked and ready to fly with Jetpack.', 'jetpack' ),
6458 - $jetpack_logo->get_jp_emblem()
6459 - );
6460 - return $emblem_html;
6461 - }
6462 -
6463 - return $val;
6464 - }
6465 -
6466 - /**
6467 - * Style the Jetpack user column
6468 - */
6469 - public function jetpack_user_col_style() {
6470 - global $current_screen;
6471 - if ( ! empty( $current_screen->base ) && 'users' === $current_screen->base ) {
6472 - ?>
6473 - <style>
6474 - .fixed .column-user_jetpack {
6475 - width: 21px;
6476 - }
6477 - .jp-emblem-user-admin svg {
6478 - width: 20px;
6479 - height: 20px;
6480 - }
6481 - .jp-emblem-user-admin path {
6482 - fill: #069e08;
6483 - }
6484 - </style>
6485 - <?php
6486 - }
6487 - }
6488 -
6489 - /**
6490 6303 * Checks if Akismet is active and working.
6491 6304 *
6492 6305 * We dropped support for Akismet 3.0 with Jetpack 6.1.1 while introducing a check for an Akismet valid key
6493 6306 * that implied usage of methods present since more recent version.
@@ -6648,13 +6461,20 @@
6648 6461 }
6649 6462 }
6650 6463
6651 6464 /**
6652 - * Returns a boolean for whether backups UI should be displayed or not.
6465 + * Whether UI for backups should be displayed.
6653 6466 *
6467 + * On WPCom platforms this is gated on the backups-self-serve site feature.
6468 + * On self-hosted Jetpack sites it falls back to the jetpack_show_backups filter.
6469 + *
6654 6470 * @return bool Should backups UI be displayed?
6655 6471 */
6656 6472 public static function show_backups_ui() {
6473 + if ( ( new \Automattic\Jetpack\Status\Host() )->is_wpcom_platform() ) {
6474 + return function_exists( 'wpcom_site_has_feature' ) && wpcom_site_has_feature( 'backups-self-serve' );
6475 + }
6476 +
6657 6477 /**
6658 6478 * Whether UI for backups should be displayed.
6659 6479 *
6660 6480 * @since 6.5.0
@@ -6664,8 +6484,24 @@
6664 6484 return self::is_plugin_active( 'vaultpress/vaultpress.php' ) || apply_filters( 'jetpack_show_backups', true );
6665 6485 }
6666 6486
6667 6487 /**
6488 + * Whether UI for security scanning should be displayed.
6489 + *
6490 + * On WPCom platforms this is gated on the scan-self-serve site feature.
6491 + * On self-hosted Jetpack sites it always returns true.
6492 + *
6493 + * @return bool Should scan UI be displayed?
6494 + */
6495 + public static function show_scan_ui() {
6496 + if ( ( new \Automattic\Jetpack\Status\Host() )->is_wpcom_platform() ) {
6497 + return function_exists( 'wpcom_site_has_feature' ) && wpcom_site_has_feature( 'scan-self-serve' );
6498 + }
6499 +
6500 + return true;
6501 + }
6502 +
6503 + /**
6668 6504 * Clean leftoveruser meta.
6669 6505 *
6670 6506 * Delete Jetpack-related user meta when it is no longer needed.
6671 6507 *
@@ -6737,8 +6573,40 @@
6737 6573 'url' => Redirect::get_url( 'jetpack-faq-backup-disclaimer' ),
6738 6574 ),
6739 6575 );
6740 6576
6577 + $products['creator'] = array(
6578 + 'title' => __( 'Jetpack Creator', 'jetpack' ),
6579 + 'slug' => 'jetpack_creator_yearly',
6580 + 'description' => __( 'Craft stunning content, boost your subscriber base, and monetize your online presence.', 'jetpack' ),
6581 + 'show_promotion' => true,
6582 + 'discount_percent' => 50,
6583 + 'included_in_plans' => array( 'complete' ),
6584 + 'features' => array(
6585 + _x( 'Unlimited subscriber imports', 'Creator Product Feature', 'jetpack' ),
6586 + _x( 'Earn more from your content', 'Creator Product Feature', 'jetpack' ),
6587 + _x( 'Accept payments with PayPal', 'Creator Product Feature', 'jetpack' ),
6588 + _x( 'Increase earnings with WordAds', 'Creator Product Feature', 'jetpack' ),
6589 + ),
6590 + );
6591 +
6592 + $products['growth'] = array(
6593 + 'title' => __( 'Jetpack Growth', 'jetpack' ),
6594 + 'slug' => 'jetpack_growth_yearly',
6595 + 'description' => __( 'Essential tools to help you grow your audience, track visitor engagement, and turn leads into loyal customers and advocates.', 'jetpack' ),
6596 + 'show_promotion' => true,
6597 + 'discount_percent' => 50,
6598 + 'included_in_plans' => array( 'complete' ),
6599 + 'features' => array(
6600 + _x( 'Jetpack Social', 'Growth Product Feature', 'jetpack' ),
6601 + _x( 'Jetpack Stats (10K site views, upgradeable)', 'Growth Product Feature', 'jetpack' ),
6602 + _x( 'Unlimited subscriber imports', 'Growth Product Feature', 'jetpack' ),
6603 + _x( 'Earn more from your content', 'Growth Product Feature', 'jetpack' ),
6604 + _x( 'Accept payments with PayPal', 'Growth Product Feature', 'jetpack' ),
6605 + _x( 'Increase earnings with WordAds', 'Growth Product Feature', 'jetpack' ),
6606 + ),
6607 + );
6608 +
6741 6609 $products['scan'] = array(
6742 6610 'title' => __( 'Jetpack Scan', 'jetpack' ),
6743 6611 'slug' => 'jetpack_scan',
6744 6612 'description' => __( 'Automatic scanning and one-click fixes keep your site one step ahead of security threats and malware.', 'jetpack' ),
@@ -6862,6 +6730,108 @@
6862 6730 return false;
6863 6731 }
6864 6732
6865 6733 return true;
6734 + }
6735 +
6736 + /**
6737 + * Add 5-star review link on the Jetpack Plugin meta, in the plugins list table (on the plugins page).
6738 + *
6739 + * @param array $plugin_meta An array of the plugin's metadata.
6740 + * @param string $plugin_file Path to the plugin file.
6741 + *
6742 + * @return array $plugin_meta An array of the plugin's metadata.
6743 + */
6744 + public function add_5_star_review_link( $plugin_meta, $plugin_file ) {
6745 + if ( $plugin_file !== 'jetpack/jetpack.php' ) {
6746 + return $plugin_meta;
6747 + }
6748 +
6749 + $u = get_current_user_id();
6750 + $site = get_site_url();
6751 +
6752 + $plugin_meta[] = '<a href="https://jetpack.com/redirect?source=jetpack-plugin-review&site=' . esc_attr( $site ) . '&u=' . esc_attr( $u ) . '" target="_blank" rel="noopener noreferrer" title="' . esc_attr__( 'Rate Jetpack on WordPress.org', 'jetpack' ) . '" style="color: #ffb900">'
6753 + . str_repeat( '<span class="dashicons dashicons-star-filled" style="font-size: 16px; width:16px; height: 16px"></span>', 5 )
6754 + . '</a>';
6755 +
6756 + return $plugin_meta;
6757 + }
6758 +
6759 + /**
6760 + * Lazy instantiation of the Plugin_Tracking object.
6761 + *
6762 + * @since 13.9
6763 + *
6764 + * @return void
6765 + */
6766 + public function initialize_tracking() {
6767 + if ( did_action( 'jetpack_initialize_tracking' ) > 1 ) {
6768 + // Only need to run once.
6769 + return;
6770 + }
6771 +
6772 + if ( ( new Tracking( 'jetpack', $this->connection_manager ) )->should_enable_tracking( new Terms_Of_Service(), new Status() ) || static::is_connection_ready() ) {
6773 + ( new Plugin_Tracking() )->init();
6774 + }
6775 + }
6776 +
6777 + /**
6778 + * Run the "initialize tracking" hook.
6779 + *
6780 + * @since 13.9
6781 + */
6782 + public function run_initialize_tracking_action() {
6783 + /**
6784 + * Fires when the tracking needs to be initialized.
6785 + * Doesn't necessarily mean that will actually happen, depends if the 'jetpack_tos_agreed' option is set.
6786 + *
6787 + * @since 13.9
6788 + */
6789 + do_action( 'jetpack_initialize_tracking' );
6790 + }
6791 +
6792 + /**
6793 + * Initialize REST jsonAPI if needed.
6794 + *
6795 + * @return void
6796 + */
6797 + public function maybe_initialize_rest_jsonapi() {
6798 + // phpcs:ignore WordPress.Security.NonceVerification.Recommended
6799 + if ( ! empty( $_GET['jsonapi'] ) && ( ! defined( 'IS_WPCOM' ) || ! IS_WPCOM ) ) {
6800 + require_once ABSPATH . 'wp-admin/includes/admin.php'; // JSON API relies on WP functionality not autoloaded in REST.
6801 +
6802 + define( 'WPCOM_JSON_API__BASE', 'public-api.wordpress.com/rest/v1' );
6803 + require_once JETPACK__PLUGIN_DIR . 'class.json-api-endpoints.php';
6804 + }
6805 + }
6806 +
6807 + /**
6808 + * Run plugin post-activation actions if we need to.
6809 + *
6810 + * @return void
6811 + */
6812 + private function plugin_post_activation() {
6813 + if ( ( new Status() )->is_offline_mode() ) {
6814 + return;
6815 + }
6816 +
6817 + if ( get_transient( 'activated_jetpack' ) ) {
6818 + delete_transient( 'activated_jetpack' );
6819 +
6820 + if ( ( new Host() )->is_woa_site() ) {
6821 + $redirect_url = static::admin_url( 'page=jetpack' );
6822 + } elseif ( is_network_admin() ) {
6823 + $redirect_url = admin_url( 'network/admin.php?page=jetpack' );
6824 + } elseif ( get_transient( 'my_jetpack_product_activated' ) ) {
6825 + // don't redirect if this is an activation that just came from My Jetpack
6826 + // My Jetpack has its own set of post-activation redirects
6827 + return;
6828 + } elseif ( My_Jetpack_Initializer::should_initialize() ) {
6829 + $redirect_url = static::admin_url( 'page=my-jetpack' );
6830 + } else {
6831 + $redirect_url = static::admin_url( 'page=jetpack' );
6832 + }
6833 +
6834 + wp_safe_redirect( $redirect_url );
6835 + }
6866 6836 }
6867 6837 }