name-suggestion-index/lib/write_file_with_meta.js
Bryan Housel 1c4fc70e3b WIP Modernize
- switch to type: module
- replace all CJS require/module.exports with ES6 import/expor
2021-06-22 00:04:52 -04:00

42 lines
1.4 KiB
JavaScript

import crypto from 'node:crypto';
import fs from 'node:fs';
import JSON5 from 'json5';
const packageJSON = JSON.parse(fs.readFileSync('./package.json', 'utf8'));
const URLRoot = 'https://raw.githubusercontent.com/osmlab/name-suggestion-index/main';
//
// This function is used to write files (probably to `/dist`)
// but with a block of metadata prepended to the beginning of the file.
//
// Accepts the same arguments that you'd pass to `fs.writeFileSync`
// `file` = the path to the file
// `contents` = should be stringified json containing an object {}
//
export function writeFileWithMeta(file, contents) {
// Load the previous file
let previous = { _meta: { } };
try {
const contents = fs.readFileSync(file, 'utf8');
previous = JSON5.parse(contents);
} catch (err) { /* ignore */ }
// Calculate md5 of new contents
const message = packageJSON.version + contents;
const hash = crypto.createHash('md5').update(message).digest('hex');
const now = new Date();
// If file has changed (or never existed), write a new one with metadata
if (previous._meta.hash !== hash) {
const meta = `
"_meta": {
"version": "${packageJSON.version}",
"generated": ${JSON.stringify(now)},
"url": "${URLRoot}/${file}",
"hash": "${hash}"
},`;
// Stick metadata at the beginning of the file in the most hacky way possible
fs.writeFileSync(file, contents.replace(/^\{/, '{' + meta));
}
}