-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathIO.WebServer.js
563 lines (502 loc) · 20.1 KB
/
IO.WebServer.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
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
// Copyright © 2012 Srikumar K. S.
// http://github.com/srikumarks/IO.js
//
// MIT License:
//
// Permission is hereby granted, free of charge, to any person obtaining
// a copy of this software and associated documentation files (the
// "Software"), to deal in the Software without restriction, including
// without limitation the rights to use, copy, modify, merge, publish,
// distribute, sublicense, and/or sell copies of the Software, and to
// permit persons to whom the Software is furnished to do so, subject to
// the following conditions:
//
// The above copyright notice and this permission notice shall be
// included in all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
// IO.WebServer provides basic web serving functionality for running
// on Node.js.
var http = require('http');
var https = require('https');
var URL = require('url');
var fs = require('fs');
var util = require('util');
var IO = require('./IO.js');
IO.WebServer = function (port, wsOptions) {
var Ex = IO.Ex;
var WS = Object.create(Ex);
var routes = {};
var requestID = 0;
var logger = null;
var createServer = (wsOptions && wsOptions.key && wsOptions.cert)
? (function (handler) { return https.createServer(wsOptions, handler); })
: (function (handler) { return http.createServer(handler); });
//////////////////////////////////////////////////////
// Main interface
// Adds a new route that connects a path to the given action.
// You can add a common handler for all "sub routes" by using
// a path that ends in '/'. In that case, if you have a route
// handler for "/a/b/" and you get a url request for "/a/b/hello",
// your handler for "/a/b/" will be used if an explicit route
// doesn't exist for "/a/b/hello".
WS.route = function route_(path, action, recursive) {
if (action) {
routes[path] = mkRoute(action, path, path, recursive);
} else {
delete routes[path];
}
};
// An action that serves the given file. options is
// an object through which you can provide the following
// choices -
//
// mime_type: Give the mime type if you already know it.
// encoding: Give the encoding if you already know it. Text is
// assumed 'utf8' if you don't provide it.
WS.serveFile = function (path, options) {
var mimeType = guessMimeType(path, options ? options.mime_type : false);
var encoding = guessEncoding(mimeType, options ? options.encoding : false);
return function serveFile_(M, conn, success, failure) {
// It might appear as though the exists test can be done outside
// of this closure, but it is advantageous to do it inside in case
// the file gets created after the server starts.
fs.exists(path, function (exists) {
if (exists) {
if (mimeType) {
conn.response.writeHead(200, {'Content-Type': mimeType});
}
var reader = fs.createReadStream(path, encoding ? {encoding: encoding} : {});
reader.addListener('end', function () {
M.call(success, conn, M.drain, failure);
});
reader.addListener('error', function (err) {
M.call(IO.raise(err), conn, M.drain, failure);
});
reader.pipe(conn.response, {end: false});
} else {
M.call(IO.raise('path not found'), conn, M.drain, failure);
}
});
};
};
// Serves any file under the dir. Guesses mime type.
// The route has to be a dir path. Written as a
// dynamic action that reuses WS.serveFile.
WS.serveDir = function (dir) {
return function serveDir_(M, conn, success, failure) {
console.assert(conn.request.url.pathname.indexOf(conn.route.path) === 0, "The url must have the route path as a prefix string.");
var fragment = conn.request.url.pathname.substr(conn.route.path.length);
var action = WS.serveFile(dir + fragment);
M.call(action, conn, success, failure);
};
};
// Maps all suburls to corresponding paths in the given urlroot.
// It simply pipes the result to the client and doesn't do any rewriting.
WS.serveURL = function (urlroot) {
var urlp = URL.parse(urlroot);
return function serveURL_(M, conn, success, failure) {
var actualPath;
if (/\/$/.test(urlp.pathname)) {
actualPath = urlp.pathname + conn.request.url.pathname.substr(conn.route.path.length);
} else {
actualPath = urlp.pathname;
}
var spec = {
hostname: urlp.hostname
, port: parseInt(urlp.port)
, path: actualPath
};
http.request(spec
, function (res) {
var mime = guessMimeType(spec.path);
var headers = res.headers;
if (mime) {
// Override the mime type provided by fossil
// using what we know. Fossil doesn't yet know
// some types like ".mdown" for markdown.
headers['Content-Type'] = mime;
}
conn.response.writeHead(res.statusCode, headers);
res.addListener('end', function () {
M.call(success, conn, M.drain, failure);
});
res.pipe(conn.response, {end: false});
}).on('error', function (e) {
M.call(IO.raise(e), conn, M.drain, failure);
}).end();
};
};
// Begins a HTML response page.
WS.page = function (a) {
var action = IO.do((a instanceof Array) ? a : [].slice.call(arguments, 0));
return function page_(W, conn, succ, fail) {
conn.response.writeHead(200, {'Content-Type': 'text/html'});
W.call(action, conn, W.drain, fail);
};
};
// simple wrapper to write out stuff.
// func = string
// func = function (W, conn)
WS.write = function (func) {
if (typeof func === 'function') {
return function (W, conn, succ, fail) {
conn.response.write(func(W, conn));
W.call(succ, conn, W.end, fail);
};
} else {
return function (conn) {
conn.response.write(func);
return conn;
};
}
};
// Action that causes the current session to timeout after
// the given value. If any actions are in progress when the
// session expires, the next step will fail with
// err.error === "session_expired"
// When a session expires, all the dynamic links will become
// invalid. Passing false will cancel the currently active
// timeout.
WS.expire = function (timeout_secs, onexpired) {
onexpired = onexpired || sessionExpiredError;
return function expire_(W, conn, succ, fail) {
// Clear the previous timeout if any.
if (W._timeout) {
clearTimeout(W._timeout);
W._timeout = null;
}
if (timeout_secs) {
// Start the timer.
var expireW = function () {
var i, N;
for (i = 0, N = W._dynlinks.length; i < N; ++i) {
delete routes[W._dynlinks[i]];
}
W._dynlinks.splice(0, W._dynlinks.length);
W._expired = onexpired;
};
W._timeout = setTimeout(expireW, Math.ceil(timeout_secs) * 1000);
}
// Continue on.
W.call(succ, conn, W.drain, fail);
};
};
// Do nothing for logging by default. The user can set a logging
// action to take. The request object (sanitized) is sent to the logger.
// The logging action will be done atomically, so that
// any file writes don't get messed up. So you can do
// proper asynchronous logging.
WS.__defineGetter__("logger", function () {
return logger;
});
WS.__defineSetter__("logger", function (logAction) {
// automatically wrap it in atomic.
return logger = IO.atomic(logAction);
});
// An action that wraps up all response sending.
WS.drain = wsdrain;
WS.end = function end_(W, conn, succ, fail) {
conn.response.end();
delete conn.response;
W.call(succ, conn, wsdrain, fail);
};
// Starts the server.
WS.start = function start_() {
prepareWSIO();
server.listen(port);
};
///////////////////////////////////////////////////////////////////////////
// Implementation
// Makes a "route" structure. The "path" is the path that is being routed to the
// given action, and "root_url" is the url based on which dynamic links must
// be generated.
function mkRoute(action, path, root_url, recursive) {
return {action: action
, path: path
, root_url: root_url || path
, visited: 0
, time_stamp: new Date()
, recursive: recursive};
}
// Parses an URI encoded string of the form "key1=value1&key2=value2&..."
// into an object.
function splitFields(str) {
var kvpairs = {};
if (!str) { return kvpairs; }
str.split('&').forEach(function (kv) {
var kvarr = kv.split("=");
var key = kvarr[0];
if (kvarr.length > 1) {
kvpairs[key] = decodeURIComponent(kvarr[1].replace(/\+/g,'%20'));
} else if (kvarr.length > 0) {
kvpairs[key] = true;
}
});
return kvpairs;
}
// Concatenates the given array of Buffer objects into
// a single buffer.
function concatBuffers(bufs) {
var i, N, bytes;
for (i = 0, N = bufs.length, bytes = 0; i < N; ++i) {
bytes += bufs[i].length;
}
var result = new Buffer(bytes);
for (i = 0, bytes = 0; i < N; ++i) {
bufs[i].copy(result, bytes);
bytes += bufs[i].length;
}
return result;
}
function runRouteAction(arg, route) {
wsrun(arg, logger ? IO.do(route.action, requestCompleted(arg.id)) : route.action);
}
// Simple support for GET and POST requests.
var methods = {
'GET': function (id, request, response, route) {
var data = splitFields(request.url.query);
runRouteAction({id: id, route: route, request: request, response: response, raw_data: request.url.query, data: data}, route);
},
'POST': function (id, request, response, route) {
request.content = [];
request.addListener('data', function (chunk) {
request.content.push(chunk);
});
request.addListener('end', function () {
// Process post message body.
var b = concatBuffers(request.content);
var arg = {id: id, route: route, request: request, response: response, raw_data: b};
// Make post message field parsing on demand, but easy to use.
var parsedFields;
arg.__defineGetter__("data", function () {
return parsedFields || (parsedFields = splitFields(b.toString('utf8')));
});
runRouteAction(arg, route);
});
},
'default': function (id, request, response, route) {
runRouteAction({id: id, route: route, request: request, response: response}, route);
}
};
// Find a route handler, searching a hierarchy if necessary.
// You can have top-level routes like "/a/b/" that end in
// a "/" that provide a handler for all child routes.
function findRoute(pathname) {
var route = routes[pathname];
if (route) {
return route;
}
var lastComponent;
var reLC = /[^\/]*\/?$/; // Matches the last path component.
while (!route) {
lastComponent = pathname.match(reLC);
if (lastComponent.index > 0) {
// Strip away the last component and try again.
// Note that the new pathname now ends in a '/',
// which we use as a signal to indicate routes
// that can handle any children.
pathname = pathname.substr(0, lastComponent.index);
route = routes[pathname];
if (route && !route.recursive) {
return null;
}
} else {
return null;
}
}
return route;
}
// Makes an action that indicates to the logger that the
// request has been completed.
function requestCompleted(id) {
if (logger) {
return function (M, conn, success, failure) {
M.call(logger, {id: id, status: "complete", time_stamp: new Date()}, success, failure);
};
} else {
return WS.drain;
}
}
// Extract some info from the request that we wish to send
// to the logger. The resultant object is JSON.stringify-able.
function requestInfo(id, req, route) {
return {
time_stamp: new Date(),
id: id,
route: {
path: route.path,
root_url: route.root_url,
visited: route.visited,
time_stamp: route.time_stamp
},
method: req.method,
headers: req.headers,
trailers: req.trailers,
url: req.url,
connection: {
remoteAddress: req.connection.remoteAddress,
remotePort: req.connection.remotePort
}
};
}
var server = createServer(function (request, response) {
++requestID;
request.url = URL.parse(request.url);
var route = findRoute(request.url.pathname);
if (route) {
route.visited++;
}
if (logger) {
IO.run(requestInfo(requestID, request, route), logger);
}
if (route) {
if (route.dynamic) {
delete routes[route.path];
}
request.url.root_url = route.root_url || request.url.pathname;
var handler = methods[request.method] || methods['default'];
handler(requestID, request, response, route);
} else if (WS.four_oh_four) {
// Route or method not found.
// Maybe we have a "not found" handler?
wsrun({id: requestID, route: route, request: request, response: response}, WS.four_oh_four);
} else {
response.end("404");
}
});
var knownMimeTypes = [
{pat: /\.txt$/i, mime: 'text/plain'},
{pat: /\.html?$/i, mime: 'text/html'},
{pat: /\.css$/i, mime: 'text/css'},
{pat: /\.md$/i, mime: 'text/plain'},
{pat: /\.mdown$/i, mime: 'text/plain'},
{pat: /\.markdown$/i, mime: 'text/plain'},
{pat: /\.png$/i, mime: 'image/png'},
{pat: /\.jpe?g$/i, mime: 'image/jpeg'},
{pat: /\.tiff?$/i, mime: 'image/tiff'},
{pat: /\.ico$/i, mime: 'image/x-icon'},
{pat: /\.js$/i, mime: 'application/javascript'},
{pat: /\.json$/i, mime: 'application/json'},
{pat: /\.wav$/i, mime: 'audio/x-wav'},
{pat: /\.aiff$/i, mime: 'audio/x-aiff'},
{pat: /\.mp3$/i, mime: 'audio/mpeg'},
{pat: /\.m4a$/i, mime: 'audio/mp4'},
{pat: /\.ogg$/i, mime: 'audio/ogg'},
{pat: /\.mp4$/i, mime: 'video/mp4'},
{pat: /\.ogv$/i, mime: 'video/ogg'}
];
function guessMimeType(path, mimeType) {
if (mimeType) { return mimeType; }
var i, N, m;
for (i = 0, N = knownMimeTypes.length; i < N; ++i) {
m = knownMimeTypes[i];
if (m.pat.test(path)) {
return m.mime;
}
}
return mimeType;
}
function guessEncoding(mime, encoding) {
return encoding || (/^text\//.test(mime) ? 'utf8' : null);
}
// Given kvs as an object whose keys are ids and values are
// actions that those ids are to be mapped to, returns an
// isomorphic object whose keys are the same but whose values
// are urls that will trigger those actions. The given timeout_secs
// applies to all the generated urls and will default to infinity
// if omitted.
function wslinks(kvs, failure) {
var result = {}, k;
for (var k in kvs) {
result[k] = wslink.call(this, kvs[k], failure);
}
return result;
}
// Make a single link that triggers the action.
function wslink(action, failure) {
action = IO.do(action);
var root = this.input.request.url.root_url, path;
if (action instanceof Function) {
path = root + '/' + uniqueID();
this._dynlinks.push(path);
routes[path] = mkRoute(bindAction(action, this, failure), path, root);
return path;
} else {
console.assert(typeof(action) === 'string');
return action;
}
}
// Generates a unique sha1 every time you call it.
// Useful for unique URLs. Well, we're relying on sha1
// to turn up collisions only on the extremely rare
// occasion.
var uniqueID = (function () {
var crypto = require('crypto');
var salt = (function () {
var b = crypto.randomBytes(256);
var sha1 = crypto.createHash('sha1');
sha1.update(b);
return sha1.digest('hex');
}());
var id = 0;
return function () {
var sha1 = crypto.createHash('sha1');
sha1.update(salt);
sha1.update('/' + Date.now());
sha1.update('/' + (++id));
return sha1.digest('hex');
};
}());
function bindAction(action, W, failure) {
action = IO.do(action);
return function (_, input, success, _fail) {
W.call(action, input, success, failure);
};
}
//////////////////////////////////////////////
// The core orchestrator overrides.
var sessionExpiredError = IO.raise("session_expired");
function wscall(action, input, success, failure) {
this.input = input;
Ex.call.call(this, this._expired || action, input, success, failure);
}
function wsdrain(M, conn, succ, fail) {
try {
conn.response.end();
} catch (e) {
// Keep quiet. No need to make a fuss.
}
}
var WSIO = {};
function prepareWSIO() {
for (var k in IO) {
WSIO[k] = IO[k];
}
for (var k in WS) {
WSIO[k] = WS[k];
}
}
// Every service request fired off gets to store some
// custom state information in the WS object itself.
// To handle that, we create a new object based on the WS
// object and make that the orchestrator of the service run.
function wsrun(conn, action) {
var wsc = Object.create(Ex);
wsc.call = wscall;
wsc.drain = wsdrain;
wsc.links = wslinks;
wsc.link = wslink;
wsc._api = WSIO;
wsc._dynlinks = [];
wsc.run(conn, action);
}
return WS;
};
module.exports = IO;