setName('organization-folders:resource-members:create') ->setDescription('Create a new member of resource') ->addOption('resource-id', null, InputOption::VALUE_REQUIRED, 'Id of resource to create member of') ->addOption('permission-level', null, InputOption::VALUE_REQUIRED, 'Permissions level of member (valid values: MEMBER, MANAGER)') ->addOption('type', null, InputOption::VALUE_REQUIRED, 'Type of principal (valid values: USER, GROUP, ROLE)') ->addOption('principal', null, InputOption::VALUE_OPTIONAL, 'For type user: "[user_id]", for group: "[group_name]", for role: "[organization_provider_id]:[role_id]"'); parent::configure(); } protected function execute(InputInterface $input, OutputInterface $output): int { $resourceId = $input->getOption('resource-id'); $permissionLevel = MemberPermissionLevel::fromNameOrValue($input->getOption('permission-level')); $type = MemberType::fromNameOrValue($input->getOption('type')); $principal = $input->getOption('principal'); try { $resource = $this->resourceMemberService->create( resourceId: $resourceId, permissionLevel: $permissionLevel, type: $type, principal: $principal, ); $this->writeTableInOutputFormat($input, $output, [$this->formatTableSerializable($resource)]); return 0; } catch (Exception $e) { $output->writeln("Exception \"{$e->getMessage()}\" at {$e->getFile()} line {$e->getLine()}"); return 1; } } }