* * @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\Output\OutputInterface; class Demote extends Base { use TRoomCommand; protected function configure(): void { $this ->setName('talk:room:demote') ->setDescription('Demotes participants of a room to regular users') ->addArgument( 'token', InputArgument::REQUIRED, 'Token of the room in which users should be demoted' )->addArgument( 'participant', InputArgument::REQUIRED | InputArgument::IS_ARRAY, 'Demotes the given participants of the room to regular users' ); } protected function execute(InputInterface $input, OutputInterface $output): int { $token = $input->getArgument('token'); $users = $input->getArgument('participant'); 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->removeRoomModerators($room, $users); } catch (InvalidArgumentException $e) { $output->writeln(sprintf('%s', $e->getMessage())); return 1; } $output->writeln('Participants successfully demoted to regular users.'); return 0; } public function completeArgumentValues($argumentName, CompletionContext $context) { switch ($argumentName) { case 'token': return $this->completeTokenValues($context); case 'participant': return $this->completeParticipantValues($context); } return parent::completeArgumentValues($argumentName, $context); } }