]>
git.r.bdr.sh - rbdr/blog/blob - lib/blog.js
8ae3e21a28884f1b091b1f3e4d221d0543481cf8
3 const { access
, mkdir
, readdir
, readFile
, rm
, writeFile
} = require('fs/promises');
4 const { exec
} = require('child_process');
5 const { ncp
} = require('ncp');
6 const { join
} = require('path');
7 const ParseGemini
= require('gemini-to-html/parse');
8 const RenderGemini
= require('gemini-to-html/render');
9 const { debuglog
, promisify
} = require('util');
11 // Generators for the Blog
13 const StaticGenerator
= require('./generators/static');
14 const HTMLGenerator
= require('./generators/html');
15 const RSSGenerator
= require('./generators/rss');
16 const TXTGenerator
= require('./generators/txt');
20 const GemlogArchiver
= require('./archivers/gemlog');
24 // Promisified functions
25 exec: promisify(exec
),
28 debuglog: debuglog('blog'),
32 kFileNotFoundError: 'ENOENT',
34 kMetadataFilename: 'metadata.json',
39 geminiNotFound: 'Gemini file was not found in blog directory. Please update.'
44 * The Blog class is the blog generator, it's in charge of adding and
45 * updating posts, and handling the publishing.
48 * @param {Blog.tConfiguration} config the initialization options to
51 module
.exports
= class Blog
{
55 Object
.assign(this, config
);
59 * Shifts the blog posts, adds the passed path to slot 0, and
64 * @param {string} postLocation the path to the directory containing
66 * @return {Promise<undefined>} empty promise, returns no value
69 async
add(postLocation
) {
71 await
this._ensurePostsDirectoryExists();
73 await
mkdir(join(this.postsDirectory
, '0'));
74 await
this.update(postLocation
);
78 * Adds the passed path to slot 0, and generates files.
82 * @param {string} postLocation the path to the directory containing
84 * @return {Promise<undefined>} empty promise, returns no value
87 async
update(postLocation
) {
89 const metadata
= await
this._getMetadata();
90 await
this._ensurePostsDirectoryExists();
91 await
this._copyPost(postLocation
);
92 await
this._writeMetadata(metadata
);
94 await
this._archive(postLocation
);
96 await
this.generate();
100 * Publishes the files to a static host.
104 * @return {Promise<undefined>} empty promise, returns no value
107 async
publish(bucket
) {
109 internals
.debuglog(`Publishing to ${bucket}`);
111 await internals
.exec('which aws');
114 console
.error('Please install and configure AWS CLI to publish.');
118 await internals
.exec(`aws s3 sync --acl public-read --delete ${this.staticDirectory} s3://${bucket}`);
119 await internals
.exec(`aws s3 cp --content-type 'text/plain; charset=utf-8 ' --acl public-read ${this.staticDirectory}/index.txt s3://${bucket}`);
122 console
.error('Failed to publish');
123 console
.error(err
.stderr
);
126 internals
.debuglog('Finished publishing');
129 // Parses Gemini for each page, copies assets and generates index.
133 internals
.debuglog('Generating output');
135 const posts
= await
this._readPosts();
137 await
StaticGenerator(this.postsDirectory
, this.staticDirectory
, posts
);
138 await
HTMLGenerator(this.templatesDirectory
, this.staticDirectory
, posts
);
139 await
RSSGenerator(this.templatesDirectory
, this.staticDirectory
, posts
);
140 await
TXTGenerator(this.templatesDirectory
, this.staticDirectory
, posts
);
142 await
GemlogArchiver(this.archiveDirectory
);
145 // Reads the posts into an array
149 internals
.debuglog('Reading posts');
152 for (let i
= 0; i
< this.maxPosts
; ++i
) {
154 posts
.push(await
this._readPost(i
));
157 if (error
.code
=== internals
.kFileNotFoundError
) {
158 internals
.debuglog(`Skipping ${i}`);
169 // Reads an individual post
171 async
_readPost(index
=0) {
172 const postSourcePath
= join(this.postsDirectory
, `${index}`);
174 internals
.debuglog(`Reading ${postSourcePath}`);
176 await
access(postSourcePath
);
178 const metadata
= await
this._getMetadata(index
);
180 const postContentPath
= await
this._findBlogContent(postSourcePath
);
181 internals
.debuglog(`Reading ${postContentPath}`);
182 const postContent
= await
readFile(postContentPath
, { encoding: 'utf8' });
184 internals
.debuglog('Parsing Gemini');
187 location: postSourcePath
,
189 html: RenderGemini(ParseGemini(postContent
)),
194 // Shift the posts, delete any remainder.
199 for (let i
= this.maxPosts
- 1; i
>= 0; --i
) {
200 const targetPath
= join(this.postsDirectory
, `${i}`);
201 const sourcePath
= join(this.postsDirectory
, `${i - 1}`);
204 internals
.debuglog(`Archiving ${targetPath}`);
205 await
rm(targetPath
, { recursive: true });
207 await
access(sourcePath
); // check the source path
209 internals
.debuglog(`Shifting blog post ${sourcePath} to ${targetPath}`);
210 await internals
.ncp(sourcePath
, targetPath
);
213 if (error
.code
=== internals
.kFileNotFoundError
) {
214 internals
.debuglog(`Skipping ${sourcePath}: Does not exist.`);
223 // Moves older posts to the archive
226 internals
.debuglog('Archiving post');
227 const post
= await
this._readPost(0);
228 await
this._ensureDirectoryExists(this.archiveDirectory
);
230 const targetPath
= join(this.archiveDirectory
, post
.id
);
233 internals
.debuglog(`Removing ${targetPath}`);
234 await
rm(targetPath
, { recursive: true });
237 internals
.debuglog(`Adding ${post.location} to ${targetPath}`);
238 await internals
.ncp(post
.location
, targetPath
);
239 internals
.debuglog(`Added ${post.location} to ${targetPath}`);
243 // Attempts to read existing metadata. Otherwise generates new set.
245 async
_getMetadata(index
= 0) {
247 const metadataTarget
= join(this.postsDirectory
, String(index
), internals
.kMetadataFilename
);
250 internals
.debuglog(`Looking for metadata at ${metadataTarget}`);
251 return JSON
.parse(await
readFile(metadataTarget
, { encoding: 'utf8' }));
254 internals
.debuglog(`Metadata not found or unreadable. Generating new set.`);
255 const createdOn
= Date
.now();
257 id: String(createdOn
),
265 // Writes metadata. Assumes post 0 since it only gets written
268 async
_writeMetadata(metadata
) {
270 const metadataTarget
= join(this.postsDirectory
, '0', internals
.kMetadataFilename
);
271 internals
.debuglog(`Writing ${metadataTarget}`);
272 await
writeFile(metadataTarget
, JSON
.stringify(metadata
, null, 2));
275 // Copies a post directory to the latest slot.
277 async
_copyPost(postLocation
) {
279 const targetPath
= join(this.postsDirectory
, '0');
281 internals
.debuglog(`Removing ${targetPath}`);
282 await
rm(targetPath
, { recursive: true });
284 internals
.debuglog(`Adding ${postLocation} to ${targetPath}`);
285 await internals
.ncp(postLocation
, targetPath
);
288 // Ensures a directory exists.
290 async
_ensureDirectoryExists(directory
) {
292 internals
.debuglog(`Checking if ${directory} exists.`);
294 await
access(directory
);
297 if (error
.code
=== internals
.kFileNotFoundError
) {
298 internals
.debuglog('Creating posts directory');
299 await
mkdir(directory
);
307 // Ensures posts directory exists
309 async
_ensurePostsDirectoryExists() {
311 return this._ensureDirectoryExists(this.postsDirectory
);
312 internals
.debuglog(`Checking if ${this.postsDirectory} exists.`);
314 await
access(this.postsDirectory
);
317 if (error
.code
=== internals
.kFileNotFoundError
) {
318 internals
.debuglog('Creating posts directory');
319 await
mkdir(this.postsDirectory
);
327 // Looks for a `.gmi` file in the blog directory, and returns the path
329 async
_findBlogContent(directory
) {
331 const entries
= await
readdir(directory
);
333 const geminiEntries
= entries
334 .filter((entry
) => internals
.kGeminiRe
.test(entry
))
335 .map((entry
) => join(directory
, entry
));
337 if (geminiEntries
.length
> 0) {
338 internals
.debuglog(`Found gemini file: ${geminiEntries[0]}`);
339 return geminiEntries
[0];
342 throw new Error(internals
.strings
.geminiNotFound
);