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 ($room->isFederatedConversation()) { $output->writeln('Room is a federated conversation.'); return 1; } if (!in_array($room->getType(), [Room::TYPE_GROUP, Room::TYPE_PUBLIC], 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; } #[\Override] 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); } #[\Override] public function completeArgumentValues($argumentName, CompletionContext $context) { switch ($argumentName) { case 'token': return $this->completeTokenValues($context); } return parent::completeArgumentValues($argumentName, $context); } }