blob: cc9c7fdda242b4ecbff6f4f0c7c491c14452613e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
<?php
namespace PHPIAC\Command;
use PHPIAC\Connection;
use PHPIAC\Task;
use Symfony\Component\Console\Command\Command;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Input\InputOption;
use Symfony\Component\Console\Output\OutputInterface;
class RunCommand extends Command
{
protected static $defaultName = 'run';
/**
* @inheritDoc
*/
protected function configure()
{
$this->addOption('config', 'c', InputOption::VALUE_REQUIRED, 'Path to config file', getcwd() . '/config.php');
}
/**
* @inheritDoc
*/
protected function execute(InputInterface $input, OutputInterface $output): int
{
$config = include $input->getOption('config');
Connection::getInstance($config['host'], $config['user'], $config['private_key_file']);
foreach ($config['tasks'] as $task) {
/**@var Task $task*/
if (! $task->module->checkState()) {
$output->writeln($task->getName());
$output->writeln('Running');
$task->module->getCommands();
}
else {
$output->writeln($task->getName());
$output->writeln('Skipping');
}
}
return Command::SUCCESS;
}
}
|