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:"stop", description:"Stop a running service")]
|
|
|
|
class StopCommand 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->addArgument("service", InputArgument::REQUIRED, "The service name");
|
|
|
|
}
|
|
|
|
|
|
|
|
protected function execute(InputInterface $input, OutputInterface $output)
|
|
|
|
{
|
|
|
|
$serviceRegistry = $this->getServiceRegistry();
|
|
|
|
$containerManager = $this->getContainerManager();
|
|
|
|
|
|
|
|
|
|
|
|
$serviceName = $input->getArgument("service");
|
2022-09-27 12:47:30 +02:00
|
|
|
$instanceName = $input->getOption("instance");
|
2022-09-27 12:29:56 +02:00
|
|
|
|
|
|
|
$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
|
|
|
$containerManager->stopService($serviceInfo, $instanceName);
|
2022-09-27 12:29:56 +02:00
|
|
|
|
|
|
|
return self::SUCCESS;
|
|
|
|
}
|
|
|
|
}
|