nextcloud/apps/dav/appinfo/app.php

48 lines
1.7 KiB
PHP
Raw Normal View History

2015-11-18 22:26:14 +03:00
<?php
/**
* @author Thomas Müller <thomas.mueller@tmit.eu>
*
2016-01-12 17:02:16 +03:00
* @copyright Copyright (c) 2016, ownCloud, Inc.
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/>
*
*/
2016-01-19 14:36:23 +03:00
use OCA\Dav\AppInfo\Application;
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',
function(\Symfony\Component\EventDispatcher\GenericEvent $event) use ($app) {
/** @var \OCA\DAV\CardDAV\CardDavBackend $cardDavBackend */
$cardDavBackend = $app->getContainer()->query('CardDavBackend');
$addressBookUri = $event->getSubject();
$addressBook = $cardDavBackend->getAddressBooksByUri('principals/system/system', $addressBookUri);
$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) {
2015-11-18 22:26:14 +03:00
$userId = \OC::$server->getUserSession()->getUser()->getUID();
$app->setupContactsProvider($cm, $userId);
2015-11-18 22:26:14 +03:00
});