mirror of
https://github.com/verdigado/organization_folders.git
synced 2024-12-06 11:22:41 +01:00
added occ commands to inspect organization providers, organizations and organization roles
This commit is contained in:
parent
21f3a39b06
commit
f85a93aa3a
11 changed files with 202 additions and 9 deletions
41
lib/Command/OrganizationProvider/ListOrganizationRoles.php
Normal file
41
lib/Command/OrganizationProvider/ListOrganizationRoles.php
Normal file
|
@ -0,0 +1,41 @@
|
|||
<?php
|
||||
|
||||
namespace OCA\OrganizationFolders\Command\OrganizationProvider;
|
||||
|
||||
use OCP\DB\Exception;
|
||||
use Symfony\Component\Console\Input\InputArgument;
|
||||
use Symfony\Component\Console\Input\InputInterface;
|
||||
use Symfony\Component\Console\Output\OutputInterface;
|
||||
|
||||
use OCA\OrganizationFolders\Command\BaseCommand;
|
||||
|
||||
class ListOrganizationRoles extends BaseCommand {
|
||||
protected function configure(): void {
|
||||
$this
|
||||
->setName('organization-folders:list-organization-roles')
|
||||
->setDescription('List all roles in a specific organization')
|
||||
->addArgument('provider-id', InputArgument::REQUIRED, 'provider to query')
|
||||
->addArgument('organization-id', InputArgument::REQUIRED, 'organization id to query roles of');
|
||||
parent::configure();
|
||||
}
|
||||
|
||||
protected function execute(InputInterface $input, OutputInterface $output): int {
|
||||
try {
|
||||
$providerId = $input->getArgument('provider-id');
|
||||
$organizationId = (int)$input->getArgument('organization-id');
|
||||
|
||||
if(!$this->organizationProviderManager->hasOrganizationProvider($providerId)) {
|
||||
$output->writeln("<error>organization provider not found</error>");
|
||||
return 0;
|
||||
}
|
||||
|
||||
$roles = $this->organizationProviderManager->getOrganizationProvider($providerId)->getRolesOfOrganization($organizationId);
|
||||
|
||||
$this->writeTableInOutputFormat($input, $output, $this->formatTableSerializables($roles));
|
||||
return 0;
|
||||
} catch (Exception $e) {
|
||||
$output->writeln("<error>Exception \"{$e->getMessage()}\" at {$e->getFile()} line {$e->getLine()}</error>");
|
||||
return 1;
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue