nextcloud/apps/dav/appinfo/app.php

57 lines
1.9 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>
2016-07-21 17:49:16 +03:00
* @author Joas Schilling <coding@schilljs.com>
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/>
*
*/
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
});
$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);
$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']);
}
}
);
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();
if (!is_null($user)) {
$app->setupContactsProvider($cm, $user->getUID());
2016-03-23 13:37:00 +03:00
}
2015-11-18 22:26:14 +03:00
});