You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
nodebb/src/meta/cacheBuster.js

46 lines
1.2 KiB
JavaScript

'use strict';
const fs = require('fs');
const path = require('path');
const mkdirp = require('mkdirp');
const winston = require('winston');
const util = require('util');
const mkdirpAsync = util.promisify(mkdirp);
const writeFileAsync = util.promisify(fs.writeFile);
const readFileAsync = util.promisify(fs.readFile);
const filePath = path.join(__dirname, '../../build/cache-buster');
let cached;
// cache buster is an 11-character, lowercase, alphanumeric string
function generate() {
return (Math.random() * 1e18).toString(32).slice(0, 11);
}
exports.write = async function write() {
await mkdirpAsync(path.dirname(filePath));
await writeFileAsync(filePath, generate());
};
exports.read = async function read() {
if (cached) {
return cached;
}
try {
const buster = await readFileAsync(filePath, 'utf8');
if (!buster || buster.length !== 11) {
winston.warn('[cache-buster] cache buster string invalid: expected /[a-z0-9]{11}/, got `' + buster + '`');
return generate();
}
cached = buster;
return cached;
} catch (err) {
winston.warn('[cache-buster] could not read cache buster', err);
return generate();
}
};
require('../promisify')(exports);