Make WordPress Core

Ticket #6531: 6531.8.diff

File 6531.8.diff, 7.8 KB (added by WraithKenny, 7 years ago)

Same as previous, but with extra excludes

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

     
    126126 * @return bool|array False on failure, Else array of files
    127127 */
    128128function list_files( $folder = '', $levels = 100 ) {
    129         if ( empty($folder) )
     129        if ( empty( $folder ) ) {
    130130                return false;
     131        }
    131132
    132         if ( ! $levels )
     133        if ( ! $levels ) {
    133134                return false;
     135        }
    134136
     137        /**
     138         * Filters the array of excluded directories and files while scanning the folder.
     139         *
     140         * @since 4.9
     141         *
     142         * @param array $exclusions Array of excluded directories and files.
     143         */
     144        $exclusions = (array) apply_filters( 'list_files_exclusions', array( 'CVS', 'node_modules', 'vendor', 'bower_components' ) );
     145
    135146        $files = array();
    136         if ( $dir = @opendir( $folder ) ) {
    137                 while (($file = readdir( $dir ) ) !== false ) {
    138                         if ( in_array($file, array('.', '..') ) )
     147        $dir = @opendir( $folder );
     148        if ( $dir ) {
     149                while ( ( $file = readdir( $dir ) ) !== false ) {
     150                        if ( in_array( $file, array( '.', '..' ) ) ) {
    139151                                continue;
     152                        }
     153
     154                        if ( '.' === $file[0] || in_array( $file, $exclusions, true ) ) {
     155                                continue;
     156                        }
     157
    140158                        if ( is_dir( $folder . '/' . $file ) ) {
    141                                 $files2 = list_files( $folder . '/' . $file, $levels - 1);
    142                                 if ( $files2 )
     159                                $files2 = list_files( $folder . '/' . $file, $levels - 1 );
     160                                if ( $files2 ) {
    143161                                        $files = array_merge($files, $files2 );
    144                                 else
     162                                } else {
    145163                                        $files[] = $folder . '/' . $file . '/';
     164                                }
    146165                        } else {
    147166                                $files[] = $folder . '/' . $file;
    148167                        }
  • src/wp-admin/includes/plugin.php

     
    190190 * @param string $plugin Path to the main plugin file from plugins directory.
    191191 * @return array List of files relative to the plugin root.
    192192 */
    193 function get_plugin_files($plugin) {
     193function get_plugin_files( $plugin ) {
    194194        $plugin_file = WP_PLUGIN_DIR . '/' . $plugin;
    195         $dir = dirname($plugin_file);
    196         $plugin_files = array($plugin);
    197         if ( is_dir($dir) && $dir != WP_PLUGIN_DIR ) {
    198                 $plugins_dir = @ opendir( $dir );
    199                 if ( $plugins_dir ) {
    200                         while (($file = readdir( $plugins_dir ) ) !== false ) {
    201                                 if ( substr($file, 0, 1) == '.' )
    202                                         continue;
    203                                 if ( is_dir( $dir . '/' . $file ) ) {
    204                                         $plugins_subdir = @ opendir( $dir . '/' . $file );
    205                                         if ( $plugins_subdir ) {
    206                                                 while (($subfile = readdir( $plugins_subdir ) ) !== false ) {
    207                                                         if ( substr($subfile, 0, 1) == '.' )
    208                                                                 continue;
    209                                                         $plugin_files[] = plugin_basename("$dir/$file/$subfile");
    210                                                 }
    211                                                 @closedir( $plugins_subdir );
    212                                         }
    213                                 } else {
    214                                         if ( plugin_basename("$dir/$file") != $plugin )
    215                                                 $plugin_files[] = plugin_basename("$dir/$file");
    216                                 }
    217                         }
    218                         @closedir( $plugins_dir );
    219                 }
     195        $dir = dirname( $plugin_file );
     196
     197        $data = get_plugin_data( $plugin_file );
     198        $label = isset( $data['Version'] ) ? 'list_files_cache_' . $dir . '-' . $data['Version'] : 'list_files_cache_' . $dir;
     199
     200        $plugin_files = get_transient( $label );
     201        if ( ! empty( $plugin_files ) ) {
     202                return $plugin_files;
    220203        }
    221204
     205        $plugin_files = array( $plugin );
     206        if ( is_dir( $dir ) && WP_PLUGIN_DIR !== $dir ) {
     207
     208                $list_files = list_files( $dir );
     209                $list_files = array_map( 'plugin_basename', $list_files );
     210
     211                $plugin_files += $list_files;
     212                $plugin_files = array_unique( $plugin_files );
     213        }
     214
     215        set_transient( $label, $plugin_files, HOUR_IN_SECONDS );
     216
    222217        return $plugin_files;
    223218}
    224219
  • src/wp-admin/theme-editor.php

     
    7575foreach ( $file_types as $type ) {
    7676        switch ( $type ) {
    7777                case 'php':
    78                         $allowed_files += $theme->get_files( 'php', 1 );
     78                        $allowed_files += $theme->get_files( 'php', -1 );
    7979                        $has_templates = ! empty( $allowed_files );
    8080                        break;
    8181                case 'css':
    82                         $style_files = $theme->get_files( 'css' );
     82                        $style_files = $theme->get_files( 'css', -1 );
    8383                        $allowed_files['style.css'] = $style_files['style.css'];
    8484                        $allowed_files += $style_files;
    8585                        break;
    8686                default:
    87                         $allowed_files += $theme->get_files( $type );
     87                        $allowed_files += $theme->get_files( $type, -1 );
    8888                        break;
    8989        }
    9090}
  • src/wp-includes/class-wp-theme.php

     
    981981         * @param int $depth Optional. How deep to search for files. Defaults to a flat scan (0 depth). -1 depth is infinite.
    982982         * @param bool $search_parent Optional. Whether to return parent files. Defaults to false.
    983983         * @return array Array of files, keyed by the path to the file relative to the theme's directory, with the values
    984          *                   being absolute paths.
     984         *               being absolute paths.
    985985         */
    986986        public function get_files( $type = null, $depth = 0, $search_parent = false ) {
    987                 $files = (array) self::scandir( $this->get_stylesheet_directory(), $type, $depth );
     987                // get and cache all theme files to start with.
     988                $label = 'list_files_cache_' . $this->get( 'Name' ) . '-' . $this->get( 'Version' );
     989                $all_files = get_transient( $label );
     990                if ( empty( $all_files ) ) {
     991                        $all_files = (array) self::scandir( $this->get_stylesheet_directory(), null, -1 );
    988992
    989                 if ( $search_parent && $this->parent() )
    990                         $files += (array) self::scandir( $this->get_template_directory(), $type, $depth );
     993                        if ( $search_parent && $this->parent() ) {
     994                                $all_files += (array) self::scandir( $this->get_template_directory(), null, -1 );
     995                        }
    991996
     997                        set_transient( $label, $all_files, HOUR_IN_SECONDS );
     998                }
     999
     1000                // Filter $all_files by $type & $depth.
     1001                $files = array();
     1002                if ( $type ) {
     1003                        $type = (array) $type;
     1004                        $_extensions = implode( '|', $type );
     1005                }
     1006                foreach ( $all_files as $key => $file ) {
     1007                        if ( $depth >= 0 && substr_count( $key, '/' ) > $depth ) {
     1008                                continue; // Filter by depth.
     1009                        }
     1010                        if ( ! $type || preg_match( '~\.(' . $_extensions . ')$~', $file ) ) { // Filter by type.
     1011                                $files[ $key ] = $file;
     1012                        }
     1013                }
     1014
    9921015                return $files;
    9931016        }
    9941017
     
    11071130         *                     with `$relative_path`, with the values being absolute paths. False otherwise.
    11081131         */
    11091132        private static function scandir( $path, $extensions = null, $depth = 0, $relative_path = '' ) {
    1110                 if ( ! is_dir( $path ) )
     1133                if ( ! is_dir( $path ) ) {
    11111134                        return false;
     1135                }
    11121136
    11131137                if ( $extensions ) {
    11141138                        $extensions = (array) $extensions;
     
    11161140                }
    11171141
    11181142                $relative_path = trailingslashit( $relative_path );
    1119                 if ( '/' == $relative_path )
     1143                if ( '/' == $relative_path ) {
    11201144                        $relative_path = '';
     1145                }
    11211146
    11221147                $results = scandir( $path );
    11231148                $files = array();
     
    11251150                /**
    11261151                 * Filters the array of excluded directories and files while scanning theme folder.
    11271152                 *
    1128                  * @since 4.7.4
     1153                 * @since 4.7.4
    11291154                 *
    11301155                 * @param array $exclusions Array of excluded directories and files.
    11311156                 */
    1132                 $exclusions = (array) apply_filters( 'theme_scandir_exclusions', array( 'CVS', 'node_modules' ) );
     1157                $exclusions = (array) apply_filters( 'theme_scandir_exclusions', array( 'CVS', 'node_modules', 'vendor', 'bower_components' ) );
    11331158
    11341159                foreach ( $results as $result ) {
    11351160                        if ( '.' == $result[0] || in_array( $result, $exclusions, true ) ) {
     
    11361161                                continue;
    11371162                        }
    11381163                        if ( is_dir( $path . '/' . $result ) ) {
    1139                                 if ( ! $depth )
     1164                                if ( ! $depth ) {
    11401165                                        continue;
     1166                                }
    11411167                                $found = self::scandir( $path . '/' . $result, $extensions, $depth - 1 , $relative_path . $result );
    11421168                                $files = array_merge_recursive( $files, $found );
    11431169                        } elseif ( ! $extensions || preg_match( '~\.(' . $_extensions . ')$~', $result ) ) {