mirror of
https://github.com/nextcloud/spreed.git
synced 2025-12-17 21:12:20 +01:00
71 lines
2 KiB
PHP
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;
|
|
}
|
|
}
|