2011-08-11 13:22:07 +04:00
|
|
|
<?php
|
|
|
|
/**
|
2011-09-24 00:59:24 +04:00
|
|
|
* Copyright (c) 2011 Jakob Sack <mail@jakobsack.de>
|
|
|
|
* This file is licensed under the Affero General Public License version 3 or
|
|
|
|
* later.
|
|
|
|
* See the COPYING-README file.
|
2011-08-11 13:22:07 +04:00
|
|
|
*/
|
|
|
|
|
|
|
|
// Do not load FS ...
|
|
|
|
$RUNTIME_NOSETUPFS = true;
|
|
|
|
|
|
|
|
require_once('../../lib/base.php');
|
2011-10-01 01:05:10 +04:00
|
|
|
OC_Util::checkAppEnabled('calendar');
|
2011-08-11 13:22:07 +04:00
|
|
|
|
|
|
|
// Backends
|
|
|
|
$authBackend = new OC_Connector_Sabre_Auth();
|
|
|
|
$principalBackend = new OC_Connector_Sabre_Principal();
|
|
|
|
$caldavBackend = new OC_Connector_Sabre_CalDAV();
|
|
|
|
|
|
|
|
// Root nodes
|
|
|
|
$nodes = array(
|
2012-02-12 00:09:51 +04:00
|
|
|
new Sabre_CalDAV_Principal_Collection($principalBackend),
|
2011-08-11 13:22:07 +04:00
|
|
|
new Sabre_CalDAV_CalendarRootNode($principalBackend, $caldavBackend),
|
|
|
|
);
|
|
|
|
|
|
|
|
// Fire up server
|
|
|
|
$server = new Sabre_DAV_Server($nodes);
|
2012-02-27 00:44:35 +04:00
|
|
|
$server->setBaseUri(OC::$APPSWEBROOT.'/apps/calendar/caldav.php');
|
2011-08-11 13:22:07 +04:00
|
|
|
// Add plugins
|
|
|
|
$server->addPlugin(new Sabre_DAV_Auth_Plugin($authBackend,'ownCloud'));
|
|
|
|
$server->addPlugin(new Sabre_CalDAV_Plugin());
|
|
|
|
$server->addPlugin(new Sabre_DAVACL_Plugin());
|
2011-09-23 11:40:01 +04:00
|
|
|
$server->addPlugin(new Sabre_DAV_Browser_Plugin(false)); // Show something in the Browser, but no upload
|
2011-08-11 13:22:07 +04:00
|
|
|
|
|
|
|
// And off we go!
|
|
|
|
$server->exec();
|