spreed/lib/Command/Turn/Delete.php
Joas Schilling 1ccbf67da2
chore: Run SPDX convertor
Signed-off-by: Joas Schilling <coding@schilljs.com>
2024-04-26 13:02:15 +02:00

71 lines
2 KiB
PHP

<?php
declare(strict_types=1);
/**
* SPDX-FileCopyrightText: 2018 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
namespace OCA\Talk\Command\Turn;
use OC\Core\Command\Base;
use OCP\IConfig;
use Symfony\Component\Console\Input\InputArgument;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Output\OutputInterface;
class Delete extends Base {
public function __construct(
private IConfig $config,
) {
parent::__construct();
}
protected function configure(): void {
$this
->setName('talk:turn:delete')
->setDescription('Remove an existing TURN server.')
->addArgument(
'schemes',
InputArgument::REQUIRED,
'Schemes, can be turn or turns or turn,turns'
)->addArgument(
'server',
InputArgument::REQUIRED,
'A domain name, ex. turn.nextcloud.com'
)->addArgument(
'protocols',
InputArgument::REQUIRED,
'Protocols, can be udp or tcp or udp,tcp'
);
}
protected function execute(InputInterface $input, OutputInterface $output): int {
$schemes = $input->getArgument('schemes');
$server = $input->getArgument('server');
$protocols = $input->getArgument('protocols');
$config = $this->config->getAppValue('spreed', 'turn_servers');
$servers = json_decode($config, true);
if ($servers === null || empty($servers) || !is_array($servers)) {
$servers = [];
}
$count = count($servers);
// remove all occurrences which match $schemes, $server and $protocols
$servers = array_filter($servers, function ($s) use ($schemes, $server, $protocols) {
return $s['schemes'] !== $schemes || $s['server'] !== $server || $s['protocols'] !== $protocols;
});
$servers = array_values($servers); // reindex
$this->config->setAppValue('spreed', 'turn_servers', json_encode($servers));
if ($count > count($servers)) {
$output->writeln('<info>Deleted ' . $server . '.</info>');
} else {
$output->writeln('<info>There is nothing to delete.</info>');
}
return 0;
}
}