126 lines
4.0 KiB
PHP
126 lines
4.0 KiB
PHP
<?php namespace Todaymade\Daux\Format\HTML;
|
|
|
|
use Symfony\Component\Console\Input\InputInterface;
|
|
use Symfony\Component\Console\Output\OutputInterface;
|
|
use Todaymade\Daux\Config;
|
|
use Todaymade\Daux\Console\RunAction;
|
|
use Todaymade\Daux\Daux;
|
|
use Todaymade\Daux\DauxHelper;
|
|
use Todaymade\Daux\Format\Base\CommonMark\CommonMarkConverter;
|
|
use Todaymade\Daux\Format\Base\ContentTypes\ContentTypeHandler;
|
|
use Todaymade\Daux\Format\Base\LiveGenerator;
|
|
use Todaymade\Daux\GeneratorHelper;
|
|
use Todaymade\Daux\Tree\Content;
|
|
use Todaymade\Daux\Tree\Directory;
|
|
use Todaymade\Daux\Tree\Entry;
|
|
use Todaymade\Daux\Tree\Raw;
|
|
|
|
class Generator implements \Todaymade\Daux\Format\Base\Generator, LiveGenerator
|
|
{
|
|
use RunAction;
|
|
|
|
/** @var Daux */
|
|
protected $daux;
|
|
|
|
/**
|
|
* @param Daux $daux
|
|
*/
|
|
public function __construct(Daux $daux)
|
|
{
|
|
$this->daux = $daux;
|
|
}
|
|
|
|
/**
|
|
* @return array
|
|
*/
|
|
public function getContentTypes()
|
|
{
|
|
return [
|
|
new \Todaymade\Daux\Format\Base\ContentTypes\Markdown\ContentType($this->daux->getParams())
|
|
];
|
|
}
|
|
|
|
public function generateAll(InputInterface $input, OutputInterface $output, $width)
|
|
{
|
|
$destination = $input->getOption('destination');
|
|
|
|
$params = $this->daux->getParams();
|
|
if (is_null($destination)) {
|
|
$destination = $this->daux->local_base . DIRECTORY_SEPARATOR . 'static';
|
|
}
|
|
|
|
$this->runAction(
|
|
"Copying Static assets ...",
|
|
$output,
|
|
$width,
|
|
function() use ($destination) {
|
|
GeneratorHelper::copyAssets($destination, $this->daux->local_base);
|
|
}
|
|
);
|
|
|
|
$output->writeLn("Generating ...");
|
|
$this->generateRecursive($this->daux->tree, $destination, $params, $output, $width);
|
|
}
|
|
|
|
/**
|
|
* Recursively generate the documentation
|
|
*
|
|
* @param Directory $tree
|
|
* @param string $output_dir
|
|
* @param \Todaymade\Daux\Config $params
|
|
* @param OutputInterface $output
|
|
* @param integer $width
|
|
* @param string $base_url
|
|
* @throws \Exception
|
|
*/
|
|
private function generateRecursive(Directory $tree, $output_dir, $params, $output, $width, $base_url = '')
|
|
{
|
|
DauxHelper::rebaseConfiguration($params, $base_url);
|
|
|
|
if ($base_url !== '' && empty($params['entry_page'])) {
|
|
$params['entry_page'] = $tree->getFirstPage();
|
|
}
|
|
|
|
foreach ($tree->getEntries() as $key => $node) {
|
|
if ($node instanceof Directory) {
|
|
$new_output_dir = $output_dir . DIRECTORY_SEPARATOR . $key;
|
|
mkdir($new_output_dir);
|
|
$this->generateRecursive($node, $new_output_dir, $params, $output, $width, '../' . $base_url);
|
|
|
|
// Rebase configuration again as $params is a shared object
|
|
DauxHelper::rebaseConfiguration($params, $base_url);
|
|
} else {
|
|
$this->runAction(
|
|
"- " . $node->getUrl(),
|
|
$output,
|
|
$width,
|
|
function() use ($node, $output_dir, $key, $params) {
|
|
if (!$node instanceof Content) {
|
|
copy($node->getPath(), $output_dir . DIRECTORY_SEPARATOR . $key);
|
|
return;
|
|
}
|
|
|
|
$generated = $this->generateOne($node, $params);
|
|
file_put_contents($output_dir . DIRECTORY_SEPARATOR . $key, $generated->getContent());
|
|
}
|
|
);
|
|
}
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @param Entry $node
|
|
* @param Config $params
|
|
* @return \Todaymade\Daux\Format\Base\Page
|
|
*/
|
|
public function generateOne(Entry $node, Config $params)
|
|
{
|
|
if ($node instanceof Raw) {
|
|
return new RawPage($node->getPath());
|
|
}
|
|
|
|
$params['request'] = $node->getUrl();
|
|
return ContentPage::fromFile($node, $params, $this->daux->getContentTypeHandler()->getType($node));
|
|
}
|
|
}
|