webdav.php 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. <?php
  2. /**
  3. * ownCloud
  4. *
  5. * @author Frank Karlitschek
  6. * @author Jakob Sack
  7. * @copyright 2010 Frank Karlitschek karlitschek@kde.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. require_once('../lib/base.php');
  27. // Backends
  28. $authBackend = new OC_Connector_Sabre_Auth();
  29. $lockBackend = new OC_Connector_Sabre_Locks();
  30. // Create ownCloud Dir
  31. $publicDir = new OC_Connector_Sabre_Directory('');
  32. // Fire up server
  33. $server = new Sabre_DAV_Server($publicDir);
  34. $server->setBaseUri(OC::$WEBROOT.'/files/webdav.php');
  35. // Load plugins
  36. $server->addPlugin(new Sabre_DAV_Auth_Plugin($authBackend,'ownCloud'));
  37. $server->addPlugin(new Sabre_DAV_Locks_Plugin($lockBackend));
  38. $server->addPlugin(new Sabre_DAV_Browser_Plugin(false)); // Show something in the Browser, but no upload
  39. // And off we go!
  40. $server->exec();