2015-10-21 16:06:48 +03:00
|
|
|
<?php
|
2016-01-12 17:02:16 +03:00
|
|
|
/**
|
2016-03-01 19:25:15 +03:00
|
|
|
* @author Arthur Schiwon <blizzz@owncloud.com>
|
2016-01-12 17:02:16 +03:00
|
|
|
* @author Thomas Müller <thomas.mueller@tmit.eu>
|
|
|
|
* @author Vincent Petry <pvince81@owncloud.com>
|
|
|
|
*
|
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
|
|
|
* @license AGPL-3.0
|
|
|
|
*
|
|
|
|
* This code is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License, version 3,
|
|
|
|
* as published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* This program 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, version 3,
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
|
|
|
*
|
|
|
|
*/
|
2015-10-21 16:06:48 +03:00
|
|
|
namespace OCA\DAV;
|
|
|
|
|
2015-10-31 03:28:21 +03:00
|
|
|
use OCA\DAV\CalDAV\CalDavBackend;
|
2016-01-26 14:06:02 +03:00
|
|
|
use OCA\DAV\CalDAV\CalendarRoot;
|
2015-11-05 18:46:37 +03:00
|
|
|
use OCA\DAV\CardDAV\AddressBookRoot;
|
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;
|
2016-01-08 14:11:02 +03:00
|
|
|
use OCA\DAV\DAV\GroupPrincipalBackend;
|
2015-11-26 22:46:50 +03:00
|
|
|
use OCA\DAV\DAV\SystemPrincipalBackend;
|
2015-10-21 16:06:48 +03:00
|
|
|
use Sabre\CalDAV\Principal\Collection;
|
|
|
|
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();
|
2016-02-03 17:43:45 +03:00
|
|
|
$dispatcher = \OC::$server->getEventDispatcher();
|
2016-01-08 14:11:02 +03:00
|
|
|
$userPrincipalBackend = new Principal(
|
2016-01-11 19:29:01 +03:00
|
|
|
\OC::$server->getUserManager(),
|
|
|
|
\OC::$server->getGroupManager()
|
2016-01-08 14:11:02 +03:00
|
|
|
);
|
|
|
|
$groupPrincipalBackend = new GroupPrincipalBackend(
|
|
|
|
\OC::$server->getGroupManager()
|
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
|
2016-01-08 14:11:02 +03:00
|
|
|
$userPrincipals = new Collection($userPrincipalBackend, 'principals/users');
|
2015-11-26 22:46:50 +03:00
|
|
|
$userPrincipals->disableListing = $disableListing;
|
2016-01-08 14:11:02 +03:00
|
|
|
$groupPrincipals = new Collection($groupPrincipalBackend, 'principals/groups');
|
|
|
|
$groupPrincipals->disableListing = $disableListing;
|
2015-11-26 22:46:50 +03:00
|
|
|
$systemPrincipals = new Collection(new SystemPrincipalBackend(), 'principals/system');
|
|
|
|
$systemPrincipals->disableListing = $disableListing;
|
2016-01-08 14:11:02 +03:00
|
|
|
$filesCollection = new Files\RootCollection($userPrincipalBackend, 'principals/users');
|
2015-10-26 19:56:33 +03:00
|
|
|
$filesCollection->disableListing = $disableListing;
|
2016-01-26 14:06:02 +03:00
|
|
|
$caldavBackend = new CalDavBackend($db, $userPrincipalBackend);
|
2016-01-08 14:11:02 +03:00
|
|
|
$calendarRoot = new CalendarRoot($userPrincipalBackend, $caldavBackend, 'principals/users');
|
2015-10-31 03:28:21 +03:00
|
|
|
$calendarRoot->disableListing = $disableListing;
|
2016-01-21 16:09:15 +03:00
|
|
|
|
2015-11-27 14:54:31 +03:00
|
|
|
$systemTagCollection = new SystemTag\SystemTagsByIdCollection(
|
2016-01-21 16:09:15 +03:00
|
|
|
\OC::$server->getSystemTagManager(),
|
|
|
|
\OC::$server->getUserSession(),
|
|
|
|
\OC::$server->getGroupManager()
|
2015-11-27 14:54:31 +03:00
|
|
|
);
|
|
|
|
$systemTagRelationsCollection = new SystemTag\SystemTagsRelationsCollection(
|
|
|
|
\OC::$server->getSystemTagManager(),
|
2016-01-21 16:09:15 +03:00
|
|
|
\OC::$server->getSystemTagObjectMapper(),
|
|
|
|
\OC::$server->getUserSession(),
|
2016-02-01 20:18:17 +03:00
|
|
|
\OC::$server->getGroupManager(),
|
|
|
|
\OC::$server->getRootFolder()
|
2015-11-27 14:54:31 +03:00
|
|
|
);
|
2016-01-11 20:09:00 +03:00
|
|
|
$commentsCollection = new Comments\RootCollection(
|
|
|
|
\OC::$server->getCommentsManager(),
|
|
|
|
\OC::$server->getUserManager(),
|
|
|
|
\OC::$server->getUserSession(),
|
|
|
|
\OC::$server->getRootFolder(),
|
|
|
|
\OC::$server->getLogger()
|
|
|
|
);
|
2015-11-05 18:46:37 +03:00
|
|
|
|
2016-02-03 17:43:45 +03:00
|
|
|
$usersCardDavBackend = new CardDavBackend($db, $userPrincipalBackend, $dispatcher);
|
2016-01-08 14:11:02 +03:00
|
|
|
$usersAddressBookRoot = new AddressBookRoot($userPrincipalBackend, $usersCardDavBackend, 'principals/users');
|
2015-11-27 15:14:55 +03:00
|
|
|
$usersAddressBookRoot->disableListing = $disableListing;
|
2015-11-05 18:46:37 +03:00
|
|
|
|
2016-02-03 17:43:45 +03:00
|
|
|
$systemCardDavBackend = new CardDavBackend($db, $userPrincipalBackend, $dispatcher);
|
2015-11-27 15:14:55 +03:00
|
|
|
$systemAddressBookRoot = new AddressBookRoot(new SystemPrincipalBackend(), $systemCardDavBackend, 'principals/system');
|
|
|
|
$systemAddressBookRoot->disableListing = $disableListing;
|
2015-10-21 16:06:48 +03:00
|
|
|
|
|
|
|
$children = [
|
2015-11-26 22:46:50 +03:00
|
|
|
new SimpleCollection('principals', [
|
|
|
|
$userPrincipals,
|
2016-01-08 14:11:02 +03:00
|
|
|
$groupPrincipals,
|
2015-11-26 22:46:50 +03:00
|
|
|
$systemPrincipals]),
|
2015-10-31 03:28:21 +03:00
|
|
|
$filesCollection,
|
|
|
|
$calendarRoot,
|
2015-11-27 15:14:55 +03:00
|
|
|
new SimpleCollection('addressbooks', [
|
|
|
|
$usersAddressBookRoot,
|
|
|
|
$systemAddressBookRoot]),
|
2015-11-27 14:54:31 +03:00
|
|
|
$systemTagCollection,
|
|
|
|
$systemTagRelationsCollection,
|
2016-01-11 20:09:00 +03:00
|
|
|
$commentsCollection,
|
2015-10-21 16:06:48 +03:00
|
|
|
];
|
|
|
|
|
|
|
|
parent::__construct('root', $children);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|