setName('group:delete')
->setDescription('Remove a group')
->addArgument(
'groupid',
InputArgument::REQUIRED,
'Group name'
);
}
protected function execute(InputInterface $input, OutputInterface $output): int {
$gid = $input->getArgument('groupid');
if ($gid === 'admin') {
$output->writeln('Group "' . $gid . '" could not be deleted.');
return 1;
}
if (!$this->groupManager->groupExists($gid)) {
$output->writeln('Group "' . $gid . '" does not exist.');
return 1;
}
$group = $this->groupManager->get($gid);
if ($group->delete()) {
$output->writeln('Group "' . $gid . '" was removed');
} else {
$output->writeln('Group "' . $gid . '" could not be deleted. Please check the logs.');
return 1;
}
return 0;
}
/**
* @param string $argumentName
* @param CompletionContext $context
* @return string[]
*/
public function completeArgumentValues($argumentName, CompletionContext $context) {
if ($argumentName === 'groupid') {
return array_map(static fn (IGroup $group) => $group->getGID(), $this->groupManager->search($context->getCurrentWord()));
}
return [];
}
}