1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- <?php
- /**
- * SPDX-FileCopyrightText: 2016 Nextcloud GmbH and Nextcloud contributors
- * SPDX-License-Identifier: AGPL-3.0-or-later
- */
- namespace OC\Core\Command\Group;
- use OC\Core\Command\Base;
- use OCP\IGroup;
- use OCP\IGroupManager;
- use Symfony\Component\Console\Input\InputInterface;
- use Symfony\Component\Console\Input\InputOption;
- use Symfony\Component\Console\Output\OutputInterface;
- class ListCommand extends Base {
- public function __construct(
- protected IGroupManager $groupManager,
- ) {
- parent::__construct();
- }
- protected function configure() {
- $this
- ->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;
- }
- }
- }
|