2010-03-10 12:03:40 +00:00
|
|
|
<?php
|
|
|
|
/**
|
2015-02-23 10:28:53 +00: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 Robin Appelman <icewind@owncloud.com>
|
|
|
|
* @author Stefan Herbrechtsmeier <stefan@herbrechtsmeier.net>
|
|
|
|
* @author Thomas Müller <thomas.mueller@tmit.eu>
|
|
|
|
* @author Vincent Petry <pvince81@owncloud.com>
|
2011-07-20 13:53:34 +00:00
|
|
|
*
|
2015-02-23 10:28:53 +00:00
|
|
|
* @copyright Copyright (c) 2015, ownCloud, Inc.
|
|
|
|
* @license AGPL-3.0
|
2011-07-20 13:53:34 +00:00
|
|
|
*
|
2015-02-23 10:28:53 +00: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 13:53:34 +00:00
|
|
|
*
|
2015-02-23 10:28:53 +00:00
|
|
|
* This program is distributed in the hope that it will be useful,
|
2011-07-20 13:53:34 +00:00
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2015-02-23 10:28:53 +00:00
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
2011-07-20 13:53:34 +00:00
|
|
|
*
|
2015-02-23 10:28:53 +00: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 13:53:34 +00:00
|
|
|
*
|
|
|
|
*/
|
2011-08-06 09:36:56 +00:00
|
|
|
// Backends
|
|
|
|
$authBackend = new OC_Connector_Sabre_Auth();
|
|
|
|
$lockBackend = new OC_Connector_Sabre_Locks();
|
2012-09-09 10:54:47 +00:00
|
|
|
$requestBackend = new OC_Connector_Sabre_Request();
|
2010-03-10 12:03:40 +00:00
|
|
|
|
2011-08-06 09:36:56 +00:00
|
|
|
// Fire up server
|
2014-03-04 12:28:48 +00:00
|
|
|
$objectTree = new \OC\Connector\Sabre\ObjectTree();
|
|
|
|
$server = new OC_Connector_Sabre_Server($objectTree);
|
2012-09-09 10:54:47 +00:00
|
|
|
$server->httpRequest = $requestBackend;
|
2012-05-05 22:12:51 +00:00
|
|
|
$server->setBaseUri($baseuri);
|
2010-03-10 12:03:40 +00:00
|
|
|
|
2011-08-06 09:36:56 +00:00
|
|
|
// Load plugins
|
2013-07-23 16:14:05 +00:00
|
|
|
$defaults = new OC_Defaults();
|
2014-01-09 13:25:48 +00:00
|
|
|
$server->addPlugin(new \Sabre\DAV\Auth\Plugin($authBackend, $defaults->getName()));
|
|
|
|
$server->addPlugin(new \Sabre\DAV\Locks\Plugin($lockBackend));
|
2014-11-26 11:38:26 +00:00
|
|
|
$server->addPlugin(new \Sabre\DAV\Browser\Plugin(false, false)); // Show something in the Browser, but no upload
|
2013-10-23 14:03:57 +00:00
|
|
|
$server->addPlugin(new OC_Connector_Sabre_FilesPlugin());
|
2013-01-08 23:37:50 +00:00
|
|
|
$server->addPlugin(new OC_Connector_Sabre_MaintenancePlugin());
|
2014-01-23 11:11:53 +00:00
|
|
|
$server->addPlugin(new OC_Connector_Sabre_ExceptionLoggerPlugin('webdav'));
|
2011-07-22 12:38:42 +00:00
|
|
|
|
2014-02-25 15:23:09 +00:00
|
|
|
// wait with registering these until auth is handled and the filesystem is setup
|
2014-03-04 12:28:48 +00:00
|
|
|
$server->subscribeEvent('beforeMethod', function () use ($server, $objectTree) {
|
2014-02-25 15:23:09 +00:00
|
|
|
$view = \OC\Files\Filesystem::getView();
|
|
|
|
$rootInfo = $view->getFileInfo('');
|
|
|
|
|
|
|
|
// Create ownCloud Dir
|
2014-06-17 12:10:11 +00:00
|
|
|
$mountManager = \OC\Files\Filesystem::getMountManager();
|
2014-02-25 15:23:09 +00:00
|
|
|
$rootDir = new OC_Connector_Sabre_Directory($view, $rootInfo);
|
2014-06-17 12:10:11 +00:00
|
|
|
$objectTree->init($rootDir, $view, $mountManager);
|
2014-02-25 15:23:09 +00:00
|
|
|
|
2014-12-15 16:49:24 +00:00
|
|
|
$server->addPlugin(new \OC\Connector\Sabre\TagsPlugin($objectTree, \OC::$server->getTagManager()));
|
2014-02-25 15:23:09 +00:00
|
|
|
$server->addPlugin(new OC_Connector_Sabre_QuotaPlugin($view));
|
|
|
|
}, 30); // priority 30: after auth (10) and acl(20), before lock(50) and handling the request
|
|
|
|
|
2011-07-20 14:36:36 +00:00
|
|
|
// And off we go!
|
|
|
|
$server->exec();
|