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