forked from gabrielcsapo/node-git-server
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathhttp-duplex.js
More file actions
519 lines (471 loc) · 18.4 KB
/
http-duplex.js
File metadata and controls
519 lines (471 loc) · 18.4 KB
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
const EventEmitter = require('events');
class HttpDuplex extends EventEmitter {
/**
* Constructs a proxy object over input and output resulting in a unified stream.
* Generally meant to combine request and response streams in the http.request event
* @class HttpDuplex
* @param {http.IncomingMessage} input - client request object from request event
* @param {http.ServerResponse} output - response object from request event
* @requires events
* @extends EventEmitter
* @see {@link https://nodejs.org/api/http.html#http_event_request|request}
* @see {@link https://nodejs.org/api/http.html#http_class_http_incomingmessage|http.IncomingMessage}
* @see {@link https://nodejs.org/api/http.html#http_class_http_serverresponse|http.ServerResponse}
* @example <caption>A simple example is shown below</caption>
* http.createServer(function (req, res) {
* var dup = new HttpDuplex(req, res);
* res.end("Request: " + req.method + " " + req.url);
* }).listen(80);
*/
constructor(input, output) {
super();
/**
* A IncomingMessage created by http.Server or http.ClientRequest usually passed as the
* first parameter to the 'request' and 'response' events. Implements Readable Stream interface
* but may not be a decendant thereof.
* @type {http.IncomingMessage}
* @see {@link https://nodejs.org/api/http.html#http_event_request|request}
* @see {@link https://nodejs.org/api/http.html#http_class_http_incomingmessage|http.IncomingMessage}
*
*/
this.req = input;
/**
* Created http.server. Passed as the second parameter to the 'request' event.
* The response implements Writable Stream interface but isn't a descendent thereof.
* @type {http.ServerResponse}
* @see {@link https://nodejs.org/api/http.html#http_event_request|request}
* @see {@link https://nodejs.org/api/http.html#http_class_http_serverresponse|http.ServerResponse}
*/
this.res = output;
var self = this;
// request / input proxy events
['data', 'end', 'error', 'close'].forEach(function (name) {
self.req.on(name, self.emit.bind(self, name));
});
// respone / output proxy events
['error', 'drain'].forEach(function (name) {
self.res.on(name, self.emit.bind(self, name));
});
}
// input / request wrapping
get client() {
return this.req.client;
}
get complete() {
return this.req.complete;
}
/**
* Reference to the underlying socket for the request connection.
* @type {net.Socket}
* @readonly
* @see {@link https://nodejs.org/api/http.html#http_request_socket|request.Socket}
*/
get connection() {
return this.req.connection;
}
/**
* Request/response headers. Key-value pairs of header names and values. Header names are always lower-case.
* @name headers
* @alias HttpDuplex.headers
* @memberof HttpDuplex
* @type {Object}
* @readonly
* @see {@link https://nodejs.org/api/http.html#http_message_headers|message.headers}
*/
get headers() {
return this.req.headers;
}
/**
* Requested HTTP Version sent by the client. Usually either '1.0' or '1.1'
* @name httpVersion
* @alias HttpDuplex.httpVersion
* @memberof HttpDuplex
* @type {String}
* @see {@link https://nodejs.org/api/http.html#http_message_httpversion|message.httpVersion}
* @readonly
*/
get httpVersion() {
return this.req.httpVersion;
}
/**
* First integer in the httpVersion string
* @name httpVersionMajor
* @alias HttpDuplex.httpVersionMajor
* @memberof HttpDuplex
* @type {Number}
* @see httpVersion
* @readonly
*/
get httpVersionMajor() {
return this.req.httpVersionMajor;
}
/**
* Second integer ni the httpVersion string
* @name httpVersionMinor
* @alias HttpDuplex.httpVersionMinor
* @memberof HttpDuplex
* @type {String}
* @see httpVersion
* @readonly
*/
get httpVersionMinor() {
return this.req.httpVersionMinor;
}
/**
* Request method of the incoming request.
* @type {String}
* @see {@link https://nodejs.org/api/http.html#http_event_request|request}
* @see {@link https://nodejs.org/api/http.html#http_class_http_serverresponse|http.ServerResponse}
* @example 'GET', 'DELETE'
* @readonly
*/
get method() {
return this.req.method;
}
/**
* Is this stream readable.
* @type {Boolean}
* @readonly
*/
get readable() {
return this.req.readable;
}
/**
* net.Socket object associated with the connection.
* @type net.Socket
* @see {@link https://nodejs.org/api/net.html#net_class_net_socket|net.Socket}
* @readonly
*/
get socket() {
return this.req.socket;
}
/**
* The HTTP status code. Generally assigned before sending headers for a response to a client.
* @type {Number}
* @default 200
* @see {@link https://nodejs.org/api/http.html#http_response_statuscode|response.statusCode}
* @example request.statusCode = 404;
*/
get statusCode() {
return this.res.statusCode;
}
set statusCode(val) {
this.res.statusCode = val;
}
/**
* Controls the status message sent to the client as long as an explicit call to response.writeHead() isn't made
* If ignored or the value is undefined, the default message corresponding to the status code will be used.
* @type {String}
* @default undefined
* @see {@link https://nodejs.org/api/http.html#http_response_statusmessage|response.statusMessage}
* @example request.statusMessage = 'Document Not found';
*/
get statusMessage() {
return this.res.statusMessage;
}
set statusMessage(val) {
this.res.statusMessage = val;
}
/**
* Request/response trailer headers. Just like {@link headers} except these are only written
* after the initial response to the client.
* This object is only populated at the 'end' event and only work if a 'transfer-encoding: chunked'
* header is sent in the initial response.
* @name HttpDuplex#trailers
* @type {Object}
* @readonly
* @see headers
* @see addTrailers
* @see {@link https://nodejs.org/api/http.html#http_message_trailers|message.trailers}
* @see {@link https://nodejs.org/api/http.html#http_response_addtrailers_headers|response.addTrailers}
*/
get trailers() {
return this.req.trailers;
}
/**
* Whether or not the client connection has been upgraded
* @type {Boolean}
* @see {@link https://nodejs.org/api/http.html#http_event_upgrade_1|upgrade}
* @readonly
*/
get upgrade() {
return this.req.upgrade;
}
/**
* Request URL string.
* @example <caption>A request made as:</caption>
* GET /info?check=none HTTP/1.1
* @example <caption>Will return the string</caption>
* '/info?check=none'
* @type {String}
* @readonly
*/
get url() {
return this.req.url;
}
// output / response wrapping
get writable() {
return this.res.writable;
}
/**
* Sends a response header to the client request. Must only be called one time and before calling response.end().
* @method writeHead
* @alias HttpDuplex.writeHead
* @memberof HttpDuplex
* @param {number} statusCode 3-digit HTTP status code, like 404
* @param {string} [statusMessage] An optional human readable status message to send with the status code
* @param {object} [headers] An object containing the response headers to send
* @returns {this}
* @see {@link https://nodejs.org/api/http.html#http_response_writehead_statuscode_statusmessage_headers|response.writeHead}
* @example var content = 'Under Construction...';
* response.writeHead(200, {
* 'Content-Length': Buffer.byteLength(content),
* 'Content-Type': 'text/plain'
* });
* response.end(content);
*/
writeHead(statusCode, statusMessage, headers) {
this.res.writeHead(statusCode, statusMessage, headers);
return this;
}
/**
* Buffers written data in memory. This data will be flushed when either the uncork or end methods are called.
* @method cork
* @alias HttpDuplex.cork
* @memberof HttpDuplex
* @returns {this}
* @see uncork
* @see {@link https://nodejs.org/api/stream.html#stream_writable_cork|stream.Writeable.cork}
* @example
* request.cork();
* request.write('buffer data ');
* request.write('before sending ');
* request.uncork();
*/
cork() {
this.res.connection.cork();
return this;
}
/**
* Flushes all data buffered since cork() was called.
* @method uncork
* @alias HttpDuplex.cork
* @memberof HttpDuplex
* @returns {this}
* @see cork
* @see {@link https://nodejs.org/api/stream.html#stream_writable_uncork|stream.Writeable.uncork}
*/
uncork() {
this.res.connection.uncork();
return this;
}
}
// proxy request methods
['pause', 'resume', 'setEncoding'].forEach(function (name) {
HttpDuplex.prototype[name] = function () {
return this.req[name].apply(this.req, Array.from(arguments));
};
});
// proxy respone methods
[
'setDefaultEncoding', 'write', 'end', 'flush', 'writeHeader', 'writeContinue',
'setHeader', 'getHeader', 'removeHeader', 'addTrailers'
].forEach(function (name) {
HttpDuplex.prototype[name] = function () {
return this.res[name].apply(this.res, Array.from(arguments));
};
});
/**
* Destroys object and it's bound streams
* @method destroy
* @alias HttpDuplex.destroy
* @memberof HttpDuplex
*/
HttpDuplex.prototype.destroy = function () {
this.req.destroy();
this.res.destroy();
};
module.exports = HttpDuplex;
/**
* Event emitted when the underlying request connection is closed. This only occurs once per response.
* @event close
* @alias HttpDuplex#event:close
* @memberof HttpDuplex
* @see end
* @see {@link https://nodejs.org/api/http.html#http_event_close_2|http.IncomingMessage/close}
*/
/**
* This event is emitted when data on the stream can be consumed. This may occur whenever the stream is switched into
* flowing mode by calling readable.pipe() or readable.resume() or by attaching a listener this event.<p/>
* This event is emitted when readable.read() is called and a chunk of data becomes available.
* Data will be passed as a string if the default encoding has been set using readable.setEncoding(); otherwise it's
* passed as a Buffer.
* @event data
* @alias HttpDuplex#event:data
* @param {(string|buffer|any)} chunk The chunk is either a buffer or string when the stream isn't operating
* in object mode. When the stream is in object mode, the chunk can be any JavaScript value other than null.
* @memberof HttpDuplex
* @see {@link https://nodejs.org/api/stream.html#stream_event_data|stream.Readable/data}
*/
/**
* If a call to response.write(chunk) returns false, the drain event will be emitted once it is appropriate to
* resume writing data to the stream.
* @event drain
* @alias HttpDuplex#event:drain
* @memberof HttpDuplex
* @see {@link https://nodejs.org/api/stream.html#stream_event_drain|stream.Writable/drain}
*/
/**
* This event is emitted once no more consumable data is left on the readable stream.<p/>
* *Note*: This is only emitted when all data is completely consumed.
* @event end
* @alias HttpDuplex#event:end
* @memberof HttpDuplex
* @see {@link https://nodejs.org/api/stream.html#stream_event_end|stream.Readable/end}
*/
/**
* This event may be emitted one of the underlying Readable or Writable stream implementations at any time.
* This may happen in the following cases:
* + if the underlying streams are unable to produce data because of an internal failure
* + if an attempt is made to push an invalid chunk of data.
* + if an error occurred while writing or piping data.<p/>
*
* The listener callback will be passed a single Error object.<br/>
* *Note*: Streams are not closed when the event is emitted.
* @event error
* @alias HttpDuplex#event:error
* @memberof HttpDuplex
* @see {@link https://nodejs.org/api/stream.html#stream_event_error_1|stream.Readable/error}
* @see {@link https://nodejs.org/api/stream.html#stream_event_error|stream.Writeable/error}
*/
/**
* Adds trailing headers to the response.
* Trailers will only be emitted if chunked encoding is enabled for the response; otherwise they are discarded.
* @method addTrailers
* @name addTrailers
* @alias HttpDuplex.addTrailers
* @memberof HttpDuplex
* @param {Object} headers Trailing headers to add to the response
* @see trailers
* @see headers
* @see {@link https://nodejs.org/api/http.html#http_message_trailers|message.trailers}
* @see {@link https://nodejs.org/api/http.html#http_response_addtrailers_headers|response.addTrailers}
*/
/**
* Tells the server the response headers and body have been sent and that the message should be considered complete.
* This MUST be called on every response.
* If data is specified, this behaves as if calling response.write(data, encoding) followed by response.end(callback).
* If specified, the callback is called once the response stream is finished.
* @method end
* @alias HttpDuplex.end
* @memberof HttpDuplex
* @param {(string|Buffer)} data optional data to write to the response before closing the connection
* @param {String} encoding Encoding that should be used to write the data
* @param {function} callback Function to be called once the response stream is finished
* @see {@link https://nodejs.org/api/http.html#http_response_end_data_encoding_callback|response.end}
*/
/**
* Returns the current value of a header; name is case insensitive.
* @method getHeader
* @alias HttpDuplex.getHeader
* @memberof HttpDuplex
* @param {String} name Header to get the value of
* @returns {String}
* @see {@link https://nodejs.org/api/http.html#http_request_getheader_name|getHeader}
* @example
* let contentType = request.getHeader('Content-Type');
*/
/**
* Switch readable stream out of flowing mode and stop emitting 'data' events.
* Any new data that becomes available during this time will stay buffered until resume is called.
* @method pause
* @alias HttpDuplex.pause
* @memberof HttpDuplex
* @see {@link https://nodejs.org/api/stream.html#stream_readable_pause|stream.Readable.pause}
*/
/**
* Remove a header from the response headers.
* @method removeHeader
* @alias HttpDuplex.removeHeader
* @memberof HttpDuplex
* @param {String} name Header to remove
* @see {@link https://nodejs.org/api/http.html#http_request_removeheader_name|removeHeader}
* @example
* request.removeHeader('Content-Type');
*/
/**
* Switch readable stream back into flowing mode and restart emitting 'data' events.
* This can be used to consume all data waiting without processing any of it.
* @method resume
* @alias HttpDuplex.resume
* @memberof HttpDuplex
* @see {@link https://nodejs.org/api/stream.html#stream_readable_resume|stream.Readable.resume}
*/
/**
* Sets the character encoding for data written to the stream.
* @method setDefaultEncoding
* @alias HttpDuplex.setDefaultEncoding
* @memberof HttpDuplex
* @param encoding {String} new character encoding
* @see setEncoding
* @example request.setDefaultEncoding('utf8');
*/
/**
* Sets the character encoding for data read from the stream.
* @method setEncoding
* @alias HttpDuplex.setEncoding
* @memberof HttpDuplex
* @param encoding {String} new character encoding
* @see setDefaultEncoding
* @example request.setEncoding('utf8');
*/
/**
* Set a single header. If the header already exists, it will be replaced.
* It's possible to use an array of strings in place of value to send multiple headers with the same name.
* @method setHeader
* @alias HttpDuplex.setHeader
* @memberof HttpDuplex
* @param {String} name Header to set
* @param {string|string[]} value Value(s) to assign to header
* @see removeHeader
* @see {@link https://nodejs.org/api/http.html#http_request_setheader_name_value|setHeader}
* @example <caption>Single value</caption>
* request.setHeader('Content-Type', 'text/html');
* @example <caption>Array of string value</caption>
* request.setHeader('Set-Cookie', ['type=auth', 'language=javascript']);
*/
/**
* Sends a chunk of the response body. This method may be called multiple times to provide successive parts of the
* body.
* <p>*Note:* If write() is called either before writeHead() or writeHead() just hasn't been called, it will switch * modes and flush the implicit headers that may be waiting before parts of this chunk are sent.<p/>
* Node will buffer up to the first chunk of the body. Any additional calls to write() may be buffered as well
* for packet efficiency purposes.</p>
* Returns true if the entire data was flushed successfully to the kernel buffer. Returns false if all or part of
* the data was buffered in memory.
* @method write
* @alias HttpDuplex.write
* @memberof HttpDuplex
* @param {(string|Buffer)} chunk chunk of data to send.
* @param {String} [encoding='utf8'] If chunk is a string, this specifies how to encode it into a byte stream.
* @param {function} [callback] Callback to call when this chunk of data is flushed.
* @returns {Boolean}
* @emits {@link event:drain|drain} Emitted when data was buffered and the buffer has become free for use again.
* @see {@link https://nodejs.org/api/http.html#http_response_write_chunk_encoding_callback|http.ServerResponse.write}
*/
/**
* Sends an HTTP/1.1 100 Continue message to the client.
* @method writeContinue
* @alias HttpDuplex.writeContinue
* @memberof HttpDuplex
* @see {@link https://nodejs.org/api/http.html#http_response_writecontinue|response.writeContinue}
* {@link https://nodejs.org/api/http.html#http_event_checkcontinue|http.Server/checkContinue}
*/
/**
* __Warning:__ This has been deprecated in node, __don't__ use it. Any apis that require this funtion should be
* updated to use writeHead insted.
* @method writeHeader
* @alias HttpDuplex.writeHeader
* @memberof HttpDuplex
* @deprecated {@link https://nodejs.org/api/deprecations.html#deprecations_dep0063_serverresponse_prototype_writeheader|Node Deprecated}
* @see writeHead
*/