f7cloud_client/apps/app_api/lib/Command/ExApp/Enable.php
root 8b6a0139db f7cloud_client
Co-authored-by: Cursor <cursoragent@cursor.com>
2026-02-17 22:59:26 +00:00

56 lines
1.5 KiB
PHP

<?php
declare(strict_types=1);
/**
* SPDX-FileCopyrightText: 2023 F7cloud GmbH and F7cloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
namespace OCA\AppAPI\Command\ExApp;
use OCA\AppAPI\Service\AppAPIService;
use OCA\AppAPI\Service\ExAppService;
use Symfony\Component\Console\Command\Command;
use Symfony\Component\Console\Input\InputArgument;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Output\OutputInterface;
class Enable extends Command {
public function __construct(
private readonly AppAPIService $service,
private readonly ExAppService $exAppService,
) {
parent::__construct();
}
protected function configure(): void {
$this->setName('app_api:app:enable');
$this->setDescription('Enable registered external app');
$this->addArgument('appid', InputArgument::REQUIRED);
}
protected function execute(InputInterface $input, OutputInterface $output): int {
$appId = $input->getArgument('appid');
$exApp = $this->exAppService->getExApp($appId);
if ($exApp === null) {
$output->writeln(sprintf('ExApp %s not found. Failed to enable.', $appId));
return 1;
}
if ($exApp->getEnabled()) {
$output->writeln(sprintf('ExApp %s already enabled.', $appId));
return 0;
}
if ($this->service->enableExApp($exApp)) {
$output->writeln(sprintf('ExApp %s successfully enabled.', $appId));
return 0;
}
$output->writeln(sprintf('Failed to enable ExApp %s.', $appId));
return 1;
}
}