@@ -19,8 +19,12 @@ class API {
19
19
20
20
// Set the version and base paths
21
21
this . _version = props && props . version ? props . version : 'v1'
22
- this . _base = props && props . base ? props . base . trim ( ) : ''
22
+ this . _base = props && props . base && typeof props . base === 'string' ? props . base . trim ( ) : ''
23
23
this . _callbackName = props && props . callback ? props . callback . trim ( ) : 'callback'
24
+ this . _mimeTypes = props && props . mimeTypes && typeof props . mimeTypes === 'object' ? props . mimeTypes : { }
25
+
26
+ // Prefix stack w/ base
27
+ this . _prefix = this . parseRoute ( this . _base )
24
28
25
29
// Stores timers for debugging
26
30
this . _timers = { }
@@ -56,6 +60,7 @@ class API {
56
60
57
61
// Testing flag
58
62
this . _test = false
63
+
59
64
} // end constructor
60
65
61
66
// GET: convenience method
@@ -73,6 +78,11 @@ class API {
73
78
this . METHOD ( 'PUT' , path , handler )
74
79
}
75
80
81
+ // PATCH: convenience method
82
+ patch ( path , handler ) {
83
+ this . METHOD ( 'PATCH' , path , handler )
84
+ }
85
+
76
86
// DELETE: convenience method
77
87
delete ( path , handler ) {
78
88
this . METHOD ( 'DELETE' , path , handler )
@@ -86,8 +96,14 @@ class API {
86
96
// METHOD: Adds method and handler to routes
87
97
METHOD ( method , path , handler ) {
88
98
99
+ // Parse the path
100
+ let parsedPath = this . parseRoute ( path )
101
+
89
102
// Split the route and clean it up
90
- let route = path . trim ( ) . replace ( / ^ \/ ( .* ?) ( \/ ) * $ / , '$1' ) . split ( '/' )
103
+ let route = this . _prefix . concat ( parsedPath )
104
+
105
+ // For root path support
106
+ if ( route . length === 0 ) { route . push ( '' ) }
91
107
92
108
// Keep track of path variables
93
109
let pathVars = { }
@@ -106,7 +122,7 @@ class API {
106
122
// Add the route to the global _routes
107
123
this . setRoute (
108
124
this . _routes ,
109
- ( i === route . length - 1 ? { [ '__' + method . toUpperCase ( ) ] : { vars : pathVars , handler : handler , route : path } } : { } ) ,
125
+ ( i === route . length - 1 ? { [ '__' + method . toUpperCase ( ) ] : { vars : pathVars , handler : handler , route : '/' + parsedPath . join ( '/' ) } } : { } ) ,
110
126
route . slice ( 0 , i + 1 )
111
127
) ;
112
128
@@ -141,6 +157,12 @@ class API {
141
157
142
158
} ) . catch ( ( e ) => {
143
159
160
+ // Error messages should never be base64 encoded
161
+ response . _isBase64 = false
162
+
163
+ // Strip the headers (TODO: find a better way to handle this)
164
+ response . _headers = { }
165
+
144
166
let message ;
145
167
146
168
if ( e instanceof Error ) {
@@ -298,20 +320,11 @@ class API {
298
320
// UTILITY FUNCTIONS
299
321
//-------------------------------------------------------------------------//
300
322
301
- deepFind ( obj , path ) {
302
- let paths = path //.split('.'),
303
- let current = obj
304
-
305
- for ( let i = 0 ; i < paths . length ; ++ i ) {
306
- if ( current [ paths [ i ] ] == undefined ) {
307
- return undefined
308
- } else {
309
- current = current [ paths [ i ] ]
310
- }
311
- }
312
- return current
323
+ parseRoute ( path ) {
324
+ return path . trim ( ) . replace ( / ^ \/ ( .* ?) ( \/ ) * $ / , '$1' ) . split ( '/' ) . filter ( x => x . trim ( ) !== '' )
313
325
}
314
326
327
+
315
328
setRoute ( obj , value , path ) {
316
329
if ( typeof path === "string" ) {
317
330
let path = path . split ( '.' )
@@ -354,9 +367,26 @@ class API {
354
367
return this . _app
355
368
}
356
369
370
+
371
+ // Register routes with options
372
+ register ( fn , options ) {
373
+
374
+ // Extract Prefix
375
+ let prefix = options . prefix && options . prefix . toString ( ) . trim ( ) !== '' ?
376
+ this . parseRoute ( options . prefix ) : [ ]
377
+
378
+ // Concat to existing prefix
379
+ this . _prefix = this . _prefix . concat ( prefix )
380
+
381
+ // Execute the routing function
382
+ fn ( this , options )
383
+
384
+ // Remove the last prefix
385
+ this . _prefix = this . _prefix . slice ( 0 , - ( prefix . length ) )
386
+
387
+ } // end register
388
+
357
389
} // end API class
358
390
359
391
// Export the API class
360
392
module . exports = opts => new API ( opts )
361
-
362
- // console.error('DEPRECATED: constructor method. Use require(\'lambda-api\')({ version: \'v1.0\', base: \'v1\' }) to initialize the framework instead')
0 commit comments