-
Notifications
You must be signed in to change notification settings - Fork 245
/
node-static.js
393 lines (339 loc) · 13.4 KB
/
node-static.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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
var fs = require('fs')
, events = require('events')
, buffer = require('buffer')
, http = require('http')
, url = require('url')
, path = require('path')
, mime = require('mime')
, util = require('./node-static/util');
// Current version
var version = [0, 7, 9];
var Server = function (root, options) {
if (root && (typeof(root) === 'object')) { options = root; root = null }
// resolve() doesn't normalize (to lowercase) drive letters on Windows
this.root = path.normalize(path.resolve(root || '.'));
this.options = options || {};
this.cache = 3600;
this.defaultHeaders = {};
this.options.headers = this.options.headers || {};
this.options.indexFile = this.options.indexFile || "index.html";
if ('cache' in this.options) {
if (typeof(this.options.cache) === 'number') {
this.cache = this.options.cache;
} else if (! this.options.cache) {
this.cache = false;
}
}
if ('serverInfo' in this.options) {
this.serverInfo = this.options.serverInfo.toString();
} else {
this.serverInfo = 'node-static/' + version.join('.');
}
this.defaultHeaders['server'] = this.serverInfo;
if (this.cache !== false) {
this.defaultHeaders['cache-control'] = 'max-age=' + this.cache;
}
for (var k in this.defaultHeaders) {
this.options.headers[k] = this.options.headers[k] ||
this.defaultHeaders[k];
}
};
Server.prototype.serveDir = function (pathname, req, res, finish) {
var htmlIndex = path.join(pathname, this.options.indexFile),
that = this;
fs.stat(htmlIndex, function (e, stat) {
if (!e) {
var status = 200;
var headers = {};
var originalPathname = decodeURI(url.parse(req.url).pathname);
if (originalPathname.length && originalPathname.charAt(originalPathname.length - 1) !== '/') {
return finish(301, { 'Location': originalPathname + '/' });
} else {
that.respond(null, status, headers, [htmlIndex], stat, req, res, finish);
}
} else {
// Stream a directory of files as a single file.
fs.readFile(path.join(pathname, 'index.json'), function (e, contents) {
if (e) { return finish(404, {}) }
var index = JSON.parse(contents);
streamFiles(index.files);
});
}
});
function streamFiles(files) {
util.mstat(pathname, files, function (e, stat) {
if (e) { return finish(404, {}) }
that.respond(pathname, 200, {}, files, stat, req, res, finish);
});
}
};
Server.prototype.serveFile = function (pathname, status, headers, req, res) {
var that = this;
var promise = new(events.EventEmitter);
pathname = this.resolve(pathname);
fs.stat(pathname, function (e, stat) {
if (e) {
return promise.emit('error', e);
}
that.respond(null, status, headers, [pathname], stat, req, res, function (status, headers) {
that.finish(status, headers, req, res, promise);
});
});
return promise;
};
Server.prototype.finish = function (status, headers, req, res, promise, callback) {
var result = {
status: status,
headers: headers,
message: http.STATUS_CODES[status]
};
headers['server'] = this.serverInfo;
if (!status || status >= 400) {
if (callback) {
callback(result);
} else {
if (promise.listeners('error').length > 0) {
promise.emit('error', result);
}
else {
res.writeHead(status, headers);
res.end();
}
}
} else {
// Don't end the request here, if we're streaming;
// it's taken care of in `prototype.stream`.
if (status !== 200 || req.method !== 'GET') {
res.writeHead(status, headers);
res.end();
}
callback && callback(null, result);
promise.emit('success', result);
}
};
Server.prototype.servePath = function (pathname, status, headers, req, res, finish) {
var that = this,
promise = new(events.EventEmitter);
pathname = this.resolve(pathname);
// Make sure we're not trying to access a
// file outside of the root.
if (pathname.indexOf(that.root) === 0) {
fs.stat(pathname, function (e, stat) {
if (e) {
finish(404, {});
} else if (stat.isFile()) { // Stream a single file.
that.respond(null, status, headers, [pathname], stat, req, res, finish);
} else if (stat.isDirectory()) { // Stream a directory of files.
that.serveDir(pathname, req, res, finish);
} else {
finish(400, {});
}
});
} else {
// Forbidden
finish(403, {});
}
return promise;
};
Server.prototype.resolve = function (pathname) {
return path.resolve(path.join(this.root, pathname));
};
Server.prototype.serve = function (req, res, callback) {
var that = this,
promise = new(events.EventEmitter),
pathname;
var finish = function (status, headers) {
that.finish(status, headers, req, res, promise, callback);
};
try {
pathname = decodeURI(url.parse(req.url).pathname);
}
catch(e) {
return process.nextTick(function() {
return finish(400, {});
});
}
process.nextTick(function () {
that.servePath(pathname, 200, {}, req, res, finish).on('success', function (result) {
promise.emit('success', result);
}).on('error', function (err) {
promise.emit('error');
});
});
if (! callback) { return promise }
};
/* Check if we should consider sending a gzip version of the file based on the
* file content type and client's Accept-Encoding header value.
*/
Server.prototype.gzipOk = function (req, contentType) {
var enable = this.options.gzip;
if(enable &&
(typeof enable === 'boolean' ||
(contentType && (enable instanceof RegExp) && enable.test(contentType)))) {
var acceptEncoding = req.headers['accept-encoding'];
return acceptEncoding && acceptEncoding.indexOf("gzip") >= 0;
}
return false;
}
/* Send a gzipped version of the file if the options and the client indicate gzip is enabled and
* we find a .gz file mathing the static resource requested.
*/
Server.prototype.respondGzip = function (pathname, status, contentType, _headers, files, stat, req, res, finish) {
var that = this;
if (files.length == 1 && this.gzipOk(req, contentType)) {
var gzFile = files[0] + ".gz";
fs.stat(gzFile, function (e, gzStat) {
if (!e && gzStat.isFile()) {
var vary = _headers['Vary'];
_headers['Vary'] = (vary && vary != 'Accept-Encoding' ? vary + ', ' : '') + 'Accept-Encoding';
_headers['Content-Encoding'] = 'gzip';
stat.size = gzStat.size;
files = [gzFile];
}
that.respondNoGzip(pathname, status, contentType, _headers, files, stat, req, res, finish);
});
} else {
// Client doesn't want gzip or we're sending multiple files
that.respondNoGzip(pathname, status, contentType, _headers, files, stat, req, res, finish);
}
}
Server.prototype.parseByteRange = function (req, stat) {
var byteRange = {
from: 0,
to: 0,
valid: false
}
var rangeHeader = req.headers['range'];
var flavor = 'bytes=';
if (rangeHeader) {
if (rangeHeader.indexOf(flavor) == 0 && rangeHeader.indexOf(',') == -1) {
/* Parse */
rangeHeader = rangeHeader.substr(flavor.length).split('-');
byteRange.from = parseInt(rangeHeader[0]);
byteRange.to = parseInt(rangeHeader[1]);
/* Replace empty fields of differential requests by absolute values */
if (isNaN(byteRange.from) && !isNaN(byteRange.to)) {
byteRange.from = stat.size - byteRange.to;
byteRange.to = stat.size ? stat.size - 1 : 0;
} else if (!isNaN(byteRange.from) && isNaN(byteRange.to)) {
byteRange.to = stat.size ? stat.size - 1 : 0;
}
/* General byte range validation */
if (!isNaN(byteRange.from) && !!byteRange.to && 0 <= byteRange.from && byteRange.from < byteRange.to) {
byteRange.valid = true;
} else {
console.warn("Request contains invalid range header: ", rangeHeader);
}
} else {
console.warn("Request contains unsupported range header: ", rangeHeader);
}
}
return byteRange;
}
Server.prototype.respondNoGzip = function (pathname, status, contentType, _headers, files, stat, req, res, finish) {
var mtime = Date.parse(stat.mtime),
key = pathname || files[0],
headers = {},
clientETag = req.headers['if-none-match'],
clientMTime = Date.parse(req.headers['if-modified-since']),
startByte = 0,
length = stat.size,
byteRange = this.parseByteRange(req, stat);
/* Handle byte ranges */
if (files.length == 1 && byteRange.valid) {
if (byteRange.to < length) {
// Note: HTTP Range param is inclusive
startByte = byteRange.from;
length = byteRange.to - byteRange.from + 1;
status = 206;
// Set Content-Range response header (we advertise initial resource size on server here (stat.size))
headers['Content-Range'] = 'bytes ' + byteRange.from + '-' + byteRange.to + '/' + stat.size;
} else {
byteRange.valid = false;
console.warn("Range request exceeds file boundaries, goes until byte no", byteRange.to, "against file size of", length, "bytes");
}
}
/* In any case, check for unhandled byte range headers */
if (!byteRange.valid && req.headers['range']) {
console.error(new Error("Range request present but invalid, might serve whole file instead"));
}
// Copy default headers
for (var k in this.options.headers) { headers[k] = this.options.headers[k] }
// Copy custom headers
for (var k in _headers) { headers[k] = _headers[k] }
headers['Etag'] = JSON.stringify([stat.ino, stat.size, mtime].join('-'));
headers['Date'] = new(Date)().toUTCString();
headers['Last-Modified'] = new(Date)(stat.mtime).toUTCString();
headers['Content-Type'] = contentType;
headers['Content-Length'] = length;
for (var k in _headers) { headers[k] = _headers[k] }
// Conditional GET
// If the "If-Modified-Since" or "If-None-Match" headers
// match the conditions, send a 304 Not Modified.
if ((clientMTime || clientETag) &&
(!clientETag || clientETag === headers['Etag']) &&
(!clientMTime || clientMTime >= mtime)) {
// 304 response should not contain entity headers
['Content-Encoding',
'Content-Language',
'Content-Length',
'Content-Location',
'Content-MD5',
'Content-Range',
'Content-Type',
'Expires',
'Last-Modified'].forEach(function (entityHeader) {
delete headers[entityHeader];
});
finish(304, headers);
} else {
res.writeHead(status, headers);
this.stream(key, files, length, startByte, res, function (e) {
if (e) { return finish(500, {}) }
finish(status, headers);
});
}
};
Server.prototype.respond = function (pathname, status, _headers, files, stat, req, res, finish) {
var contentType = _headers['Content-Type'] ||
mime.lookup(files[0]) ||
'application/octet-stream';
if(this.options.gzip) {
this.respondGzip(pathname, status, contentType, _headers, files, stat, req, res, finish);
} else {
this.respondNoGzip(pathname, status, contentType, _headers, files, stat, req, res, finish);
}
}
Server.prototype.stream = function (pathname, files, length, startByte, res, callback) {
(function streamFile(files, offset) {
var file = files.shift();
if (file) {
file = path.resolve(file) === path.normalize(file) ? file : path.join(pathname || '.', file);
// Stream the file to the client
fs.createReadStream(file, {
flags: 'r',
mode: 0666,
start: startByte,
end: startByte + (length ? length - 1 : 0)
}).on('data', function (chunk) {
// Bounds check the incoming chunk and offset, as copying
// a buffer from an invalid offset will throw an error and crash
if (chunk.length && offset < length && offset >= 0) {
offset += chunk.length;
}
}).on('close', function () {
streamFile(files, offset);
}).on('error', function (err) {
callback(err);
console.error(err);
}).pipe(res, { end: false });
} else {
res.end();
callback(null, offset);
}
})(files.slice(0), 0);
};
// Exports
exports.Server = Server;
exports.version = version;
exports.mime = mime;