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/class.core-rest-api-endpoints.php +431 -482 13.5.216.3-a.1 View file →
@@ -8,9 +8,10 @@
8 8 use Automattic\Jetpack\Connection\Client;
9 9 use Automattic\Jetpack\Connection\Manager as Connection_Manager;
10 10 use Automattic\Jetpack\Connection\Rest_Authentication;
11 11 use Automattic\Jetpack\Connection\REST_Connector;
12 -use Automattic\Jetpack\Current_Plan as Jetpack_Plan;
12 +use Automattic\Jetpack\Connection\REST_Jetpack_AI_JWT;
13 +use Automattic\Jetpack\Connection\SSO;
13 14 use Automattic\Jetpack\Jetpack_CRM_Data;
14 15 use Automattic\Jetpack\Plugins_Installer;
15 16 use Automattic\Jetpack\Stats\Options as Stats_Options;
16 17 use Automattic\Jetpack\Status\Host;
@@ -19,9 +20,9 @@
19 20 use Automattic\Jetpack\Waf\Waf_Compatibility;
20 21
21 22 // Disable direct access.
22 23 if ( ! defined( 'ABSPATH' ) ) {
23 - exit;
24 + exit( 0 );
24 25 }
25 26
26 27 // Load WP_Error for error messages.
27 28 require_once ABSPATH . '/wp-includes/class-wp-error.php';
@@ -31,8 +32,10 @@
31 32 // Load API endpoints that are synced with WP.com
32 33 // Each of these is a class that will register its own routes on 'rest_api_init'.
33 34 require_once JETPACK__PLUGIN_DIR . '_inc/lib/core-api/load-wpcom-endpoints.php';
34 35
36 +require_once JETPACK__PLUGIN_DIR . 'modules/subscriptions/class-settings.php';
37 +
35 38 /**
36 39 * Class Jetpack_Core_Json_Api_Endpoints
37 40 *
38 41 * @since 4.3.0
@@ -69,23 +72,10 @@
69 72 $module_toggle_endpoint = new Jetpack_Core_API_Module_Toggle_Endpoint( new Jetpack_IXR_Client() );
70 73 $site_endpoint = new Jetpack_Core_API_Site_Endpoint();
71 74 $widget_endpoint = new Jetpack_Core_API_Widget_Endpoint();
72 75
73 - /**
74 - * TODO: Move me somewhere that makes more sense.
75 - * Also give me permissions that aren't awful.
76 - */
77 - register_rest_route(
78 - 'jetpack/v4',
79 - 'jetpack-ai-jwt',
80 - array(
81 - 'methods' => WP_REST_Server::EDITABLE,
82 - 'callback' => __CLASS__ . '::get_openai_jwt',
83 - 'permission_callback' => function () {
84 - return ( new Connection_Manager( 'jetpack' ) )->is_user_connected() && current_user_can( 'edit_posts' );
85 - },
86 - )
87 - );
76 + // My Jetpack and Agents Manager register the same controller; its guard keeps the route registered once.
77 + ( new REST_Jetpack_AI_JWT() )->register_rest_route();
88 78
89 79 register_rest_route(
90 80 'jetpack/v4',
91 81 'plans',
@@ -115,32 +105,10 @@
115 105 'permission_callback' => __CLASS__ . '::disconnect_site_permission_callback',
116 106 )
117 107 );
118 108
119 - // Test current connection status of Jetpack.
120 109 register_rest_route(
121 110 'jetpack/v4',
122 - '/connection/test',
123 - array(
124 - 'methods' => WP_REST_Server::READABLE,
125 - 'callback' => __CLASS__ . '::jetpack_connection_test',
126 - 'permission_callback' => __CLASS__ . '::manage_modules_permission_check',
127 - )
128 - );
129 -
130 - // Endpoint specific for privileged servers to request detailed debug information.
131 - register_rest_route(
132 - 'jetpack/v4',
133 - '/connection/test-wpcom/',
134 - array(
135 - 'methods' => WP_REST_Server::READABLE,
136 - 'callback' => __CLASS__ . '::jetpack_connection_test_for_external',
137 - 'permission_callback' => __CLASS__ . '::view_jetpack_connection_test_check',
138 - )
139 - );
140 -
141 - register_rest_route(
142 - 'jetpack/v4',
143 111 '/rewind',
144 112 array(
145 113 'methods' => WP_REST_Server::READABLE,
146 114 'callback' => __CLASS__ . '::get_rewind_data',
@@ -193,33 +161,11 @@
193 161 ),
194 162 )
195 163 );
196 164
197 - // Disconnect/unlink user from WordPress.com servers.
165 + // Get current site features.
198 166 register_rest_route(
199 167 'jetpack/v4',
200 - '/connection/user',
201 - array(
202 - 'methods' => WP_REST_Server::EDITABLE,
203 - 'callback' => __CLASS__ . '::unlink_user',
204 - 'permission_callback' => __CLASS__ . '::unlink_user_permission_callback',
205 - )
206 - );
207 -
208 - // Get current site data.
209 - register_rest_route(
210 - 'jetpack/v4',
211 - '/site',
212 - array(
213 - 'methods' => WP_REST_Server::READABLE,
214 - 'callback' => __CLASS__ . '::get_site_data',
215 - 'permission_callback' => __CLASS__ . '::view_admin_page_permission_check',
216 - )
217 - );
218 -
219 - // Get current site data.
220 - register_rest_route(
221 - 'jetpack/v4',
222 168 '/site/features',
223 169 array(
224 170 'methods' => WP_REST_Server::READABLE,
225 171 'callback' => array( $site_endpoint, 'get_features' ),
@@ -785,42 +731,59 @@
785 731 ),
786 732 ),
787 733 )
788 734 );
735 +
736 + /**
737 + * Get the list of available Jetpack features.
738 + *
739 + * @since 13.9
740 + */
741 + register_rest_route(
742 + 'jetpack/v4',
743 + '/features/available',
744 + array(
745 + 'methods' => WP_REST_Server::READABLE,
746 + 'callback' => array( static::class, 'get_features_available' ),
747 + 'permission_callback' => array( static::class, 'get_features_permission_check' ),
748 + )
749 + );
750 +
751 + /**
752 + * Get the list of enabled Jetpack features.
753 + *
754 + * @since 13.9
755 + */
756 + register_rest_route(
757 + 'jetpack/v4',
758 + '/features/enabled',
759 + array(
760 + 'methods' => WP_REST_Server::READABLE,
761 + 'callback' => array( static::class, 'get_features_enabled' ),
762 + 'permission_callback' => array( static::class, 'get_features_permission_check' ),
763 + )
764 + );
789 765 }
790 766
791 767 /**
792 768 * Ask WPCOM for a JWT token to use for OpenAI conversations.
793 - * TODO: Clean me up. This is ugly hack code.
769 + *
770 + * @deprecated since 16.2
771 + * @see Automattic\Jetpack\Connection\REST_Jetpack_AI_JWT::get_jwt()
772 + *
773 + * @return array|WP_Error The token and blog ID, or the error from WPCOM.
794 774 */
795 775 public static function get_openai_jwt() {
796 - $blog_id = \Jetpack_Options::get_option( 'id' );
776 + _deprecated_function( __METHOD__, 'jetpack-16.2', '\Automattic\Jetpack\Connection\REST_Jetpack_AI_JWT::get_jwt' );
797 777
798 - $response = \Automattic\Jetpack\Connection\Client::wpcom_json_api_request_as_user(
799 - "/sites/$blog_id/jetpack-openai-query/jwt",
800 - '2',
801 - array(
802 - 'method' => 'POST',
803 - 'headers' => array( 'Content-Type' => 'application/json; charset=utf-8' ),
804 - ),
805 - wp_json_encode( array() ),
806 - 'wpcom'
807 - );
778 + $response = ( new REST_Jetpack_AI_JWT() )->get_jwt();
808 779
809 780 if ( is_wp_error( $response ) ) {
810 781 return $response;
811 782 }
812 783
813 - $json = json_decode( wp_remote_retrieve_body( $response ) );
814 -
815 - if ( ! isset( $json->token ) ) {
816 - return new WP_Error( 'no-token', 'No token returned from WPCOM' );
817 - }
818 -
819 - return array(
820 - 'token' => $json->token,
821 - 'blog_id' => $blog_id,
822 - );
784 + // Pre-deprecation callers expect the raw array, not a WP_REST_Response.
785 + return $response->get_data();
823 786 }
824 787
825 788 /**
826 789 * Set subscriber cookie and redirect
@@ -831,15 +794,24 @@
831 794 */
832 795 public static function set_subscriber_cookie_and_redirect( $request ) {
833 796 require_once JETPACK__PLUGIN_DIR . 'extensions/blocks/premium-content/_inc/subscription-service/include.php';
834 797 $subscription_service = \Automattic\Jetpack\Extensions\Premium_Content\subscription_service();
835 - $token = $subscription_service->get_and_set_token_from_request();
836 - $payload = $subscription_service->decode_token( $token );
837 - $is_valid_token = ! empty( $payload );
838 - if ( $is_valid_token ) {
839 - return new WP_REST_Response( null, 302, array( 'location' => $request['redirect_url'] ) );
798 + // Note: get_and_set_token_from_request() sets the subscriber cookie as a side effect.
799 + // The cookie is set regardless of the redirect target below; only the redirect is gated.
800 + $token = $subscription_service->get_and_set_token_from_request();
801 + $payload = $subscription_service->decode_token( $token );
802 + $is_valid_token = ! empty( $payload );
803 + if ( ! $is_valid_token ) {
804 + return new WP_Error( 'invalid-token', 'Invalid Token', array( 'status' => 403 ) );
840 805 }
841 - return new WP_Error( 'invalid-token', 'Invalid Token' );
806 +
807 + // Only redirect to the current site, not to an arbitrary host.
808 + $redirect_url = wp_validate_redirect( $request['redirect_url'], '' );
809 + if ( ! $redirect_url ) {
810 + return new WP_Error( 'invalid-redirect', 'Invalid Redirect URL', array( 'status' => 400 ) );
811 + }
812 +
813 + return new WP_REST_Response( null, 302, array( 'location' => $redirect_url ) );
842 814 }
843 815
844 816 /**
845 817 * Get the data for the recommendations
@@ -899,9 +871,9 @@
899 871 }
900 872
901 873 $user_connected = ( new Connection_Manager( 'jetpack' ) )->is_user_connected( get_current_user_id() );
902 874 if ( ! $user_connected ) {
903 - return wp_json_encode( array() );
875 + return wp_json_encode( array(), JSON_UNESCAPED_SLASHES );
904 876 }
905 877
906 878 $request_path = sprintf( '/sites/%s/jetpack-recommendations/product-suggestions?locale=' . get_user_locale(), $blog_id );
907 879 $wpcom_request = Client::wpcom_json_api_request_as_user(
@@ -1170,8 +1142,9 @@
1170 1142 || Jetpack::is_plugin_active( 'mojo-under-construction/mojo-contruction.php' ) && 1 == $under_construction_activation_status // phpcs:ignore Universal.Operators.StrictComparisons.LooseEqual
1171 1143 || ( Jetpack::is_plugin_active( 'under-construction-page/under-construction.php' ) && isset( $ucp_options['status'] ) && 1 == $ucp_options['status'] ) // phpcs:ignore Universal.Operators.StrictComparisons.LooseEqual
1172 1144 || ( Jetpack::is_plugin_active( 'ultimate-under-construction/ultimate-under-construction.php' ) && isset( $uuc_settings['enable'] ) && 1 == $uuc_settings['enable'] ) // phpcs:ignore Universal.Operators.StrictComparisons.LooseEqual
1173 1145 || ( Jetpack::is_plugin_active( 'coming-soon/coming-soon.php' ) && isset( $csp4['status'] ) && ( 1 == $csp4['status'] || 2 == $csp4['status'] ) ) // phpcs:ignore Universal.Operators.StrictComparisons.LooseEqual
1146 + ||
1174 1147 /**
1175 1148 * Allow plugins to mark a site as "under construction".
1176 1149 *
1177 1150 * @since 6.7.0
@@ -1177,9 +1150,9 @@
1177 1150 * @since 6.7.0
1178 1151 *
1179 1152 * @param false bool Is the site under construction? Default to false.
1180 1153 */
1181 - || true === apply_filters( 'jetpack_is_under_construction_plugin', false )
1154 + true === apply_filters( 'jetpack_is_under_construction_plugin', false )
1182 1155 ) {
1183 1156 return new WP_Error( 'forbidden', __( 'Site is under construction and cannot be verified', 'jetpack' ) );
1184 1157 }
1185 1158
@@ -1318,24 +1291,20 @@
1318 1291
1319 1292 /**
1320 1293 * Verify that a user can use the /connection/user endpoint. Has to be a registered user and be currently linked.
1321 1294 *
1295 + * @uses Automattic\Jetpack\Connection\Manager::is_user_connected();)
1296 + *
1297 + * @deprecated since Jetpack 14.4.0
1298 + * @see Automattic\Jetpack\Connection\REST_Connector::unlink_user_permission_callback()
1299 + *
1322 1300 * @since 4.3.0
1323 1301 *
1324 - * @uses Automattic\Jetpack\Connection\Manager::is_user_connected();)
1325 - *
1326 1302 * @return bool|WP_Error True if user is able to unlink.
1327 1303 */
1328 1304 public static function unlink_user_permission_callback() {
1329 - if ( current_user_can( 'jetpack_connect_user' ) && ( new Connection_Manager( 'jetpack' ) )->is_user_connected( get_current_user_id() ) ) {
1330 - return true;
1331 - }
1332 -
1333 - return new WP_Error(
1334 - 'invalid_user_permission_unlink_user',
1335 - REST_Connector::get_user_permissions_error_msg(),
1336 - array( 'status' => rest_authorization_required_code() )
1337 - );
1305 + _deprecated_function( __METHOD__, 'jetpack-14.4.0', 'Automattic\Jetpack\Connection\REST_Connector::unlink_user_permission_callback()' );
1306 + return REST_Connector::unlink_user_permission_callback();
1338 1307 }
1339 1308
1340 1309 /**
1341 1310 * Verify that user can manage Jetpack modules.
@@ -1470,139 +1439,8 @@
1470 1439 );
1471 1440 }
1472 1441
1473 1442 /**
1474 - * Test connection status for this Jetpack site.
1475 - *
1476 - * @since 6.8.0
1477 - *
1478 - * @return array|WP_Error WP_Error returned if connection test does not succeed.
1479 - */
1480 - public static function jetpack_connection_test() {
1481 - require_once JETPACK__PLUGIN_DIR . '_inc/lib/debugger.php';
1482 - $cxntests = new Jetpack_Cxn_Tests();
1483 -
1484 - if ( $cxntests->pass() ) {
1485 - return rest_ensure_response(
1486 - array(
1487 - 'code' => 'success',
1488 - 'message' => __( 'All connection tests passed.', 'jetpack' ),
1489 - )
1490 - );
1491 - } else {
1492 - return $cxntests->output_fails_as_wp_error();
1493 - }
1494 - }
1495 -
1496 - /**
1497 - * Test connection permission check method.
1498 - *
1499 - * @since 7.1.0
1500 - *
1501 - * @return bool
1502 - */
1503 - public static function view_jetpack_connection_test_check() {
1504 - // phpcs:disable WordPress.Security.NonceVerification.Recommended -- This is verifying the trusted caller via a shared private key and timestamp.
1505 - if ( ! isset( $_GET['signature'] ) || ! isset( $_GET['timestamp'] ) || ! isset( $_GET['url'] ) ) {
1506 - return false;
1507 - }
1508 - $signature = base64_decode( wp_unslash( $_GET['signature'] ) ); // phpcs:ignore WordPress.PHP.DiscouragedPHPFunctions.obfuscation_base64_decode, WordPress.Security.ValidatedSanitizedInput.InputNotSanitized
1509 -
1510 - $signature_data = wp_json_encode(
1511 - array(
1512 - 'rest_route' => isset( $_GET['rest_route'] ) ? filter_var( wp_unslash( $_GET['rest_route'] ) ) : null,
1513 - 'timestamp' => (int) $_GET['timestamp'],
1514 - 'url' => esc_url_raw( wp_unslash( $_GET['url'] ) ),
1515 - )
1516 - );
1517 -
1518 - if (
1519 - ! function_exists( 'openssl_verify' )
1520 - || 1 !== openssl_verify(
1521 - $signature_data,
1522 - $signature,
1523 - JETPACK__DEBUGGER_PUBLIC_KEY
1524 - )
1525 - ) {
1526 - return false;
1527 - }
1528 -
1529 - // signature timestamp must be within 5min of current time.
1530 - if ( abs( time() - (int) $_GET['timestamp'] ) > 300 ) {
1531 - return false;
1532 - }
1533 -
1534 - // phpcs:enable WordPress.Security.NonceVerification.Recommended
1535 -
1536 - return true;
1537 - }
1538 -
1539 - /**
1540 - * Test connection status for this Jetpack site, encrypt the results for decryption by a third-party.
1541 - *
1542 - * @since 7.1.0
1543 - *
1544 - * @return array|mixed|object|WP_Error
1545 - */
1546 - public static function jetpack_connection_test_for_external() {
1547 - // Since we are running this test for inclusion in the WP.com testing suite, let's not try to run them as part of these results.
1548 - add_filter( 'jetpack_debugger_run_self_test', '__return_false' );
1549 - require_once JETPACK__PLUGIN_DIR . '_inc/lib/debugger.php';
1550 - $cxntests = new Jetpack_Cxn_Tests();
1551 -
1552 - if ( $cxntests->pass() ) {
1553 - $result = array(
1554 - 'code' => 'success',
1555 - 'message' => __( 'All connection tests passed.', 'jetpack' ),
1556 - );
1557 - } else {
1558 - $error = $cxntests->output_fails_as_wp_error(); // Using this so the output is similar both ways.
1559 - $errors = array();
1560 -
1561 - // Borrowed from WP_REST_Server::error_to_response().
1562 - foreach ( (array) $error->errors as $code => $messages ) {
1563 - foreach ( (array) $messages as $message ) {
1564 - $errors[] = array(
1565 - 'code' => $code,
1566 - 'message' => $message,
1567 - 'data' => $error->get_error_data( $code ),
1568 - );
1569 - }
1570 - }
1571 -
1572 - $result = ( ! empty( $errors ) ) ? $errors[0] : null;
1573 - if ( count( $errors ) > 1 ) {
1574 - // Remove the primary error.
1575 - array_shift( $errors );
1576 - $result['additional_errors'] = $errors;
1577 - }
1578 - }
1579 -
1580 - $result = wp_json_encode( $result );
1581 -
1582 - $encrypted = $cxntests->encrypt_string_for_wpcom( $result );
1583 -
1584 - if ( ! $encrypted || ! is_array( $encrypted ) ) {
1585 - return rest_ensure_response(
1586 - array(
1587 - 'code' => 'action_required',
1588 - 'message' => 'Please request results from the in-plugin debugger',
1589 - )
1590 - );
1591 - }
1592 -
1593 - return rest_ensure_response(
1594 - array(
1595 - 'code' => 'response',
1596 - 'debug' => array(
1597 - 'data' => $encrypted['data'],
1598 - 'key' => $encrypted['key'],
1599 - ),
1600 - )
1601 - );
1602 - }
1603 -
1604 - /**
1605 1443 * Fetch information about the Rewind status of the site.
1606 1444 */
1607 1445 public static function rewind_data() {
1608 1446 $site_id = Jetpack_Options::get_option( 'id' );
@@ -1645,9 +1483,9 @@
1645 1483 return rest_ensure_response(
1646 1484 array(
1647 1485 'code' => 'success',
1648 1486 'message' => esc_html__( 'Backup & Scan data correctly received.', 'jetpack' ),
1649 - 'data' => wp_json_encode( $rewind_data ),
1487 + 'data' => wp_json_encode( $rewind_data, JSON_UNESCAPED_SLASHES ),
1650 1488 )
1651 1489 );
1652 1490 }
1653 1491
@@ -1728,9 +1566,9 @@
1728 1566 return rest_ensure_response(
1729 1567 array(
1730 1568 'code' => 'success',
1731 1569 'message' => esc_html__( 'Scan state correctly received.', 'jetpack' ),
1732 - 'data' => wp_json_encode( $scan_state ),
1570 + 'data' => wp_json_encode( $scan_state, JSON_UNESCAPED_SLASHES ),
1733 1571 )
1734 1572 );
1735 1573 }
1736 1574
@@ -1787,10 +1625,10 @@
1787 1625 *
1788 1626 * @return string|WP_Error A raw URL if the connection URL could be built; error message otherwise.
1789 1627 */
1790 1628 public static function build_connect_url( $request = array() ) {
1791 - $from = isset( $request['from'] ) ? $request['from'] : false;
1792 - $redirect = isset( $request['redirect'] ) ? $request['redirect'] : false;
1629 + $from = $request['from'] ?? false;
1630 + $redirect = $request['redirect'] ?? false;
1793 1631
1794 1632 $url = Jetpack::init()->build_connect_url( true, $redirect, $from );
1795 1633 if ( $url ) {
1796 1634 return rest_ensure_response( $url );
@@ -1828,30 +1666,21 @@
1828 1666
1829 1667 /**
1830 1668 * Unlinks current user from the WordPress.com Servers.
1831 1669 *
1832 - * @since 4.3.0
1670 + * @param WP_REST_Request $request The request sent to the WP REST API.
1833 1671 * @uses Automattic\Jetpack\Connection\Manager->disconnect_user
1834 1672 *
1835 - * @param WP_REST_Request $request The request sent to the WP REST API.
1673 + * @deprecated since Jetpack 14.4.0
1674 + * @see Automattic\Jetpack\Connection\REST_Connector::unlink_user()
1836 1675 *
1676 + * @since 4.3.0
1677 + *
1837 1678 * @return bool|WP_Error True if user successfully unlinked.
1838 1679 */
1839 1680 public static function unlink_user( $request ) {
1840 -
1841 - if ( ! isset( $request['linked'] ) || false !== $request['linked'] ) {
1842 - return new WP_Error( 'invalid_param', esc_html__( 'Invalid Parameter', 'jetpack' ), array( 'status' => 404 ) );
1843 - }
1844 -
1845 - if ( ( new Connection_Manager( 'jetpack' ) )->disconnect_user() ) {
1846 - return rest_ensure_response(
1847 - array(
1848 - 'code' => 'success',
1849 - )
1850 - );
1851 - }
1852 -
1853 - return new WP_Error( 'unlink_user_failed', esc_html__( 'Was not able to unlink the user. Please try again.', 'jetpack' ), array( 'status' => 400 ) );
1681 + _deprecated_function( __METHOD__, 'jetpack-14.4.0', 'Automattic\Jetpack\Connection\REST_Connector::unlink_user()' );
1682 + return REST_Connector::unlink_user( $request );
1854 1683 }
1855 1684
1856 1685 /**
1857 1686 * Gets current user's tracking settings.
@@ -1910,9 +1739,9 @@
1910 1739 'Content-Type' => 'application/json',
1911 1740 'X-Forwarded-For' => ( new Visitor() )->get_ip( true ),
1912 1741 ),
1913 1742 ),
1914 - wp_json_encode( $request->get_params() )
1743 + wp_json_encode( $request->get_params(), JSON_UNESCAPED_SLASHES )
1915 1744 );
1916 1745 if ( ! is_wp_error( $response ) ) {
1917 1746 $response = json_decode( wp_remote_retrieve_body( $response ), true );
1918 1747 }
@@ -1924,93 +1753,30 @@
1924 1753 /**
1925 1754 * Fetch site data from .com including the site's current plan and the site's products.
1926 1755 *
1927 1756 * @since 5.5.0
1757 + * @deprecated 16.2 Use Automattic\Jetpack\Connection\Manager::get_connected_site_data().
1928 1758 *
1929 1759 * @return stdClass|WP_Error
1930 1760 */
1931 1761 public static function site_data() {
1932 - $site_id = Jetpack_Options::get_option( 'id' );
1762 + _deprecated_function( __METHOD__, 'jetpack-16.2', 'Automattic\Jetpack\Connection\Manager::get_connected_site_data' );
1933 1763
1934 - if ( ! $site_id ) {
1935 - return new WP_Error( 'site_id_missing', '', array( 'api_error_code' => __( 'site_id_missing', 'jetpack' ) ) );
1936 - }
1764 + return ( new Connection_Manager() )->get_connected_site_data();
1765 + }
1937 1766
1938 - $args = array( 'headers' => array() );
1939 -
1940 - // Allow use a store sandbox. Internal ref: PCYsg-IA-p2.
1941 - if ( isset( $_COOKIE ) && isset( $_COOKIE['store_sandbox'] ) ) {
1942 - $secret = filter_var( wp_unslash( $_COOKIE['store_sandbox'] ) );
1943 - $args['headers']['Cookie'] = "store_sandbox=$secret;";
1944 - }
1945 -
1946 - $response = Client::wpcom_json_api_request_as_blog( sprintf( '/sites/%d', $site_id ) . '?force=wpcom', '1.1', $args );
1947 - $body = wp_remote_retrieve_body( $response );
1948 - $data = $body ? json_decode( $body ) : null;
1949 -
1950 - if ( 200 !== wp_remote_retrieve_response_code( $response ) ) {
1951 - $error_info = array(
1952 - 'api_error_code' => null,
1953 - 'api_http_code' => wp_remote_retrieve_response_code( $response ),
1954 - );
1955 -
1956 - if ( is_wp_error( $response ) ) {
1957 - $error_info['api_error_code'] = $response->get_error_code() ? wp_strip_all_tags( $response->get_error_code() ) : null;
1958 - } elseif ( $data && ! empty( $data->error ) ) {
1959 - $error_info['api_error_code'] = $data->error;
1960 - }
1961 -
1962 - return new WP_Error( 'site_data_fetch_failed', '', $error_info );
1963 - }
1964 -
1965 - Jetpack_Plan::update_from_sites_response( $response );
1966 -
1967 - return $data;
1968 - }
1969 1767 /**
1970 1768 * Get site data, including for example, the site's current plan.
1971 1769 *
1770 + * @since 4.3.0
1771 + * @deprecated 16.2 Use Automattic\Jetpack\Connection\REST_Connector::site_data_response().
1772 + *
1972 1773 * @return WP_Error|WP_HTTP_Response|WP_REST_Response
1973 - * @since 4.3.0
1974 1774 */
1975 1775 public static function get_site_data() {
1976 - $site_data = self::site_data();
1776 + _deprecated_function( __METHOD__, 'jetpack-16.2', 'Automattic\Jetpack\Connection\REST_Connector::site_data_response' );
1977 1777
1978 - if ( ! is_wp_error( $site_data ) ) {
1979 -
1980 - /**
1981 - * Fires when the site data was successfully returned from the /sites/%d wpcom endpoint.
1982 - *
1983 - * @since 8.7.0
1984 - */
1985 - do_action( 'jetpack_get_site_data_success' );
1986 - return rest_ensure_response(
1987 - array(
1988 - 'code' => 'success',
1989 - 'message' => esc_html__( 'Site data correctly received.', 'jetpack' ),
1990 - 'data' => wp_json_encode( $site_data ),
1991 - )
1992 - );
1993 - }
1994 -
1995 - $error_data = $site_data->get_error_data();
1996 -
1997 - if ( empty( $error_data['api_error_code'] ) ) {
1998 - $error_message = esc_html__( 'Failed fetching site data from WordPress.com. If the problem persists, try reconnecting Jetpack.', 'jetpack' );
1999 - } else {
2000 - /* translators: %s is an error code (e.g. `token_mismatch`) */
2001 - $error_message = sprintf( esc_html__( 'Failed fetching site data from WordPress.com (%s). If the problem persists, try reconnecting Jetpack.', 'jetpack' ), $error_data['api_error_code'] );
2002 - }
2003 -
2004 - return new WP_Error(
2005 - $site_data->get_error_code(),
2006 - $error_message,
2007 - array(
2008 - 'status' => 400,
2009 - 'api_error_code' => empty( $error_data['api_error_code'] ) ? null : $error_data['api_error_code'],
2010 - 'api_http_code' => empty( $error_data['api_http_code'] ) ? null : $error_data['api_http_code'],
2011 - )
2012 - );
1778 + return REST_Connector::site_data_response();
2013 1779 }
2014 1780
2015 1781 /**
2016 1782 * Fetch AL data for this site and return it.
@@ -2225,9 +1991,9 @@
2225 1991 public static function get_updateable_data_list( $selector = '' ) {
2226 1992
2227 1993 $options = array(
2228 1994 // Blocks.
2229 - 'jetpack_blocks_disabled' => array(
1995 + 'jetpack_blocks_disabled' => array(
2230 1996 'description' => esc_html__( 'Jetpack Blocks disabled.', 'jetpack' ),
2231 1997 'type' => 'boolean',
2232 1998 'default' => false,
2233 1999 'validate_callback' => __CLASS__ . '::validate_boolean',
@@ -2234,9 +2000,9 @@
2234 2000 'jp_group' => 'settings',
2235 2001 ),
2236 2002
2237 2003 // Carousel
2238 - 'carousel_background_color' => array(
2004 + 'carousel_background_color' => array(
2239 2005 'description' => esc_html__( 'Color scheme.', 'jetpack' ),
2240 2006 'type' => 'string',
2241 2007 'default' => 'black',
2242 2008 'enum' => array(
@@ -2249,9 +2015,9 @@
2249 2015 ),
2250 2016 'validate_callback' => __CLASS__ . '::validate_list_item',
2251 2017 'jp_group' => 'carousel',
2252 2018 ),
2253 - 'carousel_display_exif' => array(
2019 + 'carousel_display_exif' => array(
2254 2020 'description' => wp_kses(
2255 2021 sprintf( __( 'Show photo metadata (<a href="https://en.wikipedia.org/wiki/Exchangeable_image_file_format" target="_blank">Exif</a>) in carousel, when available.', 'jetpack' ) ),
2256 2022 array(
2257 2023 'a' => array(
@@ -2264,9 +2030,9 @@
2264 2030 'default' => 0,
2265 2031 'validate_callback' => __CLASS__ . '::validate_boolean',
2266 2032 'jp_group' => 'carousel',
2267 2033 ),
2268 - 'carousel_display_comments' => array(
2034 + 'carousel_display_comments' => array(
2269 2035 'description' => esc_html__( 'Show comments area in carousel', 'jetpack' ),
2270 2036 'type' => 'boolean',
2271 2037 'default' => 1,
2272 2038 'validate_callback' => __CLASS__ . '::validate_boolean',
@@ -2273,9 +2039,9 @@
2273 2039 'jp_group' => 'carousel',
2274 2040 ),
2275 2041
2276 2042 // Comments.
2277 - 'highlander_comment_form_prompt' => array(
2043 + 'highlander_comment_form_prompt' => array(
2278 2044 'description' => esc_html__( 'Greeting Text', 'jetpack' ),
2279 2045 'type' => 'string',
2280 2046 'default' => esc_html__( 'Leave a Reply', 'jetpack' ),
2281 2047 'sanitize_callback' => 'sanitize_text_field',
@@ -2280,9 +2046,9 @@
2280 2046 'default' => esc_html__( 'Leave a Reply', 'jetpack' ),
2281 2047 'sanitize_callback' => 'sanitize_text_field',
2282 2048 'jp_group' => 'comments',
2283 2049 ),
2284 - 'jetpack_comment_form_color_scheme' => array(
2050 + 'jetpack_comment_form_color_scheme' => array(
2285 2051 'description' => esc_html__( 'Color scheme', 'jetpack' ),
2286 2052 'type' => 'string',
2287 2053 'default' => 'light',
2288 2054 'enum' => array(
@@ -2299,39 +2065,38 @@
2299 2065 'jp_group' => 'comments',
2300 2066 ),
2301 2067
2302 2068 // Custom Content Types.
2303 - 'jetpack_portfolio' => array(
2069 + 'jetpack_portfolio' => array(
2304 2070 'description' => esc_html__( 'Enable or disable Jetpack portfolio post type.', 'jetpack' ),
2305 2071 'type' => 'boolean',
2306 2072 'default' => 0,
2307 2073 'validate_callback' => __CLASS__ . '::validate_boolean',
2308 - 'jp_group' => 'custom-content-types',
2074 + 'jp_group' => 'settings',
2309 2075 ),
2310 - 'jetpack_portfolio_posts_per_page' => array(
2076 + 'jetpack_portfolio_posts_per_page' => array(
2311 2077 'description' => esc_html__( 'Number of entries to show at most in Portfolio pages.', 'jetpack' ),
2312 2078 'type' => 'integer',
2313 2079 'default' => 10,
2314 2080 'validate_callback' => __CLASS__ . '::validate_posint',
2315 - 'jp_group' => 'custom-content-types',
2081 + 'jp_group' => 'settings',
2316 2082 ),
2317 - 'jetpack_testimonial' => array(
2083 + 'jetpack_testimonial' => array(
2318 2084 'description' => esc_html__( 'Enable or disable Jetpack testimonial post type.', 'jetpack' ),
2319 2085 'type' => 'boolean',
2320 2086 'default' => 0,
2321 2087 'validate_callback' => __CLASS__ . '::validate_boolean',
2322 - 'jp_group' => 'custom-content-types',
2088 + 'jp_group' => 'settings',
2323 2089 ),
2324 - 'jetpack_testimonial_posts_per_page' => array(
2090 + 'jetpack_testimonial_posts_per_page' => array(
2325 2091 'description' => esc_html__( 'Number of entries to show at most in Testimonial pages.', 'jetpack' ),
2326 2092 'type' => 'integer',
2327 2093 'default' => 10,
2328 2094 'validate_callback' => __CLASS__ . '::validate_posint',
2329 - 'jp_group' => 'custom-content-types',
2095 + 'jp_group' => 'settings',
2330 2096 ),
2331 -
2332 2097 // WAF.
2333 - 'jetpack_waf_automatic_rules' => array(
2098 + 'jetpack_waf_automatic_rules' => array(
2334 2099 'description' => esc_html__( 'Enable automatic rules - Protect your site against untrusted traffic sources with automatic security rules.', 'jetpack' ),
2335 2100 'type' => 'boolean',
2336 2101 'default' => Waf_Compatibility::get_default_automatic_rules_option(),
2337 2102 'validate_callback' => __CLASS__ . '::validate_boolean',
@@ -2336,16 +2101,16 @@
2336 2101 'default' => Waf_Compatibility::get_default_automatic_rules_option(),
2337 2102 'validate_callback' => __CLASS__ . '::validate_boolean',
2338 2103 'jp_group' => 'waf',
2339 2104 ),
2340 - 'jetpack_waf_ip_list' => array(
2341 - 'description' => esc_html__( 'Allow / Block list - Block or allow a specific request IP.', 'jetpack' ),
2105 + 'jetpack_waf_ip_block_list_enabled' => array(
2106 + 'description' => esc_html__( 'Block list - Block a specific request IP.', 'jetpack' ),
2342 2107 'type' => 'boolean',
2343 2108 'default' => 0,
2344 2109 'validate_callback' => __CLASS__ . '::validate_boolean',
2345 2110 'jp_group' => 'waf',
2346 2111 ),
2347 - 'jetpack_waf_ip_block_list' => array(
2112 + 'jetpack_waf_ip_block_list' => array(
2348 2113 'description' => esc_html__( 'Blocked IP addresses', 'jetpack' ),
2349 2114 'type' => 'string',
2350 2115 'default' => '',
2351 2116 'validate_callback' => __CLASS__ . '::validate_string',
@@ -2351,9 +2116,16 @@
2351 2116 'validate_callback' => __CLASS__ . '::validate_string',
2352 2117 'sanitize_callback' => 'esc_textarea',
2353 2118 'jp_group' => 'waf',
2354 2119 ),
2355 - 'jetpack_waf_ip_allow_list' => array(
2120 + 'jetpack_waf_ip_allow_list_enabled' => array(
2121 + 'description' => esc_html__( 'Allow list - Allow a specific request IP.', 'jetpack' ),
2122 + 'type' => 'boolean',
2123 + 'default' => 0,
2124 + 'validate_callback' => __CLASS__ . '::validate_boolean',
2125 + 'jp_group' => 'settings',
2126 + ),
2127 + 'jetpack_waf_ip_allow_list' => array(
2356 2128 'description' => esc_html__( 'Always allowed IP addresses', 'jetpack' ),
2357 2129 'type' => 'string',
2358 2130 'default' => '',
2359 2131 'validate_callback' => __CLASS__ . '::validate_string',
@@ -2359,9 +2131,9 @@
2359 2131 'validate_callback' => __CLASS__ . '::validate_string',
2360 2132 'sanitize_callback' => 'esc_textarea',
2361 2133 'jp_group' => 'settings',
2362 2134 ),
2363 - 'jetpack_waf_share_data' => array(
2135 + 'jetpack_waf_share_data' => array(
2364 2136 'description' => esc_html__( 'Share basic data with Jetpack.', 'jetpack' ),
2365 2137 'type' => 'boolean',
2366 2138 'default' => 0,
2367 2139 'validate_callback' => __CLASS__ . '::validate_boolean',
@@ -2366,9 +2138,9 @@
2366 2138 'default' => 0,
2367 2139 'validate_callback' => __CLASS__ . '::validate_boolean',
2368 2140 'jp_group' => 'waf',
2369 2141 ),
2370 - 'jetpack_waf_share_debug_data' => array(
2142 + 'jetpack_waf_share_debug_data' => array(
2371 2143 'description' => esc_html__( 'Share detailed data with Jetpack.', 'jetpack' ),
2372 2144 'type' => 'boolean',
2373 2145 'default' => 0,
2374 2146 'validate_callback' => __CLASS__ . '::validate_boolean',
@@ -2374,9 +2146,9 @@
2374 2146 'validate_callback' => __CLASS__ . '::validate_boolean',
2375 2147 'jp_group' => 'waf',
2376 2148 ),
2377 2149 // Galleries.
2378 - 'tiled_galleries' => array(
2150 + 'tiled_galleries' => array(
2379 2151 'description' => esc_html__( 'Display all your gallery pictures in a cool mosaic.', 'jetpack' ),
2380 2152 'type' => 'boolean',
2381 2153 'default' => 0,
2382 2154 'validate_callback' => __CLASS__ . '::validate_boolean',
@@ -2382,9 +2154,9 @@
2382 2154 'validate_callback' => __CLASS__ . '::validate_boolean',
2383 2155 'jp_group' => 'tiled-gallery',
2384 2156 ),
2385 2157
2386 - 'gravatar_disable_hovercards' => array(
2158 + 'gravatar_disable_hovercards' => array(
2387 2159 'description' => esc_html__( "View people's profiles when you mouse over their Gravatars", 'jetpack' ),
2388 2160 'type' => 'string',
2389 2161 'default' => 'enabled',
2390 2162 // Not visible. This is used as the checkbox value.
@@ -2400,9 +2172,9 @@
2400 2172 'jp_group' => 'gravatar-hovercards',
2401 2173 ),
2402 2174
2403 2175 // Infinite Scroll.
2404 - 'infinite_scroll' => array(
2176 + 'infinite_scroll' => array(
2405 2177 'description' => esc_html__( 'To infinity and beyond', 'jetpack' ),
2406 2178 'type' => 'boolean',
2407 2179 'default' => 1,
2408 2180 'validate_callback' => __CLASS__ . '::validate_boolean',
@@ -2407,9 +2179,9 @@
2407 2179 'default' => 1,
2408 2180 'validate_callback' => __CLASS__ . '::validate_boolean',
2409 2181 'jp_group' => 'infinite-scroll',
2410 2182 ),
2411 - 'infinite_scroll_google_analytics' => array(
2183 + 'infinite_scroll_google_analytics' => array(
2412 2184 'description' => esc_html__( 'Use Google Analytics with Infinite Scroll', 'jetpack' ),
2413 2185 'type' => 'boolean',
2414 2186 'default' => 0,
2415 2187 'validate_callback' => __CLASS__ . '::validate_boolean',
@@ -2416,9 +2188,9 @@
2416 2188 'jp_group' => 'infinite-scroll',
2417 2189 ),
2418 2190
2419 2191 // Likes.
2420 - 'wpl_default' => array(
2192 + 'wpl_default' => array(
2421 2193 'description' => esc_html__( 'WordPress.com Likes are', 'jetpack' ),
2422 2194 'type' => 'string',
2423 2195 'default' => 'on',
2424 2196 'enum' => array(
@@ -2431,9 +2203,9 @@
2431 2203 ),
2432 2204 'validate_callback' => __CLASS__ . '::validate_list_item',
2433 2205 'jp_group' => 'likes',
2434 2206 ),
2435 - 'social_notifications_like' => array(
2207 + 'social_notifications_like' => array(
2436 2208 'description' => esc_html__( 'Send email notification when someone likes a post', 'jetpack' ),
2437 2209 'type' => 'boolean',
2438 2210 'default' => 1,
2439 2211 'validate_callback' => __CLASS__ . '::validate_boolean',
@@ -2440,9 +2212,9 @@
2440 2212 'jp_group' => 'likes',
2441 2213 ),
2442 2214
2443 2215 // Markdown.
2444 - 'wpcom_publish_comments_with_markdown' => array(
2216 + 'wpcom_publish_comments_with_markdown' => array(
2445 2217 'description' => esc_html__( 'Use Markdown for comments.', 'jetpack' ),
2446 2218 'type' => 'boolean',
2447 2219 'default' => 0,
2448 2220 'validate_callback' => __CLASS__ . '::validate_boolean',
@@ -2447,9 +2219,9 @@
2447 2219 'default' => 0,
2448 2220 'validate_callback' => __CLASS__ . '::validate_boolean',
2449 2221 'jp_group' => 'markdown',
2450 2222 ),
2451 - 'wpcom_publish_posts_with_markdown' => array(
2223 + 'wpcom_publish_posts_with_markdown' => array(
2452 2224 'description' => esc_html__( 'Use Markdown for posts.', 'jetpack' ),
2453 2225 'type' => 'boolean',
2454 2226 'default' => 0,
2455 2227 'validate_callback' => __CLASS__ . '::validate_boolean',
@@ -2456,9 +2228,9 @@
2456 2228 'jp_group' => 'markdown',
2457 2229 ),
2458 2230
2459 2231 // Monitor.
2460 - 'monitor_receive_notifications' => array(
2232 + 'monitor_receive_notifications' => array(
2461 2233 'description' => esc_html__( 'Receive Monitor Email Notifications.', 'jetpack' ),
2462 2234 'type' => 'boolean',
2463 2235 'default' => 0,
2464 2236 'validate_callback' => __CLASS__ . '::validate_boolean',
@@ -2465,9 +2237,9 @@
2465 2237 'jp_group' => 'monitor',
2466 2238 ),
2467 2239
2468 2240 // Post by Email.
2469 - 'post_by_email_address' => array(
2241 + 'post_by_email_address' => array(
2470 2242 'description' => esc_html__( 'Email Address', 'jetpack' ),
2471 2243 'type' => 'string',
2472 2244 'default' => 'noop',
2473 2245 'enum' => array(
@@ -2486,9 +2258,9 @@
2486 2258 'jp_group' => 'post-by-email',
2487 2259 ),
2488 2260
2489 2261 // Protect.
2490 - 'jetpack_protect_key' => array(
2262 + 'jetpack_protect_key' => array(
2491 2263 'description' => esc_html__( 'Protect API key', 'jetpack' ),
2492 2264 'type' => 'string',
2493 2265 'default' => '',
2494 2266 'validate_callback' => __CLASS__ . '::validate_alphanum',
@@ -2493,9 +2265,9 @@
2493 2265 'default' => '',
2494 2266 'validate_callback' => __CLASS__ . '::validate_alphanum',
2495 2267 'jp_group' => 'protect',
2496 2268 ),
2497 - 'jetpack_protect_global_whitelist' => array(
2269 + 'jetpack_protect_global_whitelist' => array(
2498 2270 'description' => esc_html__( 'Protect global IP allow list', 'jetpack' ),
2499 2271 'type' => 'string',
2500 2272 'default' => '',
2501 2273 'validate_callback' => __CLASS__ . '::validate_string',
@@ -2503,9 +2275,9 @@
2503 2275 'jp_group' => 'protect',
2504 2276 ),
2505 2277
2506 2278 // Sharing.
2507 - 'sharing_services' => array(
2279 + 'sharing_services' => array(
2508 2280 'description' => esc_html__( 'Enabled Services and those hidden behind a button', 'jetpack' ),
2509 2281 'type' => 'object',
2510 2282 'default' => array(
2511 2283 'visible' => array( 'facebook', 'x' ),
@@ -2513,9 +2285,9 @@
2513 2285 ),
2514 2286 'validate_callback' => __CLASS__ . '::validate_services',
2515 2287 'jp_group' => 'sharedaddy',
2516 2288 ),
2517 - 'button_style' => array(
2289 + 'button_style' => array(
2518 2290 'description' => esc_html__( 'Button Style', 'jetpack' ),
2519 2291 'type' => 'string',
2520 2292 'default' => 'icon',
2521 2293 'enum' => array(
@@ -2532,9 +2304,9 @@
2532 2304 ),
2533 2305 'validate_callback' => __CLASS__ . '::validate_list_item',
2534 2306 'jp_group' => 'sharedaddy',
2535 2307 ),
2536 - 'sharing_label' => array(
2308 + 'sharing_label' => array(
2537 2309 'description' => esc_html__( 'Sharing Label', 'jetpack' ),
2538 2310 'type' => 'string',
2539 2311 'default' => '',
2540 2312 'validate_callback' => __CLASS__ . '::validate_string',
@@ -2540,9 +2312,9 @@
2540 2312 'validate_callback' => __CLASS__ . '::validate_string',
2541 2313 'sanitize_callback' => 'esc_html',
2542 2314 'jp_group' => 'sharedaddy',
2543 2315 ),
2544 - 'show' => array(
2316 + 'show' => array(
2545 2317 'description' => esc_html__( 'Views where buttons are shown', 'jetpack' ),
2546 2318 'type' => 'array',
2547 2319 'items' => array(
2548 2320 'type' => 'string',
@@ -2550,9 +2322,9 @@
2550 2322 'default' => array( 'post' ),
2551 2323 'validate_callback' => __CLASS__ . '::validate_sharing_show',
2552 2324 'jp_group' => 'sharedaddy',
2553 2325 ),
2554 - 'jetpack-twitter-cards-site-tag' => array(
2326 + 'jetpack-twitter-cards-site-tag' => array(
2555 2327 'description' => esc_html__( "The Twitter username of the owner of this site's domain.", 'jetpack' ),
2556 2328 'type' => 'string',
2557 2329 'default' => '',
2558 2330 'validate_callback' => __CLASS__ . '::validate_twitter_username',
@@ -2558,9 +2330,9 @@
2558 2330 'validate_callback' => __CLASS__ . '::validate_twitter_username',
2559 2331 'sanitize_callback' => 'esc_html',
2560 2332 'jp_group' => 'sharedaddy',
2561 2333 ),
2562 - 'sharedaddy_disable_resources' => array(
2334 + 'sharedaddy_disable_resources' => array(
2563 2335 'description' => esc_html__( 'Disable CSS and JS', 'jetpack' ),
2564 2336 'type' => 'boolean',
2565 2337 'default' => 0,
2566 2338 'validate_callback' => __CLASS__ . '::validate_boolean',
@@ -2565,9 +2337,9 @@
2565 2337 'default' => 0,
2566 2338 'validate_callback' => __CLASS__ . '::validate_boolean',
2567 2339 'jp_group' => 'sharedaddy',
2568 2340 ),
2569 - 'custom' => array(
2341 + 'custom' => array(
2570 2342 'description' => esc_html__( 'Custom sharing services added by user.', 'jetpack' ),
2571 2343 'type' => 'object',
2572 2344 'default' => array(
2573 2345 'sharing_name' => '',
@@ -2577,9 +2349,9 @@
2577 2349 'validate_callback' => __CLASS__ . '::validate_custom_service',
2578 2350 'jp_group' => 'sharedaddy',
2579 2351 ),
2580 2352 // Not an option, but an action that can be performed on the list of custom services passing the service ID.
2581 - 'sharing_delete_service' => array(
2353 + 'sharing_delete_service' => array(
2582 2354 'description' => esc_html__( 'Delete custom sharing service.', 'jetpack' ),
2583 2355 'type' => 'string',
2584 2356 'default' => '',
2585 2357 'validate_callback' => __CLASS__ . '::validate_custom_service_id',
@@ -2586,16 +2358,16 @@
2586 2358 'jp_group' => 'sharedaddy',
2587 2359 ),
2588 2360
2589 2361 // SSO.
2590 - 'jetpack_sso_require_two_step' => array(
2362 + 'jetpack_sso_require_two_step' => array(
2591 2363 'description' => esc_html__( 'Require Two-Step Authentication', 'jetpack' ),
2592 2364 'type' => 'boolean',
2593 - 'default' => 0,
2365 + 'default' => SSO\Helpers::is_require_two_step_checkbox_disabled(),
2594 2366 'validate_callback' => __CLASS__ . '::validate_boolean',
2595 2367 'jp_group' => 'sso',
2596 2368 ),
2597 - 'jetpack_sso_match_by_email' => array(
2369 + 'jetpack_sso_match_by_email' => array(
2598 2370 'description' => esc_html__( 'Match by Email', 'jetpack' ),
2599 2371 'type' => 'boolean',
2600 2372 'default' => 1,
2601 2373 'validate_callback' => __CLASS__ . '::validate_boolean',
@@ -2602,9 +2374,9 @@
2602 2374 'jp_group' => 'sso',
2603 2375 ),
2604 2376
2605 2377 // Subscriptions.
2606 - 'stb_enabled' => array(
2378 + 'stb_enabled' => array(
2607 2379 'description' => esc_html__( "Show a <em>'follow blog'</em> option in the comment form", 'jetpack' ),
2608 2380 'type' => 'boolean',
2609 2381 'default' => 1,
2610 2382 'validate_callback' => __CLASS__ . '::validate_boolean',
@@ -2609,9 +2381,9 @@
2609 2381 'default' => 1,
2610 2382 'validate_callback' => __CLASS__ . '::validate_boolean',
2611 2383 'jp_group' => 'subscriptions',
2612 2384 ),
2613 - 'stc_enabled' => array(
2385 + 'stc_enabled' => array(
2614 2386 'description' => esc_html__( "Show a <em>'follow comments'</em> option in the comment form", 'jetpack' ),
2615 2387 'type' => 'boolean',
2616 2388 'default' => 1,
2617 2389 'validate_callback' => __CLASS__ . '::validate_boolean',
@@ -2616,9 +2388,9 @@
2616 2388 'default' => 1,
2617 2389 'validate_callback' => __CLASS__ . '::validate_boolean',
2618 2390 'jp_group' => 'subscriptions',
2619 2391 ),
2620 - 'wpcom_newsletter_categories' => array(
2392 + 'wpcom_newsletter_categories' => array(
2621 2393 'description' => esc_html__( 'Array of post category ids that are marked as newsletter categories', 'jetpack' ),
2622 2394 'type' => 'array',
2623 2395 'default' => array(),
2624 2396 'validate_callback' => __CLASS__ . '::validate_array',
@@ -2623,9 +2395,9 @@
2623 2395 'default' => array(),
2624 2396 'validate_callback' => __CLASS__ . '::validate_array',
2625 2397 'jp_group' => 'subscriptions',
2626 2398 ),
2627 - 'wpcom_newsletter_categories_enabled' => array(
2399 + 'wpcom_newsletter_categories_enabled' => array(
2628 2400 'description' => esc_html__( 'Whether the newsletter categories are enabled or not', 'jetpack' ),
2629 2401 'type' => 'boolean',
2630 2402 'default' => 0,
2631 2403 'validate_callback' => __CLASS__ . '::validate_boolean',
@@ -2630,30 +2402,58 @@
2630 2402 'default' => 0,
2631 2403 'validate_callback' => __CLASS__ . '::validate_boolean',
2632 2404 'jp_group' => 'subscriptions',
2633 2405 ),
2634 - 'wpcom_featured_image_in_email' => array(
2406 + 'wpcom_newsletter_send_default' => array(
2407 + 'description' => esc_html__( 'Whether to send newsletter emails by default when publishing a post', 'jetpack' ),
2408 + 'type' => 'boolean',
2409 + 'default' => 1,
2410 + 'validate_callback' => __CLASS__ . '::validate_boolean',
2411 + 'jp_group' => 'subscriptions',
2412 + ),
2413 + 'wpcom_featured_image_in_email' => array(
2635 2414 'description' => esc_html__( 'Whether to include the featured image in the email or not', 'jetpack' ),
2636 2415 'type' => 'boolean',
2416 + 'default' => 0,
2417 + 'validate_callback' => __CLASS__ . '::validate_boolean',
2418 + 'jp_group' => 'subscriptions',
2419 + ),
2420 + 'jetpack_gravatar_in_email' => array(
2421 + 'description' => esc_html__( 'Whether to show author avatar in the email byline', 'jetpack' ),
2422 + 'type' => 'boolean',
2637 2423 'default' => 1,
2638 2424 'validate_callback' => __CLASS__ . '::validate_boolean',
2639 2425 'jp_group' => 'subscriptions',
2640 2426 ),
2641 - 'wpcom_subscription_emails_use_excerpt' => array(
2427 + 'jetpack_author_in_email' => array(
2428 + 'description' => esc_html__( 'Whether to show author display name in the email byline', 'jetpack' ),
2429 + 'type' => 'boolean',
2430 + 'default' => 1,
2431 + 'validate_callback' => __CLASS__ . '::validate_boolean',
2432 + 'jp_group' => 'subscriptions',
2433 + ),
2434 + 'jetpack_post_date_in_email' => array(
2435 + 'description' => esc_html__( 'Whether to show date in the email byline', 'jetpack' ),
2436 + 'type' => 'boolean',
2437 + 'default' => 1,
2438 + 'validate_callback' => __CLASS__ . '::validate_boolean',
2439 + 'jp_group' => 'subscriptions',
2440 + ),
2441 + 'wpcom_subscription_emails_use_excerpt' => array(
2642 2442 'description' => esc_html__( 'Whether to use the excerpt in the email or not', 'jetpack' ),
2643 2443 'type' => 'boolean',
2644 - 'default' => 1,
2444 + 'default' => 0,
2645 2445 'validate_callback' => __CLASS__ . '::validate_boolean',
2646 2446 'jp_group' => 'subscriptions',
2647 2447 ),
2648 - 'jetpack_subscriptions_reply_to' => array(
2448 + 'jetpack_subscriptions_reply_to' => array(
2649 2449 'description' => esc_html__( 'Reply to email behaviour for newsletters emails', 'jetpack' ),
2650 2450 'type' => 'string',
2651 - 'default' => 'no-reply',
2451 + 'default' => Automattic\Jetpack\Modules\Subscriptions\Settings::$default_reply_to,
2652 2452 'validate_callback' => __CLASS__ . '::validate_subscriptions_reply_to',
2653 2453 'jp_group' => 'subscriptions',
2654 2454 ),
2655 - 'jetpack_subscriptions_from_name' => array(
2455 + 'jetpack_subscriptions_from_name' => array(
2656 2456 'description' => esc_html__( 'From name for newsletters emails', 'jetpack' ),
2657 2457 'type' => 'string',
2658 2458 'default' => '',
2659 2459 'validate_callback' => __CLASS__ . '::validate_subscriptions_reply_to_name',
@@ -2658,9 +2458,9 @@
2658 2458 'default' => '',
2659 2459 'validate_callback' => __CLASS__ . '::validate_subscriptions_reply_to_name',
2660 2460 'jp_group' => 'subscriptions',
2661 2461 ),
2662 - 'sm_enabled' => array(
2462 + 'sm_enabled' => array(
2663 2463 'description' => esc_html__( 'Show popup Subscribe modal to readers.', 'jetpack' ),
2664 2464 'type' => 'boolean',
2665 2465 'default' => 0,
2666 2466 'validate_callback' => __CLASS__ . '::validate_boolean',
@@ -2665,9 +2465,9 @@
2665 2465 'default' => 0,
2666 2466 'validate_callback' => __CLASS__ . '::validate_boolean',
2667 2467 'jp_group' => 'subscriptions',
2668 2468 ),
2669 - 'jetpack_subscribe_overlay_enabled' => array(
2469 + 'jetpack_subscribe_overlay_enabled' => array(
2670 2470 'description' => esc_html__( 'Show subscribe overlay on homepage.', 'jetpack' ),
2671 2471 'type' => 'boolean',
2672 2472 'default' => 0,
2673 2473 'validate_callback' => __CLASS__ . '::validate_boolean',
@@ -2672,8 +2472,15 @@
2672 2472 'default' => 0,
2673 2473 'validate_callback' => __CLASS__ . '::validate_boolean',
2674 2474 'jp_group' => 'subscriptions',
2675 2475 ),
2476 + 'jetpack_subscribe_floating_button_enabled' => array(
2477 + 'description' => esc_html__( 'Show a floating subscribe button.', 'jetpack' ),
2478 + 'type' => 'boolean',
2479 + 'default' => 0,
2480 + 'validate_callback' => __CLASS__ . '::validate_boolean',
2481 + 'jp_group' => 'subscriptions',
2482 + ),
2676 2483 'jetpack_subscriptions_subscribe_post_end_enabled' => array(
2677 2484 'description' => esc_html__( 'Add Subscribe block at the end of each post.', 'jetpack' ),
2678 2485 'type' => 'boolean',
2679 2486 'default' => 0,
@@ -2693,9 +2500,9 @@
2693 2500 'default' => 0,
2694 2501 'validate_callback' => __CLASS__ . '::validate_boolean',
2695 2502 'jp_group' => 'subscriptions',
2696 2503 ),
2697 - 'social_notifications_subscribe' => array(
2504 + 'social_notifications_subscribe' => array(
2698 2505 'description' => esc_html__( 'Send email notification when someone subscribes to my blog', 'jetpack' ),
2699 2506 'type' => 'boolean',
2700 2507 'default' => 0,
2701 2508 'validate_callback' => __CLASS__ . '::validate_boolean',
@@ -2700,15 +2507,18 @@
2700 2507 'default' => 0,
2701 2508 'validate_callback' => __CLASS__ . '::validate_boolean',
2702 2509 'jp_group' => 'subscriptions',
2703 2510 ),
2704 - 'subscription_options' => array(
2705 - 'description' => esc_html__( 'Three options used in subscription email templates: \'invitation\', \'welcome\' and \'comment_follow\'.', 'jetpack' ),
2511 + 'subscription_options' => array(
2512 + 'description' => esc_html__( 'Options used in subscription email templates and the Subscribe block: \'invitation\', \'welcome\', \'comment_follow\', \'subscribe_modal_heading\', \'free_tier_description\' and \'hide_free_tier\'.', 'jetpack' ),
2706 2513 'type' => 'object',
2707 2514 'default' => array(
2708 - 'invitation' => '',
2709 - 'welcome' => '',
2710 - 'comment_follow' => '',
2515 + 'invitation' => '',
2516 + 'welcome' => '',
2517 + 'comment_follow' => '',
2518 + 'subscribe_modal_heading' => '',
2519 + 'free_tier_description' => '',
2520 + 'hide_free_tier' => false,
2711 2521 ),
2712 2522 'validate_callback' => __CLASS__ . '::validate_subscription_options',
2713 2523 'jp_group' => 'subscriptions',
2714 2524 ),
@@ -2713,9 +2523,9 @@
2713 2523 'jp_group' => 'subscriptions',
2714 2524 ),
2715 2525
2716 2526 // Related Posts.
2717 - 'show_headline' => array(
2527 + 'show_headline' => array(
2718 2528 'description' => esc_html__( 'Highlight related content with a heading', 'jetpack' ),
2719 2529 'type' => 'boolean',
2720 2530 'default' => 1,
2721 2531 'validate_callback' => __CLASS__ . '::validate_boolean',
@@ -2720,9 +2530,9 @@
2720 2530 'default' => 1,
2721 2531 'validate_callback' => __CLASS__ . '::validate_boolean',
2722 2532 'jp_group' => 'related-posts',
2723 2533 ),
2724 - 'show_thumbnails' => array(
2534 + 'show_thumbnails' => array(
2725 2535 'description' => esc_html__( 'Show a thumbnail image where available', 'jetpack' ),
2726 2536 'type' => 'boolean',
2727 2537 'default' => 0,
2728 2538 'validate_callback' => __CLASS__ . '::validate_boolean',
@@ -2729,9 +2539,9 @@
2729 2539 'jp_group' => 'related-posts',
2730 2540 ),
2731 2541
2732 2542 // Search.
2733 - 'instant_search_enabled' => array(
2543 + 'instant_search_enabled' => array(
2734 2544 'description' => esc_html__( 'Enable Instant Search', 'jetpack' ),
2735 2545 'type' => 'boolean',
2736 2546 'default' => 0,
2737 2547 'validate_callback' => __CLASS__ . '::validate_boolean',
@@ -2737,9 +2547,9 @@
2737 2547 'validate_callback' => __CLASS__ . '::validate_boolean',
2738 2548 'jp_group' => 'search',
2739 2549 ),
2740 2550
2741 - 'has_jetpack_search_product' => array(
2551 + 'has_jetpack_search_product' => array(
2742 2552 'description' => esc_html__( 'Has an active Jetpack Search product purchase', 'jetpack' ),
2743 2553 'type' => 'boolean',
2744 2554 'default' => 0,
2745 2555 'validate_callback' => __CLASS__ . '::validate_boolean',
@@ -2745,9 +2555,9 @@
2745 2555 'validate_callback' => __CLASS__ . '::validate_boolean',
2746 2556 'jp_group' => 'settings',
2747 2557 ),
2748 2558
2749 - 'search_auto_config' => array(
2559 + 'search_auto_config' => array(
2750 2560 'description' => esc_html__( 'Trigger an auto config of instant search', 'jetpack' ),
2751 2561 'type' => 'boolean',
2752 2562 'default' => 0,
2753 2563 'validate_callback' => __CLASS__ . '::validate_boolean',
@@ -2754,9 +2564,9 @@
2754 2564 'jp_group' => 'search',
2755 2565 ),
2756 2566
2757 2567 // Verification Tools.
2758 - 'google' => array(
2568 + 'google' => array(
2759 2569 'description' => esc_html__( 'Google Search Console', 'jetpack' ),
2760 2570 'type' => 'string',
2761 2571 'default' => '',
2762 2572 'validate_callback' => __CLASS__ . '::validate_verification_service',
@@ -2761,9 +2571,9 @@
2761 2571 'default' => '',
2762 2572 'validate_callback' => __CLASS__ . '::validate_verification_service',
2763 2573 'jp_group' => 'verification-tools',
2764 2574 ),
2765 - 'bing' => array(
2575 + 'bing' => array(
2766 2576 'description' => esc_html__( 'Bing Webmaster Center', 'jetpack' ),
2767 2577 'type' => 'string',
2768 2578 'default' => '',
2769 2579 'validate_callback' => __CLASS__ . '::validate_verification_service',
@@ -2768,9 +2578,9 @@
2768 2578 'default' => '',
2769 2579 'validate_callback' => __CLASS__ . '::validate_verification_service',
2770 2580 'jp_group' => 'verification-tools',
2771 2581 ),
2772 - 'pinterest' => array(
2582 + 'pinterest' => array(
2773 2583 'description' => esc_html__( 'Pinterest Site Verification', 'jetpack' ),
2774 2584 'type' => 'string',
2775 2585 'default' => '',
2776 2586 'validate_callback' => __CLASS__ . '::validate_verification_service',
@@ -2775,9 +2585,9 @@
2775 2585 'default' => '',
2776 2586 'validate_callback' => __CLASS__ . '::validate_verification_service',
2777 2587 'jp_group' => 'verification-tools',
2778 2588 ),
2779 - 'yandex' => array(
2589 + 'yandex' => array(
2780 2590 'description' => esc_html__( 'Yandex Site Verification', 'jetpack' ),
2781 2591 'type' => 'string',
2782 2592 'default' => '',
2783 2593 'validate_callback' => __CLASS__ . '::validate_verification_service',
@@ -2782,9 +2592,9 @@
2782 2592 'default' => '',
2783 2593 'validate_callback' => __CLASS__ . '::validate_verification_service',
2784 2594 'jp_group' => 'verification-tools',
2785 2595 ),
2786 - 'facebook' => array(
2596 + 'facebook' => array(
2787 2597 'description' => esc_html__( 'Facebook Domain Verification', 'jetpack' ),
2788 2598 'type' => 'string',
2789 2599 'default' => '',
2790 2600 'validate_callback' => __CLASS__ . '::validate_verification_service',
@@ -2791,9 +2601,9 @@
2791 2601 'jp_group' => 'verification-tools',
2792 2602 ),
2793 2603
2794 2604 // WordAds.
2795 - 'enable_header_ad' => array(
2605 + 'enable_header_ad' => array(
2796 2606 'description' => esc_html__( 'Display an ad unit at the top of each page.', 'jetpack' ),
2797 2607 'type' => 'boolean',
2798 2608 'default' => 1,
2799 2609 'validate_callback' => __CLASS__ . '::validate_boolean',
@@ -2798,9 +2608,9 @@
2798 2608 'default' => 1,
2799 2609 'validate_callback' => __CLASS__ . '::validate_boolean',
2800 2610 'jp_group' => 'wordads',
2801 2611 ),
2802 - 'wordads_approved' => array(
2612 + 'wordads_approved' => array(
2803 2613 'description' => esc_html__( 'Is site approved for WordAds?', 'jetpack' ),
2804 2614 'type' => 'boolean',
2805 2615 'default' => 0,
2806 2616 'validate_callback' => __CLASS__ . '::validate_boolean',
@@ -2805,9 +2615,9 @@
2805 2615 'default' => 0,
2806 2616 'validate_callback' => __CLASS__ . '::validate_boolean',
2807 2617 'jp_group' => 'wordads',
2808 2618 ),
2809 - 'wordads_second_belowpost' => array(
2619 + 'wordads_second_belowpost' => array(
2810 2620 'description' => esc_html__( 'Display second ad below post?', 'jetpack' ),
2811 2621 'type' => 'boolean',
2812 2622 'default' => 1,
2813 2623 'validate_callback' => __CLASS__ . '::validate_boolean',
@@ -2812,9 +2622,9 @@
2812 2622 'default' => 1,
2813 2623 'validate_callback' => __CLASS__ . '::validate_boolean',
2814 2624 'jp_group' => 'wordads',
2815 2625 ),
2816 - 'wordads_inline_enabled' => array(
2626 + 'wordads_inline_enabled' => array(
2817 2627 'description' => esc_html__( 'Display inline ad within post content?', 'jetpack' ),
2818 2628 'type' => 'boolean',
2819 2629 'default' => 1,
2820 2630 'validate_callback' => __CLASS__ . '::validate_boolean',
@@ -2819,9 +2629,9 @@
2819 2629 'default' => 1,
2820 2630 'validate_callback' => __CLASS__ . '::validate_boolean',
2821 2631 'jp_group' => 'wordads',
2822 2632 ),
2823 - 'wordads_display_front_page' => array(
2633 + 'wordads_display_front_page' => array(
2824 2634 'description' => esc_html__( 'Display ads on the front page?', 'jetpack' ),
2825 2635 'type' => 'boolean',
2826 2636 'default' => 1,
2827 2637 'validate_callback' => __CLASS__ . '::validate_boolean',
@@ -2826,9 +2636,9 @@
2826 2636 'default' => 1,
2827 2637 'validate_callback' => __CLASS__ . '::validate_boolean',
2828 2638 'jp_group' => 'wordads',
2829 2639 ),
2830 - 'wordads_display_post' => array(
2640 + 'wordads_display_post' => array(
2831 2641 'description' => esc_html__( 'Display ads on posts?', 'jetpack' ),
2832 2642 'type' => 'boolean',
2833 2643 'default' => 1,
2834 2644 'validate_callback' => __CLASS__ . '::validate_boolean',
@@ -2833,9 +2643,9 @@
2833 2643 'default' => 1,
2834 2644 'validate_callback' => __CLASS__ . '::validate_boolean',
2835 2645 'jp_group' => 'wordads',
2836 2646 ),
2837 - 'wordads_display_page' => array(
2647 + 'wordads_display_page' => array(
2838 2648 'description' => esc_html__( 'Display ads on pages?', 'jetpack' ),
2839 2649 'type' => 'boolean',
2840 2650 'default' => 1,
2841 2651 'validate_callback' => __CLASS__ . '::validate_boolean',
@@ -2840,9 +2650,9 @@
2840 2650 'default' => 1,
2841 2651 'validate_callback' => __CLASS__ . '::validate_boolean',
2842 2652 'jp_group' => 'wordads',
2843 2653 ),
2844 - 'wordads_display_archive' => array(
2654 + 'wordads_display_archive' => array(
2845 2655 'description' => esc_html__( 'Display ads on archive pages?', 'jetpack' ),
2846 2656 'type' => 'boolean',
2847 2657 'default' => 1,
2848 2658 'validate_callback' => __CLASS__ . '::validate_boolean',
@@ -2847,9 +2657,9 @@
2847 2657 'default' => 1,
2848 2658 'validate_callback' => __CLASS__ . '::validate_boolean',
2849 2659 'jp_group' => 'wordads',
2850 2660 ),
2851 - 'wordads_custom_adstxt_enabled' => array(
2661 + 'wordads_custom_adstxt_enabled' => array(
2852 2662 'description' => esc_html__( 'Custom ads.txt', 'jetpack' ),
2853 2663 'type' => 'boolean',
2854 2664 'default' => 0,
2855 2665 'validate_callback' => __CLASS__ . '::validate_boolean',
@@ -2854,9 +2664,9 @@
2854 2664 'default' => 0,
2855 2665 'validate_callback' => __CLASS__ . '::validate_boolean',
2856 2666 'jp_group' => 'wordads',
2857 2667 ),
2858 - 'wordads_custom_adstxt' => array(
2668 + 'wordads_custom_adstxt' => array(
2859 2669 'description' => esc_html__( 'Custom ads.txt entries', 'jetpack' ),
2860 2670 'type' => 'string',
2861 2671 'default' => '',
2862 2672 'validate_callback' => __CLASS__ . '::validate_string',
@@ -2862,9 +2672,9 @@
2862 2672 'validate_callback' => __CLASS__ . '::validate_string',
2863 2673 'sanitize_callback' => 'sanitize_textarea_field',
2864 2674 'jp_group' => 'wordads',
2865 2675 ),
2866 - 'wordads_ccpa_enabled' => array(
2676 + 'wordads_ccpa_enabled' => array(
2867 2677 'description' => esc_html__( 'Enable support for California Consumer Privacy Act', 'jetpack' ),
2868 2678 'type' => 'boolean',
2869 2679 'default' => 0,
2870 2680 'validate_callback' => __CLASS__ . '::validate_boolean',
@@ -2869,9 +2679,9 @@
2869 2679 'default' => 0,
2870 2680 'validate_callback' => __CLASS__ . '::validate_boolean',
2871 2681 'jp_group' => 'wordads',
2872 2682 ),
2873 - 'wordads_ccpa_privacy_policy_url' => array(
2683 + 'wordads_ccpa_privacy_policy_url' => array(
2874 2684 'description' => esc_html__( 'Privacy Policy URL', 'jetpack' ),
2875 2685 'type' => 'string',
2876 2686 'default' => '',
2877 2687 'validate_callback' => __CLASS__ . '::validate_string',
@@ -2877,9 +2687,9 @@
2877 2687 'validate_callback' => __CLASS__ . '::validate_string',
2878 2688 'sanitize_callback' => 'sanitize_text_field',
2879 2689 'jp_group' => 'wordads',
2880 2690 ),
2881 - 'wordads_cmp_enabled' => array(
2691 + 'wordads_cmp_enabled' => array(
2882 2692 'description' => esc_html__( 'Enable GDPR Consent Management Banner for WordAds', 'jetpack' ),
2883 2693 'type' => 'boolean',
2884 2694 'default' => 0,
2885 2695 'validate_callback' => __CLASS__ . '::validate_boolean',
@@ -2886,9 +2696,9 @@
2886 2696 'jp_group' => 'wordads',
2887 2697 ),
2888 2698
2889 2699 // Google Analytics.
2890 - 'google_analytics_tracking_id' => array(
2700 + 'google_analytics_tracking_id' => array(
2891 2701 'description' => esc_html__( 'Google Analytics', 'jetpack' ),
2892 2702 'type' => 'string',
2893 2703 'default' => '',
2894 2704 'validate_callback' => __CLASS__ . '::validate_alphanum',
@@ -2893,11 +2703,16 @@
2893 2703 'default' => '',
2894 2704 'validate_callback' => __CLASS__ . '::validate_alphanum',
2895 2705 'jp_group' => 'google-analytics',
2896 2706 ),
2707 + 'jetpack_wga' => array(
2708 + 'description' => esc_html__( 'Google Analytics', 'jetpack' ),
2709 + 'type' => 'object',
2710 + 'jp_group' => 'settings',
2711 + ),
2897 2712
2898 2713 // Stats.
2899 - 'admin_bar' => array(
2714 + 'admin_bar' => array(
2900 2715 'description' => esc_html__( 'Include a small chart in your admin bar with a 48-hour traffic snapshot.', 'jetpack' ),
2901 2716 'type' => 'boolean',
2902 2717 'default' => 1,
2903 2718 'validate_callback' => __CLASS__ . '::validate_boolean',
@@ -2902,9 +2717,9 @@
2902 2717 'default' => 1,
2903 2718 'validate_callback' => __CLASS__ . '::validate_boolean',
2904 2719 'jp_group' => 'stats',
2905 2720 ),
2906 - 'enable_odyssey_stats' => array(
2721 + 'enable_odyssey_stats' => array(
2907 2722 'description' => esc_html__( 'Preview the new Jetpack Stats experience (Experimental).', 'jetpack' ),
2908 2723 'type' => 'boolean',
2909 2724 'default' => 1,
2910 2725 'validate_callback' => __CLASS__ . '::validate_boolean',
@@ -2909,9 +2724,9 @@
2909 2724 'default' => 1,
2910 2725 'validate_callback' => __CLASS__ . '::validate_boolean',
2911 2726 'jp_group' => 'stats',
2912 2727 ),
2913 - 'roles' => array(
2728 + 'roles' => array(
2914 2729 'description' => esc_html__( 'Select the roles that will be able to view stats reports.', 'jetpack' ),
2915 2730 'type' => 'array',
2916 2731 'items' => array(
2917 2732 'type' => 'string',
@@ -2920,9 +2735,9 @@
2920 2735 'validate_callback' => __CLASS__ . '::validate_stats_roles',
2921 2736 'sanitize_callback' => __CLASS__ . '::sanitize_stats_allowed_roles',
2922 2737 'jp_group' => 'stats',
2923 2738 ),
2924 - 'count_roles' => array(
2739 + 'count_roles' => array(
2925 2740 'description' => esc_html__( 'Count the page views of registered users who are logged in.', 'jetpack' ),
2926 2741 'type' => 'array',
2927 2742 'items' => array(
2928 2743 'type' => 'string',
@@ -2930,9 +2745,9 @@
2930 2745 'default' => array( 'administrator' ),
2931 2746 'validate_callback' => __CLASS__ . '::validate_stats_roles',
2932 2747 'jp_group' => 'stats',
2933 2748 ),
2934 - 'blog_id' => array(
2749 + 'blog_id' => array(
2935 2750 'description' => esc_html__( 'Blog ID.', 'jetpack' ),
2936 2751 'type' => 'boolean',
2937 2752 'default' => 0,
2938 2753 'validate_callback' => __CLASS__ . '::validate_boolean',
@@ -2937,9 +2752,9 @@
2937 2752 'default' => 0,
2938 2753 'validate_callback' => __CLASS__ . '::validate_boolean',
2939 2754 'jp_group' => 'stats',
2940 2755 ),
2941 - 'do_not_track' => array(
2756 + 'do_not_track' => array(
2942 2757 'description' => esc_html__( 'Do not track.', 'jetpack' ),
2943 2758 'type' => 'boolean',
2944 2759 'default' => 1,
2945 2760 'validate_callback' => __CLASS__ . '::validate_boolean',
@@ -2944,9 +2759,9 @@
2944 2759 'default' => 1,
2945 2760 'validate_callback' => __CLASS__ . '::validate_boolean',
2946 2761 'jp_group' => 'stats',
2947 2762 ),
2948 - 'version' => array(
2763 + 'version' => array(
2949 2764 'description' => esc_html__( 'Version.', 'jetpack' ),
2950 2765 'type' => 'integer',
2951 2766 'default' => 9,
2952 2767 'validate_callback' => __CLASS__ . '::validate_posint',
@@ -2951,9 +2766,9 @@
2951 2766 'default' => 9,
2952 2767 'validate_callback' => __CLASS__ . '::validate_posint',
2953 2768 'jp_group' => 'stats',
2954 2769 ),
2955 - 'collapse_nudges' => array(
2770 + 'collapse_nudges' => array(
2956 2771 'description' => esc_html__( 'Collapse upgrade nudges', 'jetpack' ),
2957 2772 'type' => 'boolean',
2958 2773 'default' => 0,
2959 2774 'validate_callback' => __CLASS__ . '::validate_boolean',
@@ -2960,9 +2775,9 @@
2960 2775 'jp_group' => 'stats',
2961 2776 ),
2962 2777
2963 2778 // Whether to share stats views with WordPress.com Reader.
2964 - 'wpcom_reader_views_enabled' => array(
2779 + 'wpcom_reader_views_enabled' => array(
2965 2780 'description' => esc_html__( 'Show post views in the WordPress.com Reader.', 'jetpack' ),
2966 2781 'type' => 'boolean',
2967 2782 'default' => 1,
2968 2783 'validate_callback' => __CLASS__ . '::validate_boolean',
@@ -2969,9 +2784,9 @@
2969 2784 'jp_group' => 'settings',
2970 2785 ),
2971 2786
2972 2787 // Akismet - Not a module, but a plugin. The options can be passed and handled differently.
2973 - 'akismet_show_user_comments_approved' => array(
2788 + 'akismet_show_user_comments_approved' => array(
2974 2789 'description' => '',
2975 2790 'type' => 'boolean',
2976 2791 'default' => 0,
2977 2792 'validate_callback' => __CLASS__ . '::validate_boolean',
@@ -2977,9 +2792,9 @@
2977 2792 'validate_callback' => __CLASS__ . '::validate_boolean',
2978 2793 'jp_group' => 'settings',
2979 2794 ),
2980 2795
2981 - 'wordpress_api_key' => array(
2796 + 'wordpress_api_key' => array(
2982 2797 'description' => '',
2983 2798 'type' => 'string',
2984 2799 'default' => '',
2985 2800 'validate_callback' => __CLASS__ . '::validate_alphanum',
@@ -2986,9 +2801,9 @@
2986 2801 'jp_group' => 'settings',
2987 2802 ),
2988 2803
2989 2804 // Empty stats card dismiss.
2990 - 'dismiss_empty_stats_card' => array(
2805 + 'dismiss_empty_stats_card' => array(
2991 2806 'description' => '',
2992 2807 'type' => 'boolean',
2993 2808 'default' => 0,
2994 2809 'validate_callback' => __CLASS__ . '::validate_boolean',
@@ -2995,9 +2810,9 @@
2995 2810 'jp_group' => 'settings',
2996 2811 ),
2997 2812
2998 2813 // Backup Getting Started card on dashboard.
2999 - 'dismiss_dash_backup_getting_started' => array(
2814 + 'dismiss_dash_backup_getting_started' => array(
3000 2815 'description' => '',
3001 2816 'type' => 'boolean',
3002 2817 'default' => 0,
3003 2818 'validate_callback' => __CLASS__ . '::validate_boolean',
@@ -3004,9 +2819,9 @@
3004 2819 'jp_group' => 'settings',
3005 2820 ),
3006 2821
3007 2822 // Agencies Learn More card on dashboard.
3008 - 'dismiss_dash_agencies_learn_more' => array(
2823 + 'dismiss_dash_agencies_learn_more' => array(
3009 2824 'description' => '',
3010 2825 'type' => 'boolean',
3011 2826 'default' => 0,
3012 2827 'validate_callback' => __CLASS__ . '::validate_boolean',
@@ -3012,9 +2827,9 @@
3012 2827 'validate_callback' => __CLASS__ . '::validate_boolean',
3013 2828 'jp_group' => 'settings',
3014 2829 ),
3015 2830
3016 - 'lang_id' => array(
2831 + 'lang_id' => array(
3017 2832 'description' => esc_html__( 'Primary language for the site.', 'jetpack' ),
3018 2833 'type' => 'string',
3019 2834 'default' => 'en_US',
3020 2835 'jp_group' => 'settings',
@@ -3019,32 +2834,10 @@
3019 2834 'default' => 'en_US',
3020 2835 'jp_group' => 'settings',
3021 2836 ),
3022 2837
3023 - 'onboarding' => array(
3024 - 'description' => '',
3025 - 'type' => 'object',
3026 - 'default' => array(
3027 - 'siteTitle' => '',
3028 - 'siteDescription' => '',
3029 - 'siteType' => 'personal',
3030 - 'homepageFormat' => 'posts',
3031 - 'addContactForm' => 0,
3032 - 'businessAddress' => array(
3033 - 'name' => '',
3034 - 'street' => '',
3035 - 'city' => '',
3036 - 'state' => '',
3037 - 'zip' => '',
3038 - ),
3039 - 'installWooCommerce' => false,
3040 - ),
3041 - 'validate_callback' => __CLASS__ . '::validate_onboarding',
3042 - 'jp_group' => 'settings',
3043 - ),
3044 -
3045 2838 // SEO Tools.
3046 - 'advanced_seo_front_page_description' => array(
2839 + 'advanced_seo_front_page_description' => array(
3047 2840 'description' => esc_html__( 'Front page meta description.', 'jetpack' ),
3048 2841 'type' => 'string',
3049 2842 'default' => '',
3050 2843 'sanitize_callback' => 'Jetpack_SEO_Utils::sanitize_front_page_meta_description',
@@ -3050,9 +2843,9 @@
3050 2843 'sanitize_callback' => 'Jetpack_SEO_Utils::sanitize_front_page_meta_description',
3051 2844 'jp_group' => 'seo-tools',
3052 2845 ),
3053 2846
3054 - 'advanced_seo_title_formats' => array(
2847 + 'advanced_seo_title_formats' => array(
3055 2848 'description' => esc_html__( 'SEO page title structures.', 'jetpack' ),
3056 2849 'type' => 'object',
3057 2850 'default' => array(
3058 2851 'archives' => array(),
@@ -3065,10 +2858,34 @@
3065 2858 'validate_callback' => 'Jetpack_SEO_Titles::are_valid_title_formats',
3066 2859 'sanitize_callback' => 'Jetpack_SEO_Titles::sanitize_title_formats',
3067 2860 ),
3068 2861
2862 + // AI tab (Jetpack > SEO). Plain option the SEO package reads to serve
2863 + // /llms.txt. The front-end behavior is gated inside the package; this
2864 + // only round-trips the persisted state alongside the other seo-tools
2865 + // settings.
2866 + 'jetpack_seo_llms_txt_enabled' => array(
2867 + 'description' => esc_html__( 'Generate an llms.txt file to guide AI assistants around your content.', 'jetpack' ),
2868 + 'type' => 'boolean',
2869 + 'default' => 0,
2870 + 'validate_callback' => __CLASS__ . '::validate_boolean',
2871 + 'jp_group' => 'seo-tools',
2872 + ),
2873 +
2874 + // AI tab (Jetpack > SEO). Sparse per-crawler override map the SEO
2875 + // package reads to emit robots.txt directives for blocked AI crawlers.
2876 + // Stored as `slug => bool` (true = blocked); catalog validation and
2877 + // default-pruning happen in `Ai_Crawlers::get_overrides()`.
2878 + 'jetpack_seo_ai_crawler_overrides' => array(
2879 + 'description' => esc_html__( 'AI crawler allow/block overrides.', 'jetpack' ),
2880 + 'type' => 'object',
2881 + 'default' => array(),
2882 + 'jp_group' => 'seo-tools',
2883 + 'sanitize_callback' => __CLASS__ . '::sanitize_ai_crawler_overrides',
2884 + ),
2885 +
3069 2886 // VideoPress.
3070 - 'videopress_private_enabled_for_site' => array(
2887 + 'videopress_private_enabled_for_site' => array(
3071 2888 'description' => esc_html__( 'Video Privacy: Restrict views to members of this site', 'jetpack' ),
3072 2889 'type' => 'boolean',
3073 2890 'default' => 0,
3074 2891 'validate_callback' => __CLASS__ . '::validate_boolean',
@@ -3075,8 +2892,21 @@
3075 2892 'jp_group' => 'videopress',
3076 2893 ),
3077 2894 );
3078 2895
2896 + // SEO Tools - SEO Enhancer.
2897 + // TODO: move this to the main options array? The filter was there while developing the feature.
2898 + // It might come in handy to hold its availability behind the filter since it still depends on AI to be available.
2899 + if ( apply_filters( 'ai_seo_enhancer_enabled', true ) ) {
2900 + $options['ai_seo_enhancer_enabled'] = array(
2901 + 'description' => esc_html__( 'Automatically generate SEO title, SEO description, and image alt text for new posts.', 'jetpack' ),
2902 + 'type' => 'boolean',
2903 + 'default' => 0,
2904 + 'validate_callback' => __CLASS__ . '::validate_boolean',
2905 + 'jp_group' => 'seo-tools',
2906 + );
2907 + }
2908 +
3079 2909 // Add modules to list so they can be toggled.
3080 2910 $modules = Jetpack::get_available_modules();
3081 2911 if ( is_array( $modules ) && ! empty( $modules ) ) {
3082 2912 $module_args = array(
@@ -3122,8 +2952,10 @@
3122 2952 * Validates that the parameters are proper values that can be set during Jetpack onboarding.
3123 2953 *
3124 2954 * @since 5.4.0
3125 2955 *
2956 + * @deprecated since 13.9
2957 + *
3126 2958 * @param array $onboarding_data Values to check.
3127 2959 * @param WP_REST_Request $request The request sent to the WP REST API.
3128 2960 * @param string $param Name of the parameter passed to endpoint holding $value.
3129 2961 *
@@ -3128,24 +2960,10 @@
3128 2960 * @param string $param Name of the parameter passed to endpoint holding $value.
3129 2961 *
3130 2962 * @return bool|WP_Error
3131 2963 */
3132 - public static function validate_onboarding( $onboarding_data, $request, $param ) {
3133 - if ( ! is_array( $onboarding_data ) ) {
3134 - return new WP_Error( 'invalid_param', esc_html__( 'Not valid onboarding data.', 'jetpack' ) );
3135 - }
3136 - foreach ( $onboarding_data as $value ) {
3137 - if ( is_string( $value ) ) {
3138 - $onboarding_choice = self::validate_string( $value, $request, $param );
3139 - } elseif ( is_array( $value ) ) {
3140 - $onboarding_choice = self::validate_onboarding( $value, $request, $param );
3141 - } else {
3142 - $onboarding_choice = self::validate_boolean( $value, $request, $param );
3143 - }
3144 - if ( is_wp_error( $onboarding_choice ) ) {
3145 - return $onboarding_choice;
3146 - }
3147 - }
2964 + public static function validate_onboarding( $onboarding_data, $request, $param ) { // phpcs:ignore VariableAnalysis.CodeAnalysis.VariableAnalysis.UnusedVariable
2965 + _deprecated_function( __METHOD__, '13.9' );
3148 2966 return true;
3149 2967 }
3150 2968
3151 2969 /**
@@ -3359,9 +3177,9 @@
3359 3177 * Validates that the parameter is among the roles allowed for Stats.
3360 3178 *
3361 3179 * @since 4.3.0
3362 3180 *
3363 - * @param string|bool $value Value to check.
3181 + * @param mixed $value Value to check.
3364 3182 * @param WP_REST_Request $request The request sent to the WP REST API.
3365 3183 * @param string $param Name of the parameter passed to endpoint holding $value.
3366 3184 *
3367 3185 * @return bool|WP_Error
@@ -3366,16 +3184,37 @@
3366 3184 *
3367 3185 * @return bool|WP_Error
3368 3186 */
3369 3187 public static function validate_stats_roles( $value, $request, $param ) {
3370 - if ( ! empty( $value ) && ! array_intersect( self::$stats_roles, $value ) ) {
3188 + // An empty value clears the setting; sanitize_stats_allowed_roles() falls back to 'administrator'.
3189 + if ( empty( $value ) ) {
3190 + return true;
3191 + }
3192 +
3193 + // Enforce the schema's list-of-strings contract before array_intersect() below sees the value.
3194 + if ( ! is_array( $value ) || count( array_filter( $value, 'is_string' ) ) !== count( $value ) ) {
3371 3195 return new WP_Error(
3372 3196 'invalid_param',
3373 3197 sprintf(
3198 + /* Translators: Placeholder is a parameter name. */
3199 + esc_html__( '%s must be an array of user roles.', 'jetpack' ),
3200 + $param
3201 + )
3202 + );
3203 + }
3204 +
3205 + if ( ! function_exists( 'get_editable_roles' ) ) {
3206 + require_once ABSPATH . 'wp-admin/includes/user.php';
3207 + }
3208 + $editable_roles = array_keys( get_editable_roles() );
3209 + if ( ! array_intersect( $editable_roles, $value ) ) {
3210 + return new WP_Error(
3211 + 'invalid_param',
3212 + sprintf(
3374 3213 /* Translators: first variable is the name of a parameter passed to endpoint holding the role that will be checked, the second is a list of roles allowed to see stats. The parameter is checked against this list. */
3375 3214 esc_html__( '%1$s must be %2$s.', 'jetpack' ),
3376 3215 $param,
3377 - implode( ', ', self::$stats_roles )
3216 + implode( ', ', $editable_roles )
3378 3217 )
3379 3218 );
3380 3219 }
3381 3220 return true;
@@ -3692,9 +3531,12 @@
3692 3531 *
3693 3532 * @return bool|WP_Error
3694 3533 */
3695 3534 public static function validate_subscription_options( $values ) {
3696 - if ( is_object( $values ) ) {
3535 + // A REST "object" decodes to a PHP associative array. Reject any other
3536 + // type (object, string, int, null, ...) up front so the array_keys()
3537 + // loop below never runs against a non-array and triggers a PHP warning.
3538 + if ( ! is_array( $values ) ) {
3697 3539 return new WP_Error(
3698 3540 'invalid_param',
3699 3541 /* Translators: subscription_options is a variable name, and shouldn't be translated. */
3700 3542 esc_html__( 'subscription_options must be an object.', 'jetpack' )
@@ -3700,9 +3542,9 @@
3700 3542 esc_html__( 'subscription_options must be an object.', 'jetpack' )
3701 3543 );
3702 3544 }
3703 3545 foreach ( array_keys( $values ) as $key ) {
3704 - if ( ! in_array( $key, array( 'welcome', 'invitation', 'comment_follow' ), true ) ) {
3546 + if ( ! in_array( $key, array( 'welcome', 'invitation', 'comment_follow', 'subscribe_modal_heading', 'free_tier_description', 'hide_free_tier' ), true ) ) {
3705 3547 return new WP_Error(
3706 3548 'invalid_param',
3707 3549 sprintf(
3708 3550 /* Translators: Placeholder is the invalid param being sent. */
@@ -3743,11 +3585,11 @@
3743 3585 * return an array with only 'administrator' as the allowed role and save it for 'roles' option.
3744 3586 *
3745 3587 * @since 4.3.0
3746 3588 *
3747 - * @param string|bool $value Value to check.
3589 + * @param mixed $value Value to check.
3748 3590 *
3749 - * @return bool|array
3591 + * @return mixed The value as submitted, or an array holding only 'administrator' when it is empty.
3750 3592 */
3751 3593 public static function sanitize_stats_allowed_roles( $value ) {
3752 3594 if ( empty( $value ) ) {
3753 3595 return array( 'administrator' );
@@ -3755,8 +3597,31 @@
3755 3597 return $value;
3756 3598 }
3757 3599
3758 3600 /**
3601 + * Sanitize the AI crawler override map.
3602 + *
3603 + * Keeps the value package-agnostic: each key is normalized with sanitize_key()
3604 + * and each value cast to bool. Catalog validation and default-pruning happen in
3605 + * `Automattic\Jetpack\SEO\Ai_Crawlers::get_overrides()`.
3606 + *
3607 + * @param mixed $value The submitted override map.
3608 + *
3609 + * @return array<string, bool> Sanitized `slug => bool` map.
3610 + */
3611 + public static function sanitize_ai_crawler_overrides( $value ) {
3612 + if ( ! is_array( $value ) ) {
3613 + return array();
3614 + }
3615 +
3616 + $sanitized = array();
3617 + foreach ( $value as $k => $v ) {
3618 + $sanitized[ sanitize_key( $k ) ] = (bool) $v;
3619 + }
3620 + return $sanitized;
3621 + }
3622 +
3623 + /**
3759 3624 * Get the currently accessed route and return the module slug in it.
3760 3625 *
3761 3626 * @since 4.3.0
3762 3627 *
@@ -3765,9 +3630,9 @@
3765 3630 * @return array|string
3766 3631 */
3767 3632 public static function get_module_requested( $route = '/module/(?P<slug>[a-z\-]+)' ) {
3768 3633
3769 - if ( empty( $GLOBALS['wp']->query_vars['rest_route'] ) ) {
3634 + if ( empty( $GLOBALS['wp']->query_vars['rest_route'] ) || ! is_string( $GLOBALS['wp']->query_vars['rest_route'] ) ) {
3770 3635 return '';
3771 3636 }
3772 3637
3773 3638 preg_match( "#$route#", $GLOBALS['wp']->query_vars['rest_route'], $module );
@@ -3818,8 +3683,40 @@
3818 3683 return $modules;
3819 3684 }
3820 3685
3821 3686 /**
3687 + * Remove options the current user cannot read.
3688 + *
3689 + * Covers every `jetpack_waf_*` option, plus the two Protect options that expose the
3690 + * same data under a different name: `jetpack_protect_global_whitelist` is populated
3691 + * from `jetpack_waf_ip_allow_list`, and `jetpack_protect_key` is a shared secret.
3692 + *
3693 + * @since 16.2
3694 + *
3695 + * @param array $options Option definitions keyed by option name.
3696 + * @return array
3697 + */
3698 + public static function filter_options_for_response( $options ) {
3699 + if ( current_user_can( 'manage_options' ) ) {
3700 + return $options;
3701 + }
3702 +
3703 + $restricted = array(
3704 + 'jetpack_protect_key',
3705 + 'jetpack_protect_global_whitelist',
3706 + );
3707 +
3708 + return array_filter(
3709 + $options,
3710 + static function ( $option_name ) use ( $restricted ) {
3711 + return 0 !== strpos( $option_name, 'jetpack_waf_' )
3712 + && ! in_array( $option_name, $restricted, true );
3713 + },
3714 + ARRAY_FILTER_USE_KEY
3715 + );
3716 + }
3717 +
3718 + /**
3822 3719 * Remove 'validate_callback' item from options available for module.
3823 3720 * Fetch current option value and add to array of module options.
3824 3721 * Prepare values of module options that need special handling, like those saved in wpcom.
3825 3722 *
@@ -3882,9 +3779,9 @@
3882 3779 $options = self::split_options( $options, $sharer->get_global_options() );
3883 3780 $options['sharing_services']['current_value'] = $sharer->get_blog_services();
3884 3781 $other_sharedaddy_options = array( 'jetpack-twitter-cards-site-tag', 'sharedaddy_disable_resources', 'sharing_delete_service' );
3885 3782 foreach ( $other_sharedaddy_options as $key ) {
3886 - $default_value = isset( $options[ $key ]['default'] ) ? $options[ $key ]['default'] : '';
3783 + $default_value = $options[ $key ]['default'] ?? '';
3887 3784 $current_value = get_option( $key, $default_value );
3888 3785 $options[ $key ]['current_value'] = self::cast_value( $current_value, $options[ $key ] );
3889 3786 }
3890 3787 break;
@@ -3895,9 +3792,9 @@
3895 3792 break;
3896 3793 default:
3897 3794 // These option are just stored as plain WordPress options.
3898 3795 foreach ( $options as $key => $value ) {
3899 - $default_value = isset( $options[ $key ]['default'] ) ? $options[ $key ]['default'] : '';
3796 + $default_value = $options[ $key ]['default'] ?? '';
3900 3797 $current_value = get_option( $key, $default_value );
3901 3798 $options[ $key ]['current_value'] = self::cast_value( $current_value, $options[ $key ] );
3902 3799 }
3903 3800 }
@@ -3907,14 +3804,17 @@
3907 3804 // We don't need validate_callback in the response.
3908 3805 if ( isset( $options[ $key ]['validate_callback'] ) ) {
3909 3806 unset( $options[ $key ]['validate_callback'] );
3910 3807 }
3911 - $default_value = isset( $options[ $key ]['default'] ) ? $options[ $key ]['default'] : '';
3808 + $default_value = $options[ $key ]['default'] ?? '';
3912 3809 if ( ! array_key_exists( 'current_value', $options[ $key ] ) ) {
3913 3810 $options[ $key ]['current_value'] = self::cast_value( $default_value, $options[ $key ] );
3914 3811 }
3915 3812 }
3916 - return $options;
3813 +
3814 + // Filter last: the switch above assigns current_value by key without isset(),
3815 + // so filtering earlier would let those assignments re-add a removed option.
3816 + return self::filter_options_for_response( $options );
3917 3817 }
3918 3818
3919 3819 /**
3920 3820 * Splits module options saved as arrays like relatedposts or verification_services_codes into separate options to be returned in the response.
@@ -4473,6 +4373,55 @@
4473 4373 'code' => 'success',
4474 4374 'data' => $data,
4475 4375 )
4476 4376 );
4377 + }
4378 +
4379 + /**
4380 + * Return the list of available features.
4381 + *
4382 + * @return array
4383 + */
4384 + public static function get_features_available() {
4385 + $raw_modules = Jetpack::get_available_modules();
4386 + $modules = array();
4387 + foreach ( $raw_modules as $module ) {
4388 + $modules[] = Jetpack::get_module_slug( $module );
4389 + }
4390 +
4391 + return $modules;
4392 + }
4393 +
4394 + /**
4395 + * Returns what features are enabled. Uses the slug of the modules files.
4396 + *
4397 + * @return array
4398 + */
4399 + public static function get_features_enabled() {
4400 + $raw_modules = Jetpack::get_active_modules();
4401 + $modules = array();
4402 + foreach ( $raw_modules as $module ) {
4403 + $modules[] = Jetpack::get_module_slug( $module );
4404 + }
4405 +
4406 + return $modules;
4407 + }
4408 +
4409 + /**
4410 + * Verify that the API client is allowed to replace user token.
4411 + *
4412 + * @since 1.29.0
4413 + *
4414 + * @return bool|WP_Error
4415 + */
4416 + public static function get_features_permission_check() {
4417 + if ( ! Rest_Authentication::is_signed_with_blog_token() ) {
4418 + $message = esc_html__(
4419 + 'You do not have the correct user permissions to perform this action. Please contact your site admin if you think this is a mistake.',
4420 + 'jetpack'
4421 + );
4422 + return new WP_Error( 'invalid_permission_fetch_features', $message, array( 'status' => rest_authorization_required_code() ) );
4423 + }
4424 +
4425 + return true;
4477 4426 }
4478 4427 } // class end