CreateAddressBook.php 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  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. /** @var IUserManager */
  34. private $userManager;
  35. /** @var CardDavBackend */
  36. private $cardDavBackend;
  37. /**
  38. * @param IUserManager $userManager
  39. * @param CardDavBackend $cardDavBackend
  40. */
  41. public function __construct(IUserManager $userManager,
  42. CardDavBackend $cardDavBackend
  43. ) {
  44. parent::__construct();
  45. $this->userManager = $userManager;
  46. $this->cardDavBackend = $cardDavBackend;
  47. }
  48. protected function configure() {
  49. $this
  50. ->setName('dav:create-addressbook')
  51. ->setDescription('Create a dav addressbook')
  52. ->addArgument('user',
  53. InputArgument::REQUIRED,
  54. 'User for whom the addressbook will be created')
  55. ->addArgument('name',
  56. InputArgument::REQUIRED,
  57. 'Name of the addressbook');
  58. }
  59. protected function execute(InputInterface $input, OutputInterface $output): int {
  60. $user = $input->getArgument('user');
  61. if (!$this->userManager->userExists($user)) {
  62. throw new \InvalidArgumentException("User <$user> in unknown.");
  63. }
  64. $name = $input->getArgument('name');
  65. $this->cardDavBackend->createAddressBook("principals/users/$user", $name, []);
  66. return 0;
  67. }
  68. }