Version 1
[yaffs-website] / vendor / drupal / console / src / Command / Libraries / DebugCommand.php
diff --git a/vendor/drupal/console/src/Command/Libraries/DebugCommand.php b/vendor/drupal/console/src/Command/Libraries/DebugCommand.php
new file mode 100644 (file)
index 0000000..bfa501f
--- /dev/null
@@ -0,0 +1,124 @@
+<?php
+
+/**
+ * @file
+ * Contains \Drupal\Console\Command\Libraries\DebugCommand.
+ */
+
+namespace Drupal\Console\Command\Libraries;
+
+use Symfony\Component\Console\Input\InputArgument;
+use Symfony\Component\Console\Input\InputInterface;
+use Symfony\Component\Console\Output\OutputInterface;
+use Symfony\Component\Console\Command\Command;
+use Drupal\Core\Extension\ModuleHandlerInterface;
+use Drupal\Core\Extension\ThemeHandlerInterface;
+use Drupal\Core\Asset\LibraryDiscoveryInterface;
+use Drupal\Component\Serialization\Yaml;
+use Drupal\Console\Core\Command\Shared\CommandTrait;
+use Drupal\Console\Core\Style\DrupalStyle;
+
+class DebugCommand extends Command
+{
+    use CommandTrait;
+
+    /**
+ * @var  ModuleHandlerInterface
+*/
+    protected $moduleHandler;
+
+    /**
+ * @var  ThemeHandlerInterface;
+*/
+    protected $themeHandler;
+
+    /**
+ * @var  LibraryDiscoveryInterface
+*/
+    protected $libraryDiscovery;
+
+    /**
+ * @var string
+*/
+    protected $appRoot;
+
+    /**
+     * DebugCommand constructor.
+     *
+     * @param ModuleHandlerInterface    $moduleHandler
+     * @param ThemeHandlerInterface     $themeHandler
+     * @param LibraryDiscoveryInterface $libraryDiscovery
+     * @param string                    $appRoot
+     */
+    public function __construct(
+        ModuleHandlerInterface $moduleHandler,
+        ThemeHandlerInterface $themeHandler,
+        LibraryDiscoveryInterface $libraryDiscovery,
+        $appRoot
+    ) {
+        $this->moduleHandler = $moduleHandler;
+        $this->themeHandler = $themeHandler;
+        $this->libraryDiscovery = $libraryDiscovery;
+        $this->appRoot = $appRoot;
+        parent::__construct();
+    }
+
+    /**
+     * {@inheritdoc}
+     */
+    protected function configure()
+    {
+        $this
+            ->setName('libraries:debug')
+            ->setDescription($this->trans('commands.libraries.debug.description'))
+            ->addArgument(
+                'group',
+                InputArgument::OPTIONAL,
+                $this->trans('commands.libraries.debug.options.name')
+            );
+    }
+
+    /**
+     * {@inheritdoc}
+     */
+    protected function execute(InputInterface $input, OutputInterface $output)
+    {
+        $io = new DrupalStyle($input, $output);
+        $group = $input->getArgument('group');
+
+        if (!$group) {
+            $groups = $this->getAllLibraries();
+
+            $tableHeader = [
+                $this->trans('commands.libraries.debug.messages.name'),
+            ];
+
+            $io->table($tableHeader, $groups, 'compact');
+        } else {
+            $librariesData = $this->libraryDiscovery
+                ->getLibrariesByExtension($group);
+
+            foreach ($librariesData as $key => $libraries) {
+                $io->comment($key);
+                $io->writeln(Yaml::encode($libraries));
+            }
+        }
+    }
+
+    private function getAllLibraries()
+    {
+        $modules = $this->moduleHandler->getModuleList();
+        $themes = $this->themeHandler->rebuildThemeData();
+        $extensions = array_merge($modules, $themes);
+        $libraries = [];
+
+        foreach ($extensions as $extensionName => $extension) {
+            $libraryFile = $extension->getPath() . '/' . $extensionName . '.libraries.yml';
+            if (is_file($this->appRoot . '/' . $libraryFile)) {
+                $libraries[$extensionName] = $this->libraryDiscovery->getLibrariesByExtension($extensionName);
+            }
+        }
+
+        return array_keys($libraries);
+    }
+}