2015-11-16 18:29:01 +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.
|
|
|
|
*
|
2017-11-06 17:56:42 +03:00
|
|
|
* @author Joas Schilling <coding@schilljs.com>
|
|
|
|
* @author Thomas Citharel <tcit@tcit.fr>
|
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-16 18:29:01 +03:00
|
|
|
namespace OCA\DAV\Command;
|
|
|
|
|
|
|
|
use OCA\DAV\CalDAV\CalDavBackend;
|
2016-01-26 14:06:02 +03:00
|
|
|
use OCA\DAV\Connector\Sabre\Principal;
|
2015-11-16 18:29:01 +03:00
|
|
|
use OCP\IDBConnection;
|
2016-01-26 14:06:02 +03:00
|
|
|
use OCP\IGroupManager;
|
2015-11-16 18:29:01 +03:00
|
|
|
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 CreateCalendar extends Command {
|
|
|
|
|
|
|
|
/** @var IUserManager */
|
|
|
|
protected $userManager;
|
|
|
|
|
2016-01-26 14:06:02 +03:00
|
|
|
/** @var IGroupManager $groupManager */
|
|
|
|
private $groupManager;
|
|
|
|
|
2015-11-16 18:29:01 +03:00
|
|
|
/** @var \OCP\IDBConnection */
|
|
|
|
protected $dbConnection;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param IUserManager $userManager
|
2016-07-31 21:18:35 +03:00
|
|
|
* @param IGroupManager $groupManager
|
2015-11-16 18:29:01 +03:00
|
|
|
* @param IDBConnection $dbConnection
|
|
|
|
*/
|
2016-01-26 14:06:02 +03:00
|
|
|
function __construct(IUserManager $userManager, IGroupManager $groupManager, IDBConnection $dbConnection) {
|
2015-11-16 18:29:01 +03:00
|
|
|
parent::__construct();
|
|
|
|
$this->userManager = $userManager;
|
2016-01-26 14:06:02 +03:00
|
|
|
$this->groupManager = $groupManager;
|
2015-11-16 18:29:01 +03:00
|
|
|
$this->dbConnection = $dbConnection;
|
|
|
|
}
|
|
|
|
|
|
|
|
protected function configure() {
|
|
|
|
$this
|
|
|
|
->setName('dav:create-calendar')
|
|
|
|
->setDescription('Create a dav calendar')
|
|
|
|
->addArgument('user',
|
|
|
|
InputArgument::REQUIRED,
|
|
|
|
'User for whom the calendar will be created')
|
|
|
|
->addArgument('name',
|
|
|
|
InputArgument::REQUIRED,
|
|
|
|
'Name of the calendar');
|
|
|
|
}
|
|
|
|
|
|
|
|
protected function execute(InputInterface $input, OutputInterface $output) {
|
|
|
|
$user = $input->getArgument('user');
|
|
|
|
if (!$this->userManager->userExists($user)) {
|
|
|
|
throw new \InvalidArgumentException("User <$user> in unknown.");
|
|
|
|
}
|
2016-01-26 14:06:02 +03:00
|
|
|
$principalBackend = new Principal(
|
|
|
|
$this->userManager,
|
2017-12-04 17:02:55 +03:00
|
|
|
$this->groupManager,
|
|
|
|
\OC::$server->getShareManager(),
|
2018-05-22 16:09:21 +03:00
|
|
|
\OC::$server->getUserSession(),
|
|
|
|
\OC::$server->getConfig()
|
2016-01-26 14:06:02 +03:00
|
|
|
);
|
2016-09-03 11:52:05 +03:00
|
|
|
$random = \OC::$server->getSecureRandom();
|
2017-10-22 13:16:58 +03:00
|
|
|
$logger = \OC::$server->getLogger();
|
2016-10-13 16:34:26 +03:00
|
|
|
$dispatcher = \OC::$server->getEventDispatcher();
|
2016-01-26 14:06:02 +03:00
|
|
|
|
2015-11-16 18:29:01 +03:00
|
|
|
$name = $input->getArgument('name');
|
2017-10-22 13:16:58 +03:00
|
|
|
$caldav = new CalDavBackend($this->dbConnection, $principalBackend, $this->userManager, $this->groupManager, $random, $logger, $dispatcher);
|
2015-11-24 13:15:31 +03:00
|
|
|
$caldav->createCalendar("principals/users/$user", $name, []);
|
2015-11-16 18:29:01 +03:00
|
|
|
}
|
|
|
|
}
|