daux.io/libs/Generator/Command.php

57 lines
2.2 KiB
PHP
Raw Normal View History

2015-07-14 22:06:01 +02:00
<?php namespace Todaymade\Daux\Generator;
use Symfony\Component\Console\Command\Command as SymfonyCommand;
use Symfony\Component\Console\Input\InputArgument;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Output\OutputInterface;
use Todaymade\Daux\Daux;
use Todaymade\Daux\Format\HTML\Generator as HTMLGenerator;
use Todaymade\Daux\Format\Confluence\Generator as ConfluenceGenerator;
class Command extends SymfonyCommand
{
protected function configure()
{
$description = 'Destination folder, relative to the working directory';
$this
->setName('generate')
->setDescription('Generate documentation')
->addOption('configuration', 'c', InputArgument::OPTIONAL, 'Configuration file')
->addOption('format', 'f', InputArgument::OPTIONAL, 'Output format, html or confluence', 'html')
->addOption('processor', 'p', InputArgument::OPTIONAL, 'Manipulations on the tree', 'none')
->addOption('destination', 'd', InputArgument::OPTIONAL, $description, 'static');
}
protected function execute(InputInterface $input, OutputInterface $output)
{
$daux = new Daux(Daux::STATIC_MODE);
$daux->initialize($input->getOption('configuration'));
$width = $this->getApplication()->getTerminalDimensions()[0];
2015-07-15 14:09:54 +02:00
$processor = $input->getOption('processor');
if (!empty($processor) && $processor != 'none') {
2015-07-17 18:34:00 +02:00
$class = "\\Todaymade\\Daux\\Extension\\" . $processor;
if (class_exists($class)) {
$daux->setProcessor(new $class($daux, $output, $width));
} else if (file_exists($processor)) {
include $processor;
}
2015-07-15 14:09:54 +02:00
}
2015-07-14 22:06:01 +02:00
2015-07-17 18:34:00 +02:00
// Improve the tree with a processor
$daux->getProcessor()->manipulateTree($daux->tree);
2015-07-14 22:06:01 +02:00
switch(strtolower($input->getOption('format'))) {
case 'confluence':
2015-07-15 11:06:01 +02:00
(new ConfluenceGenerator())->generate($daux, $output, $width);
2015-07-14 22:06:01 +02:00
break;
case 'html':
default:
(new HTMLGenerator())->generate($daux, $input->getOption('destination'), $output, $width);
}
}
}