You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

webdav.php 1.6KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. <?php
  2. /**
  3. * ownCloud
  4. *
  5. * @author Frank Karlitschek
  6. * @author Jakob Sack
  7. * @copyright 2012 Frank Karlitschek frank@owncloud.org
  8. * @copyright 2011 Jakob Sack kde@jakobsack.de
  9. *
  10. * This library is free software; you can redistribute it and/or
  11. * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
  12. * License as published by the Free Software Foundation; either
  13. * version 3 of the License, or any later version.
  14. *
  15. * This library is distributed in the hope that it will be useful,
  16. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  17. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  18. * GNU AFFERO GENERAL PUBLIC LICENSE for more details.
  19. *
  20. * You should have received a copy of the GNU Affero General Public
  21. * License along with this library. If not, see <http://www.gnu.org/licenses/>.
  22. *
  23. */
  24. // Do not load FS ...
  25. $RUNTIME_NOSETUPFS = true;
  26. // only need filesystem apps
  27. $RUNTIME_APPTYPES=array('filesystem','authentication');
  28. require_once('../lib/base.php');
  29. // Backends
  30. $authBackend = new OC_Connector_Sabre_Auth();
  31. $lockBackend = new OC_Connector_Sabre_Locks();
  32. // Create ownCloud Dir
  33. $publicDir = new OC_Connector_Sabre_Directory('');
  34. // Fire up server
  35. $server = new Sabre_DAV_Server($publicDir);
  36. $server->setBaseUri(OC::$WEBROOT.'/files/webdav.php');
  37. // Load plugins
  38. $server->addPlugin(new Sabre_DAV_Auth_Plugin($authBackend,'ownCloud'));
  39. $server->addPlugin(new Sabre_DAV_Locks_Plugin($lockBackend));
  40. $server->addPlugin(new Sabre_DAV_Browser_Plugin(false)); // Show something in the Browser, but no upload
  41. // And off we go!
  42. $server->exec();