setName('group:list') ->setDescription('list configured groups') ->addOption( 'limit', 'l', InputOption::VALUE_OPTIONAL, 'Number of groups to retrieve', '500' )->addOption( 'offset', 'o', InputOption::VALUE_OPTIONAL, 'Offset for retrieving groups', '0' )->addOption( 'info', 'i', InputOption::VALUE_NONE, 'Show additional info (backend)' )->addOption( 'output', null, InputOption::VALUE_OPTIONAL, 'Output format (plain, json or json_pretty, default is plain)', $this->defaultOutputFormat ); } protected function execute(InputInterface $input, OutputInterface $output): int { $groups = $this->groupManager->search('', (int)$input->getOption('limit'), (int)$input->getOption('offset')); $this->writeArrayInOutputFormat($input, $output, $this->formatGroups($groups, (bool)$input->getOption('info'))); return 0; } /** * @param IGroup $group * @return string[] */ public function usersForGroup(IGroup $group) { $users = array_keys($group->getUsers()); return array_map(function ($userId) { return (string)$userId; }, $users); } /** * @param IGroup[] $groups */ private function formatGroups(array $groups, bool $addInfo = false): \Generator { foreach ($groups as $group) { if ($addInfo) { $value = [ 'displayName' => $group->getDisplayName(), 'backends' => $group->getBackendNames(), 'users' => $this->usersForGroup($group), ]; } else { $value = $this->usersForGroup($group); } yield $group->getGID() => $value; } } }