Welcome to mirror list, hosted at ThFree Co, Russian Federation.

readonlycache.php « lib « files_sharing « apps - github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6dd3b9cf61d51fadeb31d7fd11cde56bc46e8426 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<?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 OCA\Files_Sharing;

use OC\Files\Cache\Cache;

class ReadOnlyCache extends Cache {
	public function get($path) {
		$data = parent::get($path);
		$data['permissions'] &= (\OCP\Constants::PERMISSION_READ | \OCP\Constants::PERMISSION_SHARE);
		return $data;
	}

	public function getFolderContents($path) {
		$content = parent::getFolderContents($path);
		foreach ($content as &$data) {
			$data['permissions'] &= (\OCP\Constants::PERMISSION_READ | \OCP\Constants::PERMISSION_SHARE);
		}
		return $content;
	}
}