mirror of
https://github.com/verdigado/organization_folders.git
synced 2024-11-21 20:28:11 +01:00
added groupfolder ACL manager
This commit is contained in:
parent
2521a35b2a
commit
d558c1dd82
1 changed files with 86 additions and 0 deletions
86
lib/Manager/ACLManager.php
Normal file
86
lib/Manager/ACLManager.php
Normal file
|
@ -0,0 +1,86 @@
|
|||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace OCA\OrganizationFolders\Manager;
|
||||
|
||||
use OCP\DB\QueryBuilder\IQueryBuilder;
|
||||
use OCP\IDBConnection;
|
||||
|
||||
use OCA\GroupFolders\ACL\Rule;
|
||||
use OCA\GroupFolders\ACL\UserMapping\IUserMappingManager;
|
||||
use OCA\GroupFolders\ACL\RuleManager;
|
||||
use OCA\GroupFolders\Folder\FolderManager;
|
||||
|
||||
class ACLManager {
|
||||
public function __construct(
|
||||
private IDBConnection $db,
|
||||
private FolderManager $folderManager,
|
||||
private IUserMappingManager $userMappingManager,
|
||||
private RuleManager $ruleManager,
|
||||
) {
|
||||
}
|
||||
|
||||
protected function createRuleEntityFromRow(array $data): ?Rule {
|
||||
$mapping = $this->userMappingManager->mappingFromId($data['mapping_type'], $data['mapping_id']);
|
||||
|
||||
if ($mapping) {
|
||||
return new Rule(
|
||||
$mapping,
|
||||
(int)$data['fileid'],
|
||||
(int)$data['mask'],
|
||||
(int)$data['permissions']
|
||||
);
|
||||
} else {
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
public function getAllRulesForFileId(int $fileId) {
|
||||
$qb = $this->db->getQueryBuilder();
|
||||
|
||||
$qb->select(['fileid', 'mapping_type', 'mapping_id', 'mask', 'permissions'])
|
||||
->from('group_folders_acl')
|
||||
->where($qb->expr()->eq('fileid', $qb->createNamedParameter($fileId, IQueryBuilder::PARAM_INT)));
|
||||
|
||||
$rows = $qb->executeQuery()->fetchAll();
|
||||
|
||||
return array_map($this->createRuleEntityFromRow(...), $rows);
|
||||
}
|
||||
|
||||
private function ruleMappingComparison(Rule $rule1, Rule $rule2) {
|
||||
$mapping1 = $rule1->getUserMapping();
|
||||
$mapping2 = $rule2->getUserMapping();
|
||||
|
||||
return $mapping1->getType() <=> $mapping2->getType() ?: $mapping1->getId() <=> $mapping2->getId();
|
||||
}
|
||||
|
||||
public function overwriteACLsForFileId(int $fileId, array $rules): array {
|
||||
$existingRules = $this->getAllRulesForFileId($fileId);
|
||||
|
||||
// new rules to be added
|
||||
$newRules = array_udiff($rules, $existingRules, $this->ruleMappingComparison(...));
|
||||
|
||||
// old rules to be deleted
|
||||
$removedRules = array_udiff($existingRules, $rules, $this->ruleMappingComparison(...));
|
||||
|
||||
// rules for user or group for which a rule already exists, but it might need to be updated
|
||||
$potentiallyUpdatedRules = array_uintersect($rules, $existingRules, $this->ruleMappingComparison(...));
|
||||
|
||||
|
||||
foreach($removedRules as $removedRule) {
|
||||
$this->ruleManager->deleteRule($removedRule);
|
||||
}
|
||||
|
||||
foreach($newRules as $newRule) {
|
||||
$this->ruleManager->saveRule($newRule);
|
||||
}
|
||||
|
||||
foreach($potentiallyUpdatedRules as $potentiallyUpdatedRule) {
|
||||
$this->ruleManager->saveRule($potentiallyUpdatedRule);
|
||||
}
|
||||
|
||||
return ["created" => $newRules, "removed" => $removedRules, "updated" => $potentiallyUpdatedRules];
|
||||
}
|
||||
|
||||
}
|
Loading…
Reference in a new issue