-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.js
164 lines (145 loc) · 3.22 KB
/
index.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
const path = require('path')
const glob = require('glob-promise')
const joi = require('joi')
const pkg = require('./package.json')
/**
* @type {Object}
*
* @description
* Internally used data
*/
const internals = {
routeList: []
}
/**
* @type {Object}
*
* @description
* Store joi schemata
*/
const schemata = {
options: joi.object({
routes: joi.string().default('**/*.js'),
ignore: [
joi.string(),
joi.array().items(joi.string())
],
cwd: joi.string().default(process.cwd()),
log: joi.boolean().default(false)
})
}
/**
* @function
* @public
*
* @description
* Initialize auto-loading and prefixing of routes
*/
async function init (server, options) {
internals.server = server
internals.options = joi.attempt(options, schemata.options, 'Invalid options')
const filePaths = await getFilePaths()
filePaths.forEach(registerRoutes)
if (internals.options.log) {
logRouteList()
}
}
/**
* @function
* @public
*
* @description
* Extend the list of prefixed routes
*
* @param {string} path The modified route path
* @param {string} method The concerning HTTP method
*/
function extendRouteList ({ path, method }) {
internals.routeList.push({ path, method })
}
/**
* @function
* @public
*
* @description
* Log the built list of prefixed routes into console
*/
function logRouteList () {
console.info(`\n${pkg.name} prefixed the following routes`)
internals.routeList.forEach((route) => {
console.info(' ', `[${route.method}]`.padEnd(8), route.path)
})
}
/**
* @function
* @public
*
* @description
* Get list of file paths based on passed options
*
* @returns {Array.<?string>} List of file paths
*/
function getFilePaths () {
return glob(internals.options.routes, {
nodir: true,
cwd: internals.options.cwd,
ignore: internals.options.ignore
})
}
/**
* @function
* @public
*
* @description
* Load file and clear cache
*
* @param {string} absPath The absolute file path to be loaded and registered
*/
function loadRoutesOnce (absPath) {
let routes = require(absPath)
if (!Array.isArray(routes)) {
routes = Array.of(routes)
}
delete require.cache[absPath]
return routes
}
/**
* @function
* @public
*
* @description
* Prefix the path for each of the passed routes
*
* @param {Array.<?Object> | Object} absPath The absolute file path to be loaded and registered
* @param {string} relPath The releative file path to be loaded and registered
* @returns {Array.<?Object>} The list of routes with prefixed paths
*/
function prefixRoutes (absPath, relPath) {
const routes = loadRoutesOnce(absPath)
const pathTree = relPath.split('/').slice(0, -1)
if (pathTree.length !== 0) {
routes.forEach((route) => {
route.path = `/${pathTree.join('/')}${route.path}`.replace(/\/$/, '')
extendRouteList(route)
})
}
return routes
}
/**
* @function
* @public
*
* @description
* Load and register routes
*
* @param {string} relPath The releative file path to be loaded and registered
*/
function registerRoutes (relPath) {
const absPath = path.join(internals.options.cwd, relPath)
const prefixedRoutes = prefixRoutes(absPath, relPath)
internals.server.route(prefixedRoutes)
}
module.exports = {
register: init,
pkg
}