2015-10-21 16:06:48 +03:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace OCA\DAV;
|
|
|
|
|
2015-10-31 03:28:21 +03:00
|
|
|
use OCA\DAV\CalDAV\CalDavBackend;
|
2015-10-30 18:05:25 +03:00
|
|
|
use OCA\DAV\CardDAV\CardDavBackend;
|
2015-10-21 16:06:48 +03:00
|
|
|
use OCA\DAV\Connector\Sabre\Principal;
|
2015-10-31 03:28:21 +03:00
|
|
|
use Sabre\CalDAV\CalendarRoot;
|
2015-10-21 16:06:48 +03:00
|
|
|
use Sabre\CalDAV\Principal\Collection;
|
2015-10-30 18:05:25 +03:00
|
|
|
use Sabre\CardDAV\AddressBookRoot;
|
2015-10-21 16:06:48 +03:00
|
|
|
use Sabre\DAV\SimpleCollection;
|
|
|
|
|
|
|
|
class RootCollection extends SimpleCollection {
|
|
|
|
|
|
|
|
public function __construct() {
|
2015-10-26 19:56:33 +03:00
|
|
|
$config = \OC::$server->getConfig();
|
2015-10-31 03:28:21 +03:00
|
|
|
$db = \OC::$server->getDatabaseConnection();
|
2015-10-21 16:06:48 +03:00
|
|
|
$principalBackend = new Principal(
|
2015-10-31 03:28:21 +03:00
|
|
|
$config,
|
|
|
|
\OC::$server->getUserManager()
|
2015-10-21 16:06:48 +03:00
|
|
|
);
|
2015-10-26 19:56:33 +03:00
|
|
|
// as soon as debug mode is enabled we allow listing of principals
|
|
|
|
$disableListing = !$config->getSystemValue('debug', false);
|
|
|
|
|
|
|
|
// setup the first level of the dav tree
|
2015-10-21 16:06:48 +03:00
|
|
|
$principalCollection = new Collection($principalBackend);
|
2015-10-26 19:56:33 +03:00
|
|
|
$principalCollection->disableListing = $disableListing;
|
2015-10-21 16:06:48 +03:00
|
|
|
$filesCollection = new Files\RootCollection($principalBackend);
|
2015-10-26 19:56:33 +03:00
|
|
|
$filesCollection->disableListing = $disableListing;
|
2015-10-31 03:28:21 +03:00
|
|
|
$caldavBackend = new CalDavBackend($db);
|
|
|
|
$calendarRoot = new CalendarRoot($principalBackend, $caldavBackend);
|
|
|
|
$calendarRoot->disableListing = $disableListing;
|
|
|
|
$cardDavBackend = new CardDavBackend($db);
|
2015-10-30 18:05:25 +03:00
|
|
|
$addressBookRoot = new AddressBookRoot($principalBackend, $cardDavBackend);
|
|
|
|
$addressBookRoot->disableListing = $disableListing;
|
2015-10-21 16:06:48 +03:00
|
|
|
|
|
|
|
$children = [
|
2015-10-31 03:28:21 +03:00
|
|
|
$principalCollection,
|
|
|
|
$filesCollection,
|
|
|
|
$calendarRoot,
|
|
|
|
$addressBookRoot,
|
2015-10-21 16:06:48 +03:00
|
|
|
];
|
|
|
|
|
|
|
|
parent::__construct('root', $children);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|