register_command.php 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. <?php
  2. /**
  3. * @copyright Copyright (c) 2016, ownCloud, Inc.
  4. *
  5. * @author Joas Schilling <coding@schilljs.com>
  6. * @author Thomas Müller <thomas.mueller@tmit.eu>
  7. *
  8. * @license AGPL-3.0
  9. *
  10. * This code is free software: you can redistribute it and/or modify
  11. * it under the terms of the GNU Affero General Public License, version 3,
  12. * as published by the Free Software Foundation.
  13. *
  14. * This program is distributed in the hope that it will be useful,
  15. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  17. * GNU Affero General Public License for more details.
  18. *
  19. * You should have received a copy of the GNU Affero General Public License, version 3,
  20. * along with this program. If not, see <http://www.gnu.org/licenses/>
  21. *
  22. */
  23. use OCA\DAV\AppInfo\Application;
  24. use OCA\DAV\Command\CreateAddressBook;
  25. use OCA\DAV\Command\CreateCalendar;
  26. use OCA\DAV\Command\SyncBirthdayCalendar;
  27. use OCA\DAV\Command\SyncSystemAddressBook;
  28. $dbConnection = \OC::$server->getDatabaseConnection();
  29. $userManager = OC::$server->getUserManager();
  30. $groupManager = OC::$server->getGroupManager();
  31. $app = new Application();
  32. /** @var Symfony\Component\Console\Application $application */
  33. $application->add(new CreateCalendar($userManager, $groupManager, $dbConnection));
  34. $application->add(new CreateAddressBook($userManager, $app->getContainer()->query('CardDavBackend')));
  35. $application->add(new SyncSystemAddressBook($app->getSyncService()));
  36. $application->add(new SyncBirthdayCalendar($userManager, $app->getContainer()->query('BirthdayService')));