2015-11-18 22:26:14 +03:00
|
|
|
<?php
|
|
|
|
/**
|
2016-07-21 17:49:16 +03:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
|
|
|
*
|
2016-05-26 20:56:05 +03:00
|
|
|
* @author Björn Schießle <bjoern@schiessle.org>
|
2016-07-21 17:49:16 +03:00
|
|
|
* @author Joas Schilling <coding@schilljs.com>
|
2017-11-06 17:56:42 +03:00
|
|
|
* @author Lukas Reschke <lukas@statuscode.ch>
|
2015-11-18 22:26:14 +03:00
|
|
|
* @author Thomas Müller <thomas.mueller@tmit.eu>
|
|
|
|
*
|
|
|
|
* @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/>
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2016-05-12 10:42:40 +03:00
|
|
|
use OCA\DAV\AppInfo\Application;
|
2016-09-20 02:15:24 +03:00
|
|
|
use OCA\DAV\CardDAV\CardDavBackend;
|
2016-03-01 12:41:05 +03:00
|
|
|
use Symfony\Component\EventDispatcher\GenericEvent;
|
2015-12-04 15:38:32 +03:00
|
|
|
|
2016-01-19 14:36:23 +03:00
|
|
|
$app = new Application();
|
2016-01-13 22:56:25 +03:00
|
|
|
$app->registerHooks();
|
2015-12-16 23:04:54 +03:00
|
|
|
|
2016-01-13 22:56:25 +03:00
|
|
|
\OC::$server->registerService('CardDAVSyncService', function() use ($app) {
|
|
|
|
return $app->getSyncService();
|
2015-12-04 15:38:32 +03:00
|
|
|
});
|
|
|
|
|
2016-02-26 18:59:53 +03:00
|
|
|
$eventDispatcher = \OC::$server->getEventDispatcher();
|
|
|
|
|
|
|
|
$eventDispatcher->addListener('OCP\Federation\TrustedServerEvent::remove',
|
2016-03-01 12:41:05 +03:00
|
|
|
function(GenericEvent $event) use ($app) {
|
2016-09-20 02:15:24 +03:00
|
|
|
/** @var CardDavBackend $cardDavBackend */
|
|
|
|
$cardDavBackend = $app->getContainer()->query(CardDavBackend::class);
|
2016-02-26 18:59:53 +03:00
|
|
|
$addressBookUri = $event->getSubject();
|
|
|
|
$addressBook = $cardDavBackend->getAddressBooksByUri('principals/system/system', $addressBookUri);
|
2016-03-01 12:41:05 +03:00
|
|
|
if (!is_null($addressBook)) {
|
|
|
|
$cardDavBackend->deleteAddressBook($addressBook['id']);
|
|
|
|
}
|
2016-02-26 18:59:53 +03:00
|
|
|
}
|
|
|
|
);
|
|
|
|
|
2015-11-18 22:26:14 +03:00
|
|
|
$cm = \OC::$server->getContactsManager();
|
2016-01-13 22:56:25 +03:00
|
|
|
$cm->register(function() use ($cm, $app) {
|
2016-03-23 13:37:00 +03:00
|
|
|
$user = \OC::$server->getUserSession()->getUser();
|
2017-09-15 15:32:27 +03:00
|
|
|
if (!is_null($user)) {
|
|
|
|
$app->setupContactsProvider($cm, $user->getUID());
|
2017-09-16 14:42:46 +03:00
|
|
|
} else {
|
|
|
|
$app->setupSystemContactsProvider($cm);
|
2016-03-23 13:37:00 +03:00
|
|
|
}
|
2015-11-18 22:26:14 +03:00
|
|
|
});
|
2017-11-07 03:31:28 +03:00
|
|
|
|
|
|
|
$calendarManager = \OC::$server->getCalendarManager();
|
|
|
|
$calendarManager->register(function() use ($calendarManager, $app) {
|
|
|
|
$user = \OC::$server->getUserSession()->getUser();
|
|
|
|
if ($user !== null) {
|
|
|
|
$app->setupCalendarProvider($calendarManager, $user->getUID());
|
|
|
|
}
|
|
|
|
});
|