Skip to content
Snippets Groups Projects
Unverified Commit 928cee2a authored by Robin Appelman's avatar Robin Appelman
Browse files

only get the permissions from the share source if it's not already cached


this prevents having to setup the share source when doing metadata stuff on the share root

Signed-off-by: default avatarRobin Appelman <robin@icewind.nl>
parent f0b46ea6
No related branches found
No related tags found
No related merge requests found
...@@ -146,17 +146,16 @@ class Cache extends CacheJail { ...@@ -146,17 +146,16 @@ class Cache extends CacheJail {
} }
try { try {
$sharePermissions = $this->storage->getPermissions($entry['path']); if (isset($entry['permissions'])) {
$entry['permissions'] &= $this->storage->getShare()->getPermissions();
} else {
$entry['permissions'] = $this->storage->getPermissions($entry['path']);
}
} catch (StorageNotAvailableException $e) { } catch (StorageNotAvailableException $e) {
// thrown by FailedStorage e.g. when the sharer does not exist anymore // thrown by FailedStorage e.g. when the sharer does not exist anymore
// (IDE may say the exception is never thrown – false negative) // (IDE may say the exception is never thrown – false negative)
$sharePermissions = 0; $sharePermissions = 0;
} }
if (isset($entry['permissions'])) {
$entry['permissions'] &= $sharePermissions;
} else {
$entry['permissions'] = $sharePermissions;
}
$entry['uid_owner'] = $this->storage->getOwner(''); $entry['uid_owner'] = $this->storage->getOwner('');
$entry['displayname_owner'] = $this->getOwnerDisplayName(); $entry['displayname_owner'] = $this->getOwnerDisplayName();
if ($path === '') { if ($path === '') {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment