* * @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 Update extends Base { use TRoomCommand; protected function configure(): void { $this ->setName('talk:room:update') ->setDescription('Updates a room') ->addArgument( 'token', InputArgument::REQUIRED, 'The token of the room to update' )->addOption( 'name', null, InputOption::VALUE_REQUIRED, 'Sets a new name for the room' )->addOption( 'description', null, InputOption::VALUE_REQUIRED, 'Sets a new description for the room' )->addOption( 'public', null, InputOption::VALUE_REQUIRED, 'Modifies the room to be a public room (value 1) or private room (value 0)' )->addOption( 'readonly', null, InputOption::VALUE_REQUIRED, 'Modifies the room to be read-only (value 1) or read-write (value 0)' )->addOption( 'listable', null, InputOption::VALUE_NONE, 'Modifies the room\'s listable scope' )->addOption( 'password', null, InputOption::VALUE_REQUIRED, 'Sets a new password for the room; pass an empty value to remove password protection' )->addOption( 'owner', null, InputOption::VALUE_REQUIRED, 'Sets the given user as owner of the room; pass an empty value to remove the owner' ); } protected function execute(InputInterface $input, OutputInterface $output): int { $token = $input->getArgument('token'); $name = $input->getOption('name'); $description = $input->getOption('description'); $public = $input->getOption('public'); $readOnly = $input->getOption('readonly'); $listable = $input->getOption('listable'); $password = $input->getOption('password'); $owner = $input->getOption('owner'); if (!in_array($public, [null, '0', '1'], true)) { $output->writeln('Invalid value for option "--public" given.'); return 1; } if (!in_array($readOnly, [null, '0', '1'], true)) { $output->writeln('Invalid value for option "--readonly" given.'); return 1; } if (!in_array($listable, [null, '0', '1', '2', '3'], true)) { $output->writeln('Invalid value for option "--listable" given.'); return 1; } 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 { if ($name !== null) { $this->setRoomName($room, $name); } if ($description !== null) { $this->setRoomDescription($room, $description); } if ($public !== null) { $this->setRoomPublic($room, ($public === '1')); } if ($readOnly !== null) { $this->setRoomReadOnly($room, ($readOnly === '1')); } if ($listable !== null) { $this->setRoomListable($room, (int)$listable); } if ($password !== null) { $this->setRoomPassword($room, $password); } if ($owner !== null) { if ($owner !== '') { $this->setRoomOwner($room, $owner); } else { $this->unsetRoomOwner($room); } } } catch (InvalidArgumentException $e) { $output->writeln(sprintf('%s', $e->getMessage())); return 1; } $output->writeln('Room successfully updated.'); return 0; } public function completeOptionValues($optionName, CompletionContext $context) { switch ($optionName) { case 'public': case 'readonly': return ['1', '0']; case 'listable': return ['2', '1', '0']; case 'owner': return $this->completeParticipantValues($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); } }