Files
f7_talk/lib/Command/Stun/Add.php
T
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

69 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 Add extends Base {
public function __construct(
private IConfig $config,
) {
parent::__construct();
}
#[\Override]
protected function configure(): void {
$this
->setName('talk:stun:add')
->setDescription('Add a new 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');
// check input, similar to stun-server.js
$host = parse_url($server, PHP_URL_HOST);
$port = parse_url($server, PHP_URL_PORT);
if (empty($host) || empty($port)) {
$output->writeln('<error>Incorrect value. Must be stunserver:port.</error>');
return 1;
}
$config = $this->config->getAppValue('spreed', 'stun_servers');
$servers = json_decode($config, true);
if ($servers === null || empty($servers) || !is_array($servers)) {
$servers = [];
}
// check if the server is already in the list
foreach ($servers as $existingServer) {
if ($existingServer === "$host:$port") {
$output->writeln('<error>Server already exists.</error>');
return 1;
}
}
$servers[] = "$host:$port";
$this->config->setAppValue('spreed', 'stun_servers', json_encode($servers));
$output->writeln('<info>Added ' . "$host:$port" . '.</info>');
return 0;
}
}