Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
44.44% covered (danger)
44.44%
12 / 27
66.67% covered (warning)
66.67%
2 / 3
CRAP
0.00% covered (danger)
0.00%
0 / 1
WP_REST_Help_Center_Jetpack_Search_AI
44.44% covered (danger)
44.44%
12 / 27
66.67% covered (warning)
66.67%
2 / 3
6.74
0.00% covered (danger)
0.00%
0 / 1
 __construct
100.00% covered (success)
100.00%
3 / 3
100.00% covered (success)
100.00%
1 / 1
1
 register_rest_route
100.00% covered (success)
100.00%
9 / 9
100.00% covered (success)
100.00%
1 / 1
1
 get_search_results
0.00% covered (danger)
0.00%
0 / 15
0.00% covered (danger)
0.00%
0 / 1
6
1<?php
2/**
3 * WP_REST_Help_Center_Jetpack_Search_AI file.
4 *
5 * @package automattic/jetpack-help-center
6 */
7
8namespace Automattic\Jetpack\Help_Center;
9
10/**
11 * Class WP_REST_Help_Center_Jetpack_Search_AI.
12 */
13class WP_REST_Help_Center_Jetpack_Search_AI extends WP_REST_Help_Center_Controller {
14    /**
15     * WP_REST_Help_Center_Jetpack_Search_AI constructor.
16     *
17     * @param Wpcom_Request_Client|null $wpcom_request_client WP.com request client.
18     */
19    public function __construct( ?Wpcom_Request_Client $wpcom_request_client = null ) {
20        parent::__construct( $wpcom_request_client );
21        $this->namespace = 'help-center';
22        $this->rest_base = '/jetpack-search/ai';
23    }
24
25    /**
26     * Register available routes.
27     */
28    public function register_rest_route() {
29        register_rest_route(
30            $this->namespace,
31            $this->rest_base . '/search',
32            array(
33                'methods'             => \WP_REST_Server::READABLE,
34                'callback'            => array( $this, 'get_search_results' ),
35                'permission_callback' => '__return_true',
36            )
37        );
38    }
39
40    /**
41     * Should return the sibyl articles.
42     *
43     * @param \WP_REST_Request $request The request sent to the API.
44     */
45    public function get_search_results( \WP_REST_Request $request ) {
46        $query_parameters = array(
47            'query'   => $request['query'],
48            'stop_at' => $request['stop_at'],
49        );
50        $body             = $this->wpcom_request_client->request(
51            'sites/' . $request['site'] . '/jetpack-search/ai/search?' . http_build_query( $query_parameters ),
52            '2',
53            array(
54                'timeout' => 75,
55            )
56        );
57
58        if ( is_wp_error( $body ) ) {
59            return $body;
60        }
61
62        $response = json_decode( wp_remote_retrieve_body( $body ) );
63
64        return rest_ensure_response( $response );
65    }
66}