2015-11-05 13:37:31 +03:00
|
|
|
<?php
|
2016-01-12 17:02:16 +03:00
|
|
|
/**
|
2016-07-21 17:49:16 +03:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
|
|
|
*
|
2016-05-26 20:56:05 +03:00
|
|
|
* @author Björn Schießle <bjoern@schiessle.org>
|
2016-01-12 17:02:16 +03:00
|
|
|
* @author Thomas Müller <thomas.mueller@tmit.eu>
|
|
|
|
*
|
|
|
|
* @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-11-05 13:37:31 +03:00
|
|
|
namespace OCA\DAV\Command;
|
|
|
|
|
|
|
|
use OCA\DAV\CardDAV\CardDavBackend;
|
|
|
|
use OCP\IUserManager;
|
|
|
|
use Symfony\Component\Console\Command\Command;
|
|
|
|
use Symfony\Component\Console\Input\InputArgument;
|
|
|
|
use Symfony\Component\Console\Input\InputInterface;
|
|
|
|
use Symfony\Component\Console\Output\OutputInterface;
|
|
|
|
|
|
|
|
class CreateAddressBook extends Command {
|
|
|
|
|
|
|
|
/** @var IUserManager */
|
2016-02-03 17:43:45 +03:00
|
|
|
private $userManager;
|
2015-11-05 13:37:31 +03:00
|
|
|
|
2016-02-03 17:43:45 +03:00
|
|
|
/** @var CardDavBackend */
|
|
|
|
private $cardDavBackend;
|
2016-01-11 19:29:01 +03:00
|
|
|
|
2015-11-05 13:37:31 +03:00
|
|
|
/**
|
|
|
|
* @param IUserManager $userManager
|
2016-02-03 17:43:45 +03:00
|
|
|
* @param CardDavBackend $cardDavBackend
|
2015-11-05 13:37:31 +03:00
|
|
|
*/
|
2015-11-25 17:24:50 +03:00
|
|
|
function __construct(IUserManager $userManager,
|
2016-02-03 17:43:45 +03:00
|
|
|
CardDavBackend $cardDavBackend
|
2015-11-25 17:24:50 +03:00
|
|
|
) {
|
2015-11-05 13:37:31 +03:00
|
|
|
parent::__construct();
|
|
|
|
$this->userManager = $userManager;
|
2016-02-03 17:43:45 +03:00
|
|
|
$this->cardDavBackend = $cardDavBackend;
|
2015-11-05 13:37:31 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function configure() {
|
|
|
|
$this
|
2015-11-25 14:27:25 +03:00
|
|
|
->setName('dav:create-addressbook')
|
|
|
|
->setDescription('Create a dav addressbook')
|
|
|
|
->addArgument('user',
|
|
|
|
InputArgument::REQUIRED,
|
|
|
|
'User for whom the addressbook will be created')
|
|
|
|
->addArgument('name',
|
|
|
|
InputArgument::REQUIRED,
|
|
|
|
'Name of the addressbook');
|
2015-11-05 13:37:31 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function execute(InputInterface $input, OutputInterface $output) {
|
|
|
|
$user = $input->getArgument('user');
|
|
|
|
if (!$this->userManager->userExists($user)) {
|
|
|
|
throw new \InvalidArgumentException("User <$user> in unknown.");
|
|
|
|
}
|
2015-11-25 14:27:25 +03:00
|
|
|
|
2015-11-05 13:37:31 +03:00
|
|
|
$name = $input->getArgument('name');
|
2016-02-03 17:43:45 +03:00
|
|
|
$this->cardDavBackend->createAddressBook("principals/users/$user", $name, []);
|
2015-11-05 13:37:31 +03:00
|
|
|
}
|
|
|
|
}
|