2010-03-10 15:03:40 +03:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
2011-07-20 17:53:34 +04:00
|
|
|
* ownCloud
|
|
|
|
*
|
|
|
|
* @author Frank Karlitschek
|
|
|
|
* @author Jakob Sack
|
2012-05-26 21:14:24 +04:00
|
|
|
* @copyright 2012 Frank Karlitschek frank@owncloud.org
|
2011-07-20 17:53:34 +04:00
|
|
|
* @copyright 2011 Jakob Sack kde@jakobsack.de
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 3 of the License, or any later version.
|
|
|
|
*
|
|
|
|
* This library 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 along with this library. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*/
|
2012-11-25 17:44:52 +04:00
|
|
|
|
2011-08-06 13:36:56 +04:00
|
|
|
// Backends
|
|
|
|
$authBackend = new OC_Connector_Sabre_Auth();
|
|
|
|
$lockBackend = new OC_Connector_Sabre_Locks();
|
2012-09-09 14:54:47 +04:00
|
|
|
$requestBackend = new OC_Connector_Sabre_Request();
|
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();
|
|
|
|
$server = new OC_Connector_Sabre_Server($objectTree);
|
2012-09-09 14:54:47 +04:00
|
|
|
$server->httpRequest = $requestBackend;
|
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()));
|
|
|
|
$server->addPlugin(new \Sabre\DAV\Locks\Plugin($lockBackend));
|
|
|
|
$server->addPlugin(new \Sabre\DAV\Browser\Plugin(false)); // Show something in the Browser, but no upload
|
2013-10-23 18:03:57 +04:00
|
|
|
$server->addPlugin(new OC_Connector_Sabre_FilesPlugin());
|
2013-01-09 03:37:50 +04:00
|
|
|
$server->addPlugin(new OC_Connector_Sabre_MaintenancePlugin());
|
2014-01-23 15:11:53 +04:00
|
|
|
$server->addPlugin(new OC_Connector_Sabre_ExceptionLoggerPlugin('webdav'));
|
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
|
2014-03-04 16:28:48 +04:00
|
|
|
$server->subscribeEvent('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();
|
2014-02-25 19:23:09 +04: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
|
|
|
|
|
|
|
$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 18:36:36 +04:00
|
|
|
// And off we go!
|
|
|
|
$server->exec();
|