* * @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\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 Create extends Base { use TRoomCommand; protected function configure(): void { $this ->setName('talk:room:create') ->setDescription('Create a new room') ->addArgument( 'name', InputArgument::REQUIRED, 'The name of the room to create' )->addOption( 'description', null, InputOption::VALUE_REQUIRED, 'The description of the room to create' )->addOption( 'user', null, InputOption::VALUE_REQUIRED | InputOption::VALUE_IS_ARRAY, 'Invites the given users to the room to create' )->addOption( 'group', null, InputOption::VALUE_REQUIRED | InputOption::VALUE_IS_ARRAY, 'Invites all members of the given group to the room to create' )->addOption( 'public', null, InputOption::VALUE_NONE, 'Creates the room as public room if set' )->addOption( 'readonly', null, InputOption::VALUE_NONE, 'Creates the room with read-only access only if set' )->addOption( 'listable', null, InputOption::VALUE_NONE, 'Creates the room with the given listable scope' )->addOption( 'password', null, InputOption::VALUE_REQUIRED, 'Protects the room to create with the given password' )->addOption( 'owner', null, InputOption::VALUE_REQUIRED, 'Sets the given user as owner of the room to create' )->addOption( 'moderator', null, InputOption::VALUE_REQUIRED | InputOption::VALUE_IS_ARRAY, 'Promotes the given users to moderators' ); } protected function execute(InputInterface $input, OutputInterface $output): int { $name = $input->getArgument('name'); $description = $input->getOption('description'); $users = $input->getOption('user'); $groups = $input->getOption('group'); $public = $input->getOption('public'); $readonly = $input->getOption('readonly'); $listable = $input->getOption('listable'); $password = $input->getOption('password'); $owner = $input->getOption('owner'); $moderators = $input->getOption('moderator'); if (!in_array($readOnly, [null, '0', '1'], true)) { $output->writeln('Invalid value for option "--readonly" given.'); return 1; } if (!in_array($listable, [ null, (string)Room::LISTABLE_NONE, (string)Room::LISTABLE_USERS, (string)Room::LISTABLE_ALL, ], true)) { $output->writeln('Invalid value for option "--listable" given.'); return 1; } $roomType = $public ? Room::PUBLIC_CALL : Room::GROUP_CALL; try { $room = $this->roomService->createConversation($roomType, $name); } catch (InvalidArgumentException $e) { if ($e->getMessage() === 'name') { $output->writeln('Invalid room name.'); return 1; } throw $e; } try { if ($description !== null) { $this->setRoomDescription($room, $description); } $this->setRoomReadOnly($room, $readonly); $this->setListable($room, $listable); if ($password !== null) { $this->setRoomPassword($room, $password); } $this->addRoomParticipants($room, $users); $this->addRoomParticipantsByGroup($room, $groups); $this->addRoomModerators($room, $moderators); if ($owner !== null) { $this->setRoomOwner($room, $owner); } } catch (InvalidArgumentException $e) { $room->deleteRoom(); $output->writeln(sprintf('%s', $e->getMessage())); return 1; } $output->writeln('Room successfully created.'); return 0; } public function completeOptionValues($optionName, CompletionContext $context) { switch ($optionName) { case 'user': return $this->completeUserValues($context); case 'group': return $this->completeGroupValues($context); case 'owner': case 'moderator': return $this->completeParticipantValues($context); case 'readonly': return ['1', '0']; case 'listable': return [ (string)Room::LISTABLE_ALL, (string)Room::LISTABLE_USERS, (string)Room::LISTABLE_NONE, ]; } return parent::completeOptionValues($optionName, $context); } }