diff options
author | Yury German <blueknight@gentoo.org> | 2022-06-15 12:08:35 -0400 |
---|---|---|
committer | Yury German <blueknight@gentoo.org> | 2022-06-15 12:08:35 -0400 |
commit | 36d7691c33cb64ece817246e47a779ec648d10b0 (patch) | |
tree | 08f2fb95303a1d8eeba2c8629a24b35a91fb1cac /plugins/jetpack/jetpack_vendor/automattic/jetpack-search/src/class-rest-controller.php | |
parent | twentyfourteen upg 2.7 to 3.2 and twentysixteen from 2.0 to 2.5 (diff) | |
download | blogs-gentoo-36d7691c33cb64ece817246e47a779ec648d10b0.tar.gz blogs-gentoo-36d7691c33cb64ece817246e47a779ec648d10b0.tar.bz2 blogs-gentoo-36d7691c33cb64ece817246e47a779ec648d10b0.zip |
Openid-3.6.1 and jetpack-11.0 upgrade
Signed-off-by: Yury German <blueknight@gentoo.org>
Diffstat (limited to 'plugins/jetpack/jetpack_vendor/automattic/jetpack-search/src/class-rest-controller.php')
-rw-r--r-- | plugins/jetpack/jetpack_vendor/automattic/jetpack-search/src/class-rest-controller.php | 165 |
1 files changed, 148 insertions, 17 deletions
diff --git a/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/src/class-rest-controller.php b/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/src/class-rest-controller.php index 209e989e..02292ffe 100644 --- a/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/src/class-rest-controller.php +++ b/plugins/jetpack/jetpack_vendor/automattic/jetpack-search/src/class-rest-controller.php @@ -9,6 +9,7 @@ namespace Automattic\Jetpack\Search; use Automattic\Jetpack\Connection\Client; +use Automattic\Jetpack\Modules; use Jetpack_Options; use WP_Error; use WP_REST_Request; @@ -37,10 +38,12 @@ class REST_Controller { * * @param bool $is_wpcom - Whether it's run on WPCOM. * @param Module_Control|null $module_control - Module_Control object if any. + * @param Plan|null $plan - Plan object if any. */ - public function __construct( $is_wpcom = false, $module_control = null ) { + public function __construct( $is_wpcom = false, $module_control = null, $plan = null ) { $this->is_wpcom = $is_wpcom; - $this->search_module = is_null( $module_control ) ? new Module_Control() : $module_control; + $this->search_module = $module_control === null ? new Module_Control() : $module_control; + $this->plan = $plan === null ? new Plan() : $plan; } /** @@ -56,7 +59,7 @@ class REST_Controller { array( 'methods' => WP_REST_Server::READABLE, 'callback' => array( $this, 'get_search_plan' ), - 'permission_callback' => array( $this, 'search_permissions_callback' ), + 'permission_callback' => array( $this, 'require_admin_privilege_callback' ), ) ); register_rest_route( @@ -65,7 +68,7 @@ class REST_Controller { array( 'methods' => WP_REST_Server::EDITABLE, 'callback' => array( $this, 'update_settings' ), - 'permission_callback' => array( $this, 'search_permissions_callback' ), + 'permission_callback' => array( $this, 'require_admin_privilege_callback' ), ) ); register_rest_route( @@ -74,7 +77,16 @@ class REST_Controller { array( 'methods' => WP_REST_Server::READABLE, 'callback' => array( $this, 'get_settings' ), - 'permission_callback' => array( $this, 'search_permissions_callback' ), + 'permission_callback' => array( $this, 'require_admin_privilege_callback' ), + ) + ); + register_rest_route( + 'jetpack/v4', + '/search/stats', + array( + 'methods' => WP_REST_Server::READABLE, + 'callback' => array( $this, 'get_stats' ), + 'permission_callback' => array( $this, 'require_admin_privilege_callback' ), ) ); register_rest_route( @@ -86,6 +98,33 @@ class REST_Controller { 'permission_callback' => 'is_user_logged_in', ) ); + register_rest_route( + 'jetpack/v4', + '/search/plan/activate', + array( + 'methods' => WP_REST_Server::EDITABLE, + 'callback' => array( $this, 'activate_plan' ), + 'permission_callback' => array( $this, 'require_admin_privilege_callback' ), + ) + ); + register_rest_route( + 'jetpack/v4', + '/search/plan/deactivate', + array( + 'methods' => WP_REST_Server::EDITABLE, + 'callback' => array( $this, 'deactivate_plan' ), + 'permission_callback' => array( $this, 'require_admin_privilege_callback' ), + ) + ); + register_rest_route( + 'jetpack/v4', + '/search/pricing', + array( + 'methods' => WP_REST_Server::READABLE, + 'callback' => array( $this, 'product_pricing' ), + 'permission_callback' => 'is_user_logged_in', + ) + ); } /** @@ -93,7 +132,7 @@ class REST_Controller { * * @return bool|WP_Error True if a blog token was used to sign the request, WP_Error otherwise. */ - public function search_permissions_callback() { + public function require_admin_privilege_callback() { if ( current_user_can( 'manage_options' ) ) { return true; } @@ -139,14 +178,14 @@ class REST_Controller { } $errors = array(); - if ( ! is_null( $module_active ) ) { - $module_active_updated = $this->search_module->update_status( $module_active ); + if ( $module_active !== null ) { + $module_active_updated = ( new Modules() )->update_status( Package::SLUG, $module_active, false, false ); if ( is_wp_error( $module_active_updated ) ) { $errors['module_active'] = $module_active_updated; } } - if ( ! is_null( $instant_search_enabled ) ) { + if ( $instant_search_enabled !== null ) { $instant_search_enabled_updated = $this->search_module->update_instant_search_status( $instant_search_enabled ); if ( is_wp_error( $instant_search_enabled_updated ) ) { $errors['instant_search_enabled'] = $instant_search_enabled_updated; @@ -168,7 +207,7 @@ class REST_Controller { ); } - return $this->get_settings(); + return rest_ensure_response( $this->get_settings() ); } /** @@ -178,7 +217,7 @@ class REST_Controller { * @param boolean $instant_search_enabled - Instant Search status. */ protected function validate_search_settings( $module_active, $instant_search_enabled ) { - if ( ( true === $instant_search_enabled && false === $module_active ) || ( is_null( $module_active ) && is_null( $instant_search_enabled ) ) ) { + if ( ( true === $instant_search_enabled && false === $module_active ) || ( $module_active === null && $instant_search_enabled === null ) ) { return new WP_Error( 'rest_invalid_arguments', esc_html__( 'The arguments passed in are invalid.', 'jetpack-search-pkg' ), @@ -192,13 +231,25 @@ class REST_Controller { * GET `jetpack/v4/search/settings` */ public function get_settings() { - return array( - 'module_active' => $this->search_module->is_active(), - 'instant_search_enabled' => $this->search_module->is_instant_search_enabled(), + return rest_ensure_response( + array( + 'module_active' => $this->search_module->is_active(), + 'instant_search_enabled' => $this->search_module->is_instant_search_enabled(), + ) ); } /** + * Proxy the request to WPCOM and return the response. + * + * GET `jetpack/v4/search/stats` + */ + public function get_stats() { + $response = ( new Stats() )->get_stats_from_wpcom(); + return $this->make_proper_response( $response ); + } + + /** * Search Endpoint for private sites. * * GET `jetpack/v4/search` @@ -212,14 +263,94 @@ class REST_Controller { $request->get_query_params(), sprintf( '/sites/%d/search', absint( $blog_id ) ) ); - $response = Client::wpcom_json_api_request_as_user( $path, '1.3', array(), null, 'rest' ); - return $this->make_proper_response( $response ); + $response = Client::wpcom_json_api_request_as_blog( $path, '1.3', array(), null, 'rest' ); + return rest_ensure_response( $this->make_proper_response( $response ) ); + } + + /** + * Activate plan: activate the search module, instant search and do initial configuration. + * Typically called from WPCOM. + * + * POST `jetpack/v4/search/plan/activate` + * + * @param WP_REST_Request $request - REST request. + */ + public function activate_plan( $request ) { + $default_options = array( + 'search_plan_info' => null, + 'enable_search' => true, + 'enable_instant_search' => true, + 'auto_config_search' => true, + ); + $payload = $request->get_json_params(); + $payload = wp_parse_args( $payload, $default_options ); + + // Update plan data, plan info is in the request body. + // We do this to avoid another call to WPCOM and reduce latency. + if ( $payload['search_plan_info'] === null || ! $this->plan->set_plan_options( $payload['search_plan_info'] ) ) { + $this->plan->get_plan_info_from_wpcom(); + } + + // Enable search module by default, unless `enable_search` is explicitly set to boolean `false`. + if ( false !== $payload['enable_search'] ) { + // Eligibility is checked in `activate` function. + $ret = $this->search_module->activate(); + if ( is_wp_error( $ret ) ) { + return $ret; + } + } + + // Enable instant search by default, unless `enable_instant_search` is explicitly set to boolean `false`. + if ( false !== $payload['enable_instant_search'] ) { + // Eligibility is checked in `enable_instant_search` function. + $ret = $this->search_module->enable_instant_search(); + if ( is_wp_error( $ret ) ) { + return $ret; + } + } + + // Automatically configure necessary settings for instant search, unless `auto_config_search` is explicitly set to boolean `false`. + if ( false !== $payload['auto_config_search'] ) { + Instant_Search::instance( $this->get_blog_id() )->auto_config_search(); + } + + return rest_ensure_response( + array( + 'code' => 'success', + ) + ); + } + + /** + * Deactivate plan: turn off search module and instant search. + * If the plan is still valid then the function would simply deactivate the search module. + * Typically called from WPCOM. + * + * POST `jetpack/v4/search/plan/deactivate` + */ + public function deactivate_plan() { + // Instant Search would be disabled along with search module. + $this->search_module->deactivate(); + return rest_ensure_response( + array( + 'code' => 'success', + ) + ); + } + + /** + * Pricing for record count of the site + */ + public function product_pricing() { + $record_count = intval( Stats::estimate_count() ); + $tier_pricing = Product::get_site_tier_pricing( $record_count ); + return rest_ensure_response( $tier_pricing ); } /** * Forward remote response to client with error handling. * - * @param array|WP_Error $response - Resopnse from WPCOM. + * @param array|WP_Error $response - Response from WPCOM. */ protected function make_proper_response( $response ) { if ( is_wp_error( $response ) ) { |