58 lines
1.8 KiB
PHP
58 lines
1.8 KiB
PHP
<?php
|
|
|
|
/**
|
|
* ownCloud
|
|
*
|
|
* @author Frank Karlitschek
|
|
* @author Jakob Sack
|
|
* @copyright 2010 Frank Karlitschek karlitschek@kde.org
|
|
* @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/>.
|
|
*
|
|
*/
|
|
|
|
// Do not load FS ...
|
|
$RUNTIME_NOSETUPFS = true;
|
|
|
|
require_once('../lib/base.php');
|
|
require_once('Sabre/autoload.php');
|
|
require_once('Connector/Sabre/auth.php');
|
|
require_once('Connector/Sabre/node.php');
|
|
require_once('Connector/Sabre/file.php');
|
|
require_once('Connector/Sabre/directory.php');
|
|
require_once('Connector/Sabre/locks.php');
|
|
|
|
// Create ownCloud Dir
|
|
$publicDir = new OC_Connector_Sabre_Directory('');
|
|
$server = new Sabre_DAV_Server($publicDir);
|
|
|
|
// Path to our script
|
|
$server->setBaseUri($WEBROOT.'/files/webdav.php');
|
|
|
|
// Auth backend
|
|
$authBackend = new OC_Connector_Sabre_Auth();
|
|
$authPlugin = new Sabre_DAV_Auth_Plugin($authBackend,'ownCloud');
|
|
$server->addPlugin($authPlugin);
|
|
|
|
// Also make sure there is a 'data' directory, writable by the server. This directory is used to store information about locks
|
|
$lockBackend = new OC_Connector_Sabre_Locks();
|
|
$lockPlugin = new Sabre_DAV_Locks_Plugin($lockBackend);
|
|
$server->addPlugin($lockPlugin);
|
|
|
|
// And off we go!
|
|
$server->exec();
|
|
|
|
?>
|