* * @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 Exception; use OC\Core\Command\Base; use OCA\Talk\Exceptions\RoomNotFoundException; use OCA\Talk\Manager; use OCA\Talk\Room; use OCP\IUserManager; use Symfony\Component\Console\Input\InputArgument; use Symfony\Component\Console\Input\InputInterface; use Symfony\Component\Console\Output\OutputInterface; class Promote extends Base { use TRoomCommand; /** @var IUserManager */ public $userManager; /** @var Manager */ public $manager; public function __construct(IUserManager $userManager, Manager $manager) { parent::__construct(); $this->userManager = $userManager; $this->manager = $manager; } protected function configure(): void { $this ->setName('talk:room:promote') ->setDescription('Promotes participants of a room to moderators') ->addArgument( 'token', InputArgument::REQUIRED, 'Token of the room in which users should be promoted' )->addArgument( 'participant', InputArgument::REQUIRED | InputArgument::IS_ARRAY, 'Promotes the given participants of the room to moderators' ); } 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->addRoomModerators($room, $users); } catch (Exception $e) { $output->writeln(sprintf('%s', $e->getMessage())); return 1; } $output->writeln('Users successfully added to room.'); return 0; } }