Windshaft-cartodb/lib/api/middlewares/cache-control-header.js

52 lines
1.6 KiB
JavaScript
Raw Normal View History

'use strict';
2018-03-21 23:48:21 +08:00
const ONE_YEAR_IN_SECONDS = 60 * 60 * 24 * 365;
const FIVE_MINUTES_IN_SECONDS = 60 * 5;
2019-07-03 23:16:09 +08:00
const FALLBACK_TTL = global.environment.varnish.fallbackTtl || FIVE_MINUTES_IN_SECONDS;
2018-03-21 23:48:21 +08:00
module.exports = function setCacheControlHeader ({
ttl = ONE_YEAR_IN_SECONDS,
fallbackTtl = FALLBACK_TTL,
revalidate = false
} = {}) {
return function setCacheControlHeaderMiddleware (req, res, next) {
if (req.method !== 'GET') {
return next();
}
const { mapConfigProvider = { getAffectedTables: callback => callback() } } = res.locals;
mapConfigProvider.getAffectedTables((err, affectedTables) => {
if (err) {
global.logger.warn('ERROR generating Cache Control Header:', err);
return next();
}
2019-07-03 23:16:09 +08:00
const directives = [ 'public' ];
2019-07-09 21:44:34 +08:00
if (everyAffectedTableCanBeInvalidated(affectedTables)) {
directives.push(`max-age=${ttl}`);
2019-07-04 22:24:17 +08:00
} else {
directives.push(`max-age=${fallbackTtl}`);
}
if (revalidate) {
directives.push('must-revalidate');
}
res.set('Cache-Control', directives.join(','));
next();
});
};
2018-03-21 23:43:34 +08:00
};
2019-07-04 21:58:39 +08:00
2019-07-09 21:44:34 +08:00
function everyAffectedTableCanBeInvalidated (affectedTables) {
const skipNotUpdatedAtTables = false;
const skipAnalysisCachedTables = true;
return affectedTables &&
affectedTables.getTables(skipNotUpdatedAtTables, skipAnalysisCachedTables)
.every(table => table.updated_at !== null);
2019-07-04 21:58:39 +08:00
}