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