Version 1
[yaffs-website] / vendor / drupal / console / src / Command / Database / DumpCommand.php
diff --git a/vendor/drupal/console/src/Command/Database/DumpCommand.php b/vendor/drupal/console/src/Command/Database/DumpCommand.php
new file mode 100644 (file)
index 0000000..cc5888b
--- /dev/null
@@ -0,0 +1,158 @@
+<?php
+
+/**
+ * @file
+ * Contains \Drupal\Console\Command\Database\DumpCommand.
+ */
+
+namespace Drupal\Console\Command\Database;
+
+use Symfony\Component\Console\Input\InputArgument;
+use Symfony\Component\Console\Input\InputOption;
+use Symfony\Component\Console\Input\InputInterface;
+use Symfony\Component\Console\Output\OutputInterface;
+use Symfony\Component\Console\Command\Command;
+use Drupal\Console\Core\Command\Shared\CommandTrait;
+use Drupal\Console\Command\Shared\ConnectTrait;
+use Drupal\Console\Core\Utils\ShellProcess;
+use Drupal\Console\Core\Style\DrupalStyle;
+
+class DumpCommand extends Command
+{
+    use CommandTrait;
+    use ConnectTrait;
+
+
+    protected $appRoot;
+    /**
+     * @var ShellProcess
+     */
+    protected $shellProcess;
+
+    /**
+     * DumpCommand constructor.
+     *
+     * @param $appRoot
+     * @param ShellProcess $shellProcess
+     */
+    public function __construct(
+        $appRoot,
+        ShellProcess $shellProcess
+    ) {
+        $this->appRoot = $appRoot;
+        $this->shellProcess = $shellProcess;
+        parent::__construct();
+    }
+
+    /**
+     * {@inheritdoc}
+     */
+    protected function configure()
+    {
+        $this
+            ->setName('database:dump')
+            ->setDescription($this->trans('commands.database.dump.description'))
+            ->addArgument(
+                'database',
+                InputArgument::OPTIONAL,
+                $this->trans('commands.database.dump.arguments.database'),
+                'default'
+            )
+            ->addOption(
+                'file',
+                null,
+                InputOption::VALUE_OPTIONAL,
+                $this->trans('commands.database.dump.options.file')
+            )
+            ->addOption(
+                'gz',
+                false,
+                InputOption::VALUE_NONE,
+                $this->trans('commands.database.dump.options.gz')
+            )
+            ->setHelp($this->trans('commands.database.dump.help'));
+    }
+
+    /**
+     * {@inheritdoc}
+     */
+    protected function execute(InputInterface $input, OutputInterface $output)
+    {
+        $io = new DrupalStyle($input, $output);
+
+        $database = $input->getArgument('database');
+        $file = $input->getOption('file');
+        $learning = $input->getOption('learning');
+        $gz = $input->getOption('gz');
+
+        $databaseConnection = $this->resolveConnection($io, $database);
+
+        if (!$file) {
+            $date = new \DateTime();
+            $file = sprintf(
+                '%s/%s-%s.sql',
+                $this->appRoot,
+                $databaseConnection['database'],
+                $date->format('Y-m-d-h-i-s')
+            );
+        }
+
+        $command = null;
+
+        if ($databaseConnection['driver'] == 'mysql') {
+            $command = sprintf(
+                'mysqldump --user=%s --password=%s --host=%s --port=%s %s > %s',
+                $databaseConnection['username'],
+                $databaseConnection['password'],
+                $databaseConnection['host'],
+                $databaseConnection['port'],
+                $databaseConnection['database'],
+                $file
+            );
+        } elseif ($databaseConnection['driver'] == 'pgsql') {
+            $command = sprintf(
+                'PGPASSWORD="%s" pg_dumpall -w -U %s -h %s -p %s -l %s -f %s',
+                $databaseConnection['password'],
+                $databaseConnection['username'],
+                $databaseConnection['host'],
+                $databaseConnection['port'],
+                $databaseConnection['database'],
+                $file
+            );
+        }
+
+        if ($learning) {
+            $io->commentBlock($command);
+        }
+
+        if ($this->shellProcess->exec($command, $this->appRoot)) {
+            $resultFile = $file;
+            if ($gz) {
+                if (substr($file, -3) != '.gz') {
+                    $resultFile = $file . ".gz";
+                }
+                file_put_contents(
+                    $resultFile,
+                    gzencode(
+                        file_get_contents(
+                            $file
+                        )
+                    )
+                );
+                if ($resultFile != $file) {
+                    unlink($file);
+                }
+            }
+
+            $io->success(
+                sprintf(
+                    '%s %s',
+                    $this->trans('commands.database.dump.messages.success'),
+                    $resultFile
+                )
+            );
+        }
+
+        return 0;
+    }
+}