2018-10-23 23:45:42 +08:00
|
|
|
'use strict';
|
|
|
|
|
2018-03-21 23:48:21 +08:00
|
|
|
const ONE_YEAR_IN_SECONDS = 60 * 60 * 24 * 365;
|
2019-07-03 23:15:14 +08:00
|
|
|
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
|
|
|
|
2019-07-03 23:15:14 +08:00
|
|
|
module.exports = function setCacheControlHeader ({
|
|
|
|
ttl = ONE_YEAR_IN_SECONDS,
|
|
|
|
fallbackTtl = FALLBACK_TTL,
|
|
|
|
revalidate = false
|
|
|
|
} = {}) {
|
2018-03-21 23:38:37 +08:00
|
|
|
return function setCacheControlHeaderMiddleware (req, res, next) {
|
|
|
|
if (req.method !== 'GET') {
|
|
|
|
return next();
|
|
|
|
}
|
|
|
|
|
2019-07-03 23:15:14 +08:00
|
|
|
const { mapConfigProvider = { getAffectedTables: callback => callback() } } = res.locals;
|
2018-03-21 23:38:37 +08:00
|
|
|
|
2019-07-03 23:15:14 +08:00
|
|
|
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-03 23:15:14 +08:00
|
|
|
|
2019-07-09 21:44:34 +08:00
|
|
|
if (everyAffectedTableCanBeInvalidated(affectedTables)) {
|
2019-07-03 23:15:14 +08:00
|
|
|
directives.push(`max-age=${ttl}`);
|
2019-07-04 22:24:17 +08:00
|
|
|
} else {
|
|
|
|
directives.push(`max-age=${fallbackTtl}`);
|
2019-07-03 23:15:14 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
if (revalidate) {
|
|
|
|
directives.push('must-revalidate');
|
|
|
|
}
|
2018-03-21 23:38:37 +08:00
|
|
|
|
2019-07-03 23:15:14 +08:00
|
|
|
res.set('Cache-Control', directives.join(','));
|
2018-03-21 23:38:37 +08:00
|
|
|
|
2019-07-03 23:15:14 +08:00
|
|
|
next();
|
|
|
|
});
|
2018-03-21 23:38:37 +08:00
|
|
|
};
|
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) {
|
2019-07-09 00:05:30 +08:00
|
|
|
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
|
|
|
}
|