Version 1
[yaffs-website] / vendor / drupal / console / src / Command / Database / TableDebugCommand.php
diff --git a/vendor/drupal/console/src/Command/Database/TableDebugCommand.php b/vendor/drupal/console/src/Command/Database/TableDebugCommand.php
new file mode 100644 (file)
index 0000000..3621074
--- /dev/null
@@ -0,0 +1,129 @@
+<?php
+
+/**
+ * @file
+ * Contains \Drupal\Console\Command\Database\TableDebugCommand.
+ */
+
+namespace Drupal\Console\Command\Database;
+
+use Symfony\Component\Console\Input\InputArgument;
+use Symfony\Component\Console\Input\InputInterface;
+use Symfony\Component\Console\Input\InputOption;
+use Symfony\Component\Console\Output\OutputInterface;
+use Symfony\Component\Console\Command\Command;
+use RedBeanPHP\R;
+use Drupal\Core\Database\Connection;
+use Drupal\Console\Core\Command\Shared\CommandTrait;
+use Drupal\Console\Core\Style\DrupalStyle;
+use Drupal\Console\Command\Shared\ConnectTrait;
+
+/**
+ * Class TableDebugCommand
+ *
+ * @package Drupal\Console\Command\Database
+ */
+class TableDebugCommand extends Command
+{
+    use CommandTrait;
+    use ConnectTrait;
+
+    /**
+     * @var Connection
+     */
+    protected $database;
+
+    /**
+     * @var R
+     */
+    protected $redBean;
+
+    /**
+     * TableDebugCommand constructor.
+     *
+     * @param R          $redBean
+     * @param Connection $database
+     */
+    public function __construct(
+        R $redBean,
+        Connection $database
+    ) {
+        $this->redBean = $redBean;
+        $this->database = $database;
+        parent::__construct();
+    }
+
+    /**
+     * {@inheritdoc}
+     */
+    protected function configure()
+    {
+        $this
+            ->setName('database:table:debug')
+            ->setDescription($this->trans('commands.database.table.debug.description'))
+            ->addOption(
+                'database',
+                '',
+                InputOption::VALUE_OPTIONAL,
+                $this->trans('commands.database.table.debug.options.database'),
+                'default'
+            )
+            ->addArgument(
+                'table',
+                InputArgument::OPTIONAL,
+                $this->trans('commands.database.table.debug.arguments.table'),
+                null
+            )
+            ->setHelp($this->trans('commands.database.table.debug.help'));
+    }
+
+    /**
+     * {@inheritdoc}
+     */
+    protected function execute(InputInterface $input, OutputInterface $output)
+    {
+        $io = new DrupalStyle($input, $output);
+        $database = $input->getOption('database');
+        $table = $input->getArgument('table');
+
+        $databaseConnection = $this->resolveConnection($io, $database);
+
+        if ($table) {
+            $this->redBean = $this->getRedBeanConnection($database);
+            $tableInfo = $this->redBean->inspect($table);
+
+            $tableHeader = [
+                $this->trans('commands.database.table.debug.messages.column'),
+                $this->trans('commands.database.table.debug.messages.type')
+            ];
+            $tableRows = [];
+            foreach ($tableInfo as $column => $type) {
+                $tableRows[] = [
+                    'column' => $column,
+                    'type' => $type
+                ];
+            }
+
+            $io->table($tableHeader, $tableRows);
+
+            return 0;
+        }
+
+        $schema = $this->database->schema();
+        $tables = $schema->findTables('%');
+
+        $io->comment(
+            sprintf(
+                $this->trans('commands.database.table.debug.messages.table-show'),
+                $databaseConnection['database']
+            )
+        );
+
+        $io->table(
+            [$this->trans('commands.database.table.debug.messages.table')],
+            $tables
+        );
+
+        return 0;
+    }
+}