1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
|
import { access, cp, readdir, readFile, writeFile } from 'fs/promises';
import { exec } from 'child_process';
import { basename, join } from 'path';
import ParseGemini from 'gemini-to-html/parse.js';
import RenderGemini from 'gemini-to-html/render.js';
import { debuglog, promisify } from 'util';
import { ensureDirectoryExists, rmIfExists } from './utils.js';
import { kFileNotFoundError } from './constants.js';
// Generators for the Blog
import StaticGenerator from './generators/static.js';
import HTMLGenerator from './generators/html.js';
import RSSGenerator from './generators/rss.js';
import TXTGenerator from './generators/txt.js';
// Archiving Methods
import GemlogArchiver from './archivers/gemlog.js';
// Remote Handler
import Remote from './remote.js';
const internals = {
// Promisified functions
exec: promisify(exec),
debuglog: debuglog('blog'),
// constants
kGeminiRe: /\.gmi$/i,
kMetadataFilename: 'metadata.json',
// Strings
strings: {
geminiNotFound: 'Gemini file was not found in blog directory. Please update.'
}
};
/**
* The Blog class is the blog generator, it's in charge of adding and
* updating posts, and handling the publishing.
*
* @class Blog
* @param {Blog.tConfiguration} config the initialization options to
* extend the instance
*/
export default class Blog {
constructor(config) {
Object.assign(this, config);
}
/**
* Shifts the blog posts, adds the passed file to slot 0, and
* generates files.
*
* @function add
* @memberof Blog
* @param {string} postLocation the path to the blog post file
* @return {Promise<undefined>} empty promise, returns no value
* @instance
*/
async add(postLocation) {
await ensureDirectoryExists(this.postsDirectory);
try {
await this.syncDown();
}
catch {}
await this._shift();
const firstDirectory = join(this.postsDirectory, '0');
await rmIfExists(firstDirectory);
await ensureDirectoryExists(firstDirectory);
await this._update(postLocation);
}
/**
* Update slot 0 with the passed gmi file, and generates files.
*
* @function update
* @memberof Blog
* @param {string} postLocation the path to the blog post file
* @return {Promise<undefined>} empty promise, returns no value
* @instance
*/
async update(postLocation) {
try {
await this.syncDown();
}
catch {}
await this._update(postLocation);
}
/**
* Publishes the files to a static host.
*
* @function publish
* @memberof Blog
* @return {Promise<undefined>} empty promise, returns no value
* @instance
*/
async publish(host) {
internals.debuglog(`Publishing to ${host}`);
try {
await internals.exec('which rsync');
}
catch (err) {
console.error('Please install and configure rsync to publish.');
}
try {
internals.debuglog(`Copying ephemeral blog from ${this.blogOutputDirectory}`);
await internals.exec(`rsync -r ${this.blogOutputDirectory}/ ${host}`);
}
catch (err) {
console.error('Failed to publish');
console.error(err.stderr);
}
internals.debuglog('Finished publishing');
}
/**
* Publishes the archive to a host using rsync. Currently assumes
* gemlog archive.
*
* @function publishArchive
* @memberof Blog
* @return {Promise<undefined>} empty promise, returns no value
* @instance
*/
async publishArchive(host) {
internals.debuglog(`Publishing archive to ${host}`);
try {
await internals.exec('which rsync');
}
catch (err) {
console.error('Please install rsync to publish the archive.');
}
try {
internals.debuglog(`Copying archive from ${this.archiveOutputDirectory}`);
await internals.exec(`rsync -r ${this.archiveOutputDirectory}/ ${host}`);
}
catch (err) {
console.error('Failed to publish archive');
console.error(err.stderr);
}
internals.debuglog('Finished publishing');
}
/**
* Adds a remote
*
* @function addRemote
* @memberof Blog
* @return {Promise<undefined>} empty promise, returns no value
* @instance
*/
async addRemote(remote) {
await ensureDirectoryExists(this.configDirectory);
await Remote.add(this.remoteConfig, remote);
}
/**
* Removes a remote
*
* @function removeRemote
* @memberof Blog
* @return {Promise<undefined>} empty promise, returns no value
* @instance
*/
async removeRemote() {
await Remote.remove(this.remoteConfig);
}
/**
* Pulls the posts and archive from the remote
*
* @function syncDown
* @memberof Blog
* @return {Promise<undefined>} empty promise, returns no value
* @instance
*/
async syncDown() {
internals.debuglog('Pulling remote state');
await ensureDirectoryExists(this.dataDirectory);
await Remote.syncDown(this.remoteConfig, this.dataDirectory);
internals.debuglog('Pulled remote state');
}
/**
* Pushes the posts and archive to the remote
*
* @function syncUp
* @memberof Blog
* @return {Promise<undefined>} empty promise, returns no value
* @instance
*/
async syncUp() {
internals.debuglog('Pushing remote state');
await ensureDirectoryExists(this.dataDirectory);
await Remote.syncUp(this.remoteConfig, this.dataDirectory);
internals.debuglog('Pushed remote state');
}
// Adds the passed path to slot 0, and generates files.
async _update(postLocation) {
const metadata = await this._getMetadata();
await ensureDirectoryExists(this.postsDirectory);
await this._copyPost(postLocation);
await this._writeMetadata(metadata);
await this._archive(postLocation);
await this.generate();
try {
await this.syncUp();
}
catch {}
}
// Parses Gemini for each page, copies assets and generates index.
async generate() {
internals.debuglog('Generating output');
const posts = await this._readPosts();
// Start from a clean slate.
await rmIfExists(this.blogOutputDirectory);
await ensureDirectoryExists(this.blogOutputDirectory);
// Run each generator
await StaticGenerator(this.staticDirectory, this.blogOutputDirectory, posts);
await HTMLGenerator(await this._templateDirectoryFor('index.html'), this.blogOutputDirectory, posts);
await RSSGenerator(await this._templateDirectoryFor('feed.xml'), this.blogOutputDirectory, posts);
await TXTGenerator(await this._templateDirectoryFor('index.txt'), this.blogOutputDirectory, posts);
// Start from a clean slate.
await rmIfExists(this.archiveOutputDirectory);
await ensureDirectoryExists(this.archiveOutputDirectory);
await ensureDirectoryExists(this.archiveDirectory);
// Run each archiver
await GemlogArchiver(await this._templateDirectoryFor('index.gmi'), this.archiveDirectory, this.archiveOutputDirectory);
// TODO: GopherArchiver
}
// Reads the posts into an array
async _readPosts() {
internals.debuglog('Reading posts');
const posts = [];
for (let i = 0; i < this.maxPosts; ++i) {
try {
posts.push(await this._readPost(i));
}
catch (error) {
if (error.code === kFileNotFoundError) {
internals.debuglog(`Skipping ${i}`);
continue;
}
throw error;
}
}
return posts;
}
// Reads an individual post
async _readPost(index = 0) {
const postSourcePath = join(this.postsDirectory, `${index}`);
internals.debuglog(`Reading ${postSourcePath}`);
await access(postSourcePath);
const metadata = await this._getMetadata(index);
const postContentPath = await this._findBlogContent(postSourcePath);
internals.debuglog(`Reading ${postContentPath}`);
const postContent = await readFile(postContentPath, { encoding: 'utf8' });
internals.debuglog('Parsing Gemini');
return {
...metadata,
location: postSourcePath,
index,
html: RenderGemini(ParseGemini(postContent)),
raw: postContent
};
}
// Shift the posts, delete any remainder.
async _shift() {
for (let i = this.maxPosts - 1; i >= 1; --i) {
const targetPath = join(this.postsDirectory, `${i}`);
const sourcePath = join(this.postsDirectory, `${i - 1}`);
try {
internals.debuglog(`Archiving ${targetPath}`);
await rmIfExists(targetPath);
await access(sourcePath); // check the source path
internals.debuglog(`Shifting blog post ${sourcePath} to ${targetPath}`);
await cp(sourcePath, targetPath, { recursive: true });
}
catch (error) {
if (error.code === kFileNotFoundError) {
internals.debuglog(`Skipping ${sourcePath}: Does not exist.`);
continue;
}
throw error;
}
}
}
// Moves older posts to the archive
async _archive() {
internals.debuglog('Archiving post');
const post = await this._readPost(0);
await ensureDirectoryExists(this.archiveDirectory);
const targetPath = join(this.archiveDirectory, post.id);
internals.debuglog(`Removing ${targetPath}`);
await rmIfExists(targetPath);
internals.debuglog(`Adding ${post.location} to ${targetPath}`);
await ensureDirectoryExists(targetPath);
await cp(post.location, targetPath, { recursive: true });
internals.debuglog(`Added ${post.location} to ${targetPath}`);
}
// Attempts to read existing metadata. Otherwise generates new set.
async _getMetadata(index = 0) {
const metadataTarget = join(this.postsDirectory, String(index), internals.kMetadataFilename);
try {
internals.debuglog(`Looking for metadata at ${metadataTarget}`);
return JSON.parse(await readFile(metadataTarget, { encoding: 'utf8' }));
}
catch (e) {
internals.debuglog(`Metadata not found or unreadable. Generating new set.`);
const createdOn = Date.now();
const metadata = {
id: String(createdOn),
createdOn
};
return metadata;
}
}
// Writes metadata. Assumes post 0 since it only gets written
// on create
async _writeMetadata(metadata) {
const metadataTarget = join(this.postsDirectory, '0', internals.kMetadataFilename);
internals.debuglog(`Writing ${metadataTarget}`);
await writeFile(metadataTarget, JSON.stringify(metadata, null, 2));
}
// Copies a post file to the latest slot.
async _copyPost(postLocation) {
internals.debuglog(`Copying ${postLocation}`);
const targetPath = join(this.postsDirectory, '0');
const postName = basename(postLocation);
const targetPost = join(targetPath, postName);
await rmIfExists(targetPath);
await ensureDirectoryExists(targetPath);
await cp(postLocation, targetPost, { recursive: true });
internals.debuglog(`Added ${postLocation} to ${targetPath}`);
}
// Looks for a `.gmi` file in the blog directory, and returns the path
async _findBlogContent(directory) {
const entries = await readdir(directory);
const geminiEntries = entries
.filter((entry) => internals.kGeminiRe.test(entry))
.map((entry) => join(directory, entry));
if (geminiEntries.length > 0) {
internals.debuglog(`Found gemini file: ${geminiEntries[0]}`);
return geminiEntries[0];
}
throw new Error(internals.strings.geminiNotFound);
}
// Gets the template directory for a given template.
async _templateDirectoryFor(template) {
try {
await access(join(this.templatesDirectory, template));
return this.templatesDirectory;
}
catch (error) {
if (error.code === kFileNotFoundError) {
internals.debuglog(`No custom template for ${template}`);
return this.defaultTemplatesDirectory;
}
throw error;
}
}
}
|