Make WordPress Core


Ignore:
Timestamp:
05/02/2018 01:24:30 AM (6 years ago)
Author:
pento
Message:

REST API: Filter responses based on the _fields parameter, before data is processed.

Historically, the REST API would generate the entire response object, including running expensive filters, then it would apply the _fields parameter, discarding the fields that weren't specificed.

This change causes _fields to be applied earlier, so that only requested fields are processed.

Props danielbachhuber.
See #43874.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/tests/phpunit/tests/rest-api/rest-comments-controller.php

    r42724 r43087  
    846846        $data = $response->get_data();
    847847        $this->check_comment_data( $data, 'edit', $response->get_links() );
     848    }
     849
     850    public function test_prepare_item_limit_fields() {
     851        wp_set_current_user( self::$admin_id );
     852        $endpoint = new WP_REST_Comments_Controller;
     853        $request  = new WP_REST_Request( 'GET', sprintf( '/wp/v2/comments/%d', self::$approved_id ) );
     854        $request->set_param( 'context', 'edit' );
     855        $request->set_param( '_fields', 'id,status' );
     856        $obj      = get_comment( self::$approved_id );
     857        $response = $endpoint->prepare_item_for_response( $obj, $request );
     858        $this->assertEquals( array(
     859            'id',
     860            'status',
     861        ), array_keys( $response->get_data() ) );
    848862    }
    849863
Note: See TracChangeset for help on using the changeset viewer.