2015-07-23 17:44:24 +02:00
|
|
|
<?php namespace Todaymade\Daux\Console;
|
2015-07-14 22:06:01 +02:00
|
|
|
|
2016-09-30 23:10:17 +02:00
|
|
|
use Symfony\Component\Console\Input\ArgvInput;
|
|
|
|
use Symfony\Component\Console\Input\ArrayInput;
|
2015-07-14 22:06:01 +02:00
|
|
|
use Symfony\Component\Console\Input\InputInterface;
|
2016-01-25 14:48:37 +01:00
|
|
|
use Symfony\Component\Console\Input\InputOption;
|
2015-07-14 22:06:01 +02:00
|
|
|
use Symfony\Component\Console\Output\OutputInterface;
|
|
|
|
use Todaymade\Daux\Daux;
|
|
|
|
|
2016-07-29 07:58:48 +02:00
|
|
|
class Generate extends DauxCommand
|
2015-07-14 22:06:01 +02:00
|
|
|
{
|
|
|
|
protected function configure()
|
|
|
|
{
|
|
|
|
$description = 'Destination folder, relative to the working directory';
|
|
|
|
|
|
|
|
$this
|
|
|
|
->setName('generate')
|
|
|
|
->setDescription('Generate documentation')
|
2016-07-28 22:47:47 +02:00
|
|
|
|
2016-01-25 14:48:37 +01:00
|
|
|
->addOption('configuration', 'c', InputOption::VALUE_REQUIRED, 'Configuration file')
|
2016-07-28 22:47:47 +02:00
|
|
|
->addOption('source', 's', InputOption::VALUE_REQUIRED, 'Where to take the documentation from')
|
2016-01-25 14:48:37 +01:00
|
|
|
->addOption('format', 'f', InputOption::VALUE_REQUIRED, 'Output format, html or confluence', 'html')
|
|
|
|
->addOption('processor', 'p', InputOption::VALUE_REQUIRED, 'Manipulations on the tree')
|
2016-09-21 23:30:01 +02:00
|
|
|
->addOption('themes', 't', InputOption::VALUE_REQUIRED, 'Set a different themes directory')
|
2016-07-28 22:47:47 +02:00
|
|
|
|
|
|
|
// Confluence format only
|
2016-01-25 14:48:37 +01:00
|
|
|
->addOption('delete', null, InputOption::VALUE_NONE, 'Delete pages not linked to a documentation page (confluence)')
|
2016-07-28 22:47:47 +02:00
|
|
|
|
|
|
|
// HTML Format only
|
2016-02-15 21:14:48 +01:00
|
|
|
->addOption('destination', 'd', InputOption::VALUE_REQUIRED, $description, 'static')
|
2016-07-28 22:48:50 +02:00
|
|
|
->addOption('search', null, InputOption::VALUE_NONE, 'Generate full text search');
|
2015-07-14 22:06:01 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function execute(InputInterface $input, OutputInterface $output)
|
|
|
|
{
|
2016-09-30 23:10:17 +02:00
|
|
|
// When used as a default command,
|
|
|
|
// Symfony doesn't read the default parameters.
|
|
|
|
// This will parse the parameters
|
|
|
|
if ($input instanceof ArrayInput) {
|
|
|
|
$argv = $_SERVER['argv'];
|
|
|
|
$argv[0] = $this->getName();
|
|
|
|
array_unshift($argv, 'binary_name');
|
|
|
|
|
|
|
|
$input = new ArgvInput($argv, $this->getDefinition());
|
|
|
|
}
|
|
|
|
|
2015-07-28 17:26:35 +02:00
|
|
|
$daux = $this->prepareDaux($input);
|
2015-07-28 17:25:03 +02:00
|
|
|
|
2015-07-14 22:06:01 +02:00
|
|
|
$width = $this->getApplication()->getTerminalDimensions()[0];
|
|
|
|
|
2015-07-19 22:38:37 +02:00
|
|
|
// Instiantiate the processor if one is defined
|
|
|
|
$this->prepareProcessor($daux, $input, $output, $width);
|
2015-07-14 22:06:01 +02:00
|
|
|
|
2015-07-19 23:17:57 +02:00
|
|
|
// Generate the tree
|
|
|
|
$daux->generateTree();
|
2015-07-17 18:34:00 +02:00
|
|
|
|
2015-07-19 22:38:37 +02:00
|
|
|
// Generate the documentation
|
|
|
|
$daux->getGenerator()->generateAll($input, $output, $width);
|
2015-07-19 00:55:57 +02:00
|
|
|
}
|
|
|
|
|
2015-07-19 22:38:37 +02:00
|
|
|
protected function prepareProcessor(Daux $daux, InputInterface $input, OutputInterface $output, $width)
|
2015-07-19 00:55:57 +02:00
|
|
|
{
|
2015-07-19 22:38:37 +02:00
|
|
|
if ($input->getOption('processor')) {
|
|
|
|
$daux->getParams()['processor'] = $input->getOption('processor');
|
2015-07-14 22:06:01 +02:00
|
|
|
}
|
2015-07-19 00:55:57 +02:00
|
|
|
|
2015-07-19 22:38:37 +02:00
|
|
|
$class = $daux->getProcessorClass();
|
2015-07-20 15:59:52 +02:00
|
|
|
if (!empty($class)) {
|
2015-07-19 22:38:37 +02:00
|
|
|
$daux->setProcessor(new $class($daux, $output, $width));
|
2015-07-19 00:55:57 +02:00
|
|
|
}
|
2015-07-14 22:06:01 +02:00
|
|
|
}
|
|
|
|
}
|