Files
f7_talk/lib/Command/Stun/Delete.php
glb_adm 01acfa3b40
Type checking / changes (push) Has been cancelled
Type checking / test (push) Has been cancelled
Type checking / typescript-summary (push) Has been cancelled
Node tests / changes (push) Has been cancelled
Node tests / test (push) Has been cancelled
Node tests / test-summary (push) Has been cancelled
UPSTREAM BASELINE: nextcloud/spreed v22.0.12 (без изменений)
Источник: https://github.com/nextcloud/spreed/archive/refs/tags/v22.0.12.tar.gz
С этого коммита ветка официального Nextcloud Talk отрезана (решение владельца 2026-07-06).
Все дальнейшие изменения — только наши; версии релизов: 22.0.12-f7.N.
2026-07-06 14:07:50 +00:00

67 lines
1.8 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\Stun;
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();
}
#[\Override]
protected function configure(): void {
$this
->setName('talk:stun:delete')
->setDescription('Remove an existing STUN server.')
->addArgument(
'server',
InputArgument::REQUIRED,
'A domain name and port number separated by the colons, ex. stun.nextcloud.com:443'
);
}
protected function execute(InputInterface $input, OutputInterface $output): int {
$server = $input->getArgument('server');
$config = $this->config->getAppValue('spreed', 'stun_servers');
$servers = json_decode($config);
if (! is_array($servers)) {
$servers = [];
}
$count = count($servers);
// remove all occurrences of $server
$servers = array_filter($servers, function ($s) use ($server) {
return $s !== $server;
});
$servers = array_values($servers); // reindex
if (empty($servers)) {
$servers = ['stun.nextcloud.com:443'];
$this->config->setAppValue('spreed', 'stun_servers', json_encode($servers));
$output->writeln('<info>You deleted all STUN servers. A default STUN server was added.</info>');
} else {
$this->config->setAppValue('spreed', 'stun_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;
}
}