Ghost/ghost/mw-api-version-mismatch/lib/mw-api-version-mismatch.js
Daniel Lockyer 265a8dd16f Added function names to more middleware
refs 319f251ad2

- this helps debugging because all middleware in the stack will have a
  function name, so it'll show up instead of `<anonymous>`
2024-05-06 17:51:39 +02:00

32 lines
1.1 KiB
JavaScript

const extractApiKey = require('@tryghost/extract-api-key');
const versionMismatchHandler = (APIVersionCompatibilityService) => {
/**
* @param {Object} err
* @param {import('express').Request} req
* @param {import('express').Response} res
* @param {import('express').NextFunction} next
*/
return async function versionMismatchHandlerMiddlware(err, req, res, next) {
if (err && err.errorType === 'RequestNotAcceptableError') {
if (err.code === 'UPDATE_CLIENT') {
const {key, type} = extractApiKey(req);
const requestURL = req.originalUrl.split('?').shift();
await APIVersionCompatibilityService.handleMismatch({
acceptVersion: req.headers['accept-version'],
contentVersion: `v${res.locals.safeVersion}`,
requestURL,
userAgent: req.headers['user-agent'],
apiKeyValue: key,
apiKeyType: type
});
}
}
next(err, req, res);
};
};
module.exports = versionMismatchHandler;