blob: 145b2d55a3de7c38e2aafa97ffd054e97320b934 (
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
|
<?php
namespace PHPIAC\Command;
use PHPIAC\Task;
use phpseclib3\Crypt\PublicKeyLoader;
use phpseclib3\Net\SSH2;
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';
protected function configure()
{
$this->addOption('config', 'c', InputOption::VALUE_REQUIRED, 'Path to config file', getcwd() . '/config.php');
}
protected function execute(InputInterface $input, OutputInterface $output): int
{
$config = include $input->getOption('config');
global $ssh;
$ssh = new SSH2($config['host']);
if (! $ssh->login($config['user'], PublicKeyLoader::load(file_get_contents($config['private_key_file'])))) {
throw new \Exception('Login failed');
}
$commands = [];
foreach ($config['tasks'] as $taskName => $task) {
/**@var Task $task*/
if (! $task->module->checkState()) {
$output->writeln($taskName . ': Adding commands from ' . get_class($task->module));
array_push($commands, ...$task->module->getCommands());
}
else {
$output->writeln($taskName . ': Skipping commands from ' . get_class($task->module));
}
}
// run commands in single exec call
$ssh->exec(implode(PHP_EOL, $commands));
return Command::SUCCESS;
}
}
|