-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathreq_app.js
30 lines (27 loc) · 887 Bytes
/
req_app.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
var url = require('url');
var fs = require('fs');
var zlib = require('zlib');
var app_http = require('./app_http');
var html, ghtml, etag;
exports.init = function(cb) {
fs.readFile('app.html', 'utf8', function(err, file) {
if (err) throw err;
html = new Buffer(file.replace(/FB_APP_ID/g, process.env.FB_APP_ID), 'utf8');
etag = app_http.etag(html);
zlib.gzip(html, function(err, result) {
if (err) throw err;
ghtml = result;
cb();
});
});
};
exports.handle = function(req, res) {
if (req.headers['if-none-match'] === etag) {
return app_http.replyNotModified(res);
}
if (req.headers['accept-encoding'] !== undefined &&
req.headers['accept-encoding'].indexOf('gzip') !== -1) {
return app_http.replyCached(res, ghtml, 'text/html', etag, 'gzip');
}
app_http.replyCached(res, html, 'text/html', etag);
};