2015-05-21 17:39:11 +02:00
|
|
|
<?php namespace Todaymade\Daux\Format\HTML;
|
|
|
|
|
2015-07-14 22:06:01 +02:00
|
|
|
use Symfony\Component\Console\Output\OutputInterface;
|
2015-07-18 23:51:23 +02:00
|
|
|
use Todaymade\Daux\Config;
|
2015-05-21 17:39:11 +02:00
|
|
|
use Todaymade\Daux\Daux;
|
|
|
|
use Todaymade\Daux\DauxHelper;
|
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\Generator\Helper;
|
|
|
|
use Todaymade\Daux\Tree\Directory;
|
|
|
|
use Todaymade\Daux\Tree\Content;
|
|
|
|
|
|
|
|
class Generator
|
|
|
|
{
|
2015-07-14 22:06:01 +02:00
|
|
|
use RunAction;
|
|
|
|
|
|
|
|
public function generate(Daux $daux, $destination, OutputInterface $output, $width)
|
2015-05-21 17:39:11 +02:00
|
|
|
{
|
|
|
|
$params = $daux->getParams();
|
|
|
|
if (is_null($destination)) {
|
|
|
|
$destination = $daux->local_base . DS . 'static';
|
|
|
|
}
|
|
|
|
|
2015-07-14 22:06:01 +02:00
|
|
|
$this->runAction(
|
|
|
|
"Copying Static assets ...",
|
|
|
|
$output,
|
|
|
|
$width,
|
|
|
|
function() use ($destination, $daux) {
|
|
|
|
Helper::copyAssets($destination, $daux->local_base);
|
|
|
|
}
|
|
|
|
);
|
2015-05-21 17:39:11 +02:00
|
|
|
|
2015-07-14 22:06:01 +02:00
|
|
|
$output->writeLn("Generating ...");
|
|
|
|
$this->generateRecursive($daux->tree, $destination, $params, $output, $width);
|
2015-05-21 17:39:11 +02:00
|
|
|
}
|
|
|
|
|
2015-07-18 23:51:23 +02:00
|
|
|
private function rebaseConfig(Config $config, $base_url)
|
|
|
|
{
|
|
|
|
// Avoid changing the url if it is already correct
|
|
|
|
if ($config['base_url'] == $base_url && !empty($config['theme']) && !is_string($config['theme'])) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Change base url for all links on the pages
|
|
|
|
$config['base_url'] = $config['base_page'] = $base_url;
|
|
|
|
$config['theme'] = DauxHelper::getTheme($config, $base_url);
|
|
|
|
$config['image'] = str_replace('<base_url>', $base_url, $config['image']);
|
|
|
|
}
|
|
|
|
|
2015-07-17 23:38:06 +02:00
|
|
|
/**
|
|
|
|
* Recursively generate the documentation
|
|
|
|
*
|
2015-07-18 01:10:40 +02:00
|
|
|
* @param Directory $tree
|
2015-07-17 23:38:06 +02:00
|
|
|
* @param string $output_dir
|
|
|
|
* @param \Todaymade\Daux\Config $params
|
|
|
|
* @param OutputInterface $output
|
|
|
|
* @param integer $width
|
|
|
|
* @param string $base_url
|
|
|
|
* @throws \Exception
|
|
|
|
*/
|
2015-07-18 01:10:40 +02:00
|
|
|
private function generateRecursive(Directory $tree, $output_dir, $params, $output, $width, $base_url = '')
|
2015-05-21 17:39:11 +02:00
|
|
|
{
|
2015-07-18 23:51:23 +02:00
|
|
|
$this->rebaseConfig($params, $base_url);
|
2015-05-21 17:39:11 +02:00
|
|
|
|
2015-06-30 15:50:42 +02:00
|
|
|
if ($base_url !== '' && empty($params['entry_page'])) {
|
2015-05-21 17:39:11 +02:00
|
|
|
$params['entry_page'] = $tree->getFirstPage();
|
|
|
|
}
|
2015-07-18 23:51:23 +02:00
|
|
|
|
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) {
|
|
|
|
$new_output_dir = $output_dir . DS . $key;
|
2015-07-17 23:38:06 +02:00
|
|
|
mkdir($new_output_dir);
|
2015-07-14 22:06:01 +02:00
|
|
|
$this->generateRecursive($node, $new_output_dir, $params, $output, $width, '../' . $base_url);
|
2015-07-18 23:51:23 +02:00
|
|
|
|
|
|
|
// Rebase configuration again as $params is a shared object
|
|
|
|
$this->rebaseConfig($params, $base_url);
|
2015-05-21 17:39:11 +02:00
|
|
|
} elseif ($node instanceof Content) {
|
2015-07-14 22:06:01 +02:00
|
|
|
$this->runAction(
|
|
|
|
"- " . $node->getUrl(),
|
|
|
|
$output,
|
|
|
|
$width,
|
|
|
|
function() use ($node, $output_dir, $key, $params) {
|
|
|
|
$params['request'] = $node->getUrl();
|
|
|
|
$params['file_uri'] = $node->getName();
|
2015-05-21 17:39:11 +02:00
|
|
|
|
2015-07-14 22:06:01 +02:00
|
|
|
$page = MarkdownPage::fromFile($node, $params);
|
|
|
|
file_put_contents($output_dir . DS . $key, $page->getContent());
|
|
|
|
}
|
|
|
|
);
|
2015-05-21 17:39:11 +02:00
|
|
|
} else {
|
2015-07-14 22:06:01 +02:00
|
|
|
$this->runAction(
|
|
|
|
"- " . $node->getUrl(),
|
|
|
|
$output,
|
|
|
|
$width,
|
|
|
|
function() use ($node, $output_dir, $key) {
|
|
|
|
copy($node->getPath(), $output_dir . DS . $key);
|
|
|
|
}
|
|
|
|
);
|
2015-05-21 17:39:11 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|