REST API: Add `who=authors` as a query parameter for `GET wp/v2/users`.
Any WordPress user who can `edit_posts` of a post type with `show_in_rest=true` can query for authors. This maps to current WordPress behavior where a WordPress user who can view the Manage Posts view for a post type can see any WordPress user assigned to a post (whether published or draft). This implementation, over restricting `who=authors` to users with `list_users`, gives us future flexibility in displaying lists of posts. It still respects more restrictive permissions for `context=edit`. Props danielbachhuber. Fixes #42202. Built from https://develop.svn.wordpress.org/trunk@43001 git-svn-id: http://core.svn.wordpress.org/trunk@42830 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
13875fbddb
commit
41968f7ea9
|
@ -192,6 +192,19 @@ class WP_REST_Users_Controller extends WP_REST_Controller {
|
|||
return new WP_Error( 'rest_forbidden_orderby', __( 'Sorry, you are not allowed to order users by this parameter.' ), array( 'status' => rest_authorization_required_code() ) );
|
||||
}
|
||||
|
||||
if ( 'authors' === $request['who'] ) {
|
||||
$can_view = false;
|
||||
$types = get_post_types( array( 'show_in_rest' => true ), 'objects' );
|
||||
foreach ( $types as $type ) {
|
||||
if ( current_user_can( $type->cap->edit_posts ) ) {
|
||||
$can_view = true;
|
||||
}
|
||||
}
|
||||
if ( ! $can_view ) {
|
||||
return new WP_Error( 'rest_forbidden_who', __( 'Sorry, you are not allowed to query users by this parameter.' ), array( 'status' => rest_authorization_required_code() ) );
|
||||
}
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
|
@ -256,7 +269,9 @@ class WP_REST_Users_Controller extends WP_REST_Controller {
|
|||
$prepared_args['orderby'] = $orderby_possibles[ $request['orderby'] ];
|
||||
}
|
||||
|
||||
if ( ! current_user_can( 'list_users' ) ) {
|
||||
if ( isset( $registered['who'] ) && ! empty( $request['who'] ) && 'authors' === $request['who'] ) {
|
||||
$prepared_args['who'] = 'authors';
|
||||
} elseif ( ! current_user_can( 'list_users' ) ) {
|
||||
$prepared_args['has_published_posts'] = get_post_types( array( 'show_in_rest' => true ), 'names' );
|
||||
}
|
||||
|
||||
|
@ -1372,6 +1387,14 @@ class WP_REST_Users_Controller extends WP_REST_Controller {
|
|||
),
|
||||
);
|
||||
|
||||
$query_params['who'] = array(
|
||||
'description' => __( 'Limit result set to users who are considered authors.' ),
|
||||
'type' => 'string',
|
||||
'enum' => array(
|
||||
'authors',
|
||||
),
|
||||
);
|
||||
|
||||
/**
|
||||
* Filter collection parameters for the users controller.
|
||||
*
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '5.0-alpha-43000';
|
||||
$wp_version = '5.0-alpha-43001';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue