2015-10-21 16:06:48 +03:00
|
|
|
<?php
|
2016-01-12 17:02:16 +03:00
|
|
|
/**
|
2016-07-21 17:49:16 +03:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
|
|
|
*
|
2016-05-26 20:56:05 +03:00
|
|
|
* @author Arthur Schiwon <blizzz@arthur-schiwon.de>
|
2020-03-31 11:49:10 +03:00
|
|
|
* @author Christoph Wurst <christoph@winzerhof-wurst.at>
|
2019-12-03 21:57:53 +03:00
|
|
|
* @author Georg Ehrke <oc.list@georgehrke.com>
|
2016-07-21 17:49:16 +03:00
|
|
|
* @author Joas Schilling <coding@schilljs.com>
|
2019-12-03 21:57:53 +03:00
|
|
|
* @author Roeland Jago Douma <roeland@famdouma.nl>
|
2016-01-12 17:02:16 +03:00
|
|
|
* @author Thomas Müller <thomas.mueller@tmit.eu>
|
|
|
|
* @author Vincent Petry <pvince81@owncloud.com>
|
|
|
|
*
|
|
|
|
* @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,
|
2019-12-03 21:57:53 +03:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
2016-01-12 17:02:16 +03:00
|
|
|
*
|
|
|
|
*/
|
2019-11-22 22:52:10 +03:00
|
|
|
|
2015-10-21 16:06:48 +03:00
|
|
|
namespace OCA\DAV;
|
|
|
|
|
2020-02-27 18:54:07 +03:00
|
|
|
use OCA\DAV\AppInfo\PluginManager;
|
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;
|
2019-11-22 22:52:10 +03:00
|
|
|
use OCA\DAV\CalDAV\Principal\Collection;
|
2019-08-06 14:40:52 +03:00
|
|
|
use OCA\DAV\CalDAV\Proxy\ProxyMapper;
|
2016-07-08 17:13:34 +03:00
|
|
|
use OCA\DAV\CalDAV\PublicCalendarRoot;
|
2018-05-28 21:12:13 +03:00
|
|
|
use OCA\DAV\CalDAV\ResourceBooking\ResourcePrincipalBackend;
|
|
|
|
use OCA\DAV\CalDAV\ResourceBooking\RoomPrincipalBackend;
|
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;
|
2017-10-19 13:57:20 +03:00
|
|
|
use OCA\DAV\Provisioning\Apple\AppleProvisioningNode;
|
2018-11-02 23:19:27 +03:00
|
|
|
use OCA\DAV\Upload\CleanupService;
|
2020-02-27 18:54:07 +03:00
|
|
|
use OCP\App\IAppManager;
|
2017-10-19 13:57:20 +03:00
|
|
|
use OCP\AppFramework\Utility\ITimeFactory;
|
2020-07-28 10:35:51 +03:00
|
|
|
use OCP\EventDispatcher\IEventDispatcher;
|
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();
|
2017-10-20 16:09:52 +03:00
|
|
|
$l10n = \OC::$server->getL10N('dav');
|
2016-09-03 11:52:05 +03:00
|
|
|
$random = \OC::$server->getSecureRandom();
|
2017-10-22 13:16:58 +03:00
|
|
|
$logger = \OC::$server->getLogger();
|
2016-09-03 11:52:05 +03:00
|
|
|
$userManager = \OC::$server->getUserManager();
|
2018-05-28 21:12:13 +03:00
|
|
|
$userSession = \OC::$server->getUserSession();
|
2017-10-05 13:32:46 +03:00
|
|
|
$groupManager = \OC::$server->getGroupManager();
|
2017-12-04 17:02:55 +03:00
|
|
|
$shareManager = \OC::$server->getShareManager();
|
2015-10-31 03:28:21 +03:00
|
|
|
$db = \OC::$server->getDatabaseConnection();
|
2020-07-28 10:35:51 +03:00
|
|
|
$dispatcher = \OC::$server->get(IEventDispatcher::class);
|
|
|
|
$legacyDispatcher = \OC::$server->getEventDispatcher();
|
2019-08-14 14:38:11 +03:00
|
|
|
$proxyMapper = \OC::$server->query(ProxyMapper::class);
|
|
|
|
|
2016-01-08 14:11:02 +03:00
|
|
|
$userPrincipalBackend = new Principal(
|
2016-09-03 11:52:05 +03:00
|
|
|
$userManager,
|
2017-12-04 17:02:55 +03:00
|
|
|
$groupManager,
|
|
|
|
$shareManager,
|
2018-05-22 16:09:21 +03:00
|
|
|
\OC::$server->getUserSession(),
|
2019-08-06 14:40:52 +03:00
|
|
|
\OC::$server->getAppManager(),
|
2019-11-26 18:37:57 +03:00
|
|
|
$proxyMapper,
|
|
|
|
\OC::$server->getConfig()
|
2015-10-21 16:06:48 +03:00
|
|
|
);
|
2019-11-26 18:37:57 +03:00
|
|
|
$groupPrincipalBackend = new GroupPrincipalBackend($groupManager, $userSession, $shareManager);
|
2019-08-14 14:38:11 +03:00
|
|
|
$calendarResourcePrincipalBackend = new ResourcePrincipalBackend($db, $userSession, $groupManager, $logger, $proxyMapper);
|
|
|
|
$calendarRoomPrincipalBackend = new RoomPrincipalBackend($db, $userSession, $groupManager, $logger, $proxyMapper);
|
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;
|
2018-05-28 21:12:13 +03:00
|
|
|
$calendarResourcePrincipals = new Collection($calendarResourcePrincipalBackend, 'principals/calendar-resources');
|
|
|
|
$calendarResourcePrincipals->disableListing = $disableListing;
|
|
|
|
$calendarRoomPrincipals = new Collection($calendarRoomPrincipalBackend, 'principals/calendar-rooms');
|
|
|
|
$calendarRoomPrincipals->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;
|
2020-07-28 10:35:51 +03:00
|
|
|
$caldavBackend = new CalDavBackend($db, $userPrincipalBackend, $userManager, $groupManager, $random, $logger, $dispatcher, $legacyDispatcher);
|
2018-05-28 21:12:13 +03:00
|
|
|
$userCalendarRoot = new CalendarRoot($userPrincipalBackend, $caldavBackend, 'principals/users');
|
|
|
|
$userCalendarRoot->disableListing = $disableListing;
|
|
|
|
|
2020-07-28 10:35:51 +03:00
|
|
|
$resourceCalendarCaldavBackend = new CalDavBackend($db, $userPrincipalBackend, $userManager, $groupManager, $random, $logger, $dispatcher, $legacyDispatcher);
|
2018-05-28 21:12:13 +03:00
|
|
|
$resourceCalendarRoot = new CalendarRoot($calendarResourcePrincipalBackend, $caldavBackend, 'principals/calendar-resources');
|
|
|
|
$resourceCalendarRoot->disableListing = $disableListing;
|
2020-07-28 10:35:51 +03:00
|
|
|
$roomCalendarCaldavBackend = new CalDavBackend($db, $userPrincipalBackend, $userManager, $groupManager, $random, $logger, $dispatcher, $legacyDispatcher);
|
2018-05-28 21:12:13 +03:00
|
|
|
$roomCalendarRoot = new CalendarRoot($calendarRoomPrincipalBackend, $roomCalendarCaldavBackend, 'principals/calendar-rooms');
|
|
|
|
$roomCalendarRoot->disableListing = $disableListing;
|
|
|
|
|
2017-10-20 16:09:52 +03:00
|
|
|
$publicCalendarRoot = new PublicCalendarRoot($caldavBackend, $l10n, $config);
|
2016-07-08 17:13:34 +03:00
|
|
|
$publicCalendarRoot->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(),
|
2017-10-05 13:32:46 +03:00
|
|
|
$groupManager
|
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(),
|
2017-10-05 13:32:46 +03:00
|
|
|
$groupManager,
|
2016-05-24 16:44:19 +03:00
|
|
|
\OC::$server->getEventDispatcher()
|
2015-11-27 14:54:31 +03:00
|
|
|
);
|
2016-01-11 20:09:00 +03:00
|
|
|
$commentsCollection = new Comments\RootCollection(
|
|
|
|
\OC::$server->getCommentsManager(),
|
2017-10-05 13:32:46 +03:00
|
|
|
$userManager,
|
2016-01-11 20:09:00 +03:00
|
|
|
\OC::$server->getUserSession(),
|
2016-02-24 15:23:44 +03:00
|
|
|
\OC::$server->getEventDispatcher(),
|
2016-01-11 20:09:00 +03:00
|
|
|
\OC::$server->getLogger()
|
|
|
|
);
|
2015-11-05 18:46:37 +03:00
|
|
|
|
2020-02-27 18:54:07 +03:00
|
|
|
$pluginManager = new PluginManager(\OC::$server, \OC::$server->query(IAppManager::class));
|
2020-07-28 10:35:51 +03:00
|
|
|
$usersCardDavBackend = new CardDavBackend($db, $userPrincipalBackend, $userManager, $groupManager, $dispatcher, $legacyDispatcher);
|
2020-02-27 18:54:07 +03:00
|
|
|
$usersAddressBookRoot = new AddressBookRoot($userPrincipalBackend, $usersCardDavBackend, $pluginManager, 'principals/users');
|
2015-11-27 15:14:55 +03:00
|
|
|
$usersAddressBookRoot->disableListing = $disableListing;
|
2015-11-05 18:46:37 +03:00
|
|
|
|
2020-07-28 10:35:51 +03:00
|
|
|
$systemCardDavBackend = new CardDavBackend($db, $userPrincipalBackend, $userManager, $groupManager, $dispatcher, $legacyDispatcher);
|
2020-02-27 18:54:07 +03:00
|
|
|
$systemAddressBookRoot = new AddressBookRoot(new SystemPrincipalBackend(), $systemCardDavBackend, $pluginManager, 'principals/system');
|
2015-11-27 15:14:55 +03:00
|
|
|
$systemAddressBookRoot->disableListing = $disableListing;
|
2015-10-21 16:06:48 +03:00
|
|
|
|
2018-11-02 23:19:27 +03:00
|
|
|
$uploadCollection = new Upload\RootCollection(
|
|
|
|
$userPrincipalBackend,
|
|
|
|
'principals/users',
|
|
|
|
\OC::$server->query(CleanupService::class));
|
2015-10-28 16:52:45 +03:00
|
|
|
$uploadCollection->disableListing = $disableListing;
|
|
|
|
|
2016-12-23 14:12:38 +03:00
|
|
|
$avatarCollection = new Avatars\RootCollection($userPrincipalBackend, 'principals/users');
|
|
|
|
$avatarCollection->disableListing = $disableListing;
|
|
|
|
|
2017-10-19 13:57:20 +03:00
|
|
|
$appleProvisioning = new AppleProvisioningNode(
|
|
|
|
\OC::$server->query(ITimeFactory::class));
|
|
|
|
|
2015-10-21 16:06:48 +03:00
|
|
|
$children = [
|
2020-04-09 10:22:29 +03:00
|
|
|
new SimpleCollection('principals', [
|
|
|
|
$userPrincipals,
|
|
|
|
$groupPrincipals,
|
|
|
|
$systemPrincipals,
|
|
|
|
$calendarResourcePrincipals,
|
|
|
|
$calendarRoomPrincipals]),
|
|
|
|
$filesCollection,
|
|
|
|
$userCalendarRoot,
|
|
|
|
new SimpleCollection('system-calendars', [
|
|
|
|
$resourceCalendarRoot,
|
|
|
|
$roomCalendarRoot,
|
|
|
|
]),
|
|
|
|
$publicCalendarRoot,
|
|
|
|
new SimpleCollection('addressbooks', [
|
|
|
|
$usersAddressBookRoot,
|
|
|
|
$systemAddressBookRoot]),
|
|
|
|
$systemTagCollection,
|
|
|
|
$systemTagRelationsCollection,
|
|
|
|
$commentsCollection,
|
|
|
|
$uploadCollection,
|
|
|
|
$avatarCollection,
|
|
|
|
new SimpleCollection('provisioning', [
|
|
|
|
$appleProvisioning
|
|
|
|
])
|
2015-10-21 16:06:48 +03:00
|
|
|
];
|
|
|
|
|
|
|
|
parent::__construct('root', $children);
|
|
|
|
}
|
|
|
|
}
|