nextcloud/apps/dav/appinfo/app.php

46 lines
1.4 KiB
PHP
Raw Normal View History

2015-11-18 22:26:14 +03:00
<?php
/**
* @author Thomas Müller <thomas.mueller@tmit.eu>
*
* @copyright Copyright (c) 2015, ownCloud, Inc.
* @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-12-04 15:38:32 +03:00
use OCA\DAV\CardDAV\CardDavBackend;
use OCA\DAV\CardDAV\SyncService;
use OCA\DAV\Connector\Sabre\Principal;
\OC::$server->registerService('CardDAVSyncService', function() {
2015-12-16 23:04:54 +03:00
$userManager = \OC::$server->getUserManager();
$dbConnection = \OC::$server->getDatabaseConnection();
2015-12-04 15:38:32 +03:00
$principalBackend = new Principal(
2015-12-16 23:04:54 +03:00
$userManager
2015-12-04 15:38:32 +03:00
);
2015-12-16 23:04:54 +03:00
$backend = new CardDavBackend($dbConnection, $principalBackend);
2015-12-04 15:38:32 +03:00
return new SyncService($backend);
});
2015-11-18 22:26:14 +03:00
$cm = \OC::$server->getContactsManager();
$cm->register(function() use ($cm) {
$userId = \OC::$server->getUserSession()->getUser()->getUID();
$app = new \OCA\Dav\AppInfo\Application();
$app->setupContactsProvider($cm, $userId);
2015-11-18 22:26:14 +03:00
});