summaryrefslogtreecommitdiffstats
path: root/apps/files_sharing/lib/readonlywrapper.php
diff options
context:
space:
mode:
authorRobin Appelman <icewind@owncloud.com>2015-07-01 15:45:54 +0200
committerRobin Appelman <icewind@owncloud.com>2015-07-01 15:45:54 +0200
commitdd20cd199567b592e24765a13981c5b52452aff0 (patch)
treede9c293d7d86ccf0495c87f669672e78686f33c6 /apps/files_sharing/lib/readonlywrapper.php
parent365fafc9bcd18656c12e75af59c89e6f954d69b3 (diff)
downloadnextcloud-server-dd20cd199567b592e24765a13981c5b52452aff0.tar.gz
nextcloud-server-dd20cd199567b592e24765a13981c5b52452aff0.zip
remove no longer needed readonly wrapper
Diffstat (limited to 'apps/files_sharing/lib/readonlywrapper.php')
-rw-r--r--apps/files_sharing/lib/readonlywrapper.php74
1 files changed, 0 insertions, 74 deletions
diff --git a/apps/files_sharing/lib/readonlywrapper.php b/apps/files_sharing/lib/readonlywrapper.php
deleted file mode 100644
index a5d84f7f5a2..00000000000
--- a/apps/files_sharing/lib/readonlywrapper.php
+++ /dev/null
@@ -1,74 +0,0 @@
-<?php
-/**
- * @author Joas Schilling <nickvergessen@owncloud.com>
- * @author Morris Jobke <hey@morrisjobke.de>
- * @author Robin Appelman <icewind@owncloud.com>
- *
- * @copyright Copyright (c) 2015, ownCloud, Inc.
- * @license AGPL-3.0
- *
- * This code is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Affero General Public License, version 3,
- * as published by the Free Software Foundation.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU Affero General Public License for more details.
- *
- * You should have received a copy of the GNU Affero General Public License, version 3,
- * along with this program. If not, see <http://www.gnu.org/licenses/>
- *
- */
-
-namespace OCA\Files_Sharing;
-
-use OC\Files\Cache\Wrapper\CachePermissionsMask;
-use OC\Files\Storage\Wrapper\Wrapper;
-use OCP\Constants;
-
-class ReadOnlyWrapper extends Wrapper {
- public function isUpdatable($path) {
- return false;
- }
-
- public function isCreatable($path) {
- return false;
- }
-
- public function isDeletable($path) {
- return false;
- }
-
- public function getPermissions($path) {
- return $this->storage->getPermissions($path) & (\OCP\Constants::PERMISSION_READ | \OCP\Constants::PERMISSION_SHARE);
- }
-
- public function rename($path1, $path2) {
- return false;
- }
-
- public function touch($path, $mtime = null) {
- return false;
- }
-
- public function mkdir($path) {
- return false;
- }
-
- public function rmdir($path) {
- return false;
- }
-
- public function unlink($path) {
- return false;
- }
-
- public function getCache($path = '', $storage = null) {
- if (!$storage) {
- $storage = $this;
- }
- $sourceCache = $this->storage->getCache($path, $storage);
- return new CachePermissionsMask($sourceCache, Constants::PERMISSION_READ | Constants::PERMISSION_SHARE);
- }
-}