-'use strict';
-
-const { access, cp } = require('fs/promises');
-const { join } = require('path');
-const { debuglog } = require('util');
-const { rmIfExists } = require('../utils');
-const { kFileNotFoundError } = require('../constants');
+import { access, cp, readdir } from 'fs/promises';
+import { constants } from 'fs';
+import { join } from 'path';
+import { debuglog } from 'util';
+import { kFileNotFoundError } from '../constants.js';
const internals = {
debuglog: debuglog('blog'),
* @param {string} target the target directory
* @param {Array.<Blog.tPost>} posts the list of posts
*/
-module.exports = async function StaticGenerator(source, target, posts) {
-
- const assetsTarget = join(target, internals.kAssetsDirectoryName);
-
- internals.debuglog(`Removing ${assetsTarget}`);
- await rmIfExists(assetsTarget);
+export default async function StaticGenerator(source, target, _) {
- for (let i = 0; i < posts.length; ++i) {
- const postSourcePath = join(source, `${i}`);
+ try {
+ await access(source, constants.R_OK);
- try {
- await access(postSourcePath);
+ const entries = await readdir(source, { withFileTypes: true });
+ for (const entry of entries) {
+ const sourceAsset = join(source, entry.name);
+ const targetAsset = join(target, entry.name);
- const assetsSource = join(postSourcePath, internals.kAssetsDirectoryName);
+ internals.debuglog(`Copying ${sourceAsset} to ${targetAsset}`);
- internals.debuglog(`Copying ${assetsSource} to ${assetsTarget}`);
- await cp(assetsSource, assetsTarget, { recursive: true });
- }
- catch (error) {
- if (error.code === kFileNotFoundError) {
- internals.debuglog(`Skipping ${i}`);
- continue;
+ if (entry.isDirectory()) {
+ await cp(sourceAsset, targetAsset, { recursive: true });
+ }
+ else {
+ await cp(sourceAsset, targetAsset);
}
-
- throw error;
}
}
-};
+ catch (error) {
+ if (error.code === kFileNotFoundError) {
+ internals.debuglog(`No static directory found in ${source}`);
+ return;
+ }
+
+ throw error;
+ }
+}