2010-03-10 07:03:40 -05:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
/**
|
2011-07-20 09:53:34 -04:00
|
|
|
* ownCloud
|
|
|
|
|
*
|
|
|
|
|
* @author Frank Karlitschek
|
|
|
|
|
* @author Jakob Sack
|
2012-05-26 13:14:24 -04:00
|
|
|
* @copyright 2012 Frank Karlitschek frank@owncloud.org
|
2011-07-20 09: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-10-31 10:45:47 -04:00
|
|
|
// load needed apps
|
2012-11-04 05:10:46 -05:00
|
|
|
$RUNTIME_APPTYPES=array('filesystem', 'authentication', 'logging');
|
2012-10-31 09:12:09 -04:00
|
|
|
|
2012-05-13 18:28:22 -04:00
|
|
|
OC_App::loadApps($RUNTIME_APPTYPES);
|
2011-08-06 05:36:56 -04:00
|
|
|
|
2012-11-29 12:01:21 -05:00
|
|
|
OC_Util::obEnd();
|
2012-11-25 08:44:52 -05:00
|
|
|
|
2011-08-06 05:36:56 -04:00
|
|
|
// Backends
|
|
|
|
|
$authBackend = new OC_Connector_Sabre_Auth();
|
|
|
|
|
$lockBackend = new OC_Connector_Sabre_Locks();
|
2012-09-09 06:54:47 -04:00
|
|
|
$requestBackend = new OC_Connector_Sabre_Request();
|
2010-03-10 07:03:40 -05:00
|
|
|
|
2011-07-20 10:36:36 -04:00
|
|
|
// Create ownCloud Dir
|
2011-07-22 08:38:42 -04:00
|
|
|
$publicDir = new OC_Connector_Sabre_Directory('');
|
2010-03-10 07:03:40 -05:00
|
|
|
|
2011-08-06 05:36:56 -04:00
|
|
|
// Fire up server
|
|
|
|
|
$server = new Sabre_DAV_Server($publicDir);
|
2012-09-09 06:54:47 -04:00
|
|
|
$server->httpRequest = $requestBackend;
|
2012-05-05 18:12:51 -04:00
|
|
|
$server->setBaseUri($baseuri);
|
2010-03-10 07:03:40 -05:00
|
|
|
|
2011-08-06 05:36:56 -04:00
|
|
|
// Load plugins
|
2012-10-28 14:48:46 -04:00
|
|
|
$server->addPlugin(new Sabre_DAV_Auth_Plugin($authBackend, 'ownCloud'));
|
2011-08-06 05:36:56 -04:00
|
|
|
$server->addPlugin(new Sabre_DAV_Locks_Plugin($lockBackend));
|
2011-09-23 03:40:01 -04:00
|
|
|
$server->addPlugin(new Sabre_DAV_Browser_Plugin(false)); // Show something in the Browser, but no upload
|
2012-04-20 05:39:30 -04:00
|
|
|
$server->addPlugin(new OC_Connector_Sabre_QuotaPlugin());
|
2013-01-08 18:37:50 -05:00
|
|
|
$server->addPlugin(new OC_Connector_Sabre_MaintenancePlugin());
|
2011-07-22 08:38:42 -04:00
|
|
|
|
2011-07-20 10:36:36 -04:00
|
|
|
// And off we go!
|
|
|
|
|
$server->exec();
|