1
- import { METHODS } from 'http' ;
2
1
import { exec , match , parse } from 'matchit' ;
3
2
3
+ const METHODS = [ 'GET' , 'HEAD' , 'POST' , 'PUT' , 'DELETE' , 'CONNECT' , 'OPTIONS' , 'TRACE' , 'PATCH' , 'all' ] ;
4
4
const bridgeThrough = ( t ) => {
5
5
t . bridges . forEach ( ( b ) => {
6
- Object . keys ( b . routes ) . forEach ( ( v ) => {
7
- t . routes [ v ] = b . routes [ v ] . concat ( t . routes [ v ] || [ ] ) ;
8
- } ) ;
6
+ for ( const [ k , v ] of Object . entries ( b . routes ) ) {
7
+ t . routes [ k ] = v . concat ( t . routes [ k ] ) ;
8
+ }
9
9
10
- Object . keys ( b . s ) . forEach ( ( v ) => {
11
- t . s [ v ] = t . s [ v ] || { } ;
12
- Object . keys ( b . s [ v ] ) . forEach ( ( p ) => {
13
- t . s [ v ] [ p ] = b . s [ v ] [ p ] . concat ( t . s [ v ] [ p ] || [ ] ) ;
14
- } ) ;
15
- } ) ;
10
+ for ( const [ k , v ] of Object . entries ( b . stacks ) ) {
11
+ t . stacks [ k ] ||= { } ;
12
+ for ( const [ kk , vv ] of Object . entries ( v ) ) {
13
+ t . stacks [ k ] [ kk ] = v [ kk ] . concat ( vv ) ;
14
+ }
15
+ }
16
16
} ) ;
17
17
18
18
return t ;
19
19
} ;
20
20
21
21
export default class Bridge {
22
- /**
23
- * this.s = A placeholder for `stacks`. One stack per HTTP verb.
24
- * this.t = A placeholder for `through` routes.
25
- */
26
22
constructor ( path = null ) {
27
23
this . id = process . hrtime ( ) . join ( '' ) ;
28
- this . routes = [ ] ;
29
- this . s = [ ] ;
30
- this . bridges = [ ] ;
24
+ this . routes = { } ;
25
+ this . stacks = { } ;
26
+ this . bridges = new Set ( ) ;
31
27
this . bridgedPath = path ;
32
- METHODS . push ( 'all' ) ;
33
28
METHODS . forEach ( ( verb ) => {
34
29
const bind = [ verb ] ;
35
30
if ( path ) {
@@ -39,31 +34,31 @@ export default class Bridge {
39
34
} ) ;
40
35
41
36
if ( ! path ) {
42
- this . t = [ ] ;
37
+ this . gates = [ ] ;
43
38
this . bridge = ( bridgedPath ) => {
44
39
const bridge = new Bridge ( bridgedPath ) ;
45
- this . bridges . push ( bridge ) ;
40
+ this . bridges . add ( bridge ) ;
46
41
return bridge ;
47
42
} ;
48
43
}
49
44
}
50
45
51
46
through ( ...handlers ) {
52
47
if ( ! handlers . length ) {
53
- this . t = this . s [ '*' ] && this . s [ '*' ] [ '*' ] ? this . s [ '*' ] [ '*' ] : [ ] ;
48
+ this . gates = this . stacks [ '*' ] ?. [ '*' ] || [ ] ;
54
49
return bridgeThrough ( this ) ;
55
50
}
56
51
57
- const [ verb , path ] = this . bridgedPath ? [ 'all ' , this . bridgedPath ] : [ '*' , '*' ] ;
52
+ const [ verb , path ] = this . bridgedPath ? [ 'through ' , this . bridgedPath ] : [ '*' , '*' ] ;
58
53
return this . route ( verb , path , ...handlers ) ;
59
54
}
60
55
61
56
route ( verb , path , ...handlers ) {
62
57
const set = ( m ) => {
63
- this . routes [ m ] = this . routes [ m ] || [ ] ;
64
- this . s [ m ] = this . s [ m ] || { } ;
58
+ this . routes [ m ] ||= [ ] ;
59
+ this . stacks [ m ] ||= { } ;
65
60
this . routes [ m ] . push ( parse ( path ) ) ;
66
- this . s [ m ] [ path ] = ( this . s [ m ] [ path ] || [ ] ) . concat ( handlers ) ;
61
+ this . stacks [ m ] [ path ] = ( this . stacks [ m ] [ path ] || [ ] ) . concat ( handlers ) ;
67
62
} ;
68
63
69
64
if ( verb === 'all' ) {
@@ -81,7 +76,7 @@ export default class Bridge {
81
76
? null
82
77
: {
83
78
params : exec ( path , url ) ,
84
- stack : this . s [ verb ] [ url [ 0 ] . old ]
79
+ stack : this . stacks [ verb ] [ url [ 0 ] . old ]
85
80
} ;
86
81
}
87
82
}
0 commit comments