2022-09-27 12:29:56 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace NoccyLabs\Serverctl\Commands;
|
|
|
|
|
|
|
|
use Symfony\Component\Console\Attribute\AsCommand;
|
|
|
|
use Symfony\Component\Console\Input\InputArgument;
|
|
|
|
use Symfony\Component\Console\Input\InputInterface;
|
|
|
|
use Symfony\Component\Console\Input\InputOption;
|
|
|
|
use Symfony\Component\Console\Output\OutputInterface;
|
|
|
|
|
|
|
|
#[AsCommand(name:"start", description:"Start a service")]
|
|
|
|
class StartCommand extends Command
|
|
|
|
{
|
|
|
|
|
|
|
|
protected function configure()
|
|
|
|
{
|
2022-09-27 12:47:30 +02:00
|
|
|
$this->addOption("instance", "i", InputOption::VALUE_REQUIRED, "Specify the instance name", "default");
|
2022-09-27 12:29:56 +02:00
|
|
|
$this->addOption("portoffset", "p", InputOption::VALUE_REQUIRED, "Offset port numbers by value", 0);
|
|
|
|
$this->addArgument("service", InputArgument::REQUIRED, "The service name");
|
|
|
|
}
|
|
|
|
|
|
|
|
protected function execute(InputInterface $input, OutputInterface $output)
|
|
|
|
{
|
|
|
|
$serviceRegistry = $this->getServiceRegistry();
|
|
|
|
$containerManager = $this->getContainerManager();
|
|
|
|
|
|
|
|
|
|
|
|
$serviceName = $input->getArgument("service");
|
|
|
|
|
|
|
|
$serviceInfo = $serviceRegistry->findServiceByName($serviceName);
|
|
|
|
if (!$serviceInfo) {
|
|
|
|
$output->writeln("<error>No such service in registry</>");
|
|
|
|
return self::FAILURE;
|
|
|
|
}
|
2022-09-27 12:47:30 +02:00
|
|
|
$instanceName = $input->getOption("instance");
|
2022-09-27 12:29:56 +02:00
|
|
|
|
|
|
|
$options = [
|
2022-09-27 12:47:30 +02:00
|
|
|
'name' => $instanceName,
|
2022-09-27 12:29:56 +02:00
|
|
|
'portoffset' => $input->getOption("portoffset")
|
|
|
|
];
|
|
|
|
|
2022-09-28 01:11:14 +02:00
|
|
|
$output->write("Starting...\r");
|
|
|
|
|
2022-09-27 12:47:30 +02:00
|
|
|
$info = $containerManager->startService($serviceInfo, $options);
|
|
|
|
|
2022-10-13 23:18:28 +02:00
|
|
|
$output->writeln("Started <fg=cyan;options=bold>{$serviceName}</>[<fg=cyan>{$instanceName}</>]");
|
2022-09-27 12:47:30 +02:00
|
|
|
foreach ($info['ports'] as $info=>$port) {
|
|
|
|
$output->writeln(" <info>{$info}</>: <comment>{$port}</comment>");
|
|
|
|
}
|
2022-09-27 12:29:56 +02:00
|
|
|
|
|
|
|
return self::SUCCESS;
|
|
|
|
}
|
2022-10-13 23:18:28 +02:00
|
|
|
}
|