diff options
author | Robin Appelman <icewind@owncloud.com> | 2014-11-10 16:00:25 +0100 |
---|---|---|
committer | Robin Appelman <icewind@owncloud.com> | 2014-11-27 15:25:57 +0100 |
commit | 33b64868d7b65e751bd8d729ce69d6f46e6c3d8d (patch) | |
tree | 33f1e7cf8514425ec1a3c747f9ad5f627a9d92a7 /lib/private/files/cache/wrapper | |
parent | abb6e89c5d83102c2838bd6a48b5bf6e73e9660d (diff) | |
download | nextcloud-server-33b64868d7b65e751bd8d729ce69d6f46e6c3d8d.tar.gz nextcloud-server-33b64868d7b65e751bd8d729ce69d6f46e6c3d8d.zip |
Add storage and cache wrappers to apply a permissions mask to a storage
Diffstat (limited to 'lib/private/files/cache/wrapper')
-rw-r--r-- | lib/private/files/cache/wrapper/cachepermissionsmask.php | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/lib/private/files/cache/wrapper/cachepermissionsmask.php b/lib/private/files/cache/wrapper/cachepermissionsmask.php new file mode 100644 index 00000000000..6ce6a4ebc44 --- /dev/null +++ b/lib/private/files/cache/wrapper/cachepermissionsmask.php @@ -0,0 +1,32 @@ +<?php +/** + * Copyright (c) 2014 Robin Appelman <icewind@owncloud.com> + * This file is licensed under the Affero General Public License version 3 or + * later. + * See the COPYING-README file. + */ + +namespace OC\Files\Cache\Wrapper; + +class CachePermissionsMask extends CacheWrapper { + /** + * @var int + */ + protected $mask; + + /** + * @param \OC\Files\Cache\Cache $cache + * @param int $mask + */ + public function __construct($cache, $mask) { + parent::__construct($cache); + $this->mask = $mask; + } + + protected function formatCacheEntry($entry) { + if (isset($entry['permissions'])) { + $entry['permissions'] &= $this->mask; + } + return $entry; + } +} |