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

59 lines
1.5 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();
}
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 = [];
}
$servers[] = "$host:$port";
$this->config->setAppValue('spreed', 'stun_servers', json_encode($servers));
$output->writeln('<info>Added ' . "$host:$port" . '.</info>');
return 0;
}
}