nextcloud/files/webdav.php

58 lines
1.8 KiB
PHP
Raw Normal View History

2010-03-10 15:03:40 +03:00
<?php
/**
2011-07-20 17:53:34 +04:00
* 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/>.
*
*/
2010-03-10 15:03:40 +03:00
2011-07-20 17:53:34 +04:00
// Do not load FS ...
$RUNTIME_NOSETUPFS = true;
2010-03-10 15:03:40 +03:00
require_once('../lib/base.php');
2011-07-20 17:53:34 +04:00
require_once('Sabre/autoload.php');
2011-07-22 16:38:42 +04:00
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');
2010-03-10 15:03:40 +03:00
2011-07-20 18:36:36 +04:00
// Create ownCloud Dir
2011-07-22 16:38:42 +04:00
$publicDir = new OC_Connector_Sabre_Directory('');
2011-07-20 18:36:36 +04:00
$server = new Sabre_DAV_Server($publicDir);
2010-03-10 15:03:40 +03:00
2011-07-20 18:36:36 +04:00
// Path to our script
$server->setBaseUri($WEBROOT.'/files/webdav.php');
2010-03-10 15:03:40 +03:00
2011-07-20 18:36:36 +04:00
// Auth backend
2011-07-22 16:38:42 +04:00
$authBackend = new OC_Connector_Sabre_Auth();
2011-07-20 18:36:36 +04:00
$authPlugin = new Sabre_DAV_Auth_Plugin($authBackend,'ownCloud');
$server->addPlugin($authPlugin);
2011-07-20 17:53:34 +04:00
2011-07-22 16:38:42 +04:00
// 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);
2011-07-20 18:36:36 +04:00
// And off we go!
$server->exec();
2010-03-10 15:03:40 +03:00
?>