-
Notifications
You must be signed in to change notification settings - Fork 5
/
index.d.ts
1062 lines (845 loc) · 20 KB
/
index.d.ts
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
import { EventEmitter } from 'events';
import { IncomingHttpHeaders, IncomingMessage, RequestOptions, ServerResponse } from 'http';
import { ServerOptions as HTTPSServerOptions } from 'https';
import { Socket } from 'net';
import { PassThrough, Readable, Transform, Writable } from 'stream';
import { URL } from 'url';
import { ZlibOptions } from 'zlib';
type CacheConfig = {
type?: CacheType;
maxAge?: number;
sMaxAge?: number;
};
type CacheType = 'public' | 'private';
type Callback = () => void;
type ClientConnectionOptions = {};
type ClientOptions = {};
type Container<T> = {
[key: string]: T;
};
type CookieAttributes = {
domain?: string;
expires?: number;
httpOnly?: boolean;
maxAge?: number;
path?: string;
secure?: boolean;
};
type DataCallback<D> = (data: D) => void;
type DataImporter<D, S, T> = (connection: HTTPConnection<D, S>, callback: DataCallback<T>) => void;
type Enabled = boolean | EnabledFunction;
type EnabledFunction = () => boolean;
type ErrorCallback = (error: Error) => void;
type FormCallback = (form: Form) => void;
type FormDataField = {
data?: string | Buffer,
filename?: string,
headers?: StringContainer,
stream?: Readable
};
type IPAddress = {
port: number;
family: string;
address: string;
};
type Middleware<D, S> = (connection: HTTPConnection<D, S>, next: Callback) => void;
type MirrorCallback<D> = (mirror: Mirror<D>) => void;
type ParseConfig<J> = {
limit?: number;
plain?: FormCallback;
json?: ResultCallback<J>;
multipart?: FormCallback;
urlencoded?: ResultCallback<Container<string | string[]>>;
};
type PipeOptions = {
end?: boolean;
};
type PreferredCompression = 'deflate' | 'gzip';
type ResultCallback<R> = (error: Error, result: R) => void;
type RouteListener<D, S> = (connection: HTTPConnection<D, S>) => void;
type RouterCompressionOptions = {
enabled?: Enabled;
options?: ZlibOptions;
preferred?: PreferredCompression;
};
type RouterCORSOptions = {
credentials?: boolean;
headers?: string[];
methods?: string[];
origins?: string[];
};
type RouterLoggerOptions = {
enabled?: Enabled;
format?: string;
log?: StringCallback;
tokens?: Tokens;
};
type RouterOptions<S> = {
compression?: RouterCompressionOptions;
cors?: RouterCORSOptions;
logger?: RouterLoggerOptions;
session?: RouterSessionOptions<S>;
static?: RouterStaticOptions;
timeout?: RouterTimeoutOptions;
};
type RouterSessionOptions<S> = {
enabled?: Enabled;
store?: Store<S>;
timeout?: number;
};
type RouterStaticOptions = {
enabled?: Enabled;
index?: string[];
location?: string;
};
type RouterTimeoutOptions = {
enabled?: Enabled;
value?: number;
};
type ServerCallback<T> = (server: Server<T>) => void;
type ServerOptions = {
port?: number;
hostname?: string;
backlog?: number;
https?: HTTPSServerOptions;
};
type StreamConfig = {
limit?: number
};
type StringContainer = Container<string>;
type StringCallback = DataCallback<string>;
type Tokens = {
[key: string]: TokenFunction
};
type TokenFunction = (data: string) => string;
type WSFilterCallback<D, S> = (connection: WSConnection<D, S>, index: number, connections: WSConnection<D, S>[]) => void;
type WSListener<D, S> = (connection: WSConnection<D, S>) => void;
type WSOptions = {
advanced: boolean;
limit: number;
origins: string[];
session: Enabled;
timeout: number;
validation: boolean;
};
interface StoreInterface<S> {
/**
* Get session data from the store
*/
get(id: string): Promise<Session<S>>;
/**
* Remove session data from the store
*/
remove(id: string): Promise<void>;
/**
* Save session data to the store
*/
set(id: string, session: Session<S>, timeout: number): Promise<void>;
/**
* Update expiration time of the session data into the store
*/
update(id: string, timeout: number): Promise<void>;
}
interface TemplateEngine<I> {
/**
* Render provided templates
*/
render(source: string, imports: I, callback: StringCallback): void;
}
declare abstract class Broadcaster<D, S> extends EventEmitter {
/**
* Connections collection of the broadcaster
*/
connections: Set<WSConnection<D, S>>;
/**
* Sends a message to the connections of the broadcaster
*/
broadcast<T>(event: string, data: T, filter?: WSFilterCallback<D, S>): this;
/**
* Sends a message to the connections of the broadcaster
*/
broadcast<T>(data: T, filter?: WSFilterCallback<D, S>): this;
}
declare abstract class Connection<D, S> extends Transform {
/**
* Container to store user data
*/
data: D;
/**
* HTTP request headers
*/
headers: StringContainer;
/**
* HTTP request host
*/
host: string;
/**
* HTTP request hostname
*/
hostname: string;
/**
* HTTP request location
*/
href: string;
/**
* HTTP request location parameters
*/
params: StringContainer;
/**
* HTTP request location path
*/
path: string;
/**
* HTTP request protocol
*/
protocol: string;
/**
* HTTP request
*/
request: IncomingMessage;
/**
* Session container
*/
session: Session<S>;
/**
* HTTP request serialized url
*/
url: URL;
/**
* Cookies getter
*/
readonly cookies: StringContainer;
/**
* IP address getter
*/
readonly ip: IPAddress;
/**
* Languages getter in order of their importance
*/
readonly langs: string[];
/**
* URL parsed query getter
*/
readonly query: StringContainer;
/**
* Destroy the connection socket
*/
destroy(): void;
/**
* Log data
*/
log(format: string, tokens?: Tokens): this;
/**
* Log data
*/
log(logger: StringCallback, tokens?: Tokens): this;
/**
* Log data
*/
log(format?: string, logger?: StringCallback, tokens?: Tokens): this;
}
declare class Body {
/**
* Get request body buffer
*/
buffer(config?: StreamConfig): Promise<Buffer>;
/**
* Parse JSON data from request body
*/
json<D>(config?: StreamConfig): Promise<D>;
/**
* Parse query string data from request body
*/
qs(config?: StreamConfig): Promise<StringContainer>;
/**
* Get text request body
*/
test(config?: StreamConfig): Promise<string>;
}
declare class Channel<D, S> extends Broadcaster<D, S> {
/**
* Binds a connection to the channel
*/
bind(connection: WSConnection<D, S>): this;
/**
* Drops all the connections from the channel and removes the channel
*/
close(): void;
/**
* Unbinds a connection from the channel
*/
unbind(connection: WSConnection<D, S>): this;
}
declare class Client extends EventEmitter {
/**
* Make an HTTP DELETE method request
*/
delete(location: string, options: RequestOptions): Request;
/**
* Make an HTTP HEAD method request
*/
head(location: string, options: RequestOptions): Promise<Response>;
/**
* Make an HTTP GET method request
*/
get(location: string, options: RequestOptions): Promise<Response>;
/**
* Make an HTTP PATCH method request
*/
patch(location: string, options: RequestOptions): Request;
/**
* Make an HTTP POST method request
*/
post(location: string, options: RequestOptions): Request;
/**
* Make an HTTP PUT method request
*/
put(location: string, options: RequestOptions): Request;
/**
* Make an HTTP request
*/
request(location: string, options: RequestOptions): Request;
/**
* Make a WS connection
*/
ws(location: string, advanced: boolean, options: ClientConnectionOptions): ClientConnection;
}
declare class ClientConnection extends Transform {
/**
* Close the connection and set a close status code if needed
*/
close(callback: Callback): void;
/**
* Close the connection and set a close status code if needed
*/
close(code?: number, callback?: Callback): void;
/**
* Destroy the connection socket
*/
destroy(): void;
/**
* Send data to the server
*/
send<D>(data: D): void;
/**
* Send data to the server
*/
send<D, R>(event: string, data: D, callback?: DataCallback<R>): void;
}
declare class Form extends EventEmitter {}
declare class HTTPConnection<D, S> extends Connection<D, S> {
/**
* HTTP method
*/
method: string;
/**
* HTTP response
*/
response: ServerResponse;
/**
* Get received data from the request
*/
body(): Body;
/**
* Set, get or remove Cache-Control header
*/
cache(): string;
/**
* Set, get or remove Cache-Control header
*/
cache(config: null | string | CacheConfig): this;
/**
* Close the connection
*/
close(callback?: Callback): void;
/**
* Set a cookie
*/
cookie(name: string, value: string, attributes?: CookieAttributes): this;
/**
* Write the content of a file to the response
*/
drain(location: string, type?: string, override?: boolean): void;
/**
* Calls the error route with the provided code
*/
error(code: number): void;
/**
* Parse multipart form data from request body
*/
form(): Promise<Form>;
/**
* Set, get or remove a header of the response
*/
header(name: string): string;
/**
* Set, get or remove a header of the response
*/
header(name: string, value: null | boolean | number | string | string[]): this;
/**
* Set a timeout for inactivity on the connection socket
*/
keep(timeout?: number): this;
/**
* Set or get the language of the content of the response
*/
lang(): string;
/**
* Set or get the language of the content of the response
*/
lang(value: null | string): this;
/**
* Define the relation of the current location with other locations
*/
link(): string;
/**
* Define the relation of the current location with other locations
*/
link(links: StringContainer): this;
/**
* Redirect the client to a specific location
*/
redirect(location: string, permanent?: boolean): void;
/**
* Render from the template engine
*/
render<I>(source: string, imports: I): void;
/**
* Send preformatted data to the response stream
*/
send<T>(data: T): void;
/**
* Set or get the status code of the response
*/
status(): number;
/**
* Set or get the status code of the response
*/
status(code: number): this;
/**
* Get, set or remove the type of the content of the response
*/
type(): string;
/**
* Get, set or remove the type of the content of the response
*/
type(type: string, override?: boolean): this;
}
declare class HTTPHost<D> extends Router<D> {}
declare class Mirror<D> extends EventEmitter {
/**
* Container to store user data
*/
data: D;
/**
* Start or restart the mirror
*/
start(port?: number, callback?: MirrorCallback<D>): this;
/**
* Start or restart the mirror
*/
start(callback: MirrorCallback<D>): this;
/**
* Stop the mirror
*/
stop(callback?: MirrorCallback<D>): this;
}
declare class Request {
/**
* Abort request
*/
abort(): void;
/**
* Drain data from a readable source stream and send it to the server
*/
drain(source: string | Readable, type?: string, override?: boolean): Promise<Response>;
/**
* Send multipart form data to the server
*/
form(data: Container<FormDataField>): Promise<Response>;
/**
* Set, get or remove a header of the request
*/
header(name: string): string;
/**
* Set, get or remove a header of the request
*/
header(name: string, value: string): this;
/**
* Send URL encoded data to the server
*/
qs<D>(data: D): Promise<Response>;
/**
* Send data to the server
*/
send<D>(data: string | Buffer | Callback | D, type?: string, override?: boolean): Promise<Response>;
/**
* Get, set or remove the content type of the request
*/
type(): string;
/**
* Get, set or remove the content type of the request
*/
type(value: null | string, override?: boolean): this;
}
declare class Response {
/**
* Getter for response body stream
*/
readonly body: IncomingMessage;
/**
* Getter for response HTTP headers
*/
readonly headers: IncomingHttpHeaders;
/**
* Getter for response network socket
*/
readonly socket: Socket;
/**
* Getter for response status code
*/
readonly status: number;
/**
* Get buffer response body
*/
buffer(config?: StreamConfig): Promise<Buffer>;
/**
* Parse JSON data from response body
*/
json<D>(config?: StreamConfig): Promise<D>;
/**
* Parse query string data from response body
*/
qs(config?: StreamConfig): Promise<StringContainer>;
/**
* Get text response body
*/
text(config?: StreamConfig): Promise<string>;
}
declare class Router<D> extends EventEmitter {
/**
* Container to store user data
*/
data: D;
/**
* Route all types of requests
*/
all<A, S>(route: string, listener: RouteListener<A, S>): this;
/**
* Route all types of requests
*/
all<T>(route: string, view: string, imports?: T): this;
/**
* Route all types of requests
*/
all<A, S, T>(route: string, view: string, importer?: DataImporter<A, S, T>): this;
/**
* Configure router compression options
*/
compression(enabled: Enabled, config?: RouterCompressionOptions): this;
/**
* Configure router compression options
*/
compression(preferred: PreferredCompression, config?: RouterCompressionOptions): this;
/**
* Configure router compression options
*/
compression(config: RouterCompressionOptions): this;
/**
* Set all router options
*/
config<S>(options: RouterOptions<S>): this;
/**
* Configure router CORS options
*/
cors(config: RouterCORSOptions): this;
/**
* Route DELETE requests
*/
delete<A, S>(route: string, listener: RouteListener<A, S>): this;
/**
* Route DELETE requests
*/
delete<T>(route: string, view: string, imports?: T): this;
/**
* Route DELETE requests
*/
delete<A, S, T>(route: string, view: string, importer?: DataImporter<A, S, T>): this;
/**
* Define the template engine to render the responses
*/
engine<I>(engine: TemplateEngine<I>): this;
/**
* Route HTTP errors for 4xx and 5xx error codes
*/
error<A, S>(code: number, listener: RouteListener<A, S>): this;
/**
* Route HTTP errors for 4xx and 5xx error codes
*/
error<T>(code: number, view: string, imports?: T): this;
/**
* Route HTTP errors for 4xx and 5xx error codes
*/
error<A, S, T>(code: number, view: string, importer?: DataImporter<A, S, T>): this;
/**
* Route GET requests
*/
get<A, S>(route: string, listener: RouteListener<A, S>): this;
/**
* Route GET requests
*/
get<T>(route: string, view: string, imports?: T): this;
/**
* Route GET requests
*/
get<A, S, T>(route: string, view: string, importer?: DataImporter<A, S, T>): this;
/**
* Configure router logger options
*/
logger(config: RouterLoggerOptions): this;
/**
* Route PATCH requests
*/
patch<A, S>(route: string, listener: RouteListener<A, S>): this;
/**
* Route PATCH requests
*/
patch<T>(route: string, view: string, imports?: T): this;
/**
* Route PATCH requests
*/
patch<A, S, T>(route: string, view: string, importer?: DataImporter<A, S, T>): this;
/**
* Route POST requests
*/
post<A, S>(route: string, listener: RouteListener<A, S>): this;
/**
* Route POST requests
*/
post<T>(route: string, view: string, imports?: T): this;
/**
* Route POST requests
*/
post<A, S, T>(route: string, view: string, importer?: DataImporter<A, S, T>): this;
/**
* Route PUT requests
*/
put<A, S>(route: string, listener: RouteListener<A, S>): this;
/**
* Route PUT requests
*/
put<T>(route: string, view: string, imports?: T): this;
/**
* Route PUT requests
*/
put<A, S, T>(route: string, view: string, importer?: DataImporter<A, S, T>): this;
/**
* Create a new router
*/
router<S>(location: string): this;
/**
* Configure router session options
*/
session<S>(config: RouterSessionOptions<S>): this;
/**
* Configure router static files options
*/
static(enabled: Enabled, config?: RouterStaticOptions): this;
/**
* Configure router static files options
*/
static(location: string, config?: RouterStaticOptions): this;
/**
* Configure router static files options
*/
static(config: RouterStaticOptions): this;
/**
* Configure router HTTP timeout
*/
timeout(value: number): this;
/**
* Add a middleware to the router
*/
use<A, S>(middleware: Middleware<A, S>): this;
/**
* Set a new WS host
*/
ws<A, S>(location: string, options: WSOptions, listener: WSListener<A, S>): WSHost<A, S>;
/**
* Set a new WS host
*/
ws<A, S>(location: string, listener?: WSListener<A, S>): WSHost<A, S>;
}
declare class Server<D> extends HTTPHost<D> {
/**
* Create a new HTTP host
*/
host<S, H>(name: string, options?: RouterOptions<S>): HTTPHost<H>;
/**
* Create a new mirror
*/
mirror<M>(port?: number, options?: ServerOptions, callback?: MirrorCallback<M>): Mirror<M>;
/**
* Create a new mirror
*/
mirror<M>(port: number, callback?: MirrorCallback<M>): Mirror<M>;
/**
* Create a new mirror
*/
mirror<M>(options: ServerOptions, callback?: MirrorCallback<M>): Mirror<M>;
/**
* Create a new mirror
*/
mirror<M>(callback: MirrorCallback<M>): Mirror<M>;
/**
* Start or restart the server
*/
start(port?: number, callback?: ServerCallback<D>): this;
/**
* Start or restart the server
*/
start(callback: ServerCallback<D>): this;
/**
* Stop the server
*/
stop(callback?: ServerCallback<D>): this;
}
declare class Session<S> extends Map<string, S> {
/**
* Flag to mark if the session is changed and needs to be saved to the store
*/
changed: boolean;
/**
* Session id
*/
id: string;
/**
* Session store
*/
store: Store<S>;
/**
* Session timeout
*/
timeout: number;
/**
* Remove all session entries
*/
clear(): void;
/**
* Remove an entry of the session
*/
delete(key: string): boolean;
/**
* Remove session from the store
*/
destroy(): Promise<void>;
/**
* Generate new session id
*/
generate(): Promise<void>;
/**
* Load the session from the store
*/
load(): Promise<void>;
/**
* Save session to the store
*/
save(): Promise<void>;
/**
* Add or update an entry of the session
*/
set(key: string, value: S): this;
/**
* Update session expiration time
*/
update(): Promise<void>;
}
declare class Store<S> implements StoreInterface<S> {
/**
* Get session data from the store
*/
get(id: string): Promise<Session<S>>;
/**
* Remove session data from the store
*/
remove(id: string): Promise<void>;
/**
* Save session data to the store
*/
set(id: string, session: Session<S>, timeout: number): Promise<void>;
/**
* Update expiration time of the session data into the store
*/
update(id: string, timeout: number): Promise<void>;
}
declare class WSConnection<D, S> extends Connection<D, S> {
/**
* Accepted WS protocols
*/
protocols: string[];
/**
* Close the connection and set a close status code if needed
*/
close(code?: number, callback?: Callback): void;
/**
* Close the connection and set a close status code if needed
*/
close(callback: Callback): void;
/**
* Send data to the client
*/
send<T, R>(event: string, data: T, callback?: DataCallback<R>): void;
/**
* Send data to the client
*/
send<T>(data: T): void;
}