* * @author Daniel Rudolf * * @license GNU AGPL version 3 or any later version * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as * published by the Free Software Foundation, either version 3 of the * License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License * along with this program. If not, see . * */ 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('Room not found.'); return 1; } if (!in_array($room->getType(), [Room::GROUP_CALL, Room::PUBLIC_CALL], true)) { $output->writeln('Room is no group call.'); return 1; } try { $this->addRoomParticipants($room, $users); $this->addRoomParticipantsByGroup($room, $groups); } catch (InvalidArgumentException $e) { $output->writeln(sprintf('%s', $e->getMessage())); return 1; } $output->writeln('Users successfully added to room.'); 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); } }