mirror of
https://github.com/nextcloud/spreed.git
synced 2025-12-17 21:12:20 +01:00
99 lines
2.7 KiB
PHP
99 lines
2.7 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
/**
|
|
* SPDX-FileCopyrightText: 2020 Nextcloud GmbH and Nextcloud contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
|
|
namespace OCA\Talk\Command\Room;
|
|
|
|
use InvalidArgumentException;
|
|
use OC\Core\Command\Base;
|
|
use OCA\Talk\Exceptions\RoomNotFoundException;
|
|
use OCA\Talk\Room;
|
|
use Stecman\Component\Symfony\Console\BashCompletion\CompletionContext;
|
|
use Symfony\Component\Console\Input\InputArgument;
|
|
use Symfony\Component\Console\Input\InputInterface;
|
|
use Symfony\Component\Console\Input\InputOption;
|
|
use Symfony\Component\Console\Output\OutputInterface;
|
|
|
|
class Add extends Base {
|
|
use TRoomCommand;
|
|
|
|
protected function configure(): void {
|
|
$this
|
|
->setName('talk:room:add')
|
|
->setDescription('Adds users to a room')
|
|
->addArgument(
|
|
'token',
|
|
InputArgument::REQUIRED,
|
|
'Token of the room to add users to'
|
|
)->addOption(
|
|
'user',
|
|
null,
|
|
InputOption::VALUE_REQUIRED | InputOption::VALUE_IS_ARRAY,
|
|
'Invites the given users to the room'
|
|
)->addOption(
|
|
'group',
|
|
null,
|
|
InputOption::VALUE_REQUIRED | InputOption::VALUE_IS_ARRAY,
|
|
'Invites all members of the given groups to the room'
|
|
);
|
|
}
|
|
|
|
protected function execute(InputInterface $input, OutputInterface $output): int {
|
|
$token = $input->getArgument('token');
|
|
$users = $input->getOption('user');
|
|
$groups = $input->getOption('group');
|
|
|
|
try {
|
|
$room = $this->manager->getRoomByToken($token);
|
|
} catch (RoomNotFoundException $e) {
|
|
$output->writeln('<error>Room not found.</error>');
|
|
return 1;
|
|
}
|
|
|
|
if ($room->isFederatedConversation()) {
|
|
$output->writeln('<error>Room is a federated conversation.</error>');
|
|
return 1;
|
|
}
|
|
|
|
if (!in_array($room->getType(), [Room::TYPE_GROUP, Room::TYPE_PUBLIC], true)) {
|
|
$output->writeln('<error>Room is no group call.</error>');
|
|
return 1;
|
|
}
|
|
|
|
try {
|
|
$this->addRoomParticipants($room, $users);
|
|
$this->addRoomParticipantsByGroup($room, $groups);
|
|
} catch (InvalidArgumentException $e) {
|
|
$output->writeln(sprintf('<error>%s</error>', $e->getMessage()));
|
|
return 1;
|
|
}
|
|
|
|
$output->writeln('<info>Users successfully added to room.</info>');
|
|
return 0;
|
|
}
|
|
|
|
public function completeOptionValues($optionName, CompletionContext $context) {
|
|
switch ($optionName) {
|
|
case 'user':
|
|
return $this->completeUserValues($context);
|
|
|
|
case 'group':
|
|
return $this->completeGroupValues($context);
|
|
}
|
|
|
|
return parent::completeOptionValues($optionName, $context);
|
|
}
|
|
|
|
public function completeArgumentValues($argumentName, CompletionContext $context) {
|
|
switch ($argumentName) {
|
|
case 'token':
|
|
return $this->completeTokenValues($context);
|
|
}
|
|
|
|
return parent::completeArgumentValues($argumentName, $context);
|
|
}
|
|
}
|