2015-11-25 01:53:27 +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-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-25 01:53:27 +03:00
|
|
|
namespace OCA\DAV\Command;
|
|
|
|
|
2016-01-13 22:56:25 +03:00
|
|
|
use OCA\DAV\CardDAV\SyncService;
|
2015-11-25 01:53:27 +03:00
|
|
|
use Symfony\Component\Console\Command\Command;
|
|
|
|
use Symfony\Component\Console\Helper\ProgressBar;
|
|
|
|
use Symfony\Component\Console\Input\InputInterface;
|
|
|
|
use Symfony\Component\Console\Output\OutputInterface;
|
|
|
|
|
|
|
|
class SyncSystemAddressBook extends Command {
|
|
|
|
|
2016-01-13 22:56:25 +03:00
|
|
|
/** @var SyncService */
|
|
|
|
private $syncService;
|
2015-11-25 01:53:27 +03:00
|
|
|
|
|
|
|
/**
|
2016-01-13 22:56:25 +03:00
|
|
|
* @param SyncService $syncService
|
2015-11-25 01:53:27 +03:00
|
|
|
*/
|
2016-01-13 22:56:25 +03:00
|
|
|
function __construct(SyncService $syncService) {
|
2015-11-25 01:53:27 +03:00
|
|
|
parent::__construct();
|
2016-01-13 22:56:25 +03:00
|
|
|
$this->syncService = $syncService;
|
2015-11-25 01:53:27 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function configure() {
|
|
|
|
$this
|
|
|
|
->setName('dav:sync-system-addressbook')
|
|
|
|
->setDescription('Synchronizes users to the system addressbook');
|
|
|
|
}
|
|
|
|
|
2015-11-30 15:57:54 +03:00
|
|
|
/**
|
|
|
|
* @param InputInterface $input
|
|
|
|
* @param OutputInterface $output
|
|
|
|
*/
|
2015-11-25 01:53:27 +03:00
|
|
|
protected function execute(InputInterface $input, OutputInterface $output) {
|
|
|
|
$output->writeln('Syncing users ...');
|
|
|
|
$progress = new ProgressBar($output);
|
|
|
|
$progress->start();
|
2016-01-13 22:56:25 +03:00
|
|
|
$this->syncService->syncInstance(function() use ($progress) {
|
2015-12-01 14:48:23 +03:00
|
|
|
$progress->advance();
|
|
|
|
});
|
2015-12-04 13:50:11 +03:00
|
|
|
|
2015-11-25 01:53:27 +03:00
|
|
|
$progress->finish();
|
2015-11-27 15:14:55 +03:00
|
|
|
$output->writeln('');
|
2015-11-25 01:53:27 +03:00
|
|
|
}
|
|
|
|
}
|