UPSTREAM BASELINE: nextcloud/spreed v22.0.12 (без изменений)
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
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
Источник: https://github.com/nextcloud/spreed/archive/refs/tags/v22.0.12.tar.gz С этого коммита ветка официального Nextcloud Talk отрезана (решение владельца 2026-07-06). Все дальнейшие изменения — только наши; версии релизов: 22.0.12-f7.N.
This commit is contained in:
@@ -0,0 +1,72 @@
|
||||
<?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();
|
||||
}
|
||||
|
||||
#[\Override]
|
||||
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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user