-
Notifications
You must be signed in to change notification settings - Fork 122
/
Copy pathindex.js
377 lines (315 loc) · 8.5 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
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
"use strict";
/**
* This example uses all features of API Gateway:
* - SSL
* - server assets
* - Multi routes
* - role-based authorization with JWT
* - whitelist
* - alias
* - body-parsers
* - file upload
* - HTTP2
*
* Metrics, statistics, validation features of Moleculer is enabled.
*
* Example:
*
* - Open index.html
* https://localhost:4000
*
* - Access to assets
* https://localhost:4000/images/logo.png
*
* - API: Add two numbers (use alias name)
* https://localhost:4000/api/add?a=25&b=13
*
* - or with named parameters
* https://localhost:4000/api/add/25/13
*
* - API: Divide two numbers with validation
* https://localhost:4000/api/math/div?a=25&b=13
* https://localhost:4000/api/math/div?a=25 <-- Throw validation error because `b` is missing
*
* - Authorization:
* https://localhost:4000/api/admin/health <-- Throw `Unauthorized` because no `Authorization` header
*
* First you have to login . You will get a token and set it to the `Authorization` key in header
* https://localhost:4000/api/login?username=admin&password=admin
*
* Set the token to header and try again
* https://localhost:4000/api/admin/health
*
* - File upload:
* Open https://localhost:4000/upload.html in the browser and upload a file. The file will be placed to the "examples/full/uploads" folder.
*
*/
const fs = require("fs");
const path = require("path");
const { ServiceBroker } = require("moleculer");
const { MoleculerError } = require("moleculer").Errors;
const { ForbiddenError, UnAuthorizedError, ERR_NO_TOKEN, ERR_INVALID_TOKEN } = require("../../src/errors");
// ----
const ApiGatewayService = require("../../index");
// Create broker
const broker = new ServiceBroker({
transporter: "NATS",
metrics: true
});
// Load other services
broker.loadServices(path.join(__dirname, ".."), "*.service.js");
// Load metrics example service from Moleculer
//broker.createService(require("moleculer/examples/metrics.service.js")());
// Load API Gateway
broker.createService({
mixins: ApiGatewayService,
settings: {
// Exposed port
port: 4000,
// Exposed IP
ip: "0.0.0.0",
// HTTPS server with certificate
https: {
key: fs.readFileSync(path.join(__dirname, "../ssl/key.pem")),
cert: fs.readFileSync(path.join(__dirname, "../ssl/cert.pem"))
},
//http2: true,
// Global CORS settings
cors: {
origin: "*",
methods: ["GET", "OPTIONS", "POST", "PUT", "DELETE"],
allowedHeaders: "*",
//exposedHeaders: "*",
credentials: true,
maxAge: null
},
// Rate limiter
rateLimit: {
window: 10 * 1000,
limit: 10,
headers: true
},
etag: true,
// Exposed path prefix
path: "/api",
routes: [
/**
* This route demonstrates a protected `/api/admin` path to access `users.*` & internal actions.
* To access them, you need to login first & use the received token in header
*/
{
// Path prefix to this route
path: "/admin",
// Whitelist of actions (array of string mask or regex)
whitelist: [
"users.*",
"$node.*"
],
// Route CORS settings
cors: {
origin: ["https://localhost:3000", "https://localhost:4000"],
methods: ["GET", "OPTIONS", "POST"],
},
authorization: true,
roles: ["admin"],
// Action aliases
aliases: {
"POST users": "users.create",
"health": "$node.health",
"custom"(req, res) {
res.writeHead(201);
res.end();
}
},
// Use bodyparser module
bodyParsers: {
json: true
},
onBeforeCall(ctx, route, req, res) {
this.logger.info("onBeforeCall in protected route");
ctx.meta.authToken = req.headers["authorization"];
},
onAfterCall(ctx, route, req, res, data) {
this.logger.info("onAfterCall in protected route");
res.setHeader("X-Custom-Header", "Authorized path");
return data;
},
// Route error handler
onError(req, res, err) {
res.setHeader("Content-Type", "text/plain");
res.writeHead(err.code || 500);
res.end("Route error: " + err.message);
}
},
{
path: "/upload",
authorization: false,
bodyParsers: {
json: false,
urlencoded: false
},
aliases: {
"GET /": "file.get",
"FILE /": "file.save",
"FILE /multi": {
// Action level busboy config
busboyConfig: {
limits: {
files: 3
}
},
action: "file.save"
}
},
// https://github.com/mscdex/busboy#busboy-methods
busboyConfig: {
limits: {
files: 1
}
},
callOptions: {
meta: {
a: 5
}
},
onAfterCall(ctx, route, req, res, data) {
this.logger.info("async onAfterCall in upload route");
return new this.Promise(resolve => {
res.setHeader("X-Response-Type", typeof(data));
resolve(data);
});
},
mappingPolicy: "restrict"
},
/**
* This route demonstrates a public `/api` path to access `posts`, `file` and `math` actions.
*/
{
// Path prefix to this route
path: "/",
// Middlewares
use: [
],
etag: true,
// Whitelist of actions (array of string mask or regex)
whitelist: [
"auth.*",
"file.*",
"test.*",
/^math\.\w+$/
],
authorization: false,
// Convert "say-hi" action -> "sayHi"
camelCaseNames: true,
// Action aliases
aliases: {
"login": "auth.login",
"add": "math.add",
"add/:a/:b": "math.add",
"GET sub": "math.sub",
"POST divide": "math.div",
"GET wrong": "test.wrong"
},
// Use bodyparser module
bodyParsers: {
json: true,
urlencoded: { extended: true }
},
callOptions: {
timeout: 3000,
//fallbackResponse: "Fallback response via callOptions"
},
onBeforeCall(ctx, route, req, res) {
return new this.Promise(resolve => {
this.logger.info("async onBeforeCall in public. Action:", ctx.action.name);
ctx.meta.userAgent = req.headers["user-agent"];
//ctx.meta.headers = req.headers;
resolve();
});
},
onAfterCall(ctx, route, req, res, data) {
this.logger.info("async onAfterCall in public");
return new this.Promise(resolve => {
res.setHeader("X-Response-Type", typeof(data));
resolve(data);
});
},
}
],
// Folder to server assets (static files)
assets: {
// Root folder of assets
folder: "./examples/full/assets",
// Options to `server-static` module
options: {}
},
// Global error handler
/*onError(req, res, err) {
res.setHeader("Content-Type", "text/plain");
res.writeHead(err.code || 500);
res.end("Global error: " + err.message);
},*/
// Do not log client side errors (does not log an error respons when the error.code is 400<=X<500)
log4XXResponses: false,
},
events: {
"node.broken"(node) {
this.logger.warn(`The ${node.id} node is disconnected!`);
}
},
methods: {
/**
* Authorize the request
*
* @param {Context} ctx
* @param {Object} route
* @param {IncomingRequest} req
* @returns {Promise}
*/
authorize(ctx, route, req) {
/*let authValue = req.headers["authorization"];
if (authValue && authValue.startsWith("Bearer ")) {
let token = authValue.slice(7);
// Verify JWT token
return ctx.call("auth.verifyToken", { token })
.then(decoded => {
//console.log("decoded data", decoded);
// Check the user role
if (route.opts.roles.indexOf(decoded.role) === -1)
return this.Promise.reject(new ForbiddenError());
// If authorization was success, we set the user entity to ctx.meta
return ctx.call("auth.getUserByID", { id: decoded.id }).then(user => {
ctx.meta.user = user;
this.logger.info("Logged in user", user);
});
})
.catch(err => {
if (err instanceof MoleculerError)
return this.Promise.reject(err);
return this.Promise.reject(new UnAuthorizedError(ERR_INVALID_TOKEN));
});
} else
return this.Promise.reject(new UnAuthorizedError(ERR_NO_TOKEN));
*/
let token;
if (req.headers.authorization) {
let type = req.headers.authorization.split(" ")[0];
if (type === "Token") {
token = req.headers.authorization.split(" ")[1];
}
}
if (!token) {
return Promise.reject(new UnAuthorizedError(ERR_NO_TOKEN));
}
// Verify JWT token
return ctx.call("auth.resolveToken", { token })
.then(user => {
if (!user)
return Promise.reject(new UnAuthorizedError(ERR_INVALID_TOKEN));
ctx.meta.user = user;
});
}
}
});
// Start server
broker.start();