add a activitypub_rest_url filter

This commit is contained in:
Matt Wiebe 2023-05-12 16:42:30 -05:00
parent c99daa3e72
commit ec00ace234

View file

@ -238,8 +238,11 @@ function is_tombstone( $wp_error ) {
function get_rest_url_by_path( $path = '' ) {
// we'll handle the leading slash.
$path = ltrim( $path, '/' );
$url = sprintf( '/%s/%s', ACTIVITYPUB_REST_NAMESPACE, $path );
return \get_rest_url( null, $url );
$namespaced_path = sprintf( '/%s/%s', ACTIVITYPUB_REST_NAMESPACE, $path );
$rest_url = \get_rest_url( null, $namespaced_path );
// Just in case there are non-default ways of handling REST URLs.
$rest_url = \apply_filters( 'activitypub_rest_url', $rest_url, $path, ACTIVITYPUB_REST_NAMESPACE );
return $rest_url;
}
/**