rittenhop-dev/versions/5.94.2/node_modules/@tryghost/mw-api-version-mismatch/lib/mw-api-version-mismatch.js
2024-09-23 19:40:12 -04: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 versionMismatchHandlerMiddleware(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);
};
};
module.exports = versionMismatchHandler;