33 lines
649 B
PHP
33 lines
649 B
PHP
<?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;
|
|
}
|
|
}
|