ڄU w P)℄U w Q$߄Uw 3ՄUPw cUPy ㄄Uy /"U y =5Up Py AaUP`y u@섄Uy <=㄄Uy ℄Uy 4GUy +"Uz =5UPz AUz <"UP} =U} ̈́UPP} 5bUP} AU} <ʄU~ IτU` ڄU@ P)℄U@P Qu䄄UP ᄄUP` 0"LU` ,ᄄUP` 0"LU`@ ,ᄄUPP` 0"LU` ,愄U  *RU ;UPP B@섄Up <yՄU`p ΄U`! =㄄U GU +"UP8 =aU`P uU <"U@ =aU`P uU <愄U` *RUH ;UPP B@섄U <yՄU` 愄U *RUP ;UPP B@섄U <yՄU` 愄U * ㄄UP F"UPpX =U RU@` ;UPP BU`` BU <"UPh =&焄U0 yՄUp0 ΄U`Pq =㄄UP` GU` +"U@ =΄U`0p G΄Up p HbUpP AU <"U =΄U` G΄Up HbUP AU <,̄U` >x w@`-@b}@@xw@0@ @o>x w@8?@p@i>hr@Hs@@o>o>Kq@h}@}@o>o>0o>0o>p@o>o>p@Kq@h}@Xo@(t@}@Xo@(t@ion'] ) && ! empty( $wp->query_vars['wc-api-route'] ) ) { header( sprintf( 'Content-Type: %s; charset=%s', isset( $_GET['_jsonp'] ) ? 'application/javascript' : 'application/json', get_option( 'blog_charset' ) ) ); status_header( 404 ); echo wp_json_encode( array( 'errors' => array( 'code' => 'woocommerce_api_disabled', 'message' => 'The WooCommerce API is disabled on this site', ), ) ); exit; } // phpcs:enable WordPress.Security.NonceVerification.Recommended, WordPress.Security.ValidatedSanitizedInput } /** * Process a "wc-api" variable if present in the query, by triggering the appropriate hooks. */ private static function maybe_process_wc_api_query_var() { global $wp; // phpcs:disable WordPress.Security.NonceVerification.Recommended if ( ! empty( $_GET['wc-api'] ) ) { $wp->query_vars['wc-api'] = sanitize_key( wp_unslash( $_GET['wc-api'] ) ); } // phpcs:enable WordPress.Security.NonceVerification.Recommended // wc-api endpoint requests. if ( ! empty( $wp->query_vars['wc-api'] ) ) { // Buffer, we won't want any output here. ob_start(); // No cache headers. wc_nocache_headers(); // Clean the API request. $api_request = strtolower( wc_clean( $wp->query_vars['wc-api'] ) ); // Make sure gateways are available for request. WC()->payment_gateways(); // phpcs:disable WooCommerce.Commenting.CommentHooks.HookCommentWrongStyle // Trigger generic action before request hook. do_action( 'woocommerce_api_request', $api_request ); // Is there actually something hooked into this API request? If not trigger 400 - Bad request. status_header( has_action( 'woocommerce_api_' . $api_request ) ? 200 : 400 ); // Trigger an action which plugins can hook into to fulfill the request. do_action( 'woocommerce_api_' . $api_request ); // phpcs:enable WooCommerce.Commenting.CommentHooks.HookCommentWrongStyle // Done, clear buffer and exit. ob_end_clean(); die( '-1' ); } } /** * Get data from a WooCommerce API endpoint. * This method used to be part of the WooCommerce Legacy REST API. * * @since 9.1.0 * * @param string $endpoint Endpoint. * @param array $params Params to pass with request. * @return array|\WP_Error */ public function get_endpoint_data( $endpoint, $params = array() ) { wc_doing_it_wrong( 'get_endpoint_data', "'WC()->api->get_endpoint_data' is deprecated, please use the following instead: wc_get_container()->get(Automattic\WooCommerce\Utilities\RestApiUtil::class)->get_endpoint_data", '9.1.0' ); return $this->rest_api_util->get_endpoint_data( $endpoint, $params ); } }