0
0
Fork 0
mirror of https://github.com/verdigado/organization_folders.git synced 2024-11-22 12:40:28 +01:00
organization_folders/lib/Command/Resource/UpdateResource.php

70 lines
2.8 KiB
PHP
Raw Normal View History

2024-11-05 00:46:26 +01:00
<?php
namespace OCA\OrganizationFolders\Command\Resource;
use OCP\DB\Exception;
use Symfony\Component\Console\Input\InputArgument;
use Symfony\Component\Console\Input\InputOption;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Output\OutputInterface;
use OCA\OrganizationFolders\Command\BaseCommand;
class UpdateResource extends BaseCommand {
protected function configure(): void {
$this
2024-11-05 14:05:04 +01:00
->setName('organization-folders:resources:update')
2024-11-05 00:46:26 +01:00
->setDescription('Update a resource')
->addArgument('id', InputArgument::REQUIRED, 'Id of the resource to update')
->addOption('name', null, InputOption::VALUE_OPTIONAL, 'New name of resource')
->addOption('active', null, InputOption::VALUE_OPTIONAL, 'Activate/deactivate resource')
->addOption('inherit-managers', null, InputOption::VALUE_OPTIONAL, 'Set wether managers of the parent level (parent resource or organization folder for top level resources) should have management permissions');
2024-11-05 00:46:26 +01:00
// folder type options
$this
->addOption('members-acl-permission', null, InputOption::VALUE_OPTIONAL, 'New acl permissions for members of resource')
->addOption('managers-acl-permission', null, InputOption::VALUE_OPTIONAL, 'New acl permissions for managers of resource')
->addOption('inherited-acl-permission', null, InputOption::VALUE_OPTIONAL, 'New acl permissions for users with access to the resource level above (or organization in case resource is top-level)');
parent::configure();
}
protected function execute(InputInterface $input, OutputInterface $output): int {
$id = $input->getArgument('id');
$name = $input->getOption('name');
$activeOption = $input->getOption('active');
if(!is_null($activeOption)) {
$active = $activeOption === true || $activeOption === "true";
}
$inheritManagersOption = $input->getOption('inherit-managers');
if(!is_null($inheritManagersOption)) {
$inheritManagers = $inheritManagersOption === true || $inheritManagersOption === "true";
}
2024-11-05 00:46:26 +01:00
$membersAclPermission = $input->getOption('members-acl-permission');
$managersAclPermission = $input->getOption('managers-acl-permission');
$inheritedAclPermission = $input->getOption('inherited-acl-permission');
try {
$resource = $this->resourceService->update(
id: $id,
name: $name,
active: $active,
inheritManagers: $inheritManagers,
2024-11-05 00:46:26 +01:00
membersAclPermission: $membersAclPermission,
managersAclPermission: $managersAclPermission,
inheritedAclPermission: $inheritedAclPermission,
);
$this->writeTableInOutputFormat($input, $output, [$this->formatTableSerializable($resource)]);
return 0;
} catch (Exception $e) {
$output->writeln("<error>Exception \"{$e->getMessage()}\" at {$e->getFile()} line {$e->getLine()}</error>");
return 1;
}
}
}