2014-03-06 19:00:25 +04:00
|
|
|
<?php
|
|
|
|
/**
|
2016-05-26 20:56:05 +03:00
|
|
|
* @author Björn Schießle <bjoern@schiessle.org>
|
2015-10-05 21:54:56 +03:00
|
|
|
* @author Joas Schilling <nickvergessen@owncloud.com>
|
2016-05-26 20:56:05 +03:00
|
|
|
* @author Lukas Reschke <lukas@statuscode.ch>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Morris Jobke <hey@morrisjobke.de>
|
|
|
|
* @author Robin Appelman <icewind@owncloud.com>
|
2016-05-26 20:56:05 +03:00
|
|
|
* @author Roeland Jago Douma <rullzer@owncloud.com>
|
2016-01-12 17:02:16 +03:00
|
|
|
* @author Thomas Müller <thomas.mueller@tmit.eu>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Vincent Petry <pvince81@owncloud.com>
|
|
|
|
*
|
2016-01-12 17:02:16 +03:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
2015-03-26 13:44:34 +03:00
|
|
|
* @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
|
2015-08-30 20:13:01 +03:00
|
|
|
$RUNTIME_APPTYPES = ['filesystem', 'authentication', 'logging'];
|
2014-03-06 19:00:25 +04:00
|
|
|
|
|
|
|
OC_App::loadApps($RUNTIME_APPTYPES);
|
|
|
|
|
|
|
|
OC_Util::obEnd();
|
2016-03-15 18:08:55 +03:00
|
|
|
\OC::$server->getSession()->close();
|
2014-03-06 19:00:25 +04:00
|
|
|
|
|
|
|
// Backends
|
2016-04-01 18:04:10 +03:00
|
|
|
$authBackend = new OCA\DAV\Connector\PublicAuth(
|
|
|
|
\OC::$server->getRequest(),
|
|
|
|
\OC::$server->getShareManager(),
|
|
|
|
\OC::$server->getSession()
|
|
|
|
);
|
2014-03-06 19:00:25 +04:00
|
|
|
|
2015-08-30 20:13:01 +03:00
|
|
|
$serverFactory = new OCA\DAV\Connector\Sabre\ServerFactory(
|
2015-08-07 18:36:14 +03:00
|
|
|
\OC::$server->getConfig(),
|
|
|
|
\OC::$server->getLogger(),
|
|
|
|
\OC::$server->getDatabaseConnection(),
|
|
|
|
\OC::$server->getUserSession(),
|
|
|
|
\OC::$server->getMountManager(),
|
2015-09-17 14:47:58 +03:00
|
|
|
\OC::$server->getTagManager(),
|
2015-11-13 13:47:32 +03:00
|
|
|
\OC::$server->getRequest()
|
2015-08-07 18:36:14 +03:00
|
|
|
);
|
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-12-03 17:29:42 +03:00
|
|
|
$linkCheckPlugin = new \OCA\DAV\Files\Sharing\PublicLinkCheckPlugin();
|
|
|
|
|
|
|
|
$server = $serverFactory->createServer($baseuri, $requestUri, $authBackend, function (\Sabre\DAV\Server $server) use ($authBackend, $linkCheckPlugin) {
|
2015-07-13 13:01:15 +03:00
|
|
|
$isAjax = (isset($_SERVER['HTTP_X_REQUESTED_WITH']) && $_SERVER['HTTP_X_REQUESTED_WITH'] === 'XMLHttpRequest');
|
2016-07-13 13:39:20 +03:00
|
|
|
$federatedSharingApp = new \OCA\FederatedFileSharing\AppInfo\Application();
|
2016-04-18 19:17:08 +03:00
|
|
|
$federatedShareProvider = $federatedSharingApp->getFederatedShareProvider();
|
|
|
|
if ($federatedShareProvider->isOutgoingServer2serverShareEnabled() === false && !$isAjax) {
|
2015-05-20 13:19:03 +03:00
|
|
|
// 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();
|
2016-04-01 18:04:10 +03:00
|
|
|
$owner = $share->getShareOwner();
|
2016-06-08 15:59:06 +03:00
|
|
|
$isReadable = $share->getPermissions() & \OCP\Constants::PERMISSION_READ;
|
2016-04-01 18:04:10 +03:00
|
|
|
$fileId = $share->getNodeId();
|
2014-06-12 19:53:56 +04:00
|
|
|
|
2016-06-08 15:59:06 +03:00
|
|
|
if (!$isReadable) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2016-06-06 15:39:02 +03:00
|
|
|
\OC\Files\Filesystem::addStorageWrapper('sharePermissions', function ($mountPoint, $storage) use ($share) {
|
|
|
|
return new \OC\Files\Storage\Wrapper\PermissionsMask(array('storage' => $storage, 'mask' => $share->getPermissions() | \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-12-03 17:29:42 +03:00
|
|
|
$fileInfo = $ownerView->getFileInfo($path);
|
|
|
|
$linkCheckPlugin->setFileInfo($fileInfo);
|
2014-03-06 19:00:25 +04:00
|
|
|
|
2015-08-07 18:36:14 +03:00
|
|
|
return new \OC\Files\View($ownerView->getAbsolutePath($path));
|
|
|
|
});
|
2014-03-06 19:00:25 +04:00
|
|
|
|
2015-12-03 17:29:42 +03:00
|
|
|
$server->addPlugin($linkCheckPlugin);
|
|
|
|
|
2014-03-06 19:00:25 +04:00
|
|
|
// And off we go!
|
|
|
|
$server->exec();
|