Info.php 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. <?php
  2. declare(strict_types=1);
  3. /**
  4. * @copyright Copyright (c) 2021, hosting.de, Johannes Leuker <developers@hosting.de>
  5. *
  6. * @author Johannes Leuker <j.leuker@hosting.de>
  7. *
  8. * @license GNU AGPL version 3 or any later version
  9. *
  10. * This program is free software: you can redistribute it and/or modify
  11. * it under the terms of the GNU Affero General Public License as
  12. * published by the Free Software Foundation, either version 3 of the
  13. * License, or (at your option) any later version.
  14. *
  15. * This program is distributed in the hope that it will be useful,
  16. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  17. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  18. * GNU Affero General Public License for more details.
  19. *
  20. * You should have received a copy of the GNU Affero General Public License
  21. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  22. *
  23. */
  24. namespace OC\Core\Command\Group;
  25. use OC\Core\Command\Base;
  26. use OCP\IGroup;
  27. use OCP\IGroupManager;
  28. use Stecman\Component\Symfony\Console\BashCompletion\CompletionContext;
  29. use Symfony\Component\Console\Input\InputArgument;
  30. use Symfony\Component\Console\Input\InputInterface;
  31. use Symfony\Component\Console\Input\InputOption;
  32. use Symfony\Component\Console\Output\OutputInterface;
  33. class Info extends Base {
  34. protected IGroupManager $groupManager;
  35. public function __construct(IGroupManager $groupManager) {
  36. $this->groupManager = $groupManager;
  37. parent::__construct();
  38. }
  39. protected function configure() {
  40. $this
  41. ->setName('group:info')
  42. ->setDescription('Show information about a group')
  43. ->addArgument(
  44. 'groupid',
  45. InputArgument::REQUIRED,
  46. 'Group id'
  47. )->addOption(
  48. 'output',
  49. null,
  50. InputOption::VALUE_OPTIONAL,
  51. 'Output format (plain, json or json_pretty, default is plain)',
  52. $this->defaultOutputFormat
  53. );
  54. }
  55. protected function execute(InputInterface $input, OutputInterface $output): int {
  56. $gid = $input->getArgument('groupid');
  57. $group = $this->groupManager->get($gid);
  58. if (!$group instanceof IGroup) {
  59. $output->writeln('<error>Group "' . $gid . '" does not exist.</error>');
  60. return 1;
  61. } else {
  62. $groupOutput = [
  63. 'groupID' => $gid,
  64. 'displayName' => $group->getDisplayName(),
  65. 'backends' => $group->getBackendNames(),
  66. ];
  67. $this->writeArrayInOutputFormat($input, $output, $groupOutput);
  68. return 0;
  69. }
  70. }
  71. /**
  72. * @param string $argumentName
  73. * @param CompletionContext $context
  74. * @return string[]
  75. */
  76. public function completeArgumentValues($argumentName, CompletionContext $context) {
  77. if ($argumentName === 'groupid') {
  78. return array_map(static fn (IGroup $group) => $group->getGID(), $this->groupManager->search($context->getCurrentWord()));
  79. }
  80. return [];
  81. }
  82. }