-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathproxy.js
1349 lines (1202 loc) · 40.7 KB
/
proxy.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
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/**
* For test, page injection development.
* A cross-platform programmable Fiddler alternative.
* You can even replace express.js with it's `flow` function.
*/
const Overview = 'proxy'; // eslint-disable-line
const kit = require('./kit');
const {
_,
Promise
} = kit;
const http = require('http');
const https = require('https');
const os = require('os');
const crypto = require('crypto');
const {
default: flow
} = require('noflow');
const tcpFrame = require('./tcpFrame');
let net = kit.require('net', __dirname);
const {
Socket
} = net;
const regConnectHost = /([^:]+)(?::(\d+))?/;
const regGzipDeflat = /gzip|deflate/i;
var proxy = {
agent: new http.Agent,
httpsAgent: new https.Agent,
/**
* A simple request body middleware.
* It will append a property `reqBody` to `ctx`.
* It will append a property `body` to `ctx.req`.
* @params opts {Object} Defaults:
* ```js
* {
* limit: Infinity,
* memoryLimit: 100 * 1024 // 100KB
* }
* ```
* @return {Function} `(ctx) -> Promise`
* @example
* ```
* let kit = require('nokit');
* let proxy = kit.require('proxy');
*
* let app = proxy.flow();
*
* app.push(proxy.body());
*
* app.push(($) => {
* kit.logs($.reqBody);
* });
*
* app.listen(8123);
* ```
*/
body(opts) {
if (opts == null) {
opts = {};
}
_.defaults(opts, {
limit: Infinity,
memoryLimit: 100 * 1024
});
return function (ctx) {
if (!ctx.req.readable) {
return ctx.next();
}
return new Promise(function (resolve, reject) {
let buf = Buffer.alloc(0);
let len = 0;
let tmpFile = null;
ctx.req.on('data', function (chunk) {
len += chunk.length;
if (len > opts.limit) {
reject(new Error('body exceeds max allowed size'));
return;
}
if ((len > opts.memoryLimit) && !tmpFile) {
tmpFile = kit.path.join(
os.tmpdir(),
`nokit-body-${crypto.randomBytes(16).toString('hex')}`
);
const f = kit.createWriteStream(tmpFile);
f.write(buf);
f.write(chunk);
ctx.req.pipe(f);
buf = undefined;
return;
}
return buf = Buffer.concat([buf, chunk]);
});
ctx.req.on('error', reject);
const end = function () {
if (buf.length > 0) {
ctx.reqBody = buf;
ctx.req.body = buf;
}
return ctx.next().then(resolve, reject);
};
return ctx.req.on('end', function () {
if (tmpFile) {
return kit.readFile(tmpFile).then(
function (data) {
buf = data;
return end();
},
reject
);
} else {
return end();
}
});
});
};
},
/**
* Http CONNECT method tunneling proxy helper.
* Most times it is used to proxy https and websocket.
* @param {Object} opts Defaults:
* ```js
* {
* // If it returns false, the proxy will be ignored.
* filter: (req) => true,
*
* handleReqHeaders: (headers) => headers,
*
* host: null, // Optional. The target host force to.
* port: null, // Optional. The target port force to.
* onError: (err, socket) => {}
* }
* ```
* @return {Function} The connect request handler.
* @example
* ```js
* let kit = require('nokit');
* let proxy = kit.require('proxy');
*
* let app = proxy.flow();
*
* // Directly connect to the original site.
* app.server.on('connect', kit.proxy.connect());
*
* app.listen(8123);
* ```
*/
connect(opts) {
let host, port;
if (opts == null) {
opts = {};
}
_.defaults(opts, {
filter() {
return true;
},
handleReqHeaders(h) {
return h;
},
host: null,
port: null,
onError(err, req, socket) {
const br = kit.require('brush');
kit.log(err.toString() + ' -> ' + br.red(req.url));
return socket.end();
}
});
if (opts.host) {
if (opts.host.indexOf(':') > -1) {
[host, port] = Array.from(opts.host.split(':'));
} else {
({
host,
port
} = opts);
}
}
return function (req, sock, head) {
if (!opts.filter(req)) {
return;
}
const isTransparentProxy = req.headers['proxy-connection'];
const ms = isTransparentProxy ?
req.url.match(regConnectHost) :
req.headers.host.match(regConnectHost);
const psock = new Socket;
psock.connect(port || ms[2] || 80, host || ms[1], function () {
if (isTransparentProxy) {
sock.write(`\
HTTP/${req.httpVersion} 200 Connection established\r\n\r\n\
`);
} else { // https or websocket
let rawHeaders = `${req.method} ${req.url} HTTP/${req.httpVersion}\r\n`;
const headers = opts.handleReqHeaders(req.headers);
for (let k in headers) {
const v = headers[k];
rawHeaders += `${k}: ${v}\r\n`;
}
rawHeaders += '\r\n';
psock.write(rawHeaders);
}
if (head.length > 0) {
psock.write(head);
}
sock.pipe(psock);
return psock.pipe(sock);
});
sock.on('error', err => opts.onError(err, req, sock));
return psock.on('error', function (err) {
sock.destroy();
return opts.onError(err, req, psock);
});
};
},
/**
* Proxy and replace a single js file with a local one.
* @param {Object} opts
* ```js
* {
* url: Regex, // The url pattern to match
* file: String // The local js file path
* }
* ```
* @return {Function} noflow middleware
* @example
* ```js
* let kit = require('nokit');
* let http = require('http');
* let proxy = kit.require('proxy');
*
* let app = proxy.flow();
*
* app.push(proxy.debugJs({
* url: /main.js$/,
* file: './main.js'
* }));
*
* app.listen(8123);
* ```
*/
debugJs(opts) {
if (opts == null) {
opts = {};
}
opts.useJs = true;
const handler = proxy.serverHelper(opts);
if (opts.file) {
handler.watch(opts.file);
}
return flow(
handler,
proxy.select(opts.url, $ =>
kit.readFile(opts.file).then(js => $.body = handler.browserHelper + js)
),
proxy.url()
);
},
/**
* Create a etag middleware.
* @return {Function}
*/
etag() {
const Stream = require('stream');
const jhash = new(kit.require('jhash').constructor);
return ctx => ctx.next().then(() =>
Promise.resolve(ctx.body).then(function (data) {
if (data instanceof Stream) {
return;
}
const hash = jhash.hash(data);
if (+ctx.req.headers['if-none-match'] === hash) {
ctx.res.statusCode = 304;
ctx.res.end();
return kit.end();
}
if (!ctx.res.headersSent) {
return ctx.res.setHeader('ETag', hash);
}
})
);
},
/**
* A simple protocol to read, write, chmod, delete file via http.
* The protocol is very simple
* ```
* POST / HTTP/1.1
* file-action: ${action}
*
* ${body}
* ```
* The `action` is somethine like `{ type: 'create', path: '/home/u/a/b.js', mode: 0o777 }`
* The `body` is the binary of the file content.
* Both the `action` and the `body` are encrypt with the password and algorithm specified
* in the opts.
* @param {Object} opts defaults
* ```js
* {
* password: 'nokit',
* algorithm: 'aes128',
* rootAllowed: '/',
* actionKey: 'file-action'
* }
* ```
* @return {Function} noflow middleware
*/
file(opts) {
if (opts == null) {
opts = {};
}
_.defaults(opts, {
password: 'nokit',
algorithm: 'aes128',
rootAllowed: '/',
actionKey: 'file-action',
typeKey: 'file-type'
});
const absRoot = kit.path.normalize(kit.path.resolve(opts.rootAllowed));
const genCipher = () => crypto.createCipher(opts.algorithm, opts.password);
const genDecipher = () => crypto.createDecipher(opts.algorithm, opts.password);
const encrypt = function (val, isBase64) {
if (isBase64) {
return (kit.encrypt(val, opts.password, opts.algorithm)).toString('base64');
} else {
return kit.encrypt(val, opts.password, opts.algorithm);
}
};
const decrypt = function (val, isBase64) {
if (isBase64) {
return (kit.decrypt(Buffer.from(val, 'base64'), opts.password, opts.algorithm)) + '';
} else {
return kit.decrypt(val, opts.password, opts.algorithm);
}
};
return function ($) {
let action, data;
const error = function (status, msg) {
$.res.statusCode = status;
return $.body = encrypt(msg);
};
try {
data = decrypt($.req.headers[opts.actionKey], true);
} catch (error1) {
return error(400, 'password wrong');
}
try {
action = JSON.parse(data + '');
} catch (error2) {
return error(400, 'action is not a valid json');
}
const absPath = kit.path.normalize(kit.path.resolve(action.path));
if (absPath.indexOf(absRoot) !== 0) {
return error(400, 'the root of this path is not allow');
}
switch (action.type) {
case 'read':
return kit.stat(action.path).then(function (stats) {
if (stats.isDirectory()) {
return kit.readdir(action.path).then(function (list) {
$.res.setHeader(opts.typeKey, encrypt(
'directory', true
));
return $.body = encrypt(JSON.stringify(list));
}, () => error(500, `read directory error: ${action.path}`));
} else {
$.res.setHeader(opts.typeKey, encrypt(
'file', true
));
const file = kit.createReadStream(action.path);
file.pipe(genCipher()).pipe($.res);
return new Promise(function (resolve) {
$.res.on('close', resolve);
return $.res.on('error', function () {
resolve();
return error(500, `read file error: ${action.path}`);
});
});
}
});
case 'write':
return kit.mkdirs(kit.path.dirname(action.path)).then(function () {
const file = kit.createWriteStream(action.path, {
mode: action.mode
});
$.req.pipe(genDecipher()).pipe(file);
return new Promise(function (resolve) {
file.on('close', resolve);
return file.on('error', function () {
error(500, `write error: ${action.path}`);
return resolve();
});
});
}, () => error(500, `write error: ${action.path}`));
case 'chmod':
return kit.chmod(action.path, action.mode).then(() => $.body = encrypt(http.STATUS_CODES[200]), () => error(500, `chmod error: ${action.path}`));
case 'remove':
return kit.remove(action.path).then(() => $.body = encrypt(http.STATUS_CODES[200]), () => error(500, `remove error: ${action.path}`));
default:
return error(400, 'action.type is unknown');
}
};
},
/**
* Make a file create request to `proxy.file`.
* @param {Object} opts Defaults
* ```js
* {
* action: 'read',
* url: '127.0.0.1',
* path: String,
* data: Any,
* password: 'nokit',
* algorithm: 'aes128',
* actionKey: 'file-action',
* typeKey: 'file-type'
* }
* ```
* @return {Promise}
*/
fileRequest(opts) {
let data;
if (opts == null) {
opts = {};
}
_.defaults(opts, {
action: 'read',
url: '127.0.0.1',
password: 'nokit',
algorithm: 'aes128',
actionKey: 'file-action',
typeKey: 'file-type'
});
if (!('path' in opts)) {
throw new Error('path option is not defined');
}
const genCipher = () => crypto.createCipher(opts.algorithm, opts.password);
const encrypt = function (val, isBase64) {
if (isBase64) {
return (kit.encrypt(val, opts.password, opts.algorithm)).toString('base64');
} else {
return kit.encrypt(val, opts.password, opts.algorithm);
}
};
const decrypt = function (val, isBase64) {
if (isBase64) {
return (kit.decrypt(Buffer.from(val, 'base64'), opts.password, opts.algorithm)) + '';
} else {
return kit.decrypt(val, opts.password, opts.algorithm);
}
};
if (opts.data) {
if (_.isFunction(opts.data.pipe)) {
data = opts.data.pipe(genCipher());
} else {
data = encrypt(opts.data);
}
}
return kit.request({
url: opts.url,
body: false,
resEncoding: null,
headers: {
[opts.actionKey]: encrypt(JSON.stringify({
type: opts.type,
mode: opts.mode,
path: opts.path
}), true)
},
reqData: data
}).then(function (res) {
const body = res.body && res.body.length && decrypt(res.body);
if (res.statusCode >= 300) {
return Promise.reject(new Error(res.statusCode + ':' + body));
}
let type = res.headers[opts.typeKey];
type = type && decrypt(type, true);
return {
type,
data: type === 'directory' ?
JSON.parse(body) :
body
};
});
},
/**
* A minimal middleware composer for the future.
* https://github.com/ysmood/noflow
*/
flow,
/**
* Convert noflow middleware express middleware.
* @param {Function} fn noflow middleware
* @return {FUnction} express middleware
*/
flowToMid(fn) {
return (req, res, next) =>
flow(
fn,
() => next())(req, res).catch(next);
},
/**
* Generate an express like unix path selector. See the example of `proxy.flow`.
* @param {String} pattern
* @param {Object} opts Same as the [path-to-regexp](https://github.com/pillarjs/path-to-regexp)'s
* options.
* @return {Function} `(String) -> Object`.
* @example
* ```js
* let proxy = kit.require('proxy');
* let match = proxy.match('/items/:id');
* kit.log(match('/items/10')) // output => { id: '10' }
* ```
*/
match(pattern, opts) {
const parse = kit.requireOptional('path-to-regexp', __dirname, '^3.0.0');
const keys = [];
const reg = parse(pattern, keys, opts);
return function (url) {
const qsIndex = url.indexOf("?");
var ms = qsIndex > -1 ?
url.slice(0, qsIndex).match(reg) :
(ms = url.match(reg));
if (ms === null) {
return;
}
return ms.reduce(function (ret, elem, i) {
if (i === 0) {
return {};
}
ret[keys[i - 1].name] = elem;
return ret;
}, null);
};
},
/**
* Convert a Express-like middleware to `proxy.flow` middleware.
* @param {Function} h `(req, res, next) ->`
* @return {Function} `(ctx) -> Promise`
* ```js
* let proxy = kit.require('proxy');
* let http = require('http');
* let bodyParser = require('body-parser');
*
* let middlewares = [
* proxy.midToFlow(bodyParser.json()),
*
* (ctx) => ctx.body = ctx.req.body
* ];
*
* http.createServer(proxy.flow(middlewares)).listen(8123);
* ```
*/
midToFlow(h) {
return ctx =>
new Promise(function (resolve, reject) {
return h(ctx.req, ctx.res, function (err) {
if (err) {
reject(err);
} else {
ctx.next().then(resolve, reject);
}
});
});
},
/**
* A simple url parser middleware.
* It will append a `url` object to `ctx`
* @param {boolean} parseQueryString
* @param {boolean} slashesDenoteHost
* @return {Function} `(ctx) -> Promise`
* @example
* ```
* let kit = require('nokit');
* let proxy = kit.require('proxy');
*
* let app = proxy.flow();
*
* app.push(proxy.parseUrl(true));
*
* app.push(($) => {
* kit.logs($.reqUrl.path);
* });
*
* app.listen(8123);
* ```
*/
parseUrl(parseQueryString, slashesDenoteHost) {
kit.require('url');
return function ($) {
$.reqUrl = kit.url.parse($.req.url, parseQueryString, slashesDenoteHost);
return $.next();
};
},
/**
* A helper for http server port tunneling.
* @param {Object} opts
* ```js
* {
* allowedHosts: [],
* onSocketError: () => {},
* onRelayError: () => {}
* }
* ```
* @return {Function} A http connect method helper.
*/
relayConnect(opts) {
if (opts == null) {
opts = {};
}
_.defaults(opts, {
allowedHosts: [],
onSocketError(err) {
return kit.logs(err);
},
onRelayError(err) {
return kit.logs(err);
}
});
return function (req, relay, head) {
const hostTo = req.headers['host-to'];
if (hostTo) {
if (opts.allowedHosts.indexOf(hostTo) > -1) {
const [host, port] = Array.from(hostTo.split(':'));
relay.setTimeout(0);
var sock = net.connect(port, host, function () {
sock.write(head);
sock.pipe(relay);
return relay.pipe(sock);
});
sock.on('error', opts.onSocketError);
return relay.on('error', opts.onRelayError);
} else {
return relay.end('host not allowed');
}
}
};
},
/**
* A helper for http server port tunneling.
* @param {Object} opts
* ```js
* {
* host: '0.0.0.0:9970',
* relayHost: '127.0.0.1:9971',
* hostTo: '127.0.0.1:8080',
* onSocketError: () => {},
* onRelayError: () => {}
* }
* ```
* @return {Promise} Resolve a tcp server object.
*/
relayClient(opts) {
if (opts == null) {
opts = {};
}
net = require('net');
_.defaults(opts, {
host: '0.0.0.0:9970',
relayHost: '127.0.0.1:9971',
hostTo: '127.0.0.1:8080',
onSocketError(err) {
return kit.logs(err);
},
onRelayError(err) {
return kit.logs(err);
}
});
const [hostHost, hostPort] = Array.from(opts.host.split(':'));
const [relayHost, relayPort] = Array.from(opts.relayHost.split(':'));
const server = net.createServer(function (sock) {
var relay = net.connect(relayPort, relayHost, function () {
relay.write(
'CONNECT / HTTP/1.1\r\n' +
'Connection: close\r\n' +
`Host-To: ${opts.hostTo}\r\n\r\n`
);
sock.pipe(relay);
return relay.pipe(sock);
});
sock.on('error', opts.onSocketError);
return relay.on('error', opts.onRelayError);
});
return kit.promisify(server.listen, server)(hostPort, hostHost)
.then(() => server);
},
/**
* Create a conditional middleware that only works when the pattern matches.
* @param {Object} sel The selector. Members:
* ```js
* {
* url: String | Regex | Function,
* method: String | Regex | Function,
* headers: Object
* }
* ```
* When it's not an object, it will be convert via `sel = { url: sel }`.
* The `url`, `method` and `headers` are act as selectors. If current
* request matches the selector, the `middleware` will be called with the
* captured result. If the selector is a function, it should return a
* `non-undefined, non-null` value when matches, it will be assigned to the `ctx`.
* When the `url` is a string, if `req.url` starts with the `url`, the rest
* of the string will be captured.
* @param {Function} middleware
* @return {Function}
*/
select(sel, middleware) {
if (!_.isPlainObject(sel)) {
sel = {
url: sel
};
}
const matchKey = function (ctx, obj, key, pattern) {
let str;
if (pattern === undefined) {
return true;
}
str = obj[key];
if (!_.isString(str)) {
return false;
}
const ret = (() => {
if (_.isString(pattern)) {
if ((key === 'url') && _.startsWith(str, pattern)) {
str = str.slice(pattern.length);
if (str === '') {
str = '/';
}
return str;
} else if (str === pattern) {
return str;
}
} else if (_.isRegExp(pattern)) {
return str.match(pattern);
} else if (_.isFunction(pattern)) {
return pattern(str);
}
})();
if (ret != null) {
ctx[key] = ret;
return true;
}
};
const matchHeaders = function (ctx, headers) {
if (headers === undefined) {
return true;
}
const ret = {};
for (let k in headers) {
const v = headers[k];
if (!matchKey(ret, ctx.req.headers, k, v)) {
return false;
}
}
ctx.headers = ret;
return true;
};
return function (ctx) {
if (matchKey(ctx, ctx.req, 'method', sel.method) &&
matchHeaders(ctx, sel.headers) &&
matchKey(ctx, ctx.req, 'url', sel.url)) {
if (_.isFunction(middleware)) {
return middleware(ctx);
} else {
return ctx.body = middleware;
}
} else {
return ctx.next();
}
};
},
/**
* Create a http request middleware.
* @param {Object} opts Same as the sse.
* @return {Function} `(req, res, next) ->`.
* It has some extra properties:
* ```js
* {
* ssePrefix: '/nokit-sse',
* logPrefix: '/nokit-log',
* sse: kit.sse,
* watch: (filePath, reqUrl) => {},
* host: '', // The host of the event source.
* useJs: false // By default the browserHelper will be a html string
* }
* ```
* @example
* Visit 'http://127.0.0.1:80123', every 3 sec, the page will be reloaded.
* If the `./static/default.css` is modified, the page `a.html` will also be reloaded.
* ```js
* let kit = require('nokit');
* let http = require('http');
* let proxy = kit.require('proxy');
* let handler = proxy.serverHelper();
*
* let app = proxy.flow();
*
* handler.watch('./static/default.css', '/st/default.css');
*
* app.push(handler);
*
* app.push(proxy.select(/a\.html$/, proxy.url({
* handleResBody: (body) => body + handler.browserHelper
* })));
*
* app.listen(8123);
*
* setInterval(() =>
* handler.sse.emit('fileModified', 'changed-file-path.js')
* ), 3000);
* ```
* You can also use the `nokit.log` on the browser to log to the remote server.
* ```js
* nokit.log({ any: 'thing' });
* ```
*/
serverHelper(opts) {
if (opts == null) {
opts = {};
}
const br = kit.require('brush');
kit.require('url');
opts = _.defaults(opts, {
ssePrefix: '/nokit-sse',
logPrefix: '/nokit-log'
});
var handler = function (ctx) {
let {
req,
res,
url
} = ctx;
if (url == null) {
url = kit.url.parse(req.url);
}
switch (url.path) {
case opts.ssePrefix:
kit.logs(br.cyan('sse connected: ') + req.url);
handler.sse(req, res);
return new Promise(function () {});
case opts.logPrefix:
var data = '';
req.on('data', chunk => data += chunk);
req.on('end', function () {
try {
kit.log(br.cyan('client') + br.grey(' | ') +
(data ?
kit.xinspect(JSON.parse(data)) :
data)
);
return res.end();
} catch (e) {
res.statusCode = 500;
return res.end(e.stack);
}
});
return new Promise(function () {});
default:
return ctx.next();
}
};
handler.sse = kit.require('sse')(opts);
handler.browserHelper = kit.browserHelper(opts);
const watchList = [];
handler.watch = function (path, url) {
if (_.includes(watchList, path)) {
return;
}
return kit.fileExists(path).then(function (exists) {
if (!exists) {
return;
}
kit.logs(br.cyan('watch:'), path);
watchList.push(path);
return kit.watchPath(path, {
handler() {
kit.logs(br.cyan('changed:'), path);
return handler.sse.emit('fileModified', url);
}
});
});
};
return handler;
},
/**
* Create a static file middleware for `proxy.flow`.
* @param {String | Object} opts Same as the [send](https://github.com/pillarjs/send)'s.
* It has an extra option `{ onFile: (path, stats, ctx) => void }`.
* @return {Function} The middleware handler of `porxy.flow`.
* ```js
* let proxy = kit.require('proxy');
* let http = require('http');
*
* let middlewares = [proxy.select({ url: '/st' }, proxy.static('static'))]
*
* http.createServer(proxy.flow(middlewares)).listen(8123);