Make WordPress Core


Ignore:
Timestamp:
12/02/2016 09:55:09 PM (8 years ago)
Author:
rachelbaker
Message:

REST API: Return a WP_Error if meta property is not an array.

Fixes bug where a PHP Warning is currently thrown if a client sends a request where meta is not an array value.

Props timmydcrawford, jnylen0, rachelbaker, pento.
Fixes #38989.

File:
1 edited

Legend:

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

    r39328 r39436  
    118118     * @access public
    119119     *
    120      * @param WP_REST_Request $request   Full details about the request.
     120     * @param array           $meta      Array of meta parsed from the request.
    121121     * @param int             $object_id Object ID to fetch meta for.
    122122     * @return WP_Error|null WP_Error if one occurs, null on success.
    123123     */
    124     public function update_value( $request, $object_id ) {
     124    public function update_value( $meta, $object_id ) {
    125125        $fields = $this->get_registered_fields();
    126126        foreach ( $fields as $meta_key => $args ) {
    127127            $name = $args['name'];
    128             if ( ! array_key_exists( $name, $request ) ) {
     128            if ( ! array_key_exists( $name, $meta ) ) {
    129129                continue;
    130130            }
     
    134134             * from the database and then relying on the default value.
    135135             */
    136             if ( is_null( $request[ $name ] ) ) {
     136            if ( is_null( $meta[ $name ] ) ) {
    137137                $result = $this->delete_meta_value( $object_id, $meta_key, $name );
    138138                if ( is_wp_error( $result ) ) {
     
    142142            }
    143143
    144             $is_valid = rest_validate_value_from_schema( $request[ $name ], $args['schema'], 'meta.' . $name );
     144            $is_valid = rest_validate_value_from_schema( $meta[ $name ], $args['schema'], 'meta.' . $name );
    145145            if ( is_wp_error( $is_valid ) ) {
    146146                $is_valid->add_data( array( 'status' => 400 ) );
     
    148148            }
    149149
    150             $value = rest_sanitize_value_from_schema( $request[ $name ], $args['schema'] );
     150            $value = rest_sanitize_value_from_schema( $meta[ $name ], $args['schema'] );
    151151
    152152            if ( $args['single'] ) {
     
    392392            'context'     => array( 'view', 'edit' ),
    393393            'properties'  => array(),
     394            'arg_options' => array(
     395                'sanitize_callback' => null,
     396                'validate_callback' => array( $this, 'check_meta_is_array' ),
     397            ),
    394398        );
    395399
     
    445449        return $value;
    446450    }
     451
     452    /**
     453     * Check the 'meta' value of a request is an associative array.
     454     *
     455     * @since 4.7.0
     456     * @access public
     457     *
     458     * @param  mixed           $value   The meta value submitted in the request.
     459     * @param  WP_REST_Request $request Full details about the request.
     460     * @param  string          $param   The parameter name.
     461     * @return WP_Error|string The meta array, if valid, otherwise an error.
     462     */
     463    public function check_meta_is_array( $value, $request, $param ) {
     464        if ( ! is_array( $value ) ) {
     465            return false;
     466        }
     467
     468        return $value;
     469    }
    447470}
Note: See TracChangeset for help on using the changeset viewer.