Ghost/core/server/web/api/middleware/version-match.js
Ozan Uslan d1b7055af5 Replaced i18n.t w/ tpl in version-match middleware
refs: TryGhost#13380

- The i18n package is deprecated. It is being replaced with the tpl package.
2021-10-04 15:32:53 +01:00

32 lines
1.1 KiB
JavaScript

const semver = require('semver');
const errors = require('@tryghost/errors');
const tpl = require('@tryghost/tpl');
const messages = {
versionMismatch: 'Client request for {clientVersion} does not match server version {serverVersion}.'
};
function checkVersionMatch(req, res, next) {
const clientVersion = req.get('X-Ghost-Version');
// can contain pre-release suffix, you should be able to use e.g. 1.19.0-pre [server] with 1.18.0 [client]
const serverVersion = res.locals.version.match(/^(\d+\.)?(\d+\.)?(\d+)/)[0];
const constraint = '^' + clientVersion + '.0';
// no error when client is on an earlier minor version than server
// error when client is on a later minor version than server
// always error when the major version is different
if (clientVersion && !semver.satisfies(serverVersion, constraint)) {
return next(new errors.VersionMismatchError({
message: tpl(messages.versionMismatch, {
clientVersion: clientVersion,
serverVersion: serverVersion
})
}));
}
next();
}
module.exports = checkVersionMatch;