2022-05-21 15:47:50 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
declare(strict_types=1);
|
|
|
|
|
2022-05-22 08:48:26 +00:00
|
|
|
use LogseqGem\ArticleRender;
|
2022-05-22 10:46:18 +00:00
|
|
|
use LogseqGem\GemlogRender;
|
2022-05-22 08:48:26 +00:00
|
|
|
|
2022-05-21 15:47:50 +00:00
|
|
|
require __DIR__ . '/vendor/autoload.php';
|
|
|
|
|
2022-05-22 10:46:18 +00:00
|
|
|
$opts = getopt('o:t:i:', rest_index: $rest_index);
|
2022-05-21 20:21:48 +00:00
|
|
|
$rest = array_slice($argv, $rest_index);
|
2022-05-21 15:47:50 +00:00
|
|
|
|
2022-05-21 20:21:48 +00:00
|
|
|
$gemlog_input_path = $rest[0] ?? null;
|
|
|
|
$gemlog_output_path = $opts['o'] ?? null;
|
2022-05-22 10:46:18 +00:00
|
|
|
$gemlog_index_path = $opts['i'] ?? null;
|
2022-05-21 21:50:23 +00:00
|
|
|
$trim_prefix = $opts['t'] ?? null;
|
2022-05-21 15:47:50 +00:00
|
|
|
|
2022-05-21 20:21:48 +00:00
|
|
|
if (is_null($gemlog_input_path) || !file_exists($gemlog_input_path)) {
|
|
|
|
throw new \Exception('Please provide an input gemlog file listing some articles. Got: ' . $gemlog_input_path);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (is_null($gemlog_output_path) || !is_dir($gemlog_output_path)) {
|
|
|
|
throw new \Exception('Please provide a destination directory using -o');
|
|
|
|
}
|
|
|
|
|
|
|
|
$dir = dirname($gemlog_input_path);
|
|
|
|
|
|
|
|
$gemlog = new LogseqGem\GemlogParser;
|
|
|
|
$article = new LogseqGem\ArticleParser;
|
|
|
|
|
|
|
|
$gemlog->load($gemlog_input_path);
|
|
|
|
$titles = $gemlog->getTitles();
|
|
|
|
|
2022-05-22 10:46:18 +00:00
|
|
|
$gemlog_out = new GemlogRender;
|
|
|
|
|
2022-05-21 20:21:48 +00:00
|
|
|
foreach ($titles as $title) {
|
2022-05-21 21:50:23 +00:00
|
|
|
$encoded_title = str_replace('/', '%2F', $title);
|
|
|
|
$article_path = $dir . '/' . $encoded_title . '.md';
|
2022-05-21 20:21:48 +00:00
|
|
|
$article->load($article_path);
|
|
|
|
$gemtext = $article->convert();
|
|
|
|
|
|
|
|
if (!$article->isPublished() || empty($gemtext)) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2022-05-22 08:48:26 +00:00
|
|
|
if ($trim_prefix && strpos($title, $trim_prefix) === 0) {
|
|
|
|
$title = substr($title, strlen($trim_prefix));
|
2022-05-21 21:50:23 +00:00
|
|
|
}
|
|
|
|
|
2022-05-22 08:48:26 +00:00
|
|
|
$sanitized_title = $title;
|
2022-05-21 21:50:23 +00:00
|
|
|
$sanitized_title = strtolower($sanitized_title);
|
|
|
|
$sanitized_title = str_replace([' ', ','], ['-'], $sanitized_title);
|
|
|
|
$sanitized_title .= '.gmi';
|
|
|
|
|
|
|
|
$output_path = $gemlog_output_path . '/' . $sanitized_title;
|
2022-05-21 20:21:48 +00:00
|
|
|
|
2022-05-21 21:50:23 +00:00
|
|
|
echo "Writing to ", $sanitized_title, "...\n";
|
2022-05-21 20:21:48 +00:00
|
|
|
|
2022-05-22 08:48:26 +00:00
|
|
|
$render = new ArticleRender($title, $gemtext, $article->getProperties());
|
|
|
|
$output = $render->render(__DIR__ . '/templates/article.tpl');
|
2022-05-21 20:21:48 +00:00
|
|
|
|
|
|
|
file_put_contents($output_path, $output);
|
2022-05-22 10:46:18 +00:00
|
|
|
|
|
|
|
$gemlog_out->addArticle($title, $article->getProperties()['date'], 'log/' . $sanitized_title);
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($gemlog_index_path) {
|
|
|
|
echo "Writing gemlog index to ", $gemlog_index_path, "...\n";
|
|
|
|
$gemlog_index = $gemlog_out->render();
|
|
|
|
file_put_contents($gemlog_index_path, $gemlog_index);
|
2022-05-21 15:47:50 +00:00
|
|
|
}
|