Make WordPress Core

Ticket #39092: 39092.2.2.diff

File 39092.2.2.diff, 4.2 KB (added by jblz, 7 years ago)

Remove extra meta clause, move filter application, incorporate test

  • src/wp-admin/includes/post.php

     
    11551155}
    11561156
    11571157/**
    1158  * Filter the SQL clauses of an attachment query to include filenames.
    1159  *
    1160  * @since 4.7.0
    1161  * @access private
    1162  *
    1163  * @global wpdb $wpdb WordPress database abstraction object.
    1164  *
    1165  * @param array $clauses An array including WHERE, GROUP BY, JOIN, ORDER BY,
    1166  *                       DISTINCT, fields (SELECT), and LIMITS clauses.
    1167  * @return array The modified clauses.
    1168  */
    1169 function _filter_query_attachment_filenames( $clauses ) {
    1170         global $wpdb;
    1171         remove_filter( 'posts_clauses', __FUNCTION__ );
    1172 
    1173         // Add a LEFT JOIN of the postmeta table so we don't trample existing JOINs.
    1174         $clauses['join'] .= " LEFT JOIN {$wpdb->postmeta} AS sq1 ON ( {$wpdb->posts}.ID = sq1.post_id AND sq1.meta_key = '_wp_attached_file' )";
    1175 
    1176         $clauses['groupby'] = "{$wpdb->posts}.ID";
    1177 
    1178         $clauses['where'] = preg_replace(
    1179                 "/\({$wpdb->posts}.post_content (NOT LIKE|LIKE) (\'[^']+\')\)/",
    1180                 "$0 OR ( sq1.meta_value $1 $2 )",
    1181                 $clauses['where'] );
    1182 
    1183         return $clauses;
    1184 }
    1185 
    1186 /**
    11871158 * Executes a query for attachments. An array of WP_Query arguments
    11881159 * can be passed in, which will override the arguments set by this function.
    11891160 *
  • src/wp-includes/post.php

     
    61836183        clean_post_cache( $post->ID );
    61846184        return $post_name;
    61856185}
     6186
     6187/**
     6188 * Filter the SQL clauses of an attachment query to include filename.
     6189 *
     6190 * @since 4.7.0
     6191 * @access private
     6192 *
     6193 * @global wpdb $wpdb WordPress database abstraction object.
     6194 *
     6195 * @param array $clauses An array including WHERE, GROUP BY, JOIN, ORDER BY,
     6196 *                       DISTINCT, fields (SELECT), and LIMITS clauses.
     6197 * @return array The modified clauses.
     6198 */
     6199function _filter_query_attachment_filenames( $clauses ) {
     6200        global $wpdb;
     6201        remove_filter( 'posts_clauses', __FUNCTION__ );
     6202
     6203        // Add a LEFT JOIN of the postmeta table so we don't trample existing JOINs.
     6204        $clauses['join'] .= " LEFT JOIN {$wpdb->postmeta} AS sq1 ON ( {$wpdb->posts}.ID = sq1.post_id AND sq1.meta_key = '_wp_attached_file' )";
     6205
     6206        $clauses['groupby'] = "{$wpdb->posts}.ID";
     6207
     6208        $clauses['where'] = preg_replace(
     6209                "/\({$wpdb->posts}.post_content (NOT LIKE|LIKE) (\'[^']+\')\)/",
     6210                "$0 OR ( sq1.meta_value $1 $2 )",
     6211                $clauses['where'] );
     6212
     6213        return $clauses;
     6214}
  • src/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php

     
    4747                        }
    4848                }
    4949
     50                // Filter query clauses to include filenames.
     51                if ( isset( $query_args['s'] ) ) {
     52                        add_filter( 'posts_clauses', '_filter_query_attachment_filenames' );
     53                }
     54
    5055                return $query_args;
    5156        }
    5257
  • tests/phpunit/tests/rest-api/rest-attachments-controller.php

     
    11431143                $wp_rest_additional_fields = array();
    11441144        }
    11451145
     1146        public function test_search_item_by_filename() {
     1147                $this->factory->attachment->create_object( $this->test_file, 0, array(
     1148                        'post_mime_type' => 'image/jpeg',
     1149                ) );
     1150                $this->factory->attachment->create_object( $this->test_file2, 0, array(
     1151                        'post_mime_type' => 'image/png',
     1152                ) );
     1153
     1154                $filename = basename( $this->test_file2 );
     1155
     1156                $request = new WP_REST_Request( 'GET', '/wp/v2/media' );
     1157                $request->set_param( 'search', $filename );
     1158                $response = $this->server->dispatch( $request );
     1159                $data = $response->get_data();
     1160
     1161                $this->assertCount( 1, $data );
     1162                $this->assertArrayHasKey( 0, $data );
     1163                $this->assertEquals( 'image/png', $data[0]['mime_type'] );
     1164        }
     1165
    11461166        public function additional_field_get_callback( $object, $request ) {
    11471167                return 123;
    11481168        }