Make WordPress Core

Ticket #22744: 22744.10.diff

File 22744.10.diff, 5.5 KB (added by joemcgill, 8 years ago)
  • src/wp-admin/includes/ajax-actions.php

    diff --git src/wp-admin/includes/ajax-actions.php src/wp-admin/includes/ajax-actions.php
    index b6bd757..561c37b 100644
    function wp_ajax_query_attachments() { 
    23972397        if ( current_user_can( get_post_type_object( 'attachment' )->cap->read_private_posts ) )
    23982398                $query['post_status'] .= ',private';
    23992399
     2400        // Filter query clauses to include filenames.
     2401        add_filter( 'posts_clauses', '_filter_query_attachment_filenames' );
     2402
    24002403        /**
    24012404         * Filters the arguments passed to WP_Query during an Ajax
    24022405         * call for querying attachments.
  • src/wp-admin/includes/post.php

    diff --git src/wp-admin/includes/post.php src/wp-admin/includes/post.php
    index dfcb3ec..eae0e53 100644
    function wp_edit_attachments_query_vars( $q = false ) { 
    11441144                $q['post_parent'] = 0;
    11451145        }
    11461146
     1147        // Filter query clauses to include filenames.
     1148        add_filter( 'posts_clauses', '_filter_query_attachment_filenames' );
     1149
    11471150        return $q;
    11481151}
    11491152
    11501153/**
     1154 * Filter the SQL clauses of an attachment query to include file names.
     1155 *
     1156 * @since 4.7
     1157 * @access private
     1158 *
     1159 * @param array $clauses An array including WHERE, GROUP BY, JOIN, ORDER BY,
     1160 *                       DISTINCT, fields (SELECT), and LIMITS clauses.
     1161 * @return array The modified clauses.
     1162 */
     1163function _filter_query_attachment_filenames( $clauses ) {
     1164        global $wpdb;
     1165        remove_filter( 'posts_clauses', __FUNCTION__ );
     1166
     1167        $clauses[ 'join' ] = " INNER JOIN {$wpdb->postmeta} ON ( {$wpdb->posts}.ID = {$wpdb->postmeta}.post_id )";
     1168        $clauses[ 'groupby' ] = "{$wpdb->posts}.ID";
     1169
     1170        $clauses[ 'where' ] = preg_replace(
     1171                "/\({$wpdb->posts}.post_content (NOT LIKE|LIKE) (\'[^']+\')\)/",
     1172                "$0 OR ( {$wpdb->postmeta}.meta_key = '_wp_attached_file' AND {$wpdb->postmeta}.meta_value $1 $2 )",
     1173                $clauses[ 'where' ] );
     1174
     1175        return $clauses;
     1176}
     1177
     1178/**
    11511179 * Executes a query for attachments. An array of WP_Query arguments
    11521180 * can be passed in, which will override the arguments set by this function.
    11531181 *
  • tests/phpunit/tests/query/search.php

    diff --git tests/phpunit/tests/query/search.php tests/phpunit/tests/query/search.php
    index a228f91..20af214 100644
    class Tests_Query_Search extends WP_UnitTestCase { 
    280280                $this->assertSame( array( $p1, $p3, $p2 ), $q->posts );
    281281        }
    282282
     283        /**
     284         * Unfiltered search queries for attachment post types should not inlcude file
     285         * names to ensure the postmeta JOINs don't happen on the front end.
     286         *
     287         * @ticket 22744
     288         */
     289        public function test_exclude_file_names_in_attachment_search_by_default() {
     290                $attachment = self::factory()->post->create( array(
     291                        'post_type'    => 'attachment',
     292                        'post_status'  => 'publish',
     293                        'post_title'   => 'bar foo',
     294                        'post_content' => 'foo bar',
     295                        'post_excerpt' => 'This post has foo',
     296                ) );
     297
     298                add_post_meta( $attachment, '_wp_attached_file', 'some-image2.png', true );
     299
     300                // Pass post_type an array value.
     301                $q = new WP_Query( array(
     302                        's'           => 'image2',
     303                        'fields'      => 'ids',
     304                        'post_type'   => 'attachment',
     305                        'post_status' => 'inherit',
     306                ) );
     307
     308                $this->assertNotEquals( array( $attachment ), $q->posts );
     309        }
     310
     311/**
     312         * @ticket 22744
     313         */
     314        public function test_include_file_names_in_attachment_search_as_string() {
     315                $attachment = self::factory()->post->create( array(
     316                        'post_type'    => 'attachment',
     317                        'post_status'  => 'publish',
     318                        'post_title'   => 'bar foo',
     319                        'post_content' => 'foo bar',
     320                        'post_excerpt' => 'This post has foo',
     321                ) );
     322
     323                add_post_meta( $attachment, '_wp_attached_file', 'some-image1.png', true );
     324                add_filter( 'posts_clauses', '_filter_query_attachment_filenames' );
     325
     326                // Pass post_type a string value.
     327                $q = new WP_Query( array(
     328                        's'           => 'image1',
     329                        'fields'      => 'ids',
     330                        'post_type'   => 'attachment',
     331                        'post_status' => 'inherit',
     332                ) );
     333
     334                $this->assertSame( array( $attachment ), $q->posts );
     335        }
     336
     337        /**
     338         * @ticket 22744
     339         */
     340        public function test_include_file_names_in_attachment_search_as_array() {
     341                $attachment = self::factory()->post->create( array(
     342                        'post_type'    => 'attachment',
     343                        'post_status'  => 'publish',
     344                        'post_title'   => 'bar foo',
     345                        'post_content' => 'foo bar',
     346                        'post_excerpt' => 'This post has foo',
     347                ) );
     348
     349                add_post_meta( $attachment, '_wp_attached_file', 'some-image2.png', true );
     350                add_filter( 'posts_clauses', '_filter_query_attachment_filenames' );
     351
     352                // Pass post_type an array value.
     353                $q = new WP_Query( array(
     354                        's'           => 'image2',
     355                        'fields'      => 'ids',
     356                        'post_type'   => array( 'attachment' ),
     357                        'post_status' => 'inherit',
     358                ) );
     359
     360                $this->assertSame( array( $attachment ), $q->posts );
     361        }
     362
     363        /**
     364         * @ticket 22744
     365         */
     366        public function test_exclude_attachment_file_names_in_general_searches() {
     367                $attachment = self::factory()->post->create( array(
     368                        'post_type'    => 'attachment',
     369                        'post_status'  => 'publish',
     370                        'post_title'   => 'bar foo',
     371                        'post_content' => 'foo bar',
     372                        'post_excerpt' => 'This post has foo',
     373                ) );
     374
     375                add_post_meta( $attachment, '_wp_attached_file', 'some-image3.png', true );
     376
     377                $q = new WP_Query( array(
     378                        's'           => 'image3',
     379                        'fields'      => 'ids',
     380                        'post_type'   => array( 'post', 'page', 'attachment' ),
     381                        'post_status' => 'inherit',
     382                ) );
     383
     384                $this->assertNotEquals( array( $attachment ), $q->posts );
     385        }
     386
    283387        public function filter_posts_search( $sql ) {
    284388                return $sql . ' /* posts_search */';
    285389        }