2015-04-16 18:41:32 +03:00
|
|
|
<?php
|
|
|
|
/**
|
2016-01-12 17:02:16 +03:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
2016-07-21 18:07:57 +03:00
|
|
|
*
|
|
|
|
* @author Joas Schilling <coding@schilljs.com>
|
|
|
|
*
|
2015-04-16 18:41:32 +03:00
|
|
|
* @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/>
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace OC\Core\Command\Encryption;
|
|
|
|
|
|
|
|
use OC\Core\Command\Base;
|
2015-04-27 11:44:42 +03:00
|
|
|
use OCP\Encryption\IManager;
|
2015-04-16 18:41:32 +03:00
|
|
|
use Symfony\Component\Console\Input\InputInterface;
|
|
|
|
use Symfony\Component\Console\Output\OutputInterface;
|
|
|
|
|
|
|
|
class ListModules extends Base {
|
2015-04-27 11:44:42 +03:00
|
|
|
/** @var IManager */
|
2015-04-16 18:41:32 +03:00
|
|
|
protected $encryptionManager;
|
|
|
|
|
|
|
|
/**
|
2015-04-27 11:44:42 +03:00
|
|
|
* @param IManager $encryptionManager
|
2015-04-16 18:41:32 +03:00
|
|
|
*/
|
2015-04-27 11:44:42 +03:00
|
|
|
public function __construct(IManager $encryptionManager) {
|
2015-04-16 18:41:32 +03:00
|
|
|
parent::__construct();
|
|
|
|
$this->encryptionManager = $encryptionManager;
|
|
|
|
}
|
|
|
|
|
|
|
|
protected function configure() {
|
|
|
|
parent::configure();
|
|
|
|
|
|
|
|
$this
|
|
|
|
->setName('encryption:list-modules')
|
|
|
|
->setDescription('List all available encryption modules')
|
|
|
|
;
|
|
|
|
}
|
|
|
|
|
|
|
|
protected function execute(InputInterface $input, OutputInterface $output) {
|
|
|
|
$encryptionModules = $this->encryptionManager->getEncryptionModules();
|
2015-04-20 12:11:52 +03:00
|
|
|
$defaultEncryptionModuleId = $this->encryptionManager->getDefaultEncryptionModuleId();
|
2015-04-16 18:41:32 +03:00
|
|
|
|
|
|
|
$encModules = array();
|
|
|
|
foreach ($encryptionModules as $module) {
|
2015-04-20 12:11:52 +03:00
|
|
|
$encModules[$module['id']]['displayName'] = $module['displayName'];
|
2015-04-27 13:21:48 +03:00
|
|
|
$encModules[$module['id']]['default'] = $module['id'] === $defaultEncryptionModuleId;
|
2015-04-16 18:41:32 +03:00
|
|
|
}
|
|
|
|
$this->writeModuleList($input, $output, $encModules);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param InputInterface $input
|
|
|
|
* @param OutputInterface $output
|
|
|
|
* @param array $items
|
|
|
|
*/
|
|
|
|
protected function writeModuleList(InputInterface $input, OutputInterface $output, $items) {
|
2015-07-17 10:25:19 +03:00
|
|
|
if ($input->getOption('output') === self::OUTPUT_FORMAT_PLAIN) {
|
2015-04-20 12:11:52 +03:00
|
|
|
array_walk($items, function(&$item) {
|
|
|
|
if (!$item['default']) {
|
|
|
|
$item = $item['displayName'];
|
|
|
|
} else {
|
|
|
|
$item = $item['displayName'] . ' [default*]';
|
|
|
|
}
|
|
|
|
});
|
2015-04-16 18:41:32 +03:00
|
|
|
}
|
2015-04-20 12:11:52 +03:00
|
|
|
|
2015-04-27 12:46:00 +03:00
|
|
|
$this->writeArrayInOutputFormat($input, $output, $items);
|
2015-04-16 18:41:32 +03:00
|
|
|
}
|
|
|
|
}
|