You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

CreateAddressBook.php 2.1KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. <?php
  2. /**
  3. * @copyright Copyright (c) 2016, ownCloud, Inc.
  4. *
  5. * @author Björn Schießle <bjoern@schiessle.org>
  6. * @author Christoph Wurst <christoph@winzerhof-wurst.at>
  7. * @author Joas Schilling <coding@schilljs.com>
  8. * @author Thomas Müller <thomas.mueller@tmit.eu>
  9. *
  10. * @license AGPL-3.0
  11. *
  12. * This code is free software: you can redistribute it and/or modify
  13. * it under the terms of the GNU Affero General Public License, version 3,
  14. * as published by the Free Software Foundation.
  15. *
  16. * This program is distributed in the hope that it will be useful,
  17. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  18. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  19. * GNU Affero General Public License for more details.
  20. *
  21. * You should have received a copy of the GNU Affero General Public License, version 3,
  22. * along with this program. If not, see <http://www.gnu.org/licenses/>
  23. *
  24. */
  25. namespace OCA\DAV\Command;
  26. use OCA\DAV\CardDAV\CardDavBackend;
  27. use OCP\IUserManager;
  28. use Symfony\Component\Console\Command\Command;
  29. use Symfony\Component\Console\Input\InputArgument;
  30. use Symfony\Component\Console\Input\InputInterface;
  31. use Symfony\Component\Console\Output\OutputInterface;
  32. class CreateAddressBook extends Command {
  33. public function __construct(
  34. private IUserManager $userManager,
  35. private CardDavBackend $cardDavBackend,
  36. ) {
  37. parent::__construct();
  38. }
  39. protected function configure(): void {
  40. $this
  41. ->setName('dav:create-addressbook')
  42. ->setDescription('Create a dav addressbook')
  43. ->addArgument('user',
  44. InputArgument::REQUIRED,
  45. 'User for whom the addressbook will be created')
  46. ->addArgument('name',
  47. InputArgument::REQUIRED,
  48. 'Name of the addressbook');
  49. }
  50. protected function execute(InputInterface $input, OutputInterface $output): int {
  51. $user = $input->getArgument('user');
  52. if (!$this->userManager->userExists($user)) {
  53. throw new \InvalidArgumentException("User <$user> in unknown.");
  54. }
  55. $name = $input->getArgument('name');
  56. $this->cardDavBackend->createAddressBook("principals/users/$user", $name, []);
  57. return self::SUCCESS;
  58. }
  59. }