2015-05-21 17:39:11 +02:00
|
|
|
<?php namespace Todaymade\Daux\Format\Confluence;
|
|
|
|
|
2015-07-19 00:55:57 +02:00
|
|
|
use Symfony\Component\Console\Input\InputInterface;
|
2015-07-14 22:06:01 +02:00
|
|
|
use Symfony\Component\Console\Output\OutputInterface;
|
2015-06-29 16:11:01 +02:00
|
|
|
use Todaymade\Daux\Config;
|
2015-05-21 17:39:11 +02:00
|
|
|
use Todaymade\Daux\Daux;
|
2015-07-14 22:06:01 +02:00
|
|
|
use Todaymade\Daux\Format\Base\RunAction;
|
2015-05-21 17:39:11 +02:00
|
|
|
use Todaymade\Daux\Tree\Content;
|
|
|
|
use Todaymade\Daux\Tree\Directory;
|
|
|
|
|
2015-07-19 00:55:57 +02:00
|
|
|
class Generator implements \Todaymade\Daux\Format\Base\Generator
|
2015-05-21 17:39:11 +02:00
|
|
|
{
|
2015-07-14 22:06:01 +02:00
|
|
|
use RunAction;
|
|
|
|
|
2015-05-21 17:39:11 +02:00
|
|
|
/**
|
|
|
|
* @var string
|
|
|
|
*/
|
|
|
|
protected $prefix;
|
|
|
|
|
2015-07-19 00:55:57 +02:00
|
|
|
public function generate(Daux $daux, InputInterface $input, OutputInterface $output, $width)
|
2015-05-21 17:39:11 +02:00
|
|
|
{
|
|
|
|
$confluence = $daux->getParams()['confluence'];
|
|
|
|
|
|
|
|
$this->prefix = trim($confluence['prefix']) . " ";
|
|
|
|
|
|
|
|
$params = $daux->getParams();
|
|
|
|
|
2015-07-14 22:06:01 +02:00
|
|
|
$tree = $this->runAction(
|
|
|
|
"Generating Tree ...",
|
|
|
|
$output,
|
|
|
|
$width,
|
|
|
|
function() use ($daux, $params) {
|
|
|
|
$tree = $this->generateRecursive($daux->tree, $params);
|
|
|
|
$tree['title'] = $this->prefix . $daux->getParams()['title'];
|
|
|
|
|
|
|
|
return $tree;
|
|
|
|
}
|
|
|
|
);
|
|
|
|
|
|
|
|
$output->writeln("Start Publishing...");
|
2015-05-21 17:39:11 +02:00
|
|
|
|
2015-05-22 14:48:09 +02:00
|
|
|
$publisher = new Publisher($confluence);
|
2015-07-14 22:06:01 +02:00
|
|
|
$publisher->output = $output;
|
|
|
|
$publisher->width = $width;
|
2015-05-22 14:48:09 +02:00
|
|
|
$publisher->publish($tree);
|
2015-05-21 17:39:11 +02:00
|
|
|
}
|
|
|
|
|
2015-07-18 01:10:40 +02:00
|
|
|
private function generateRecursive(Directory $tree, Config $params, $base_url = '')
|
2015-05-21 17:39:11 +02:00
|
|
|
{
|
|
|
|
$final = ['title' => $this->prefix . $tree->getTitle()];
|
|
|
|
$params['base_url'] = $params['base_page'] = $base_url;
|
|
|
|
|
|
|
|
$params['image'] = str_replace('<base_url>', $base_url, $params['image']);
|
|
|
|
if ($base_url !== '') {
|
|
|
|
$params['entry_page'] = $tree->getFirstPage();
|
|
|
|
}
|
2015-07-18 14:37:18 +02:00
|
|
|
foreach ($tree->getEntries() as $key => $node) {
|
2015-05-21 17:39:11 +02:00
|
|
|
if ($node instanceof Directory) {
|
2015-05-22 14:48:09 +02:00
|
|
|
$final['children'][$this->prefix . $node->getTitle()] = $this->generateRecursive(
|
|
|
|
$node,
|
|
|
|
$params,
|
|
|
|
'../' . $base_url
|
|
|
|
);
|
|
|
|
} elseif ($node instanceof Content) {
|
2015-05-21 17:39:11 +02:00
|
|
|
$params['request'] = $node->getUrl();
|
|
|
|
$params['file_uri'] = $node->getName();
|
|
|
|
|
|
|
|
$data = [
|
|
|
|
'title' => $this->prefix . $node->getTitle(),
|
|
|
|
'file' => $node,
|
|
|
|
'page' => MarkdownPage::fromFile($node, $params),
|
|
|
|
];
|
|
|
|
|
2015-05-22 14:48:09 +02:00
|
|
|
// As the page is lazily generated
|
|
|
|
// We do it now to fail fast in case of problem
|
|
|
|
$data['page']->getContent();
|
|
|
|
|
2015-05-21 17:39:11 +02:00
|
|
|
if ($key == 'index.html') {
|
|
|
|
$final['title'] = $this->prefix . $tree->getTitle();
|
|
|
|
$final['file'] = $node;
|
|
|
|
$final['page'] = $data['page'];
|
|
|
|
} else {
|
|
|
|
$final['children'][$data['title']] = $data;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return $final;
|
|
|
|
}
|
|
|
|
}
|