यहाँ मैं क्या लेकर आया हूँ:
/**
* Determines if the current request we are handling is a REST Request.
* This function can be called even on mu-plugins.
*
* You might want to prefix this function name with
* something more unique to your project.
*
* @return bool
*/
function is_rest(): bool {
$is_cli = php_sapi_name() === 'cli';
$permalink_structure = get_option( 'permalink_structure' );
$rest_prefix = rest_get_url_prefix();
if ( ! empty( $permalink_structure ) && ! $is_cli ) {
/*
* HTTP request with Pretty Permalinks.
*/
if ( substr( $_SERVER['REQUEST_URI'], 0, strlen( $rest_prefix ) ) === $rest_prefix ) {
return true;
}
} elseif ( empty( $permalink_structure ) && ! $is_cli ) {
/*
* HTTP Requests with Plain Permalinks
*
* We can rely on "?rest_route" for plain permalinks, this value don't change:
* wp/wp-includes/rest-api.php:145
*
* All ?rest_route must start with "/":
* wp/wp-includes/rest-api.php:159
*/
if ( isset( $_GET['rest_route'] ) && substr( $_GET['rest_route'], 0, 1 ) === '/' ) {
return true;
}
} elseif ( $is_cli ) {
/*
* CLI request
*/
if ( did_action( 'parse_request' ) ) {
return defined( 'REST_REQUEST' ) && REST_REQUEST;
} else {
throw new RuntimeException( "Maybe someone at StackOverflow can help fill this gap of identifying REST requests on CLI before the parse_request action has fired and the REST_REQUEST constant is available?" );
}
}
return false;
}
parse_request
हालाँकि, कार्रवाई से पहले, बाकी सीएलआई का पता लगाने के लिए मेरे पास इतना समय नहीं था कि मैं कार्रवाई करूँ । मैं सुझाव के लिए खुला हूँ!
मुझे इस सुविधा के आसपास कुछ परीक्षण लिखने हैं, मैं एक बार ऐसा करने के बाद इस उत्तर को अपडेट करूंगा।
- संपादित करें
बस पाया गया कि WooCommerce कैसे संभालता है। WooCommerce को सादे पर्मलिंक के लिए खाता नहीं लगता है:
public function is_rest_api_request() {
if ( empty( $_SERVER['REQUEST_URI'] ) ) {
return false;
}
$rest_prefix = trailingslashit( rest_get_url_prefix() );
$is_rest_api_request = ( false !== strpos( $_SERVER['REQUEST_URI'], $rest_prefix ) );
return apply_filters( 'woocommerce_is_rest_api_request', $is_rest_api_request );
}
init
। यह भी ध्यान दें कि एपीआई के हिस्सों का उपयोग उन अनुरोधों पर आंतरिक रूप से किया जा सकता है जो आरईएसटी अनुरोध नहीं हैं, इसलिए यदि आप उस खोज पर भरोसा कर रहे हैं तो आप कुछ तोड़ने का जोखिम उठाते हैं।