PluginProbe
Jetpack – WP Security, Backup, Speed, & Growth / 16.3-a.1
Jetpack – WP Security, Backup, Speed, & Growth v16.3-a.1
16.3-a.3 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 All 504 releases
← All changes | _inc/lib/core-api/class.jetpack-core-api-module-endpoints.php +145 -271 13.6.216.3-a.1 View file →
@@ -6,9 +6,8 @@
6 6 */
7 7
8 8 use Automattic\Jetpack\Connection\REST_Connector;
9 9 use Automattic\Jetpack\Current_Plan as Jetpack_Plan;
10 -use Automattic\Jetpack\Plugins_Installer;
11 10 use Automattic\Jetpack\Stats\WPCOM_Stats;
12 11 use Automattic\Jetpack\Stats_Admin\Main as Stats_Admin_Main;
13 12 use Automattic\Jetpack\Status;
14 13 use Automattic\Jetpack\Waf\Brute_Force_Protection\Brute_Force_Protection;
@@ -13,8 +12,12 @@
13 12 use Automattic\Jetpack\Status;
14 13 use Automattic\Jetpack\Waf\Brute_Force_Protection\Brute_Force_Protection;
15 14 use Automattic\Jetpack\Waf\Brute_Force_Protection\Brute_Force_Protection_Shared_Functions;
16 15
16 +if ( ! defined( 'ABSPATH' ) ) {
17 + exit( 0 );
18 +}
19 +
17 20 /**
18 21 * This is the base class for every Core API endpoint Jetpack uses.
19 22 */
20 23 class Jetpack_Core_API_Module_Toggle_Endpoint extends Jetpack_Core_API_XMLRPC_Consumer_Endpoint {
@@ -402,15 +405,17 @@
402 405 $module['activated'] = false;
403 406 }
404 407
405 408 $i18n = jetpack_get_module_i18n( $request['slug'] );
406 - if ( isset( $module['name'] ) ) {
407 - $module['name'] = $i18n['name'];
409 + if ( $i18n ) {
410 + if ( isset( $module['name'] ) ) {
411 + $module['name'] = $i18n['name'];
412 + }
413 + if ( isset( $module['description'] ) ) {
414 + $module['description'] = $i18n['description'];
415 + $module['short_description'] = $i18n['description'];
416 + }
408 417 }
409 - if ( isset( $module['description'] ) ) {
410 - $module['description'] = $i18n['description'];
411 - $module['short_description'] = $i18n['description'];
412 - }
413 418 if ( isset( $module['module_tags'] ) ) {
414 419 $module['module_tags'] = array_map( 'jetpack_get_module_i18n_tag', $module['module_tags'] );
415 420 }
416 421
@@ -447,9 +452,11 @@
447 452 $response[ $module ] = Jetpack::is_module_active( $module );
448 453 }
449 454 }
450 455
451 - $settings = Jetpack_Core_Json_Api_Endpoints::get_updateable_data_list( 'settings' );
456 + $settings = Jetpack_Core_Json_Api_Endpoints::filter_options_for_response(
457 + Jetpack_Core_Json_Api_Endpoints::get_updateable_data_list( 'settings' )
458 + );
452 459
453 460 if ( ! function_exists( 'is_plugin_active' ) ) {
454 461 require_once ABSPATH . 'wp-admin/includes/plugin.php';
455 462 }
@@ -485,24 +492,8 @@
485 492 $response[ $setting ] = class_exists( 'Akismet' ) ? Akismet::get_api_key() : '';
486 493 }
487 494 break;
488 495
489 - case 'onboarding':
490 - $business_address = get_option( 'jpo_business_address' );
491 - $business_address = is_array( $business_address ) ? array_map( array( $this, 'decode_special_characters' ), $business_address ) : $business_address;
492 -
493 - $response[ $setting ] = array(
494 - 'siteTitle' => $this->decode_special_characters( get_option( 'blogname' ) ),
495 - 'siteDescription' => $this->decode_special_characters( get_option( 'blogdescription' ) ),
496 - 'siteType' => get_option( 'jpo_site_type' ),
497 - 'homepageFormat' => get_option( 'jpo_homepage_format' ),
498 - 'addContactForm' => (int) get_option( 'jpo_contact_page' ),
499 - 'businessAddress' => $business_address,
500 - 'installWooCommerce' => is_plugin_active( 'woocommerce/woocommerce.php' ),
501 - 'stats' => Jetpack::is_connection_ready() && Jetpack::is_module_active( 'stats' ),
502 - );
503 - break;
504 -
505 496 case 'search_auto_config':
506 497 // Only writable.
507 498 $response[ $setting ] = 1;
508 499 break;
@@ -507,9 +498,9 @@
507 498 $response[ $setting ] = 1;
508 499 break;
509 500
510 501 default:
511 - $default = isset( $settings[ $setting ]['default'] ) ? $settings[ $setting ]['default'] : false;
502 + $default = $settings[ $setting ]['default'] ?? false;
512 503 $response[ $setting ] = Jetpack_Core_Json_Api_Endpoints::cast_value( get_option( $setting, $default ), $settings[ $setting ] );
513 504 break;
514 505 }
515 506 }
@@ -515,25 +506,23 @@
515 506 }
516 507
517 508 $response['akismet'] = is_plugin_active( 'akismet/akismet.php' );
518 509
510 + require_once JETPACK__PLUGIN_DIR . '/modules/memberships/class-jetpack-memberships.php';
511 + if ( class_exists( 'Jetpack_Memberships' ) ) {
512 + $response['newsletter_has_active_plan'] = count( Jetpack_Memberships::get_all_newsletter_plan_ids( false ) ) > 0;
513 + }
514 +
515 + // Make sure we are returning a consistent type
516 + if ( ! class_exists( 'Jetpack_Newsletter_Category_Helper' ) ) {
517 + require_once JETPACK__PLUGIN_DIR . '_inc/lib/class-jetpack-newsletter-category-helper.php';
518 + }
519 + $response['wpcom_newsletter_categories'] = Jetpack_Newsletter_Category_Helper::get_category_ids();
520 +
519 521 return rest_ensure_response( $response );
520 522 }
521 523
522 524 /**
523 - * Decode the special HTML characters in a certain value.
524 - *
525 - * @since 5.8
526 - *
527 - * @param string $value Value to decode.
528 - *
529 - * @return string Value with decoded HTML characters.
530 - */
531 - private function decode_special_characters( $value ) {
532 - return (string) htmlspecialchars_decode( $value, ENT_QUOTES );
533 - }
534 -
535 - /**
536 525 * If it's a valid Jetpack module and configuration parameters have been sent, update it.
537 526 *
538 527 * @since 4.3.0
539 528 *
@@ -564,9 +553,9 @@
564 553 }
565 554
566 555 /*
567 556 * Get parameters to update the module.
568 - * We can not simply use $request->get_params() because when we registered this route,
557 + * We cannot simply use $request->get_params() because when we registered this route,
569 558 * we are adding the entire output of Jetpack_Core_Json_Api_Endpoints::get_updateable_data_list()
570 559 * to the current request object's params. We are interested in body of the actual request.
571 560 * This may be JSON:
572 561 */
@@ -651,13 +640,22 @@
651 640 if ( ! $updated ) {
652 641 $not_updated[ $option ] = $error;
653 642 }
654 643
644 + if ( $updated ) {
645 + // Return the module state.
646 + $response[ $option ] = $value;
647 + }
648 +
655 649 // Remove module from list so we don't go through it again.
656 650 unset( $params[ $option ] );
657 651 }
658 652 }
659 653
654 + if ( ! class_exists( 'Jetpack_Newsletter_Category_Helper' ) ) {
655 + require_once JETPACK__PLUGIN_DIR . '_inc/lib/class-jetpack-newsletter-category-helper.php';
656 + }
657 +
660 658 foreach ( $params as $option => $value ) {
661 659
662 660 // Used if there was an error. Can be overwritten with specific error messages.
663 661 $error = '';
@@ -667,8 +665,14 @@
667 665
668 666 // Get option attributes, including the group it belongs to.
669 667 $option_attrs = $options[ $option ];
670 668
669 + // Everything outside the Post by Email group requires the admin capability.
670 + if ( 'post-by-email' !== $option_attrs['jp_group'] && ! current_user_can( 'jetpack_configure_modules' ) ) {
671 + $not_updated[ $option ] = REST_Connector::get_user_permissions_error_msg();
672 + continue;
673 + }
674 +
671 675 // If this is a module option and the related module isn't active for any reason, continue with the next one.
672 676 if ( 'settings' !== $option_attrs['jp_group'] ) {
673 677 if ( ! Jetpack::is_module( $option_attrs['jp_group'] ) ) {
674 678 $not_updated[ $option ] = esc_html__( 'The requested Jetpack module was not found.', 'jetpack' );
@@ -719,8 +723,13 @@
719 723 $updated = get_option( 'WPLANG' ) === $language ? true : update_option( 'WPLANG', $language );
720 724 break;
721 725
722 726 case 'monitor_receive_notifications':
727 + if ( ! class_exists( 'Jetpack_Monitor' ) ) {
728 + $updated = false;
729 + break;
730 + }
731 +
723 732 $monitor = new Jetpack_Monitor();
724 733
725 734 // If we got true as response, consider it done.
726 735 $updated = true === $monitor->update_option_receive_jetpack_monitor_notification( $value );
@@ -726,8 +735,13 @@
726 735 $updated = true === $monitor->update_option_receive_jetpack_monitor_notification( $value );
727 736 break;
728 737
729 738 case 'post_by_email_address':
739 + if ( ! class_exists( 'Jetpack_Post_By_Email' ) ) {
740 + $updated = false;
741 + break;
742 + }
743 +
730 744 $result = Jetpack_Post_By_Email::init()->process_api_request( $value );
731 745
732 746 // If we got an email address (create or regenerate) or 1 (delete), consider it done.
733 747 if ( is_string( $result ) && preg_match( '/[a-z0-9]+@post.wordpress.com/', $result ) ) {
@@ -748,9 +762,9 @@
748 762 $result = false;
749 763 }
750 764
751 765 // If we got one of Protect keys, consider it done.
752 - if ( preg_match( '/[a-z0-9]{40,}/i', $result ) ) {
766 + if ( is_string( $result ) && preg_match( '/[a-z0-9]{40,}/i', $result ) ) {
753 767 $response[ $option ] = $result;
754 768 $updated = true;
755 769 }
756 770 break;
@@ -814,8 +828,17 @@
814 828 ? update_option( 'verification_services_codes', $grouped_options )
815 829 : true;
816 830 break;
817 831
832 + case Jetpack_SEO_Utils::FRONT_PAGE_META_OPTION:
833 + Jetpack_SEO_Utils::update_front_page_meta_description( $value );
834 + $response[ $option ] = Jetpack_SEO_Utils::get_front_page_meta_description();
835 + // The helper returns an empty string for a successful clear or
836 + // same-value write, so use its authoritative getter for the response
837 + // and treat every valid request reaching this switch as handled.
838 + $updated = true;
839 + break;
840 +
818 841 case 'sharing_services':
819 842 if ( ! class_exists( 'Sharing_Service' ) && ! include_once JETPACK__PLUGIN_DIR . 'modules/sharedaddy/sharing-service.php' ) {
820 843 break;
821 844 }
@@ -963,30 +986,14 @@
963 986 ? update_option( $option, (bool) $value )
964 987 : true;
965 988 break;
966 989
967 - case 'onboarding':
968 - require_once JETPACK__PLUGIN_DIR . '_inc/lib/widgets.php';
969 - // Break apart and set Jetpack onboarding options.
970 - $result = $this->process_onboarding( (array) $value );
971 - if ( empty( $result ) ) {
972 - $updated = true;
973 - } else {
974 - $error = sprintf(
975 - /* Translators: placeholder is a list of error codes. */
976 - esc_html__( 'Onboarding failed to process: %s', 'jetpack' ),
977 - $result
978 - );
979 - $updated = false;
980 - }
981 - break;
982 -
983 990 case 'jetpack_subscriptions_reply_to':
984 991 // If option value was the same, consider it done.
985 992 require_once JETPACK__PLUGIN_DIR . 'modules/subscriptions/class-settings.php';
986 993 $sub_value = Automattic\Jetpack\Modules\Subscriptions\Settings::is_valid_reply_to( $value )
987 994 ? $value
988 - : Automattic\Jetpack\Modules\Subscriptions\Settings::get_default_reply_to();
995 + : Automattic\Jetpack\Modules\Subscriptions\Settings::$default_reply_to;
989 996
990 997 $updated = (string) get_option( $option ) !== (string) $sub_value ? update_option( $option, $sub_value ) : true;
991 998 break;
992 999 case 'jetpack_subscriptions_from_name':
@@ -998,8 +1005,9 @@
998 1005 case 'stb_enabled':
999 1006 case 'stc_enabled':
1000 1007 case 'sm_enabled':
1001 1008 case 'jetpack_subscribe_overlay_enabled':
1009 + case 'jetpack_subscribe_floating_button_enabled':
1002 1010 case 'wpcom_newsletter_categories_enabled':
1003 1011 case 'wpcom_featured_image_in_email':
1004 1012 case 'jetpack_gravatar_in_email':
1005 1013 case 'jetpack_author_in_email':
@@ -1021,9 +1029,9 @@
1021 1029 if ( ! is_array( $value ) ) {
1022 1030 break;
1023 1031 }
1024 1032
1025 - $allowed_keys = array( 'invitation', 'comment_follow', 'welcome' );
1033 + $allowed_keys = array( 'invitation', 'comment_follow', 'welcome', 'subscribe_modal_heading', 'free_tier_description', 'hide_free_tier' );
1026 1034 $filtered_value = array_filter(
1027 1035 $value,
1028 1036 function ( $key ) use ( $allowed_keys ) {
1029 1037 return in_array( $key, $allowed_keys, true );
@@ -1034,8 +1042,17 @@
1034 1042 if ( empty( $filtered_value ) ) {
1035 1043 break;
1036 1044 }
1037 1045
1046 + // `hide_free_tier` is a boolean flag, so pull it out before the HTML
1047 + // sanitization below (which expects strings). Sanitize it with
1048 + // rest_sanitize_boolean() so stringy booleans (e.g. "false", "0")
1049 + // are interpreted correctly rather than being treated as truthy by a
1050 + // plain `! empty()`.
1051 + $has_hide_free_tier = array_key_exists( 'hide_free_tier', $filtered_value );
1052 + $hide_free_tier = $has_hide_free_tier && rest_sanitize_boolean( $filtered_value['hide_free_tier'] );
1053 + unset( $filtered_value['hide_free_tier'] );
1054 +
1038 1055 array_walk_recursive(
1039 1056 $filtered_value,
1040 1057 function ( &$value ) {
1041 1058 $value = wp_kses(
@@ -1040,9 +1057,15 @@
1040 1057 function ( &$value ) {
1041 1058 $value = wp_kses(
1042 1059 $value,
1043 1060 array(
1044 - 'a' => array(
1061 + 'ul' => array(),
1062 + 'li' => array(),
1063 + 'p' => array(),
1064 + 'strong' => array(),
1065 + 'ol' => array(),
1066 + 'em' => array(),
1067 + 'a' => array(
1045 1068 'href' => array(),
1046 1069 ),
1047 1070 )
1048 1071 );
@@ -1048,8 +1071,33 @@
1048 1071 );
1049 1072 }
1050 1073 );
1051 1074
1075 + // Normalize whitespace-only `subscribe_modal_heading` input to empty so
1076 + // the modal template's `empty()` fallback fires. PHP's `empty()` treats
1077 + // `" "` as non-empty, which would otherwise render a blank heading.
1078 + if ( isset( $filtered_value['subscribe_modal_heading'] ) ) {
1079 + $filtered_value['subscribe_modal_heading'] = trim( $filtered_value['subscribe_modal_heading'] );
1080 + }
1081 +
1082 + // The free tier description is stored as plain markdown source, so strip
1083 + // all HTML and cap its length to match the paid-tier description field.
1084 + // WordPress core guarantees mb_substr() (polyfilled in wp-includes/compat.php
1085 + // when the mbstring extension is unavailable), so it's safe to use directly.
1086 + // A JSON payload could supply a non-scalar (array/object) for this field,
1087 + // which would fatal in wp_kses()/mb_substr() on PHP 8+, so drop invalid values.
1088 + if ( isset( $filtered_value['free_tier_description'] ) ) {
1089 + if ( is_scalar( $filtered_value['free_tier_description'] ) ) {
1090 + $filtered_value['free_tier_description'] = mb_substr( wp_kses( (string) $filtered_value['free_tier_description'], array() ), 0, 500 );
1091 + } else {
1092 + unset( $filtered_value['free_tier_description'] );
1093 + }
1094 + }
1095 +
1096 + if ( $has_hide_free_tier ) {
1097 + $filtered_value['hide_free_tier'] = $hide_free_tier;
1098 + }
1099 +
1052 1100 $old_subscription_options = get_option( 'subscription_options' );
1053 1101 if ( ! is_array( $old_subscription_options ) ) {
1054 1102 $old_subscription_options = array();
1055 1103 }
@@ -1065,8 +1113,30 @@
1065 1113 $error = esc_html__( 'Subscription Options failed to process.', 'jetpack' );
1066 1114 }
1067 1115 break;
1068 1116
1117 + case Jetpack_Newsletter_Category_Helper::NEWSLETTER_CATEGORIES_OPTION:
1118 + if ( ! is_array( $value ) || empty( $value ) ) {
1119 + $updated = true;
1120 + break;
1121 + }
1122 +
1123 + // If we are already current, do nothing
1124 + $current_value = Jetpack_Newsletter_Category_Helper::get_category_ids();
1125 + if ( $value === $current_value ) {
1126 + $updated = true;
1127 + break;
1128 + }
1129 +
1130 + if ( Jetpack_Newsletter_Category_Helper::save_category_ids( $value ) ) {
1131 + $updated = true;
1132 + } else {
1133 + $updated = false;
1134 + $error = esc_html__( 'Newsletter category did not update.', 'jetpack' );
1135 + }
1136 +
1137 + break;
1138 +
1069 1139 default:
1070 1140 // Boolean values are stored as 1 or 0.
1071 1141 if ( isset( $options[ $option ]['type'] ) && 'boolean' === $options[ $option ]['type'] ) {
1072 1142 $value = (int) $value;
@@ -1072,9 +1142,9 @@
1072 1142 $value = (int) $value;
1073 1143 }
1074 1144
1075 1145 // If option value was the same as it's current value, or it's default, consider it done.
1076 - $default = isset( $options[ $option ]['default'] ) ? $options[ $option ]['default'] : false;
1146 + $default = $options[ $option ]['default'] ?? false;
1077 1147 $updated = get_option( $option, $default ) != $value // phpcs:ignore Universal.Operators.StrictComparisons.LooseNotEqual -- ensure we support scalars or strings saved by update_option.
1078 1148 ? update_option( $option, $value )
1079 1149 : true;
1080 1150 break;
@@ -1128,218 +1198,30 @@
1128 1198 * Perform tasks in the site based on onboarding choices.
1129 1199 *
1130 1200 * @since 5.4.0
1131 1201 *
1202 + * @deprecated since 13.9
1203 + *
1132 1204 * @param array $data Onboarding choices made by user.
1133 1205 *
1134 1206 * @return string Result of onboarding processing and, if there is one, an error message.
1135 1207 */
1136 - private function process_onboarding( $data ) {
1137 - if ( isset( $data['end'] ) && $data['end'] ) {
1138 - return Jetpack::invalidate_onboarding_token()
1139 - ? ''
1140 - : esc_html__( "The onboarding token couldn't be deleted.", 'jetpack' );
1141 - }
1142 -
1143 - $error = array();
1144 -
1145 - if ( ! empty( $data['siteTitle'] ) ) {
1146 - // If option value was the same, consider it done.
1147 - if ( ! (
1148 - update_option( 'blogname', $data['siteTitle'] )
1149 - || get_option( 'blogname' ) === $data['siteTitle']
1150 - ) ) {
1151 - $error[] = 'siteTitle';
1152 - }
1153 - }
1154 -
1155 - if ( isset( $data['siteDescription'] ) ) {
1156 - // If option value was the same, consider it done.
1157 - if ( ! (
1158 - update_option( 'blogdescription', $data['siteDescription'] )
1159 - || get_option( 'blogdescription' ) === $data['siteDescription']
1160 - ) ) {
1161 - $error[] = 'siteDescription';
1162 - }
1163 - }
1164 -
1165 - $site_title = get_option( 'blogname' );
1166 - $author = get_current_user_id() || 1;
1167 -
1168 - if ( ! empty( $data['siteType'] ) ) {
1169 - if ( ! (
1170 - update_option( 'jpo_site_type', $data['siteType'] )
1171 - || get_option( 'jpo_site_type' ) === $data['siteType']
1172 - ) ) {
1173 - $error[] = 'siteType';
1174 - }
1175 - }
1176 -
1177 - if ( isset( $data['homepageFormat'] ) ) {
1178 - /*
1179 - * If $data['homepageFormat'] is 'posts',
1180 - * we have nothing to do since it's WordPress' default
1181 - * if it exists, just update
1182 - */
1183 - $homepage_format = get_option( 'jpo_homepage_format' );
1184 - if ( ! $homepage_format || $homepage_format !== $data['homepageFormat'] ) {
1185 - if ( 'page' === $data['homepageFormat'] ) {
1186 - if ( ! (
1187 - update_option( 'show_on_front', 'page' )
1188 - || get_option( 'show_on_front' ) === 'page'
1189 - ) ) {
1190 - $error[] = 'homepageFormat';
1191 - }
1192 -
1193 - $home = wp_insert_post(
1194 - array(
1195 - 'post_type' => 'page',
1196 - /* translators: this references the home page of a site, also called front page. */
1197 - 'post_title' => esc_html_x( 'Home Page', 'The home page of a website.', 'jetpack' ),
1198 - 'post_content' => sprintf(
1199 - /* Translators: placeholder is the site title. */
1200 - esc_html__( 'Welcome to %s.', 'jetpack' ),
1201 - $site_title
1202 - ),
1203 - 'post_status' => 'publish',
1204 - 'post_author' => $author,
1205 - )
1206 - );
1207 - if ( 0 === $home ) {
1208 - $error[] = 'home insert: 0';
1209 - } elseif ( is_wp_error( $home ) ) {
1210 - $error[] = 'home creation: ' . $home->get_error_message();
1211 - }
1212 - if ( ! (
1213 - update_option( 'page_on_front', $home )
1214 - || get_option( 'page_on_front' ) === $home
1215 - ) ) {
1216 -
1217 - $error[] = 'home set';
1218 - }
1219 -
1220 - $blog = wp_insert_post(
1221 - array(
1222 - 'post_type' => 'page',
1223 - /* translators: this references the page where blog posts are listed. */
1224 - 'post_title' => esc_html_x( 'Blog', 'The blog of a website.', 'jetpack' ),
1225 - 'post_content' => sprintf(
1226 - /* Translators: placeholder is the site title. */
1227 - esc_html__( 'These are the latest posts in %s.', 'jetpack' ),
1228 - $site_title
1229 - ),
1230 - 'post_status' => 'publish',
1231 - 'post_author' => $author,
1232 - )
1233 - );
1234 - if ( 0 === $blog ) {
1235 - $error[] = 'blog insert: 0';
1236 - } elseif ( is_wp_error( $blog ) ) {
1237 - $error[] = 'blog creation: ' . $blog->get_error_message();
1238 - }
1239 - if ( ! (
1240 - update_option( 'page_for_posts', $blog )
1241 - || get_option( 'page_for_posts' ) === $blog
1242 - ) ) {
1243 - $error[] = 'blog set';
1244 - }
1245 - } else {
1246 - $front_page = get_option( 'page_on_front' );
1247 - $posts_page = get_option( 'page_for_posts' );
1248 - if ( $posts_page && get_post( $posts_page ) ) {
1249 - wp_delete_post( $posts_page );
1250 - }
1251 - if ( $front_page && get_post( $front_page ) ) {
1252 - wp_delete_post( $front_page );
1253 - }
1254 - update_option( 'show_on_front', 'posts' );
1255 - }
1256 - }
1257 - update_option( 'jpo_homepage_format', $data['homepageFormat'] );
1258 - }
1259 -
1260 - // Setup contact page and add a form and/or business info.
1261 - $contact_page = '';
1262 - if ( ! empty( $data['addContactForm'] ) && ! get_option( 'jpo_contact_page' ) ) {
1263 - $contact_form_module_active = Jetpack::is_module_active( 'contact-form' );
1264 - if ( ! $contact_form_module_active ) {
1265 - $contact_form_module_active = Jetpack::activate_module( 'contact-form', false, false );
1266 - }
1267 -
1268 - if ( $contact_form_module_active ) {
1269 - $contact_page = '[contact-form][contact-field label="' . esc_html__( 'Name', 'jetpack' ) . '" type="name" required="true" /][contact-field label="' . esc_html__( 'Email', 'jetpack' ) . '" type="email" required="true" /][contact-field label="' . esc_html__( 'Website', 'jetpack' ) . '" type="url" /][contact-field label="' . esc_html__( 'Message', 'jetpack' ) . '" type="textarea" /][/contact-form]';
1270 - } else {
1271 - $error[] = 'contact-form activate';
1272 - }
1273 - }
1274 -
1275 - if ( isset( $data['businessPersonal'] ) && 'business' === $data['businessPersonal'] ) {
1276 - $contact_page .= "\n" . implode( "\n", $data['businessInfo'] );
1277 - }
1278 -
1279 - if ( ! empty( $contact_page ) ) {
1280 - $form = wp_insert_post(
1281 - array(
1282 - 'post_type' => 'page',
1283 - /* translators: this references a page with contact details and possibly a form. */
1284 - 'post_title' => esc_html_x( 'Contact us', 'Contact page for your website.', 'jetpack' ),
1285 - 'post_content' => esc_html__( 'Send us a message!', 'jetpack' ) . "\n" . $contact_page,
1286 - 'post_status' => 'publish',
1287 - 'post_author' => $author,
1288 - )
1289 - );
1290 - if ( 0 === $form ) {
1291 - $error[] = 'form insert: 0';
1292 - } elseif ( is_wp_error( $form ) ) {
1293 - $error[] = 'form creation: ' . $form->get_error_message();
1294 - } else {
1295 - update_option( 'jpo_contact_page', $form );
1296 - }
1297 - }
1298 -
1299 - if ( isset( $data['businessAddress'] ) ) {
1300 - $handled_business_address = self::handle_business_address( $data['businessAddress'] );
1301 - if ( is_wp_error( $handled_business_address ) ) {
1302 - $error[] = 'BusinessAddress';
1303 - }
1304 - }
1305 -
1306 - if ( ! empty( $data['installWooCommerce'] ) ) {
1307 - $wc_install_result = Plugins_Installer::install_and_activate_plugin( 'woocommerce' );
1308 - delete_transient( '_wc_activation_redirect' ); // Redirecting to WC setup would kill our users' flow.
1309 - if ( is_wp_error( $wc_install_result ) ) {
1310 - $error[] = 'woocommerce installation';
1311 - }
1312 - }
1313 -
1314 - if ( ! empty( $data['stats'] ) ) {
1315 - if ( Jetpack::is_connection_ready() ) {
1316 - $stats_module_active = Jetpack::is_module_active( 'stats' );
1317 - if ( ! $stats_module_active ) {
1318 - $stats_module_active = Jetpack::activate_module( 'stats', false, false );
1319 - }
1320 -
1321 - if ( ! $stats_module_active ) {
1322 - $error[] = 'stats activate';
1323 - }
1324 - } else {
1325 - $error[] = 'stats not connected';
1326 - }
1327 - }
1328 -
1329 - return empty( $error )
1330 - ? ''
1331 - : implode( ', ', $error );
1208 + private function process_onboarding( $data ) { // phpcs:ignore VariableAnalysis.CodeAnalysis.VariableAnalysis.UnusedVariable
1209 + _deprecated_function( __METHOD__, '13.9' );
1210 + return '';
1332 1211 }
1333 1212
1334 1213 /**
1335 1214 * Add or update Business Address widget.
1336 1215 *
1216 + * @deprecated since 13.9
1217 + *
1337 1218 * @param array $address Array of business address fields.
1338 1219 *
1339 1220 * @return WP_Error|true True if the data was saved correctly.
1340 1221 */
1341 1222 private static function handle_business_address( $address ) {
1223 + _deprecated_function( __METHOD__, '13.9' );
1342 1224 $first_sidebar = Jetpack_Widgets::get_first_sidebar();
1343 1225
1344 1226 $widgets_module_active = Jetpack::is_module_active( 'widgets' );
1345 1227 if ( ! $widgets_module_active ) {
@@ -1423,13 +1305,8 @@
1423 1305 *
1424 1306 * @return bool
1425 1307 */
1426 1308 public function can_request( $request ) {
1427 - $req_params = $request->get_params();
1428 - if ( ! empty( $req_params['onboarding']['token'] ) && isset( $req_params['rest_route'] ) ) {
1429 - return Jetpack::validate_onboarding_token_action( $req_params['onboarding']['token'], $req_params['rest_route'] );
1430 - }
1431 -
1432 1309 if ( 'GET' === $request->get_method() ) {
1433 1310 return current_user_can( 'jetpack_admin_page' );
1434 1311 } else {
1435 1312 $module = Jetpack_Core_Json_Api_Endpoints::get_module_requested();
@@ -1438,13 +1315,13 @@
1438 1315 if ( ! is_array( $params ) ) {
1439 1316 $params = $request->get_body_params();
1440 1317 }
1441 1318 $options = Jetpack_Core_Json_Api_Endpoints::get_updateable_data_list( $params );
1442 - foreach ( $options as $option => $definition ) {
1443 - if ( in_array( $options[ $option ]['jp_group'], array( 'post-by-email' ), true ) ) {
1444 - $module = $options[ $option ]['jp_group'];
1445 - break;
1446 - }
1319 +
1320 + // The Post by Email gate applies only when the request contains nothing else.
1321 + $groups = array_values( array_unique( array_column( $options, 'jp_group' ) ) );
1322 + if ( array( 'post-by-email' ) === $groups ) {
1323 + $module = 'post-by-email';
1447 1324 }
1448 1325 }
1449 1326 // User is trying to create, regenerate or delete its PbE.
1450 1327 if ( 'post-by-email' === $module ) {
@@ -1460,9 +1337,8 @@
1460 1337 *
1461 1338 * phpcs:disable Generic.Files.OneObjectStructurePerFile.MultipleFound
1462 1339 */
1463 1340 class Jetpack_Core_API_Module_Data_Endpoint {
1464 - // phpcs:disable Generic.Files.OneObjectStructurePerFile.MultipleFound
1465 1341
1466 1342 /**
1467 1343 * Process request and return different data based on the module we are interested in.
1468 1344 *
@@ -1662,11 +1538,9 @@
1662 1538 array(
1663 1539 'general' => $initial_stats,
1664 1540
1665 1541 // Build data for 'day' as if it was $wpcom_stats ->get_visits( array( 'unit' => 'day, 'quantity' => 30).
1666 - 'day' => isset( $initial_stats->visits )
1667 - ? $initial_stats->visits
1668 - : array(),
1542 + 'day' => $initial_stats->visits ?? array(),
1669 1543 )
1670 1544 );
1671 1545 case 'week':
1672 1546 return rest_ensure_response(
@@ -1807,9 +1681,9 @@
1807 1681 $last_service = $copy_services[ $last ];
1808 1682 unset( $copy_services[ $last ] );
1809 1683 $message = esc_html(
1810 1684 sprintf(
1811 - /* translators: %1$s is a comma separated list of services, and %2$s is a single service name like Google, Bing, Pinterest, etc. */
1685 + /* translators: %1$s is a comma-separated list of services, and %2$s is a single service name like Google, Bing, Pinterest, etc. */
1812 1686 __( 'Your site is verified with %1$s and %2$s.', 'jetpack' ),
1813 1687 implode( ', ', $copy_services ),
1814 1688 $last_service
1815 1689 )