2010-03-10 15:03:40 +03:00
|
|
|
<?php
|
|
|
|
/**
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Bart Visscher <bartv@thisnet.nl>
|
|
|
|
* @author Frank Karlitschek <frank@owncloud.org>
|
|
|
|
* @author Jakob Sack <mail@jakobsack.de>
|
|
|
|
* @author Jörn Friedrich Dreyer <jfd@butonic.de>
|
|
|
|
* @author Lukas Reschke <lukas@owncloud.com>
|
|
|
|
* @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>
|
2011-07-20 17:53:34 +04:00
|
|
|
*
|
2015-03-26 13:44:34 +03:00
|
|
|
* @copyright Copyright (c) 2015, ownCloud, Inc.
|
|
|
|
* @license AGPL-3.0
|
2011-07-20 17:53:34 +04:00
|
|
|
*
|
2015-03-26 13:44:34 +03:00
|
|
|
* 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.
|
2011-07-20 17:53:34 +04:00
|
|
|
*
|
2015-03-26 13:44:34 +03:00
|
|
|
* This program is distributed in the hope that it will be useful,
|
2011-07-20 17:53:34 +04:00
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2015-03-26 13:44:34 +03:00
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
2011-07-20 17:53:34 +04:00
|
|
|
*
|
2015-03-26 13:44:34 +03:00
|
|
|
* 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/>
|
2011-07-20 17:53:34 +04:00
|
|
|
*
|
|
|
|
*/
|
2015-02-26 13:37:37 +03:00
|
|
|
|
2015-03-26 13:55:26 +03:00
|
|
|
// no php execution timeout for webdav
|
|
|
|
set_time_limit(0);
|
|
|
|
|
|
|
|
|
2011-08-06 13:36:56 +04:00
|
|
|
// Backends
|
2015-02-12 14:29:01 +03:00
|
|
|
$authBackend = new \OC\Connector\Sabre\Auth();
|
2010-03-10 15:03:40 +03:00
|
|
|
|
2011-08-06 13:36:56 +04:00
|
|
|
// Fire up server
|
2014-03-04 16:28:48 +04:00
|
|
|
$objectTree = new \OC\Connector\Sabre\ObjectTree();
|
2015-02-12 14:29:01 +03:00
|
|
|
$server = new \OC\Connector\Sabre\Server($objectTree);
|
|
|
|
// Set URL explicitly due to reverse-proxy situations
|
|
|
|
$server->httpRequest->setUrl(\OC::$server->getRequest()->getRequestUri());
|
2012-05-06 02:12:51 +04:00
|
|
|
$server->setBaseUri($baseuri);
|
2010-03-10 15:03:40 +03:00
|
|
|
|
2011-08-06 13:36:56 +04:00
|
|
|
// Load plugins
|
2013-07-23 20:14:05 +04:00
|
|
|
$defaults = new OC_Defaults();
|
2014-01-09 17:25:48 +04:00
|
|
|
$server->addPlugin(new \Sabre\DAV\Auth\Plugin($authBackend, $defaults->getName()));
|
2015-02-18 15:41:42 +03:00
|
|
|
// FIXME: The following line is a workaround for legacy components relying on being able to send a GET to /
|
|
|
|
$server->addPlugin(new \OC\Connector\Sabre\DummyGetResponsePlugin());
|
2015-02-12 14:29:01 +03:00
|
|
|
$server->addPlugin(new \OC\Connector\Sabre\FilesPlugin($objectTree));
|
|
|
|
$server->addPlugin(new \OC\Connector\Sabre\MaintenancePlugin());
|
2015-03-11 13:53:31 +03:00
|
|
|
$server->addPlugin(new \OC\Connector\Sabre\ExceptionLoggerPlugin('webdav', \OC::$server->getLogger()));
|
2011-07-22 16:38:42 +04:00
|
|
|
|
2014-02-25 19:23:09 +04:00
|
|
|
// wait with registering these until auth is handled and the filesystem is setup
|
2015-02-12 14:29:01 +03:00
|
|
|
$server->on('beforeMethod', function () use ($server, $objectTree) {
|
2014-02-25 19:23:09 +04:00
|
|
|
$view = \OC\Files\Filesystem::getView();
|
|
|
|
$rootInfo = $view->getFileInfo('');
|
|
|
|
|
|
|
|
// Create ownCloud Dir
|
2014-06-17 16:10:11 +04:00
|
|
|
$mountManager = \OC\Files\Filesystem::getMountManager();
|
2015-02-12 14:29:01 +03:00
|
|
|
$rootDir = new \OC\Connector\Sabre\Directory($view, $rootInfo);
|
2014-06-17 16:10:11 +04:00
|
|
|
$objectTree->init($rootDir, $view, $mountManager);
|
2014-02-25 19:23:09 +04:00
|
|
|
|
2014-12-15 19:49:24 +03:00
|
|
|
$server->addPlugin(new \OC\Connector\Sabre\TagsPlugin($objectTree, \OC::$server->getTagManager()));
|
2015-02-12 14:29:01 +03:00
|
|
|
$server->addPlugin(new \OC\Connector\Sabre\QuotaPlugin($view));
|
|
|
|
|
|
|
|
// custom properties plugin must be the last one
|
|
|
|
$server->addPlugin(
|
|
|
|
new \Sabre\DAV\PropertyStorage\Plugin(
|
|
|
|
new \OC\Connector\Sabre\CustomPropertiesBackend(
|
|
|
|
$objectTree,
|
|
|
|
\OC::$server->getDatabaseConnection(),
|
|
|
|
\OC::$server->getUserSession()->getUser()
|
|
|
|
)
|
|
|
|
)
|
|
|
|
);
|
2015-03-26 18:06:43 +03:00
|
|
|
$server->addPlugin(new \OC\Connector\Sabre\CopyEtagHeaderPlugin());
|
2014-02-25 19:23:09 +04:00
|
|
|
}, 30); // priority 30: after auth (10) and acl(20), before lock(50) and handling the request
|
|
|
|
|
2011-07-20 18:36:36 +04:00
|
|
|
// And off we go!
|
|
|
|
$server->exec();
|