2014-03-06 19:00:25 +04:00
|
|
|
<?php
|
|
|
|
/**
|
2015-06-25 12:43:55 +03:00
|
|
|
* @author Lukas Reschke <lukas@owncloud.com>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Morris Jobke <hey@morrisjobke.de>
|
|
|
|
* @author Robin Appelman <icewind@owncloud.com>
|
|
|
|
* @author Thomas Müller <thomas.mueller@tmit.eu>
|
|
|
|
* @author Vincent Petry <pvince81@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/>
|
|
|
|
*
|
2014-03-06 19:00:25 +04:00
|
|
|
*/
|
2015-02-26 13:37:37 +03:00
|
|
|
|
2014-03-06 19:00:25 +04:00
|
|
|
// load needed apps
|
|
|
|
$RUNTIME_APPTYPES = array('filesystem', 'authentication', 'logging');
|
|
|
|
|
|
|
|
OC_App::loadApps($RUNTIME_APPTYPES);
|
|
|
|
|
|
|
|
OC_Util::obEnd();
|
|
|
|
|
|
|
|
// Backends
|
|
|
|
$authBackend = new OCA\Files_Sharing\Connector\PublicAuth(\OC::$server->getConfig());
|
|
|
|
|
2015-08-07 18:36:14 +03:00
|
|
|
$serverFactory = new \OC\Connector\Sabre\ServerFactory(
|
|
|
|
\OC::$server->getConfig(),
|
|
|
|
\OC::$server->getLogger(),
|
|
|
|
\OC::$server->getDatabaseConnection(),
|
|
|
|
\OC::$server->getUserSession(),
|
|
|
|
\OC::$server->getMountManager(),
|
|
|
|
\OC::$server->getTagManager()
|
|
|
|
);
|
2014-03-06 19:00:25 +04:00
|
|
|
|
2015-08-07 18:36:14 +03:00
|
|
|
$requestUri = \OC::$server->getRequest()->getRequestUri();
|
2014-03-06 19:00:25 +04:00
|
|
|
|
2015-08-07 18:36:14 +03:00
|
|
|
$server = $serverFactory->createServer($baseuri, $requestUri, $authBackend, function () use ($authBackend) {
|
2015-05-20 13:19:03 +03:00
|
|
|
if (OCA\Files_Sharing\Helper::isOutgoingServer2serverShareEnabled() === false) {
|
|
|
|
// this is what is thrown when trying to access a non-existing share
|
|
|
|
throw new \Sabre\DAV\Exception\NotAuthenticated();
|
|
|
|
}
|
|
|
|
|
2014-03-06 19:00:25 +04:00
|
|
|
$share = $authBackend->getShare();
|
2015-04-22 17:19:52 +03:00
|
|
|
$rootShare = \OCP\Share::resolveReShare($share);
|
|
|
|
$owner = $rootShare['uid_owner'];
|
2015-04-23 14:42:51 +03:00
|
|
|
$isWritable = $share['permissions'] & (\OCP\Constants::PERMISSION_UPDATE | \OCP\Constants::PERMISSION_CREATE);
|
|
|
|
$fileId = $share['file_source'];
|
2014-06-12 19:53:56 +04:00
|
|
|
|
|
|
|
if (!$isWritable) {
|
|
|
|
\OC\Files\Filesystem::addStorageWrapper('readonly', function ($mountPoint, $storage) {
|
2015-07-01 16:45:23 +03:00
|
|
|
return new \OC\Files\Storage\Wrapper\PermissionsMask(array('storage' => $storage, 'mask' => \OCP\Constants::PERMISSION_READ + \OCP\Constants::PERMISSION_SHARE));
|
2014-06-12 19:53:56 +04:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2014-03-06 19:00:25 +04:00
|
|
|
OC_Util::setupFS($owner);
|
|
|
|
$ownerView = \OC\Files\Filesystem::getView();
|
|
|
|
$path = $ownerView->getPath($fileId);
|
|
|
|
|
2015-08-07 18:36:14 +03:00
|
|
|
return new \OC\Files\View($ownerView->getAbsolutePath($path));
|
|
|
|
});
|
2014-03-06 19:00:25 +04:00
|
|
|
|
|
|
|
// And off we go!
|
|
|
|
$server->exec();
|