1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-31 22:10:45 +02:00

[ticket/14162] Add CLI command db:list

This command lists all installed and uninstalled migrations.

Note: The class is named `list_command`, because `list` is a reserved word
and can't be used as class name in PHP.

PHPBB3-14162
This commit is contained in:
Zoddo
2015-09-13 17:15:35 +02:00
parent 2596fba487
commit 60099cf97c
3 changed files with 89 additions and 0 deletions

View File

@@ -0,0 +1,73 @@
<?php
/**
*
* This file is part of the phpBB Forum Software package.
*
* @copyright (c) phpBB Limited <https://www.phpbb.com>
* @license GNU General Public License, version 2 (GPL-2.0)
*
* For full copyright and license information, please see
* the docs/CREDITS.txt file.
*
*/
namespace phpbb\console\command\db;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Input\InputOption;
use Symfony\Component\Console\Output\OutputInterface;
class list_command extends \phpbb\console\command\db\migration_command
{
protected function configure()
{
$this
->setName('db:list')
->setDescription($this->user->lang('CLI_DESCRIPTION_DB_LIST'))
->addOption(
'available',
'u',
InputOption::VALUE_NONE,
$this->user->lang('CLI_MIGRATIONS_ONLY_AVAILABLE')
)
;
}
protected function execute(InputInterface $input, OutputInterface $output)
{
$show_installed = !$input->getOption('available');
$installed = $available = array();
foreach ($this->load_migrations() as $name)
{
if ($this->migrator->migration_state($name) !== false)
{
$installed[] = $name;
}
else
{
$available[] = $name;
}
}
if ($show_installed)
{
$output->writeln('<info>' . $this->user->lang('CLI_MIGRATIONS_INSTALLED') . $this->user->lang('COLON') . '</info>');
$output->writeln($installed);
if (empty($installed))
{
$output->writeln($this->user->lang('CLI_MIGRATIONS_EMPTY'));
}
$output->writeln('');
}
$output->writeln('<info>' . $this->user->lang('CLI_MIGRATIONS_AVAILABLE') . $this->user->lang('COLON') . '</info>');
$output->writeln($available);
if (empty($available))
{
$output->writeln($this->user->lang('CLI_MIGRATIONS_EMPTY'));
}
}
}