2015-11-05 13:37:31 +03:00
|
|
|
<?php
|
2016-01-12 17:02:16 +03:00
|
|
|
/**
|
|
|
|
* @author Thomas Müller <thomas.mueller@tmit.eu>
|
|
|
|
*
|
|
|
|
* @copyright Copyright (c) 2016, 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/>
|
|
|
|
*
|
|
|
|
*/
|
2016-01-14 16:46:51 +03:00
|
|
|
use OCA\Dav\AppInfo\Application;
|
2015-11-05 13:37:31 +03:00
|
|
|
use OCA\DAV\Command\CreateAddressBook;
|
2015-11-16 18:29:01 +03:00
|
|
|
use OCA\DAV\Command\CreateCalendar;
|
2016-02-18 16:49:45 +03:00
|
|
|
use OCA\DAV\Command\SyncBirthdayCalendar;
|
2015-11-25 01:53:27 +03:00
|
|
|
use OCA\DAV\Command\SyncSystemAddressBook;
|
2015-11-05 13:37:31 +03:00
|
|
|
|
|
|
|
$dbConnection = \OC::$server->getDatabaseConnection();
|
|
|
|
$userManager = OC::$server->getUserManager();
|
2016-01-11 23:07:07 +03:00
|
|
|
$groupManager = OC::$server->getGroupManager();
|
2015-11-25 14:27:25 +03:00
|
|
|
|
2016-01-14 16:46:51 +03:00
|
|
|
$app = new Application();
|
|
|
|
|
2015-11-05 13:37:31 +03:00
|
|
|
/** @var Symfony\Component\Console\Application $application */
|
2016-01-26 14:06:02 +03:00
|
|
|
$application->add(new CreateCalendar($userManager, $groupManager, $dbConnection));
|
2016-02-03 17:43:45 +03:00
|
|
|
$application->add(new CreateAddressBook($userManager, $app->getContainer()->query('CardDavBackend')));
|
2016-01-14 16:46:51 +03:00
|
|
|
$application->add(new SyncSystemAddressBook($app->getSyncService()));
|
2016-02-18 16:49:45 +03:00
|
|
|
$application->add(new SyncBirthdayCalendar($userManager, $app->getContainer()->query('BirthdayService')));
|