nextcloud/apps/dav/appinfo/app.php

128 lines
4.5 KiB
PHP
Raw Normal View History

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>
* @author Christoph Wurst <christoph@winzerhof-wurst.at>
* @author Georg Ehrke <oc.list@georgehrke.com>
2016-07-21 17:49:16 +03:00
* @author Joas Schilling <coding@schilljs.com>
* @author Julius Härtl <jus@bitgrid.net>
* @author Lukas Reschke <lukas@statuscode.ch>
* @author Thomas Citharel <nextcloud@tcit.fr>
2015-11-18 22:26:14 +03:00
* @author Thomas Müller <thomas.mueller@tmit.eu>
* @author Tobia De Koninck <tobia@ledfan.be>
2015-11-18 22:26:14 +03:00
*
* @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-11-18 22:26:14 +03:00
*
*/
use OCA\DAV\AppInfo\Application;
use OCA\DAV\CalDAV\WebcalCaching\RefreshWebcalService;
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
\OC_App::loadApps(['dav']);
/** @var Application $app */
$app = \OC::$server->query(Application::class);
2016-01-13 22:56:25 +03:00
$app->registerHooks();
2015-12-16 23:04:54 +03:00
\OC::$server->registerService('CardDAVSyncService', function () use ($app) {
2016-01-13 22:56:25 +03:00
return $app->getSyncService();
2015-12-04 15:38:32 +03:00
});
$eventDispatcher = \OC::$server->getEventDispatcher();
$eventDispatcher->addListener('OCP\Federation\TrustedServerEvent::remove',
function (GenericEvent $event) use ($app) {
2016-09-20 02:15:24 +03:00
/** @var CardDavBackend $cardDavBackend */
$cardDavBackend = $app->getContainer()->query(CardDavBackend::class);
$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']);
}
}
);
$eventDispatcher->addListener('\OCA\DAV\CalDAV\CalDavBackend::createSubscription',
function (GenericEvent $event) use ($app) {
$jobList = $app->getContainer()->getServer()->getJobList();
$subscriptionData = $event->getArgument('subscriptionData');
/**
* Initial subscription refetch
* @var RefreshWebcalService $refreshWebcalService
*/
$refreshWebcalService = $app->getContainer()->query(RefreshWebcalService::class);
$refreshWebcalService->refreshSubscription($subscriptionData['principaluri'], $subscriptionData['uri']);
$jobList->add(\OCA\DAV\BackgroundJob\RefreshWebcalJob::class, [
'principaluri' => $subscriptionData['principaluri'],
'uri' => $subscriptionData['uri']
]);
}
);
$eventDispatcher->addListener('\OCA\DAV\CalDAV\CalDavBackend::deleteSubscription',
function (GenericEvent $event) use ($app) {
$jobList = $app->getContainer()->getServer()->getJobList();
$subscriptionData = $event->getArgument('subscriptionData');
$jobList->remove(\OCA\DAV\BackgroundJob\RefreshWebcalJob::class, [
'principaluri' => $subscriptionData['principaluri'],
'uri' => $subscriptionData['uri']
]);
/** @var \OCA\DAV\CalDAV\CalDavBackend $calDavBackend */
$calDavBackend = $app->getContainer()->query(\OCA\DAV\CalDAV\CalDavBackend::class);
$calDavBackend->purgeAllCachedEventsForSubscription($subscriptionData['id']);
}
);
$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 22:26:14 +03:00
$cm = \OC::$server->getContactsManager();
$cm->register(function () use ($cm, $app) {
2016-03-23 13:37:00 +03:00
$user = \OC::$server->getUserSession()->getUser();
if (!is_null($user)) {
$app->setupContactsProvider($cm, $user->getUID());
} else {
$app->setupSystemContactsProvider($cm);
2016-03-23 13:37:00 +03:00
}
2015-11-18 22:26:14 +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());
}
});
$app->registerNotifier();
$app->registerCalendarReminders();