-
Notifications
You must be signed in to change notification settings - Fork 2
/
moleculer-web.js
245 lines (203 loc) · 7.82 KB
/
moleculer-web.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
/* *******************************************************************************************
* MOLECULER WEB CHEATSHEET
* http://moleculer.services/0.12/docs/moleculer-web.html
*
* Version: 0.6.x
* ******************************************************************************************* */
/* *******************************************************************************************
* Install Moleculer Web
* ******************************************************************************************* */
```bash
npm i moleculer-web
```
/* *******************************************************************************************
* SERVICE USAGE
* ******************************************************************************************* */
const ApiGW = require("moleculer-web");
module.exports = {
name: "www",
mixins: [ApiGW],
settings: {
port: 4000
}
};
/* *******************************************************************************************
* SERVICE SETTINGS
* ******************************************************************************************* */
module.exports = {
name: "www",
mixins: [ApiGW],
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"))
},
// 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
},
// 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:4000"],
methods: ["GET", "OPTIONS", "POST"],
},
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");
},
// Route error handler
onError(req, res, err) {
res.setHeader("Content-Type", "text/plain");
res.writeHead(err.code || 500);
res.end("Route error: " + err.message);
}
},
/**
* 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"(req, res) {
this.parseUploadedFile(req, res);
}
},
// 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:", req.$endpoint.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();
});
},
}
],
// 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);
}
},
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));
}
}
};