Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x

ExtensionDiscovery.php

Same filename in this branch
  1. 11.1.x core/lib/Drupal/Core/Extension/ExtensionDiscovery.php

Namespace

mglaman\PHPStanDrupal\Drupal

File

vendor/mglaman/phpstan-drupal/src/Drupal/ExtensionDiscovery.php

View source
<?php

declare (strict_types=1);
namespace mglaman\PHPStanDrupal\Drupal;

use FilesystemIterator;
use mglaman\PHPStanDrupal\Drupal\Extension;
use RecursiveDirectoryIterator;
use RecursiveIteratorIterator;
use function array_filter;
use function array_flip;
use function array_multisort;
use function dirname;
use function file_exists;
use function is_dir;
use function preg_match;
use function strpos;
class ExtensionDiscovery {
    
    /**
     * Origin directory weight: Core.
     */
    private const ORIGIN_CORE = 0;
    
    /**
     * Origin directory weight: Installation profile.
     */
    private const ORIGIN_PROFILE = 1;
    
    /**
     * Origin directory weight: sites/all.
     */
    private const ORIGIN_SITES_ALL = 2;
    
    /**
     * Origin directory weight: Site-wide directory.
     */
    private const ORIGIN_ROOT = 3;
    
    /**
     * Origin directory weight: Site-specific directory.
     */
    private const ORIGIN_SITE = 5;
    
    /**
     * Regular expression to match PHP function names.
     *
     * @see http://php.net/manual/functions.user-defined.php
     */
    private const PHP_FUNCTION_PATTERN = '/^[a-zA-Z_\\x7f-\\xff][a-zA-Z0-9_\\x7f-\\xff]*$/';
    
    /**
     * Previously discovered files keyed by origin directory and extension type.
     *
     * @var array
     */
    protected static $files = [];
    
    /**
     * List of installation profile directories to additionally scan.
     *
     * @var array
     */
    protected $profileDirectories;
    
    /**
     * The app root for the current operation.
     *
     * @var string
     */
    protected $root;
    
    /**
     * The site path.
     *
     * @var string
     */
    protected $sitePath;
    
    /**
     * Constructs a new ExtensionDiscovery object.
     *
     * @param string $root
     *   The app root.
     */
    public function __construct($root) {
        $this->root = $root;
        $this->profileDirectories = [
            $root . '/core/profiles/standard',
        ];
        $this->sitePath = 'sites/default';
    }
    
    /**
     * Discovers available extensions of a given type.
     *
     * Finds all extensions (modules, themes, etc) that exist on the site. It
     * searches in several locations. For instance, to discover all available
     * modules:
     * @code
     * $listing = new ExtensionDiscovery(\Drupal::root());
     * $modules = $listing->scan('module');
     * @endcode
     *
     * The following directories will be searched (in the order stated):
     * - the core directory; i.e., /core
     * - the installation profile directory; e.g., /core/profiles/standard
     * - the legacy site-wide directory; i.e., /sites/all
     * - the site-wide directory; i.e., /
     * - the site-specific directory; e.g., /sites/example.com
     *
     * To also find test modules, add
     * @code
     * $settings['extension_discovery_scan_tests'] = TRUE;
     * @endcode
     * to your settings.php.
     *
     * The information is returned in an associative array, keyed by the extension
     * name (without .info.yml extension). Extensions found later in the search
     * will take precedence over extensions found earlier - unless they are not
     * compatible with the current version of Drupal core.
     *
     * @param string $type
     *   The extension type to search for. One of 'profile', 'module', 'theme', or
     *   'theme_engine'.
     *
     * @return \mglaman\PHPStanDrupal\Drupal\Extension[]
     *   An associative array of Extension objects, keyed by extension name.
     */
    public function scan($type) {
        static $scanresult;
        if (!$scanresult) {
            $scanresult = [];
        }
        if (isset($scanresult[$type])) {
            return $scanresult[$type];
        }
        $searchdirs = [];
        // Search the core directory.
        $searchdirs[self::ORIGIN_CORE] = 'core';
        // Search the legacy sites/all directory.
        $searchdirs[self::ORIGIN_SITES_ALL] = 'sites/all';
        // Search for contributed and custom extensions in top-level directories.
        // The scan uses a whitelist to limit recursion to the expected extension
        // type specific directory names only.
        $searchdirs[self::ORIGIN_ROOT] = '';
        $searchdirs[self::ORIGIN_SITE] = $this->sitePath;
        $files = [];
        foreach ($searchdirs as $dir) {
            // Discover all extensions in the directory, unless we did already.
            if (!isset(static::$files[$this->root][$dir])) {
                static::$files[$this->root][$dir] = $this->scanDirectory($dir);
            }
            // Only return extensions of the requested type.
            if (isset(static::$files[$this->root][$dir][$type])) {
                $files += static::$files[$this->root][$dir][$type];
            }
        }
        // If applicable, filter out extensions that do not belong to the current
        // installation profiles.
        $files = $this->filterByProfileDirectories($files);
        // Sort the discovered extensions by their originating directories.
        $origin_weights = array_flip($searchdirs);
        $files = $this->sort($files, $origin_weights);
        // Process and return the list of extensions keyed by extension name.
        $scanresult[$type] = $this->process($files);
        return $scanresult[$type];
    }
    
    /**
     * Gets the installation profile directories to be scanned.
     *
     * @return array
     *   A list of installation profile directory paths relative to the system
     *   root directory.
     */
    public function getProfileDirectories() {
        return $this->profileDirectories;
    }
    
    /**
     * Sets explicit profile directories to scan.
     *
     * @param array $paths
     *   A list of installation profile directory paths relative to the system
     *   root directory (without trailing slash) to search for extensions.
     *
     * @return $this
     */
    public function setProfileDirectories(array $paths = []) {
        $this->profileDirectories = $paths;
        return $this;
    }
    
    /**
     * Filters out extensions not belonging to the scanned installation profiles.
     *
     * @param \mglaman\PHPStanDrupal\Drupal\Extension[] $all_files
     *   The list of all extensions.
     *
     * @return \mglaman\PHPStanDrupal\Drupal\Extension[]
     *   The filtered list of extensions.
     */
    protected function filterByProfileDirectories(array $all_files) {
        if ($this->profileDirectories === []) {
            return $all_files;
        }
        return array_filter($all_files, function (Extension $file) : bool {
            if (strpos($file->subpath, 'profiles') !== 0) {
                // This extension doesn't belong to a profile, ignore it.
                return true;
            }
            foreach ($this->profileDirectories as $weight => $profile_path) {
                if (strpos($file->getPath(), $profile_path) === 0) {
                    // Parent profile found.
                    return true;
                }
            }
            return false;
        });
    }
    
    /**
     * Sorts the discovered extensions.
     *
     * @param \mglaman\PHPStanDrupal\Drupal\Extension[] $all_files
     *   The list of all extensions.
     * @param array $weights
     *   An array of weights, keyed by originating directory.
     *
     * @return \mglaman\PHPStanDrupal\Drupal\Extension[]
     *   The sorted list of extensions.
     */
    protected function sort(array $all_files, array $weights) {
        $origins = [];
        $profiles = [];
        foreach ($all_files as $key => $file) {
            // If the extension does not belong to a profile, just apply the weight
            // of the originating directory.
            if (strpos($file->subpath, 'profiles') !== 0) {
                $origins[$key] = $weights[$file->origin];
                $profiles[$key] = null;
            }
            elseif ($this->profileDirectories === []) {
                // If the extension belongs to a profile but no profile directories are
                // defined, then we are scanning for installation profiles themselves.
                // In this case, profiles are sorted by origin only.
                $origins[$key] = self::ORIGIN_PROFILE;
                $profiles[$key] = null;
            }
            else {
                // Apply the weight of the originating profile directory.
                foreach ($this->profileDirectories as $weight => $profile_path) {
                    if (strpos($file->getPath(), $profile_path) === 0) {
                        $origins[$key] = self::ORIGIN_PROFILE;
                        $profiles[$key] = $weight;
                        continue 2;
                    }
                }
            }
        }
        // Now sort the extensions by origin and installation profile(s).
        // The result of this multisort can be depicted like the following matrix,
        // whereas the first integer is the weight of the originating directory and
        // the second is the weight of the originating installation profile:
        // 0   core/modules/node/node.module
        // 1 0 profiles/parent_profile/modules/parent_module/parent_module.module
        // 1 1 core/profiles/testing/modules/compatible_test/compatible_test.module
        // 2   sites/all/modules/common/common.module
        // 3   modules/devel/devel.module
        // 4   sites/default/modules/custom/custom.module
        array_multisort($origins, SORT_ASC, $profiles, SORT_ASC, $all_files);
        return $all_files;
    }
    
    /**
     * Processes the filtered and sorted list of extensions.
     *
     * Extensions discovered in later search paths override earlier, unless they
     * are not compatible with the current version of Drupal core.
     *
     * @param \mglaman\PHPStanDrupal\Drupal\Extension[] $all_files
     *   The sorted list of all extensions that were found.
     *
     * @return \mglaman\PHPStanDrupal\Drupal\Extension[]
     *   The filtered list of extensions, keyed by extension name.
     */
    protected function process(array $all_files) {
        $files = [];
        // Duplicate files found in later search directories take precedence over
        // earlier ones; they replace the extension in the existing $files array.
        foreach ($all_files as $file) {
            $files[$file->getName()] = $file;
        }
        return $files;
    }
    
    /**
     * Recursively scans a base directory for the extensions it contains.
     *
     * @param string $dir
     *   A relative base directory path to scan, without trailing slash.
     *
     * @return array
     *   An associative array whose keys are extension type names and whose values
     *   are associative arrays of \Drupal\Core\Extension\Extension objects, keyed
     *   by absolute path name.
     *
     * @see \mglaman\PHPStanDrupal\Drupal\RecursiveExtensionFilterIterator
     */
    protected function scanDirectory($dir) : array {
        $files = [];
        // In order to scan top-level directories, absolute directory paths have to
        // be used (which also improves performance, since any configured PHP
        // include_paths will not be consulted). Retain the relative originating
        // directory being scanned, so relative paths can be reconstructed below
        // (all paths are expected to be relative to $this->root).
        $dir_prefix = $dir === '' ? '' : "{$dir}/";
        $absolute_dir = $dir === '' ? $this->root : $this->root . "/{$dir}";
        if (!is_dir($absolute_dir)) {
            return $files;
        }
        // Use Unix paths regardless of platform, skip dot directories, follow
        // symlinks (to allow extensions to be linked from elsewhere), and return
        // the RecursiveDirectoryIterator instance to have access to getSubPath(),
        // since SplFileInfo does not support relative paths.
        $flags = FilesystemIterator::UNIX_PATHS;
        $flags |= FilesystemIterator::SKIP_DOTS;
        $flags |= FilesystemIterator::FOLLOW_SYMLINKS;
        $flags |= FilesystemIterator::CURRENT_AS_SELF;
        $directory_iterator = new RecursiveDirectoryIterator($absolute_dir, $flags);
        // Allow directories specified in settings.php to be ignored. You can use
        // this to not check for files in common special-purpose directories. For
        // example, node_modules and bower_components. Ignoring irrelevant
        // directories is a performance boost.
        $ignore_directories = [
            'node_modules',
            'bower_components',
        ];
        // Filter the recursive scan to discover extensions only.
        // Important: Without a RecursiveFilterIterator, RecursiveDirectoryIterator
        // would recurse into the entire filesystem directory tree without any kind
        // of limitations.
        $filter = new RecursiveExtensionFilterIterator($directory_iterator, $ignore_directories);
        // The actual recursive filesystem scan is only invoked by instantiating the
        // RecursiveIteratorIterator.
        $iterator = new RecursiveIteratorIterator($filter, RecursiveIteratorIterator::LEAVES_ONLY, RecursiveIteratorIterator::CATCH_GET_CHILD);
        foreach ($iterator as $key => $fileinfo) {
            // All extension names in Drupal have to be valid PHP function names due
            // to the module hook architecture.
            if (preg_match(self::PHP_FUNCTION_PATTERN, $fileinfo->getBasename('.info.yml')) !== 1) {
                continue;
            }
            // This test module has a function declaration that conflicts with another module. Explicitly skip it.
            // @see https://www.drupal.org/project/drupal/issues/3020142
            // @todo remove when Drupal core fixed.
            if ($fileinfo->getBasename('.info.yml') === 'no_transitions_css') {
                continue;
            }
            // Determine extension type from info file.
            $type = false;
            $file = $fileinfo->openFile('r');
            while ($type === false && !$file->eof()) {
                if ($line = $file->fgets()) {
                    preg_match('@^type:\\s*(\'|")?(\\w+)\\1?\\s*$@', $line, $matches);
                    if (isset($matches[2])) {
                        $type = $matches[2];
                    }
                }
            }
            if ($type === false) {
                continue;
            }
            $name = $fileinfo->getBasename('.info.yml');
            $pathname = $dir_prefix . $fileinfo->getSubPathname();
            // Determine whether the extension has a main extension file.
            // For theme engines, the file extension is .engine.
            if ($type === 'theme_engine') {
                $filename = $name . '.engine';
            }
            else {
                $filename = $name . '.' . $type;
            }
            if (!file_exists($this->root . '/' . dirname($pathname) . '/' . $filename)) {
                $filename = null;
            }
            $extension = new Extension($this->root, $type, $pathname, $filename);
            // Track the originating directory for sorting purposes.
            $extension->subpath = $fileinfo->getSubPath();
            $extension->origin = $dir;
            $files[$type][$key] = $extension;
        }
        return $files;
    }

}

Classes

Title Deprecated Summary
ExtensionDiscovery

API Navigation

  • Drupal Core 11.1.x
  • Topics
  • Classes
  • Functions
  • Constants
  • Globals
  • Files
  • Namespaces
  • Deprecated
  • Services
RSS feed
Powered by Drupal