-
Notifications
You must be signed in to change notification settings - Fork 118
/
index.js
280 lines (234 loc) · 6.8 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
"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
*
* 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/~node/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/~node/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 multer = require("multer");
const mkdirp = require("mkdirp").sync;
// File upload storage with multer
const uploadDir = path.join(__dirname, "./uploads");
const storage = multer.diskStorage({
destination: (req, file, callback) => {
callback(null, uploadDir);
},
filename: (req, file, callback) => {
callback(null, file.originalname);
}
});
const upload = multer({ storage : storage}).single("myfile");
mkdirp(uploadDir);
// ----
const ApiGatewayService = require("../../index");
// Create broker
const broker = new ServiceBroker({
logger: console,
//logLevel: "debug",
metrics: true,
statistics: true,
validation: 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"))
},
// 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.*"
],
authorization: true,
roles: ["admin"],
// Action aliases
aliases: {
"POST users": "users.create",
"health": "$node.health"
},
// 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");
}
},
/**
* This route demonstrates a public `/api` path to access `posts`, `file` and `math` actions.
*/
{
// Path prefix to this route
path: "/",
// 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",
"POST upload"(route, req, res) {
this.parseUploadedFile(route, req, res);
}
},
// Use bodyparser module
bodyParsers: {
json: true,
urlencoded: { extended: true }
},
onBeforeCall(ctx, route, req, res) {
return new this.Promise(resolve => {
this.logger.info("async onBeforeCall in public");
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();
});
}
}
],
// Folder to server assets (static files)
assets: {
// Root folder of assets
folder: "./examples/full/assets",
// Options to `server-static` module
options: {}
}
},
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 succes, 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));
},
parseUploadedFile(route, req, res) {
this.logger.info("Incoming file!");
upload(req, res, err => {
if (err) {
this.logger.error("Error uploading file!", err);
res.writeHead(500);
return res.end("Error uploading file!", err);
}
res.writeHead(201);
res.end();
this.logger.info("File uploaded!", req.file);
this.broker.emit("file.uploaded", res.file);
});
}
}
});
// Start server
broker.start();