Make WordPress Core


Ignore:
Timestamp:
05/22/2020 08:46:03 PM (5 years ago)
Author:
whyisjake
Message:

REST API: Ensure proper namespacing when registering routes.

The PR will corerce routes that have a leading slash and throwing a _doing_it_wrong notice while ensuring a proper namespace.

Fixes #49749.
Props TimothyBlynJacobs, skarabeq, afercia.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/rest-api.php

    r47812 r47842  
    4545    }
    4646
     47    $clean_namespace = trim( $namespace, '/' );
     48
     49    if ( $clean_namespace !== $namespace ) {
     50        _doing_it_wrong( __FUNCTION__, __( 'Namespace must not start or end with a slash.' ), '5.4.2' );
     51    }
     52
    4753    if ( ! did_action( 'rest_api_init' ) ) {
    4854        _doing_it_wrong(
     
    8591    }
    8692
    87     $full_route = '/' . trim( $namespace, '/' ) . '/' . trim( $route, '/' );
    88     rest_get_server()->register_route( $namespace, $full_route, $args, $override );
     93    $full_route = '/' . $clean_namespace . '/' . trim( $route, '/' );
     94    rest_get_server()->register_route( $clean_namespace, $full_route, $args, $override );
    8995    return true;
    9096}
Note: See TracChangeset for help on using the changeset viewer.