-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
37 lines (31 loc) · 801 Bytes
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
const etagGenerator = require('etag')
const etagCache = {}
let etagGeneratorOptions
function check(options = {}) {
etagGeneratorOptions = options
return function(req, res, next) {
if(!['GET', 'HEAD'].includes(req.method)) return next()
if(req.url in etagCache) {
const {etag, lastModified} = etagCache[req.url]
res.etag = etag
res.set('ETag', etag)
res.set('Last-Modified', lastModified)
}
return next()
}
}
function write(req, res, route, error) {
// Add more status codes if needed
if([200].includes(res.statusCode)) {
const etag = etagGenerator(JSON.stringify(res._body), etagGeneratorOptions)
const lastModified = new Date()
etagCache[req.url] = {
etag,
lastModified
}
}
}
module.exports = {
check,
write
}