@@ -8,9 +8,11 @@ import {
8
8
import { iterate } from 'iterare' ;
9
9
import * as pathToRegexp from 'path-to-regexp' ;
10
10
import { uid } from 'uid' ;
11
- import { ExcludeRouteMetadata } from '../router/interfaces/exclude-route-metadata.interface' ;
11
+ import {
12
+ ExcludeRouteMetadata ,
13
+ RouteMetadata ,
14
+ } from '../router/interfaces/exclude-route-metadata.interface' ;
12
15
import { isRouteExcluded } from '../router/utils' ;
13
-
14
16
export const mapToExcludeRoute = (
15
17
routes : ( string | RouteInfo ) [ ] ,
16
18
) : ExcludeRouteMetadata [ ] => {
@@ -32,20 +34,28 @@ export const mapToExcludeRoute = (
32
34
33
35
export const filterMiddleware = < T extends Function | Type < any > = any > (
34
36
middleware : T [ ] ,
35
- routes : RouteInfo [ ] ,
37
+ includedRoutes : RouteInfo [ ] ,
38
+ excludedRoutes : RouteInfo [ ] ,
36
39
httpAdapter : HttpServer ,
37
40
) => {
38
- const excludedRoutes = mapToExcludeRoute ( routes ) ;
39
41
return iterate ( [ ] )
40
42
. concat ( middleware )
41
43
. filter ( isFunction )
42
- . map ( ( item : T ) => mapToClass ( item , excludedRoutes , httpAdapter ) )
44
+ . map ( ( item : T ) =>
45
+ mapToClass (
46
+ item ,
47
+ mapToExcludeRoute ( includedRoutes ) ,
48
+ mapToExcludeRoute ( excludedRoutes ) ,
49
+ httpAdapter ,
50
+ ) ,
51
+ )
43
52
. toArray ( ) ;
44
53
} ;
45
54
46
55
export const mapToClass = < T extends Function | Type < any > > (
47
56
middleware : T ,
48
- excludedRoutes : ExcludeRouteMetadata [ ] ,
57
+ includedRoutes : RouteMetadata [ ] ,
58
+ excludedRoutes : RouteMetadata [ ] ,
49
59
httpAdapter : HttpServer ,
50
60
) => {
51
61
if ( isMiddlewareClass ( middleware ) ) {
@@ -57,6 +67,7 @@ export const mapToClass = <T extends Function | Type<any>>(
57
67
const [ req , _ , next ] = params as [ Record < string , any > , any , Function ] ;
58
68
const isExcluded = isMiddlewareRouteExcluded (
59
69
req ,
70
+ includedRoutes ,
60
71
excludedRoutes ,
61
72
httpAdapter ,
62
73
) ;
@@ -74,6 +85,7 @@ export const mapToClass = <T extends Function | Type<any>>(
74
85
const [ req , _ , next ] = params as [ Record < string , any > , any , Function ] ;
75
86
const isExcluded = isMiddlewareRouteExcluded (
76
87
req ,
88
+ includedRoutes ,
77
89
excludedRoutes ,
78
90
httpAdapter ,
79
91
) ;
@@ -106,7 +118,8 @@ export function assignToken(metatype: Type<any>, token = uid(21)): Type<any> {
106
118
107
119
export function isMiddlewareRouteExcluded (
108
120
req : Record < string , any > ,
109
- excludedRoutes : ExcludeRouteMetadata [ ] ,
121
+ includedRoutes : RouteMetadata [ ] ,
122
+ excludedRoutes : RouteMetadata [ ] ,
110
123
httpAdapter : HttpServer ,
111
124
) : boolean {
112
125
if ( excludedRoutes . length <= 0 ) {
@@ -120,5 +133,9 @@ export function isMiddlewareRouteExcluded(
120
133
? originalUrl . slice ( 0 , queryParamsIndex )
121
134
: originalUrl ;
122
135
123
- return isRouteExcluded ( excludedRoutes , pathname , RequestMethod [ reqMethod ] ) ;
136
+ if ( includedRoutes . length > 0 ) {
137
+ return ! isRouteExcluded ( includedRoutes , pathname , RequestMethod [ reqMethod ] ) ;
138
+ } else {
139
+ return isRouteExcluded ( excludedRoutes , pathname , RequestMethod [ reqMethod ] ) ;
140
+ }
124
141
}
0 commit comments