nextcloud/core/command/base.php

90 lines
2.4 KiB
PHP
Raw Normal View History

<?php
/**
* @author Joas Schilling <nickvergessen@owncloud.com>
*
* @copyright Copyright (c) 2015, ownCloud, Inc.
* @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;
use Symfony\Component\Console\Command\Command;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Input\InputOption;
use Symfony\Component\Console\Output\OutputInterface;
class Base extends Command {
protected function configure() {
$this
->addOption(
'output',
null,
InputOption::VALUE_OPTIONAL,
2015-04-09 15:42:44 +03:00
'Output format (plain, json or json_pretty, default is plain)',
'plain'
)
;
}
2015-04-09 15:44:30 +03:00
/**
* @param InputInterface $input
* @param OutputInterface $output
* @param array $items
2015-04-30 17:59:25 +03:00
* @param string $prefix
2015-04-09 15:44:30 +03:00
*/
2015-04-30 16:42:18 +03:00
protected function writeArrayInOutputFormat(InputInterface $input, OutputInterface $output, $items, $prefix = ' - ') {
2015-04-09 15:42:44 +03:00
switch ($input->getOption('output')) {
case 'json':
2015-04-09 15:42:44 +03:00
$output->writeln(json_encode($items));
break;
case 'json_pretty':
$output->writeln(json_encode($items, JSON_PRETTY_PRINT));
break;
default:
foreach ($items as $key => $item) {
2015-04-30 16:42:18 +03:00
if (is_array($item)) {
$output->writeln($prefix . $key . ':');
$this->writeArrayInOutputFormat($input, $output, $item, ' ' . $prefix);
continue;
}
if (!is_int($key)) {
$value = $this->valueToString($item);
if (!is_null($value)) {
2015-04-30 16:42:18 +03:00
$output->writeln($prefix . $key . ': ' . $value);
} else {
2015-04-30 16:42:18 +03:00
$output->writeln($prefix . $key);
}
} else {
2015-04-30 16:42:18 +03:00
$output->writeln($prefix . $this->valueToString($item));
}
}
break;
}
}
protected function valueToString($value) {
if ($value === false) {
return 'false';
} else if ($value === true) {
return 'true';
} else if ($value === null) {
null;
} else {
return $value;
}
}
}