@webiny/handler 0.0.0-unstable.40876133bb → 0.0.0-unstable.496cf268ac
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/Context.d.ts +1 -0
- package/Context.js +2 -0
- package/Context.js.map +1 -1
- package/fastify.js +213 -49
- package/fastify.js.map +1 -1
- package/index.d.ts +3 -1
- package/index.js +34 -8
- package/index.js.map +1 -1
- package/package.json +12 -11
- package/plugins/HandlerOnRequestPlugin.d.ts +20 -0
- package/plugins/HandlerOnRequestPlugin.js +34 -0
- package/plugins/HandlerOnRequestPlugin.js.map +1 -0
- package/plugins/ModifyFastifyPlugin.d.ts +13 -0
- package/plugins/ModifyFastifyPlugin.js +34 -0
- package/plugins/ModifyFastifyPlugin.js.map +1 -0
- package/types.d.ts +4 -0
- package/types.js.map +1 -1
package/Context.d.ts
CHANGED
|
@@ -9,5 +9,6 @@ export declare class Context extends BaseContext implements BaseContextType {
|
|
|
9
9
|
readonly routes: BaseContextType["routes"];
|
|
10
10
|
handlerClient: BaseContextType["handlerClient"];
|
|
11
11
|
request: BaseContextType["request"];
|
|
12
|
+
reply: BaseContextType["reply"];
|
|
12
13
|
constructor(params: ContextParams);
|
|
13
14
|
}
|
package/Context.js
CHANGED
|
@@ -12,6 +12,7 @@ var _defineProperty2 = _interopRequireDefault(require("@babel/runtime/helpers/de
|
|
|
12
12
|
var _api = require("@webiny/api");
|
|
13
13
|
|
|
14
14
|
class Context extends _api.Context {
|
|
15
|
+
// @ts-ignore
|
|
15
16
|
// @ts-ignore
|
|
16
17
|
// @ts-ignore
|
|
17
18
|
constructor(params) {
|
|
@@ -20,6 +21,7 @@ class Context extends _api.Context {
|
|
|
20
21
|
(0, _defineProperty2.default)(this, "routes", void 0);
|
|
21
22
|
(0, _defineProperty2.default)(this, "handlerClient", void 0);
|
|
22
23
|
(0, _defineProperty2.default)(this, "request", void 0);
|
|
24
|
+
(0, _defineProperty2.default)(this, "reply", void 0);
|
|
23
25
|
this.server = params.server;
|
|
24
26
|
this.routes = params.routes;
|
|
25
27
|
}
|
package/Context.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["Context","BaseContext","constructor","params","server","routes"],"sources":["Context.ts"],"sourcesContent":["import { Context as BaseContext, ContextParams as BaseContextParams } from \"@webiny/api\";\nimport { Context as BaseContextType } from \"~/types\";\n\nexport interface ContextParams extends BaseContextParams {\n server: BaseContextType[\"server\"];\n routes: BaseContextType[\"routes\"];\n}\n\nexport class Context extends BaseContext implements BaseContextType {\n public readonly server: BaseContextType[\"server\"];\n public readonly routes: BaseContextType[\"routes\"];\n // @ts-ignore\n public handlerClient: BaseContextType[\"handlerClient\"];\n // @ts-ignore\n public request: BaseContextType[\"request\"];\n\n public constructor(params: ContextParams) {\n super(params);\n this.server = params.server;\n this.routes = params.routes;\n }\n}\n"],"mappings":";;;;;;;;;;;AAAA;;AAQO,MAAMA,OAAN,SAAsBC,YAAtB,CAA6D;EAGhE;EAEA;EAGOC,WAAW,CAACC,MAAD,EAAwB;IACtC,MAAMA,MAAN;IADsC;IAAA;IAAA;IAAA;IAEtC,KAAKC,MAAL,GAAcD,MAAM,CAACC,MAArB;IACA,KAAKC,MAAL,GAAcF,MAAM,CAACE,MAArB;EACH;;
|
|
1
|
+
{"version":3,"names":["Context","BaseContext","constructor","params","server","routes"],"sources":["Context.ts"],"sourcesContent":["import { Context as BaseContext, ContextParams as BaseContextParams } from \"@webiny/api\";\nimport { Context as BaseContextType } from \"~/types\";\n\nexport interface ContextParams extends BaseContextParams {\n server: BaseContextType[\"server\"];\n routes: BaseContextType[\"routes\"];\n}\n\nexport class Context extends BaseContext implements BaseContextType {\n public readonly server: BaseContextType[\"server\"];\n public readonly routes: BaseContextType[\"routes\"];\n // @ts-ignore\n public handlerClient: BaseContextType[\"handlerClient\"];\n // @ts-ignore\n public request: BaseContextType[\"request\"];\n // @ts-ignore\n public reply: BaseContextType[\"reply\"];\n\n public constructor(params: ContextParams) {\n super(params);\n this.server = params.server;\n this.routes = params.routes;\n }\n}\n"],"mappings":";;;;;;;;;;;AAAA;;AAQO,MAAMA,OAAN,SAAsBC,YAAtB,CAA6D;EAGhE;EAEA;EAEA;EAGOC,WAAW,CAACC,MAAD,EAAwB;IACtC,MAAMA,MAAN;IADsC;IAAA;IAAA;IAAA;IAAA;IAEtC,KAAKC,MAAL,GAAcD,MAAM,CAACC,MAArB;IACA,KAAKC,MAAL,GAAcF,MAAM,CAACE,MAArB;EACH;;AAd+D"}
|
package/fastify.js
CHANGED
|
@@ -23,6 +23,8 @@ var _handlerClient = require("@webiny/handler-client");
|
|
|
23
23
|
|
|
24
24
|
var _cookie = _interopRequireDefault(require("@fastify/cookie"));
|
|
25
25
|
|
|
26
|
+
var _compress = _interopRequireDefault(require("@fastify/compress"));
|
|
27
|
+
|
|
26
28
|
var _middleware = require("./middleware");
|
|
27
29
|
|
|
28
30
|
var _api = require("@webiny/api");
|
|
@@ -33,6 +35,10 @@ var _HandlerResultPlugin = require("./plugins/HandlerResultPlugin");
|
|
|
33
35
|
|
|
34
36
|
var _HandlerErrorPlugin = require("./plugins/HandlerErrorPlugin");
|
|
35
37
|
|
|
38
|
+
var _ModifyFastifyPlugin = require("./plugins/ModifyFastifyPlugin");
|
|
39
|
+
|
|
40
|
+
var _HandlerOnRequestPlugin = require("./plugins/HandlerOnRequestPlugin");
|
|
41
|
+
|
|
36
42
|
const DEFAULT_HEADERS = (0, _objectSpread2.default)({
|
|
37
43
|
"Cache-Control": "no-store",
|
|
38
44
|
"Content-Type": "application/json; charset=utf-8",
|
|
@@ -55,9 +61,7 @@ const getDefaultHeaders = routes => {
|
|
|
55
61
|
}
|
|
56
62
|
|
|
57
63
|
return (0, _objectSpread2.default)((0, _objectSpread2.default)({}, DEFAULT_HEADERS), {}, {
|
|
58
|
-
"Access-Control-Allow-Methods": keys.filter(
|
|
59
|
-
const type = key;
|
|
60
|
-
|
|
64
|
+
"Access-Control-Allow-Methods": keys.filter(type => {
|
|
61
65
|
if (!routes[type] || Array.isArray(routes[type]) === false) {
|
|
62
66
|
return false;
|
|
63
67
|
}
|
|
@@ -67,6 +71,26 @@ const getDefaultHeaders = routes => {
|
|
|
67
71
|
});
|
|
68
72
|
};
|
|
69
73
|
|
|
74
|
+
const stringifyError = error => {
|
|
75
|
+
var _error$constructor;
|
|
76
|
+
|
|
77
|
+
const {
|
|
78
|
+
name,
|
|
79
|
+
message,
|
|
80
|
+
code,
|
|
81
|
+
stack,
|
|
82
|
+
data
|
|
83
|
+
} = error;
|
|
84
|
+
return JSON.stringify((0, _objectSpread2.default)((0, _objectSpread2.default)({}, error), {}, {
|
|
85
|
+
constructorName: ((_error$constructor = error.constructor) === null || _error$constructor === void 0 ? void 0 : _error$constructor.name) || "UnknownError",
|
|
86
|
+
name: name || "No error name",
|
|
87
|
+
message: message || "No error message",
|
|
88
|
+
code: code || "NO_CODE",
|
|
89
|
+
data,
|
|
90
|
+
stack: process.env.DEBUG === "true" ? stack : "Turn on the debug flag to see the stack."
|
|
91
|
+
}));
|
|
92
|
+
};
|
|
93
|
+
|
|
70
94
|
const OPTIONS_HEADERS = {
|
|
71
95
|
"Access-Control-Max-Age": "86400",
|
|
72
96
|
"Cache-Control": "public, max-age=86400"
|
|
@@ -94,7 +118,7 @@ const createHandler = params => {
|
|
|
94
118
|
|
|
95
119
|
const throwOnDefinedRoute = (type, path, options) => {
|
|
96
120
|
if (type === "ALL") {
|
|
97
|
-
const all = Object.keys(definedRoutes).
|
|
121
|
+
const all = Object.keys(definedRoutes).find(key => {
|
|
98
122
|
const routes = definedRoutes[key];
|
|
99
123
|
return routes.includes(path);
|
|
100
124
|
});
|
|
@@ -103,6 +127,8 @@ const createHandler = params => {
|
|
|
103
127
|
return;
|
|
104
128
|
}
|
|
105
129
|
|
|
130
|
+
console.error(`Error while registering onAll route. One of the routes is already defined.`);
|
|
131
|
+
console.error(JSON.stringify(all));
|
|
106
132
|
throw new _error.default(`You cannot override a route with onAll() method, please remove unnecessary route from the system.`, "OVERRIDE_ROUTE_ERROR", {
|
|
107
133
|
type,
|
|
108
134
|
path
|
|
@@ -113,15 +139,14 @@ const createHandler = params => {
|
|
|
113
139
|
return;
|
|
114
140
|
}
|
|
115
141
|
|
|
142
|
+
console.error(`Error while trying to override route: [${type}] ${path}`);
|
|
116
143
|
throw new _error.default(`When you are trying to override existing route, you must send "override" parameter when adding that route.`, "OVERRIDE_ROUTE_ERROR", {
|
|
117
144
|
type,
|
|
118
145
|
path
|
|
119
146
|
});
|
|
120
147
|
};
|
|
121
148
|
|
|
122
|
-
const addDefinedRoute = (
|
|
123
|
-
const type = inputType.toUpperCase();
|
|
124
|
-
|
|
149
|
+
const addDefinedRoute = (type, path) => {
|
|
125
150
|
if (!definedRoutes[type]) {
|
|
126
151
|
return;
|
|
127
152
|
} else if (definedRoutes[type].includes(path)) {
|
|
@@ -154,13 +179,35 @@ const createHandler = params => {
|
|
|
154
179
|
addDefinedRoute(method, route.path);
|
|
155
180
|
});
|
|
156
181
|
/**
|
|
182
|
+
* ############################
|
|
183
|
+
* Register the Fastify plugins.
|
|
184
|
+
*/
|
|
185
|
+
|
|
186
|
+
/**
|
|
187
|
+
* Package @fastify/cookie
|
|
157
188
|
*
|
|
189
|
+
* https://github.com/fastify/fastify-cookie
|
|
158
190
|
*/
|
|
159
191
|
|
|
160
192
|
app.register(_cookie.default, {
|
|
161
193
|
parseOptions: {} // options for parsing cookies
|
|
162
194
|
|
|
163
195
|
});
|
|
196
|
+
/**
|
|
197
|
+
* Package @fastify/compress
|
|
198
|
+
*
|
|
199
|
+
* https://github.com/fastify/fastify-compress
|
|
200
|
+
*/
|
|
201
|
+
|
|
202
|
+
app.register(_compress.default, {
|
|
203
|
+
global: true,
|
|
204
|
+
threshold: 1024,
|
|
205
|
+
onUnsupportedEncoding: (encoding, _, reply) => {
|
|
206
|
+
reply.code(406);
|
|
207
|
+
return `We do not support the ${encoding} encoding.`;
|
|
208
|
+
},
|
|
209
|
+
inflateIfDeflated: true
|
|
210
|
+
});
|
|
164
211
|
/**
|
|
165
212
|
* Route helpers - mostly for users.
|
|
166
213
|
*/
|
|
@@ -200,25 +247,34 @@ const createHandler = params => {
|
|
|
200
247
|
app.head(path, handler);
|
|
201
248
|
}
|
|
202
249
|
};
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
250
|
+
let context;
|
|
251
|
+
|
|
252
|
+
try {
|
|
253
|
+
context = new _Context.Context({
|
|
254
|
+
plugins: [
|
|
255
|
+
/**
|
|
256
|
+
* We must have handlerClient by default.
|
|
257
|
+
* And it must be one of the first context plugins applied.
|
|
258
|
+
*/
|
|
259
|
+
(0, _handlerClient.createHandlerClient)(), ...(params.plugins || [])],
|
|
260
|
+
|
|
261
|
+
/**
|
|
262
|
+
* Inserted via webpack on build time.
|
|
263
|
+
*/
|
|
264
|
+
WEBINY_VERSION: process.env.WEBINY_VERSION,
|
|
265
|
+
server: app,
|
|
266
|
+
routes
|
|
267
|
+
});
|
|
268
|
+
} catch (ex) {
|
|
269
|
+
console.error(`Error while constructing the Context.`);
|
|
270
|
+
console.error(stringifyError(ex));
|
|
271
|
+
throw ex;
|
|
272
|
+
}
|
|
218
273
|
/**
|
|
219
|
-
* We are attaching our custom context to webiny variable on the fastify app so it is accessible everywhere
|
|
274
|
+
* We are attaching our custom context to webiny variable on the fastify app, so it is accessible everywhere.
|
|
220
275
|
*/
|
|
221
276
|
|
|
277
|
+
|
|
222
278
|
app.decorate("webiny", context);
|
|
223
279
|
/**
|
|
224
280
|
* We have few types of triggers:
|
|
@@ -233,10 +289,19 @@ const createHandler = params => {
|
|
|
233
289
|
* Add routes to the system.
|
|
234
290
|
*/
|
|
235
291
|
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
292
|
+
let routePluginName;
|
|
293
|
+
|
|
294
|
+
try {
|
|
295
|
+
for (const plugin of routePlugins) {
|
|
296
|
+
routePluginName = plugin.name;
|
|
297
|
+
plugin.cb((0, _objectSpread2.default)((0, _objectSpread2.default)({}, app.webiny.routes), {}, {
|
|
298
|
+
context: app.webiny
|
|
299
|
+
}));
|
|
300
|
+
}
|
|
301
|
+
} catch (ex) {
|
|
302
|
+
console.error(`Error while running the "RoutePlugin" ${routePluginName ? `(${routePluginName})` : ""} plugin in the beginning of the "createHandler" callable.`);
|
|
303
|
+
console.error(stringifyError(ex));
|
|
304
|
+
throw ex;
|
|
240
305
|
}
|
|
241
306
|
/**
|
|
242
307
|
* On every request we add default headers, which can be changed later.
|
|
@@ -245,28 +310,71 @@ const createHandler = params => {
|
|
|
245
310
|
|
|
246
311
|
|
|
247
312
|
app.addHook("onRequest", async (request, reply) => {
|
|
313
|
+
/**
|
|
314
|
+
* Our default headers are always set. Users can override them.
|
|
315
|
+
*/
|
|
248
316
|
const defaultHeaders = getDefaultHeaders(definedRoutes);
|
|
249
317
|
reply.headers(defaultHeaders);
|
|
318
|
+
/**
|
|
319
|
+
* Users can define their own custom handlers for the onRequest event - so let's run them first.
|
|
320
|
+
*/
|
|
321
|
+
|
|
322
|
+
const plugins = app.webiny.plugins.byType(_HandlerOnRequestPlugin.HandlerOnRequestPlugin.type);
|
|
323
|
+
let name;
|
|
324
|
+
|
|
325
|
+
try {
|
|
326
|
+
for (const plugin of plugins) {
|
|
327
|
+
name = plugin.name;
|
|
328
|
+
const result = await plugin.exec(request, reply);
|
|
329
|
+
|
|
330
|
+
if (result === false) {
|
|
331
|
+
return;
|
|
332
|
+
}
|
|
333
|
+
}
|
|
334
|
+
} catch (ex) {
|
|
335
|
+
console.error(`Error while running the "HandlerOnRequestPlugin" ${name ? `(${name})` : ""} plugin in the onRequest hook.`);
|
|
336
|
+
console.error(stringifyError(ex));
|
|
337
|
+
throw ex;
|
|
338
|
+
}
|
|
339
|
+
/**
|
|
340
|
+
* When we receive the OPTIONS request, we end it before it goes any further as there is no need for anything to run after this - at least for our use cases.
|
|
341
|
+
*
|
|
342
|
+
* Users can prevent this by creating their own HandlerOnRequestPlugin and returning false as the result of the callable.
|
|
343
|
+
*/
|
|
344
|
+
|
|
250
345
|
|
|
251
346
|
if (request.method !== "OPTIONS") {
|
|
252
347
|
return;
|
|
253
348
|
}
|
|
254
349
|
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
350
|
+
if (reply.sent) {
|
|
351
|
+
/**
|
|
352
|
+
* At this point throwing an exception will not do anything with the response. So just log it.
|
|
353
|
+
*/
|
|
354
|
+
console.error(JSON.stringify({
|
|
355
|
+
message: `Output was already sent. Please check custom plugins of type "HandlerOnRequestPlugin".`,
|
|
356
|
+
explanation: "This error can happen if the user plugin ended the reply, but did not return false as response."
|
|
357
|
+
}));
|
|
358
|
+
return;
|
|
260
359
|
}
|
|
261
360
|
|
|
262
|
-
|
|
361
|
+
reply.headers((0, _objectSpread2.default)((0, _objectSpread2.default)({}, defaultHeaders), OPTIONS_HEADERS)).code(204).send("").hijack();
|
|
263
362
|
});
|
|
264
|
-
app.addHook("preParsing", async request => {
|
|
363
|
+
app.addHook("preParsing", async (request, reply) => {
|
|
265
364
|
app.webiny.request = request;
|
|
365
|
+
app.webiny.reply = reply;
|
|
266
366
|
const plugins = app.webiny.plugins.byType(_api.ContextPlugin.type);
|
|
367
|
+
let name;
|
|
267
368
|
|
|
268
|
-
|
|
269
|
-
|
|
369
|
+
try {
|
|
370
|
+
for (const plugin of plugins) {
|
|
371
|
+
name = plugin.name;
|
|
372
|
+
await plugin.apply(app.webiny);
|
|
373
|
+
}
|
|
374
|
+
} catch (ex) {
|
|
375
|
+
console.error(`Error while running the "ContextPlugin" ${name ? `(${name})` : ""} plugin in the preParsing hook.`);
|
|
376
|
+
console.error(stringifyError(ex));
|
|
377
|
+
throw ex;
|
|
270
378
|
}
|
|
271
379
|
});
|
|
272
380
|
/**
|
|
@@ -275,9 +383,17 @@ const createHandler = params => {
|
|
|
275
383
|
|
|
276
384
|
app.addHook("preHandler", async () => {
|
|
277
385
|
const plugins = app.webiny.plugins.byType(_BeforeHandlerPlugin.BeforeHandlerPlugin.type);
|
|
386
|
+
let name;
|
|
278
387
|
|
|
279
|
-
|
|
280
|
-
|
|
388
|
+
try {
|
|
389
|
+
for (const plugin of plugins) {
|
|
390
|
+
name = plugin.name;
|
|
391
|
+
await plugin.apply(app.webiny);
|
|
392
|
+
}
|
|
393
|
+
} catch (ex) {
|
|
394
|
+
console.error(`Error while running the "BeforeHandlerPlugin" ${name ? `(${name})` : ""} plugin in the preHandler hook.`);
|
|
395
|
+
console.error(stringifyError(ex));
|
|
396
|
+
throw ex;
|
|
281
397
|
}
|
|
282
398
|
});
|
|
283
399
|
/**
|
|
@@ -286,33 +402,81 @@ const createHandler = params => {
|
|
|
286
402
|
|
|
287
403
|
const preSerialization = async (_, __, payload) => {
|
|
288
404
|
const plugins = app.webiny.plugins.byType(_HandlerResultPlugin.HandlerResultPlugin.type);
|
|
405
|
+
let name;
|
|
289
406
|
|
|
290
|
-
|
|
291
|
-
|
|
407
|
+
try {
|
|
408
|
+
for (const plugin of plugins) {
|
|
409
|
+
name = plugin.name;
|
|
410
|
+
await plugin.handle(app.webiny, payload);
|
|
411
|
+
}
|
|
412
|
+
} catch (ex) {
|
|
413
|
+
console.error(`Error while running the "HandlerResultPlugin" ${name ? `(${name})` : ""} plugin in the preSerialization hook.`);
|
|
414
|
+
console.error(stringifyError(ex));
|
|
415
|
+
throw ex;
|
|
292
416
|
}
|
|
293
417
|
|
|
294
418
|
return payload;
|
|
295
419
|
};
|
|
296
420
|
|
|
297
421
|
app.addHook("preSerialization", preSerialization);
|
|
422
|
+
app.setErrorHandler(async (error, request, reply) => {
|
|
423
|
+
return reply.status(500).headers({
|
|
424
|
+
"Cache-Control": "no-store"
|
|
425
|
+
}).send(
|
|
426
|
+
/**
|
|
427
|
+
* When we are sending the error in the response, we cannot send the whole error object, as it might contain some sensitive data.
|
|
428
|
+
*/
|
|
429
|
+
JSON.stringify({
|
|
430
|
+
message: error.message,
|
|
431
|
+
code: error.code,
|
|
432
|
+
data: error.data
|
|
433
|
+
}));
|
|
434
|
+
});
|
|
298
435
|
app.addHook("onError", async (_, reply, error) => {
|
|
299
|
-
const plugins = app.webiny.plugins.byType(_HandlerErrorPlugin.HandlerErrorPlugin.type);
|
|
436
|
+
const plugins = app.webiny.plugins.byType(_HandlerErrorPlugin.HandlerErrorPlugin.type);
|
|
437
|
+
/**
|
|
438
|
+
* Log error to cloud, as these can be extremely annoying to debug!
|
|
439
|
+
*/
|
|
300
440
|
|
|
301
|
-
console.
|
|
302
|
-
console.
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
})
|
|
441
|
+
console.error("@webiny/handler");
|
|
442
|
+
console.error(stringifyError(error));
|
|
443
|
+
reply.status(500).headers({
|
|
444
|
+
"Cache-Control": "no-store"
|
|
445
|
+
}).send(
|
|
446
|
+
/**
|
|
447
|
+
* When we are sending the error in the response, we cannot send the whole error object, as it might contain some sensitive data.
|
|
448
|
+
*/
|
|
449
|
+
JSON.stringify({
|
|
450
|
+
message: error.message,
|
|
451
|
+
code: error.code,
|
|
452
|
+
data: error.data
|
|
453
|
+
}));
|
|
306
454
|
const handler = (0, _middleware.middleware)(plugins.map(pl => {
|
|
307
455
|
return (context, error, next) => {
|
|
308
456
|
return pl.handle(context, error, next);
|
|
309
457
|
};
|
|
310
458
|
}));
|
|
311
459
|
await handler(app.webiny, error);
|
|
312
|
-
return reply
|
|
313
|
-
"Cache-Control": "no-store"
|
|
314
|
-
}).status(500);
|
|
460
|
+
return reply;
|
|
315
461
|
});
|
|
462
|
+
/**
|
|
463
|
+
* With these plugins we give users possibility to do anything they want on our fastify instance.
|
|
464
|
+
*/
|
|
465
|
+
|
|
466
|
+
const modifyPlugins = app.webiny.plugins.byType(_ModifyFastifyPlugin.ModifyFastifyPlugin.type);
|
|
467
|
+
let modifyFastifyPluginName;
|
|
468
|
+
|
|
469
|
+
try {
|
|
470
|
+
for (const plugin of modifyPlugins) {
|
|
471
|
+
modifyFastifyPluginName = plugin.name;
|
|
472
|
+
plugin.modify(app);
|
|
473
|
+
}
|
|
474
|
+
} catch (ex) {
|
|
475
|
+
console.error(`Error while running the "ModifyFastifyPlugin" ${modifyFastifyPluginName ? `(${modifyFastifyPluginName})` : ""} plugin in the end of the "createHandler" callable.`);
|
|
476
|
+
console.error(stringifyError(ex));
|
|
477
|
+
throw ex;
|
|
478
|
+
}
|
|
479
|
+
|
|
316
480
|
return app;
|
|
317
481
|
};
|
|
318
482
|
|
package/fastify.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["DEFAULT_HEADERS","getWebinyVersionHeaders","getDefaultHeaders","routes","keys","Object","all","every","key","length","filter","type","Array","isArray","sort","join","OPTIONS_HEADERS","createHandler","params","definedRoutes","POST","GET","OPTIONS","DELETE","PATCH","PUT","HEAD","COPY","LOCK","MKCOL","MOVE","PROPFIND","PROPPATCH","SEARCH","TRACE","UNLOCK","throwOnDefinedRoute","path","options","some","includes","WebinyError","override","addDefinedRoute","inputType","toUpperCase","push","app","fastify","addHook","route","method","m","register","fastifyCookies","parseOptions","defined","onPost","handler","post","onGet","get","onOptions","onDelete","delete","onPatch","patch","onPut","put","onAll","onHead","head","context","Context","plugins","createHandlerClient","WEBINY_VERSION","process","env","server","decorate","routePlugins","webiny","byType","RoutePlugin","plugin","cb","request","reply","defaultHeaders","headers","raw","code","hijack","setHeader","end","ContextPlugin","apply","BeforeHandlerPlugin","preSerialization","_","__","payload","HandlerResultPlugin","handle","error","HandlerErrorPlugin","console","log","JSON","stringify","message","middleware","map","pl","next","status"],"sources":["fastify.ts"],"sourcesContent":["import { PluginCollection } from \"@webiny/plugins/types\";\nimport fastify, {\n FastifyServerOptions as ServerOptions,\n preSerializationAsyncHookHandler\n} from \"fastify\";\nimport { getWebinyVersionHeaders } from \"@webiny/utils\";\nimport { ContextRoutes, DefinedContextRoutes, RouteMethodOptions, HTTPMethods } from \"~/types\";\nimport { Context } from \"~/Context\";\nimport WebinyError from \"@webiny/error\";\nimport { RoutePlugin } from \"./plugins/RoutePlugin\";\nimport { createHandlerClient } from \"@webiny/handler-client\";\nimport fastifyCookies from \"@fastify/cookie\";\nimport { middleware } from \"~/middleware\";\nimport { ContextPlugin } from \"@webiny/api\";\nimport { BeforeHandlerPlugin } from \"./plugins/BeforeHandlerPlugin\";\nimport { HandlerResultPlugin } from \"./plugins/HandlerResultPlugin\";\nimport { HandlerErrorPlugin } from \"./plugins/HandlerErrorPlugin\";\n\nconst DEFAULT_HEADERS: Record<string, string> = {\n \"Cache-Control\": \"no-store\",\n \"Content-Type\": \"application/json; charset=utf-8\",\n \"Access-Control-Allow-Origin\": \"*\",\n \"Access-Control-Allow-Headers\": \"*\",\n \"Access-Control-Allow-Methods\": \"OPTIONS,POST,GET,DELETE,PUT,PATCH\",\n ...getWebinyVersionHeaders()\n};\n\nconst getDefaultHeaders = (routes: DefinedContextRoutes): Record<string, string> => {\n /**\n * If we are accepting all headers, just output that one.\n */\n const keys = Object.keys(routes);\n const all = keys.every(key => routes[key as HTTPMethods].length > 0);\n if (all) {\n return {\n ...DEFAULT_HEADERS,\n \"Access-Control-Allow-Methods\": \"*\"\n };\n }\n return {\n ...DEFAULT_HEADERS,\n \"Access-Control-Allow-Methods\": keys\n .filter(key => {\n const type = key as unknown as HTTPMethods;\n if (!routes[type] || Array.isArray(routes[type]) === false) {\n return false;\n }\n return routes[type].length > 0;\n })\n .sort()\n .join(\",\")\n };\n};\n\nconst OPTIONS_HEADERS: Record<string, string> = {\n \"Access-Control-Max-Age\": \"86400\",\n \"Cache-Control\": \"public, max-age=86400\"\n};\n\nexport interface CreateHandlerParams {\n plugins: PluginCollection;\n options?: ServerOptions;\n}\n\nexport const createHandler = (params: CreateHandlerParams) => {\n const definedRoutes: DefinedContextRoutes = {\n POST: [],\n GET: [],\n OPTIONS: [],\n DELETE: [],\n PATCH: [],\n PUT: [],\n HEAD: [],\n COPY: [],\n LOCK: [],\n MKCOL: [],\n MOVE: [],\n PROPFIND: [],\n PROPPATCH: [],\n SEARCH: [],\n TRACE: [],\n UNLOCK: []\n };\n\n const throwOnDefinedRoute = (\n type: HTTPMethods | \"ALL\",\n path: string,\n options?: RouteMethodOptions\n ): void => {\n if (type === \"ALL\") {\n const all = Object.keys(definedRoutes).some(key => {\n const routes = definedRoutes[key as HTTPMethods];\n return routes.includes(path);\n });\n if (!all) {\n return;\n }\n throw new WebinyError(\n `You cannot override a route with onAll() method, please remove unnecessary route from the system.`,\n \"OVERRIDE_ROUTE_ERROR\",\n {\n type,\n path\n }\n );\n } else if (definedRoutes[type].includes(path) === false) {\n return;\n } else if (options?.override === true) {\n return;\n }\n throw new WebinyError(\n `When you are trying to override existing route, you must send \"override\" parameter when adding that route.`,\n \"OVERRIDE_ROUTE_ERROR\",\n {\n type,\n path\n }\n );\n };\n\n const addDefinedRoute = (inputType: HTTPMethods, path: string): void => {\n const type = (inputType as string).toUpperCase() as HTTPMethods;\n if (!definedRoutes[type]) {\n return;\n } else if (definedRoutes[type].includes(path)) {\n return;\n }\n definedRoutes[type].push(path);\n };\n /**\n * We must attach the server to our internal context if we want to have it accessible.\n */\n const app = fastify({\n ...(params.options || {})\n });\n /**\n * We need to register routes in our system so we can output headers later on and dissallow overriding routes.\n */\n app.addHook(\"onRoute\", route => {\n const method = route.method;\n if (Array.isArray(method)) {\n for (const m of method) {\n addDefinedRoute(m, route.path);\n }\n return;\n }\n addDefinedRoute(method, route.path);\n });\n /**\n *\n */\n app.register(fastifyCookies, {\n parseOptions: {} // options for parsing cookies\n });\n /**\n * Route helpers - mostly for users.\n */\n const routes: ContextRoutes = {\n defined: definedRoutes,\n onPost: (path, handler, options) => {\n throwOnDefinedRoute(\"POST\", path, options);\n app.post(path, handler);\n },\n onGet: (path, handler, options) => {\n throwOnDefinedRoute(\"GET\", path, options);\n app.get(path, handler);\n },\n onOptions: (path, handler, options) => {\n throwOnDefinedRoute(\"OPTIONS\", path, options);\n app.options(path, handler);\n },\n onDelete: (path, handler, options) => {\n throwOnDefinedRoute(\"DELETE\", path, options);\n app.delete(path, handler);\n },\n onPatch: (path, handler, options) => {\n throwOnDefinedRoute(\"PATCH\", path, options);\n app.patch(path, handler);\n },\n onPut: (path, handler, options) => {\n throwOnDefinedRoute(\"PUT\", path, options);\n app.put(path, handler);\n },\n onAll: (path, handler, options) => {\n throwOnDefinedRoute(\"ALL\", path, options);\n app.all(path, handler);\n },\n onHead: (path, handler, options) => {\n throwOnDefinedRoute(\"HEAD\", path, options);\n app.head(path, handler);\n }\n };\n const context = new Context({\n plugins: [\n /**\n * We must have handlerClient by default.\n * And it must be one of the first context plugins applied.\n */\n createHandlerClient(),\n ...(params.plugins || [])\n ],\n /**\n * Inserted via webpack on build time.\n */\n WEBINY_VERSION: process.env.WEBINY_VERSION as string,\n server: app,\n routes\n });\n /**\n * We are attaching our custom context to webiny variable on the fastify app so it is accessible everywhere\n */\n app.decorate(\"webiny\", context);\n\n /**\n * We have few types of triggers:\n * * Events - EventPlugin\n * * Routes - RoutePlugin\n *\n * Routes are registered in fastify but events must be handled in package which implements cloud specific methods.\n */\n const routePlugins = app.webiny.plugins.byType<RoutePlugin>(RoutePlugin.type);\n\n /**\n * Add routes to the system.\n */\n for (const plugin of routePlugins) {\n plugin.cb({\n ...app.webiny.routes,\n context: app.webiny\n });\n }\n\n /**\n * On every request we add default headers, which can be changed later.\n * Also, if it is an options request, we skip everything after this hook and output options headers.\n */\n app.addHook(\"onRequest\", async (request, reply) => {\n const defaultHeaders = getDefaultHeaders(definedRoutes);\n reply.headers(defaultHeaders);\n if (request.method !== \"OPTIONS\") {\n return;\n }\n const raw = reply.code(204).hijack().raw;\n const headers = { ...defaultHeaders, ...OPTIONS_HEADERS };\n for (const key in headers) {\n raw.setHeader(key, headers[key]);\n }\n\n raw.end(\"\");\n });\n\n app.addHook(\"preParsing\", async request => {\n app.webiny.request = request;\n const plugins = app.webiny.plugins.byType<ContextPlugin>(ContextPlugin.type);\n for (const plugin of plugins) {\n await plugin.apply(app.webiny);\n }\n });\n /**\n *\n */\n app.addHook(\"preHandler\", async () => {\n const plugins = app.webiny.plugins.byType<BeforeHandlerPlugin>(BeforeHandlerPlugin.type);\n for (const plugin of plugins) {\n await plugin.apply(app.webiny);\n }\n });\n\n /**\n *\n */\n const preSerialization: preSerializationAsyncHookHandler<any> = async (_, __, payload) => {\n const plugins = app.webiny.plugins.byType<HandlerResultPlugin>(HandlerResultPlugin.type);\n for (const plugin of plugins) {\n await plugin.handle(app.webiny, payload);\n }\n return payload;\n };\n\n app.addHook(\"preSerialization\", preSerialization);\n\n app.addHook(\"onError\", async (_, reply, error) => {\n const plugins = app.webiny.plugins.byType<HandlerErrorPlugin>(HandlerErrorPlugin.type);\n // Log error to cloud, as these can be extremely annoying to debug!\n console.log(\"@webiny/handler\");\n console.log(\n JSON.stringify({\n ...(error || {}),\n message: error?.message,\n code: error?.code\n })\n );\n const handler = middleware(\n plugins.map(pl => {\n return (context: Context, error: Error, next: Function) => {\n return pl.handle(context, error, next);\n };\n })\n );\n await handler(app.webiny, error);\n\n return reply\n .headers({\n \"Cache-Control\": \"no-store\"\n })\n .status(500);\n });\n\n return app;\n};\n"],"mappings":"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"}
|
|
1
|
+
{"version":3,"names":["DEFAULT_HEADERS","getWebinyVersionHeaders","getDefaultHeaders","routes","keys","Object","all","every","key","length","filter","type","Array","isArray","sort","join","stringifyError","error","name","message","code","stack","data","JSON","stringify","constructorName","constructor","process","env","DEBUG","OPTIONS_HEADERS","createHandler","params","definedRoutes","POST","GET","OPTIONS","DELETE","PATCH","PUT","HEAD","COPY","LOCK","MKCOL","MOVE","PROPFIND","PROPPATCH","SEARCH","TRACE","UNLOCK","throwOnDefinedRoute","path","options","find","includes","console","WebinyError","override","addDefinedRoute","push","app","fastify","addHook","route","method","m","register","fastifyCookie","parseOptions","fastifyCompress","global","threshold","onUnsupportedEncoding","encoding","_","reply","inflateIfDeflated","defined","onPost","handler","post","onGet","get","onOptions","onDelete","delete","onPatch","patch","onPut","put","onAll","onHead","head","context","Context","plugins","createHandlerClient","WEBINY_VERSION","server","ex","decorate","routePlugins","webiny","byType","RoutePlugin","routePluginName","plugin","cb","request","defaultHeaders","headers","HandlerOnRequestPlugin","result","exec","sent","explanation","send","hijack","ContextPlugin","apply","BeforeHandlerPlugin","preSerialization","__","payload","HandlerResultPlugin","handle","setErrorHandler","status","HandlerErrorPlugin","middleware","map","pl","next","modifyPlugins","ModifyFastifyPlugin","modifyFastifyPluginName","modify"],"sources":["fastify.ts"],"sourcesContent":["import { PluginCollection } from \"@webiny/plugins/types\";\nimport fastify, {\n FastifyServerOptions as ServerOptions,\n preSerializationAsyncHookHandler\n} from \"fastify\";\nimport { getWebinyVersionHeaders } from \"@webiny/utils\";\nimport { ContextRoutes, DefinedContextRoutes, RouteMethodOptions, HTTPMethods } from \"~/types\";\nimport { Context } from \"~/Context\";\nimport WebinyError from \"@webiny/error\";\nimport { RoutePlugin } from \"./plugins/RoutePlugin\";\nimport { createHandlerClient } from \"@webiny/handler-client\";\nimport fastifyCookie from \"@fastify/cookie\";\nimport fastifyCompress from \"@fastify/compress\";\nimport { middleware } from \"~/middleware\";\nimport { ContextPlugin } from \"@webiny/api\";\nimport { BeforeHandlerPlugin } from \"./plugins/BeforeHandlerPlugin\";\nimport { HandlerResultPlugin } from \"./plugins/HandlerResultPlugin\";\nimport { HandlerErrorPlugin } from \"./plugins/HandlerErrorPlugin\";\nimport { ModifyFastifyPlugin } from \"~/plugins/ModifyFastifyPlugin\";\nimport { HandlerOnRequestPlugin } from \"~/plugins/HandlerOnRequestPlugin\";\n\nconst DEFAULT_HEADERS: Record<string, string> = {\n \"Cache-Control\": \"no-store\",\n \"Content-Type\": \"application/json; charset=utf-8\",\n \"Access-Control-Allow-Origin\": \"*\",\n \"Access-Control-Allow-Headers\": \"*\",\n \"Access-Control-Allow-Methods\": \"OPTIONS,POST,GET,DELETE,PUT,PATCH\",\n ...getWebinyVersionHeaders()\n};\n\nconst getDefaultHeaders = (routes: DefinedContextRoutes): Record<string, string> => {\n /**\n * If we are accepting all headers, just output that one.\n */\n const keys = Object.keys(routes) as HTTPMethods[];\n const all = keys.every(key => routes[key].length > 0);\n if (all) {\n return {\n ...DEFAULT_HEADERS,\n \"Access-Control-Allow-Methods\": \"*\"\n };\n }\n return {\n ...DEFAULT_HEADERS,\n \"Access-Control-Allow-Methods\": keys\n .filter(type => {\n if (!routes[type] || Array.isArray(routes[type]) === false) {\n return false;\n }\n return routes[type].length > 0;\n })\n .sort()\n .join(\",\")\n };\n};\n\nconst stringifyError = (error: Error) => {\n const { name, message, code, stack, data } = error as any;\n return JSON.stringify({\n ...error,\n constructorName: error.constructor?.name || \"UnknownError\",\n name: name || \"No error name\",\n message: message || \"No error message\",\n code: code || \"NO_CODE\",\n data,\n stack: process.env.DEBUG === \"true\" ? stack : \"Turn on the debug flag to see the stack.\"\n });\n};\n\nconst OPTIONS_HEADERS: Record<string, string> = {\n \"Access-Control-Max-Age\": \"86400\",\n \"Cache-Control\": \"public, max-age=86400\"\n};\n\nexport interface CreateHandlerParams {\n plugins: PluginCollection;\n options?: ServerOptions;\n}\n\nexport const createHandler = (params: CreateHandlerParams) => {\n const definedRoutes: DefinedContextRoutes = {\n POST: [],\n GET: [],\n OPTIONS: [],\n DELETE: [],\n PATCH: [],\n PUT: [],\n HEAD: [],\n COPY: [],\n LOCK: [],\n MKCOL: [],\n MOVE: [],\n PROPFIND: [],\n PROPPATCH: [],\n SEARCH: [],\n TRACE: [],\n UNLOCK: []\n };\n\n const throwOnDefinedRoute = (\n type: HTTPMethods | \"ALL\",\n path: string,\n options?: RouteMethodOptions\n ): void => {\n if (type === \"ALL\") {\n const all = Object.keys(definedRoutes).find(key => {\n const routes = definedRoutes[key as HTTPMethods];\n return routes.includes(path);\n });\n if (!all) {\n return;\n }\n console.error(\n `Error while registering onAll route. One of the routes is already defined.`\n );\n console.error(JSON.stringify(all));\n throw new WebinyError(\n `You cannot override a route with onAll() method, please remove unnecessary route from the system.`,\n \"OVERRIDE_ROUTE_ERROR\",\n {\n type,\n path\n }\n );\n } else if (definedRoutes[type].includes(path) === false) {\n return;\n } else if (options?.override === true) {\n return;\n }\n console.error(`Error while trying to override route: [${type}] ${path}`);\n throw new WebinyError(\n `When you are trying to override existing route, you must send \"override\" parameter when adding that route.`,\n \"OVERRIDE_ROUTE_ERROR\",\n {\n type,\n path\n }\n );\n };\n\n const addDefinedRoute = (type: HTTPMethods, path: string): void => {\n if (!definedRoutes[type]) {\n return;\n } else if (definedRoutes[type].includes(path)) {\n return;\n }\n definedRoutes[type].push(path);\n };\n /**\n * We must attach the server to our internal context if we want to have it accessible.\n */\n const app = fastify({\n ...(params.options || {})\n });\n /**\n * We need to register routes in our system so we can output headers later on and dissallow overriding routes.\n */\n app.addHook(\"onRoute\", route => {\n const method = route.method;\n if (Array.isArray(method)) {\n for (const m of method) {\n addDefinedRoute(m, route.path);\n }\n return;\n }\n addDefinedRoute(method, route.path);\n });\n /**\n * ############################\n * Register the Fastify plugins.\n */\n /**\n * Package @fastify/cookie\n *\n * https://github.com/fastify/fastify-cookie\n */\n app.register(fastifyCookie, {\n parseOptions: {} // options for parsing cookies\n });\n /**\n * Package @fastify/compress\n *\n * https://github.com/fastify/fastify-compress\n */\n app.register(fastifyCompress, {\n global: true,\n threshold: 1024,\n onUnsupportedEncoding: (encoding, _, reply) => {\n reply.code(406);\n return `We do not support the ${encoding} encoding.`;\n },\n inflateIfDeflated: true\n });\n /**\n * Route helpers - mostly for users.\n */\n const routes: ContextRoutes = {\n defined: definedRoutes,\n onPost: (path, handler, options) => {\n throwOnDefinedRoute(\"POST\", path, options);\n app.post(path, handler);\n },\n onGet: (path, handler, options) => {\n throwOnDefinedRoute(\"GET\", path, options);\n app.get(path, handler);\n },\n onOptions: (path, handler, options) => {\n throwOnDefinedRoute(\"OPTIONS\", path, options);\n app.options(path, handler);\n },\n onDelete: (path, handler, options) => {\n throwOnDefinedRoute(\"DELETE\", path, options);\n app.delete(path, handler);\n },\n onPatch: (path, handler, options) => {\n throwOnDefinedRoute(\"PATCH\", path, options);\n app.patch(path, handler);\n },\n onPut: (path, handler, options) => {\n throwOnDefinedRoute(\"PUT\", path, options);\n app.put(path, handler);\n },\n onAll: (path, handler, options) => {\n throwOnDefinedRoute(\"ALL\", path, options);\n app.all(path, handler);\n },\n onHead: (path, handler, options) => {\n throwOnDefinedRoute(\"HEAD\", path, options);\n app.head(path, handler);\n }\n };\n let context: Context;\n try {\n context = new Context({\n plugins: [\n /**\n * We must have handlerClient by default.\n * And it must be one of the first context plugins applied.\n */\n createHandlerClient(),\n ...(params.plugins || [])\n ],\n /**\n * Inserted via webpack on build time.\n */\n WEBINY_VERSION: process.env.WEBINY_VERSION as string,\n server: app,\n routes\n });\n } catch (ex) {\n console.error(`Error while constructing the Context.`);\n console.error(stringifyError(ex));\n throw ex;\n }\n\n /**\n * We are attaching our custom context to webiny variable on the fastify app, so it is accessible everywhere.\n */\n app.decorate(\"webiny\", context);\n\n /**\n * We have few types of triggers:\n * * Events - EventPlugin\n * * Routes - RoutePlugin\n *\n * Routes are registered in fastify but events must be handled in package which implements cloud specific methods.\n */\n const routePlugins = app.webiny.plugins.byType<RoutePlugin>(RoutePlugin.type);\n\n /**\n * Add routes to the system.\n */\n let routePluginName: string | undefined;\n try {\n for (const plugin of routePlugins) {\n routePluginName = plugin.name;\n plugin.cb({\n ...app.webiny.routes,\n context: app.webiny\n });\n }\n } catch (ex) {\n console.error(\n `Error while running the \"RoutePlugin\" ${\n routePluginName ? `(${routePluginName})` : \"\"\n } plugin in the beginning of the \"createHandler\" callable.`\n );\n console.error(stringifyError(ex));\n throw ex;\n }\n\n /**\n * On every request we add default headers, which can be changed later.\n * Also, if it is an options request, we skip everything after this hook and output options headers.\n */\n app.addHook(\"onRequest\", async (request, reply) => {\n /**\n * Our default headers are always set. Users can override them.\n */\n const defaultHeaders = getDefaultHeaders(definedRoutes);\n reply.headers(defaultHeaders);\n /**\n * Users can define their own custom handlers for the onRequest event - so let's run them first.\n */\n const plugins = app.webiny.plugins.byType<HandlerOnRequestPlugin>(\n HandlerOnRequestPlugin.type\n );\n\n let name: string | undefined;\n try {\n for (const plugin of plugins) {\n name = plugin.name;\n const result = await plugin.exec(request, reply);\n if (result === false) {\n return;\n }\n }\n } catch (ex) {\n console.error(\n `Error while running the \"HandlerOnRequestPlugin\" ${\n name ? `(${name})` : \"\"\n } plugin in the onRequest hook.`\n );\n console.error(stringifyError(ex));\n throw ex;\n }\n /**\n * When we receive the OPTIONS request, we end it before it goes any further as there is no need for anything to run after this - at least for our use cases.\n *\n * Users can prevent this by creating their own HandlerOnRequestPlugin and returning false as the result of the callable.\n */\n if (request.method !== \"OPTIONS\") {\n return;\n }\n\n if (reply.sent) {\n /**\n * At this point throwing an exception will not do anything with the response. So just log it.\n */\n console.error(\n JSON.stringify({\n message: `Output was already sent. Please check custom plugins of type \"HandlerOnRequestPlugin\".`,\n explanation:\n \"This error can happen if the user plugin ended the reply, but did not return false as response.\"\n })\n );\n return;\n }\n\n reply\n .headers({ ...defaultHeaders, ...OPTIONS_HEADERS })\n .code(204)\n .send(\"\")\n .hijack();\n });\n\n app.addHook(\"preParsing\", async (request, reply) => {\n app.webiny.request = request;\n app.webiny.reply = reply;\n const plugins = app.webiny.plugins.byType<ContextPlugin>(ContextPlugin.type);\n let name: string | undefined;\n try {\n for (const plugin of plugins) {\n name = plugin.name;\n await plugin.apply(app.webiny);\n }\n } catch (ex) {\n console.error(\n `Error while running the \"ContextPlugin\" ${\n name ? `(${name})` : \"\"\n } plugin in the preParsing hook.`\n );\n console.error(stringifyError(ex));\n throw ex;\n }\n });\n /**\n *\n */\n app.addHook(\"preHandler\", async () => {\n const plugins = app.webiny.plugins.byType<BeforeHandlerPlugin>(BeforeHandlerPlugin.type);\n let name: string | undefined;\n try {\n for (const plugin of plugins) {\n name = plugin.name;\n await plugin.apply(app.webiny);\n }\n } catch (ex) {\n console.error(\n `Error while running the \"BeforeHandlerPlugin\" ${\n name ? `(${name})` : \"\"\n } plugin in the preHandler hook.`\n );\n console.error(stringifyError(ex));\n throw ex;\n }\n });\n\n /**\n *\n */\n const preSerialization: preSerializationAsyncHookHandler<any> = async (_, __, payload) => {\n const plugins = app.webiny.plugins.byType<HandlerResultPlugin>(HandlerResultPlugin.type);\n let name: string | undefined;\n try {\n for (const plugin of plugins) {\n name = plugin.name;\n await plugin.handle(app.webiny, payload);\n }\n } catch (ex) {\n console.error(\n `Error while running the \"HandlerResultPlugin\" ${\n name ? `(${name})` : \"\"\n } plugin in the preSerialization hook.`\n );\n console.error(stringifyError(ex));\n throw ex;\n }\n return payload;\n };\n\n app.addHook(\"preSerialization\", preSerialization);\n\n app.setErrorHandler<WebinyError>(async (error, request, reply) => {\n return reply\n .status(500)\n .headers({\n \"Cache-Control\": \"no-store\"\n })\n .send(\n /**\n * When we are sending the error in the response, we cannot send the whole error object, as it might contain some sensitive data.\n */\n JSON.stringify({\n message: error.message,\n code: error.code,\n data: error.data\n })\n );\n });\n\n app.addHook(\"onError\", async (_, reply, error: any) => {\n const plugins = app.webiny.plugins.byType<HandlerErrorPlugin>(HandlerErrorPlugin.type);\n /**\n * Log error to cloud, as these can be extremely annoying to debug!\n */\n console.error(\"@webiny/handler\");\n console.error(stringifyError(error));\n\n reply\n .status(500)\n .headers({\n \"Cache-Control\": \"no-store\"\n })\n .send(\n /**\n * When we are sending the error in the response, we cannot send the whole error object, as it might contain some sensitive data.\n */\n JSON.stringify({\n message: error.message,\n code: error.code,\n data: error.data\n })\n );\n\n const handler = middleware(\n plugins.map(pl => {\n return (context: Context, error: Error, next: Function) => {\n return pl.handle(context, error, next);\n };\n })\n );\n await handler(app.webiny, error);\n\n return reply;\n });\n\n /**\n * With these plugins we give users possibility to do anything they want on our fastify instance.\n */\n const modifyPlugins = app.webiny.plugins.byType<ModifyFastifyPlugin>(ModifyFastifyPlugin.type);\n\n let modifyFastifyPluginName: string | undefined;\n try {\n for (const plugin of modifyPlugins) {\n modifyFastifyPluginName = plugin.name;\n plugin.modify(app);\n }\n } catch (ex) {\n console.error(\n `Error while running the \"ModifyFastifyPlugin\" ${\n modifyFastifyPluginName ? `(${modifyFastifyPluginName})` : \"\"\n } plugin in the end of the \"createHandler\" callable.`\n );\n console.error(stringifyError(ex));\n throw ex;\n }\n\n return app;\n};\n"],"mappings":"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"}
|
package/index.d.ts
CHANGED
|
@@ -1,8 +1,10 @@
|
|
|
1
|
-
export * from "./fastify";
|
|
2
1
|
export * from "@webiny/api/plugins/ContextPlugin";
|
|
2
|
+
export * from "./fastify";
|
|
3
3
|
export * from "./Context";
|
|
4
4
|
export * from "./plugins/EventPlugin";
|
|
5
5
|
export * from "./plugins/RoutePlugin";
|
|
6
6
|
export * from "./plugins/BeforeHandlerPlugin";
|
|
7
7
|
export * from "./plugins/HandlerErrorPlugin";
|
|
8
8
|
export * from "./plugins/HandlerResultPlugin";
|
|
9
|
+
export * from "./plugins/HandlerOnRequestPlugin";
|
|
10
|
+
export * from "./plugins/ModifyFastifyPlugin";
|
package/index.js
CHANGED
|
@@ -4,28 +4,28 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
4
4
|
value: true
|
|
5
5
|
});
|
|
6
6
|
|
|
7
|
-
var
|
|
7
|
+
var _ContextPlugin = require("@webiny/api/plugins/ContextPlugin");
|
|
8
8
|
|
|
9
|
-
Object.keys(
|
|
9
|
+
Object.keys(_ContextPlugin).forEach(function (key) {
|
|
10
10
|
if (key === "default" || key === "__esModule") return;
|
|
11
|
-
if (key in exports && exports[key] ===
|
|
11
|
+
if (key in exports && exports[key] === _ContextPlugin[key]) return;
|
|
12
12
|
Object.defineProperty(exports, key, {
|
|
13
13
|
enumerable: true,
|
|
14
14
|
get: function () {
|
|
15
|
-
return
|
|
15
|
+
return _ContextPlugin[key];
|
|
16
16
|
}
|
|
17
17
|
});
|
|
18
18
|
});
|
|
19
19
|
|
|
20
|
-
var
|
|
20
|
+
var _fastify = require("./fastify");
|
|
21
21
|
|
|
22
|
-
Object.keys(
|
|
22
|
+
Object.keys(_fastify).forEach(function (key) {
|
|
23
23
|
if (key === "default" || key === "__esModule") return;
|
|
24
|
-
if (key in exports && exports[key] ===
|
|
24
|
+
if (key in exports && exports[key] === _fastify[key]) return;
|
|
25
25
|
Object.defineProperty(exports, key, {
|
|
26
26
|
enumerable: true,
|
|
27
27
|
get: function () {
|
|
28
|
-
return
|
|
28
|
+
return _fastify[key];
|
|
29
29
|
}
|
|
30
30
|
});
|
|
31
31
|
});
|
|
@@ -106,4 +106,30 @@ Object.keys(_HandlerResultPlugin).forEach(function (key) {
|
|
|
106
106
|
return _HandlerResultPlugin[key];
|
|
107
107
|
}
|
|
108
108
|
});
|
|
109
|
+
});
|
|
110
|
+
|
|
111
|
+
var _HandlerOnRequestPlugin = require("./plugins/HandlerOnRequestPlugin");
|
|
112
|
+
|
|
113
|
+
Object.keys(_HandlerOnRequestPlugin).forEach(function (key) {
|
|
114
|
+
if (key === "default" || key === "__esModule") return;
|
|
115
|
+
if (key in exports && exports[key] === _HandlerOnRequestPlugin[key]) return;
|
|
116
|
+
Object.defineProperty(exports, key, {
|
|
117
|
+
enumerable: true,
|
|
118
|
+
get: function () {
|
|
119
|
+
return _HandlerOnRequestPlugin[key];
|
|
120
|
+
}
|
|
121
|
+
});
|
|
122
|
+
});
|
|
123
|
+
|
|
124
|
+
var _ModifyFastifyPlugin = require("./plugins/ModifyFastifyPlugin");
|
|
125
|
+
|
|
126
|
+
Object.keys(_ModifyFastifyPlugin).forEach(function (key) {
|
|
127
|
+
if (key === "default" || key === "__esModule") return;
|
|
128
|
+
if (key in exports && exports[key] === _ModifyFastifyPlugin[key]) return;
|
|
129
|
+
Object.defineProperty(exports, key, {
|
|
130
|
+
enumerable: true,
|
|
131
|
+
get: function () {
|
|
132
|
+
return _ModifyFastifyPlugin[key];
|
|
133
|
+
}
|
|
134
|
+
});
|
|
109
135
|
});
|
package/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":[],"sources":["index.ts"],"sourcesContent":["export * from \"
|
|
1
|
+
{"version":3,"names":[],"sources":["index.ts"],"sourcesContent":["export * from \"@webiny/api/plugins/ContextPlugin\";\nexport * from \"~/fastify\";\nexport * from \"~/Context\";\nexport * from \"~/plugins/EventPlugin\";\nexport * from \"~/plugins/RoutePlugin\";\nexport * from \"~/plugins/BeforeHandlerPlugin\";\nexport * from \"~/plugins/HandlerErrorPlugin\";\nexport * from \"~/plugins/HandlerResultPlugin\";\nexport * from \"~/plugins/HandlerOnRequestPlugin\";\nexport * from \"~/plugins/ModifyFastifyPlugin\";\n"],"mappings":";;;;;;AAAA;;AAAA;EAAA;EAAA;EAAA;IAAA;IAAA;MAAA;IAAA;EAAA;AAAA;;AACA;;AAAA;EAAA;EAAA;EAAA;IAAA;IAAA;MAAA;IAAA;EAAA;AAAA;;AACA;;AAAA;EAAA;EAAA;EAAA;IAAA;IAAA;MAAA;IAAA;EAAA;AAAA;;AACA;;AAAA;EAAA;EAAA;EAAA;IAAA;IAAA;MAAA;IAAA;EAAA;AAAA;;AACA;;AAAA;EAAA;EAAA;EAAA;IAAA;IAAA;MAAA;IAAA;EAAA;AAAA;;AACA;;AAAA;EAAA;EAAA;EAAA;IAAA;IAAA;MAAA;IAAA;EAAA;AAAA;;AACA;;AAAA;EAAA;EAAA;EAAA;IAAA;IAAA;MAAA;IAAA;EAAA;AAAA;;AACA;;AAAA;EAAA;EAAA;EAAA;IAAA;IAAA;MAAA;IAAA;EAAA;AAAA;;AACA;;AAAA;EAAA;EAAA;EAAA;IAAA;IAAA;MAAA;IAAA;EAAA;AAAA;;AACA;;AAAA;EAAA;EAAA;EAAA;IAAA;IAAA;MAAA;IAAA;EAAA;AAAA"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@webiny/handler",
|
|
3
|
-
"version": "0.0.0-unstable.
|
|
3
|
+
"version": "0.0.0-unstable.496cf268ac",
|
|
4
4
|
"main": "index.js",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -12,22 +12,23 @@
|
|
|
12
12
|
],
|
|
13
13
|
"license": "MIT",
|
|
14
14
|
"dependencies": {
|
|
15
|
-
"@babel/runtime": "7.
|
|
15
|
+
"@babel/runtime": "7.20.13",
|
|
16
|
+
"@fastify/compress": "6.2.0",
|
|
16
17
|
"@fastify/cookie": "8.3.0",
|
|
17
|
-
"@webiny/api": "0.0.0-unstable.
|
|
18
|
-
"@webiny/error": "0.0.0-unstable.
|
|
19
|
-
"@webiny/handler-client": "0.0.0-unstable.
|
|
20
|
-
"@webiny/plugins": "0.0.0-unstable.
|
|
21
|
-
"@webiny/utils": "0.0.0-unstable.
|
|
22
|
-
"fastify": "4.
|
|
18
|
+
"@webiny/api": "0.0.0-unstable.496cf268ac",
|
|
19
|
+
"@webiny/error": "0.0.0-unstable.496cf268ac",
|
|
20
|
+
"@webiny/handler-client": "0.0.0-unstable.496cf268ac",
|
|
21
|
+
"@webiny/plugins": "0.0.0-unstable.496cf268ac",
|
|
22
|
+
"@webiny/utils": "0.0.0-unstable.496cf268ac",
|
|
23
|
+
"fastify": "4.11.0"
|
|
23
24
|
},
|
|
24
25
|
"devDependencies": {
|
|
25
26
|
"@babel/cli": "^7.19.3",
|
|
26
27
|
"@babel/core": "^7.19.3",
|
|
27
28
|
"@babel/preset-env": "^7.19.4",
|
|
28
29
|
"@babel/preset-typescript": "^7.18.6",
|
|
29
|
-
"@webiny/cli": "^0.0.0-unstable.
|
|
30
|
-
"@webiny/project-utils": "^0.0.0-unstable.
|
|
30
|
+
"@webiny/cli": "^0.0.0-unstable.496cf268ac",
|
|
31
|
+
"@webiny/project-utils": "^0.0.0-unstable.496cf268ac",
|
|
31
32
|
"babel-plugin-lodash": "^3.3.4",
|
|
32
33
|
"merge": "^1.2.1",
|
|
33
34
|
"rimraf": "^3.0.2",
|
|
@@ -42,5 +43,5 @@
|
|
|
42
43
|
"build": "yarn webiny run build",
|
|
43
44
|
"watch": "yarn webiny run watch"
|
|
44
45
|
},
|
|
45
|
-
"gitHead": "
|
|
46
|
+
"gitHead": "496cf268acd5b092c860b62d75c7d765c9472043"
|
|
46
47
|
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { Plugin } from "@webiny/plugins";
|
|
2
|
+
import { FastifyReply, FastifyRequest } from "fastify";
|
|
3
|
+
/**
|
|
4
|
+
* If the execution of the callable returns false, no more plugins will be executed after the given one.
|
|
5
|
+
* Nor it will execute our default OPTIONS code.
|
|
6
|
+
*
|
|
7
|
+
* This way users can prevent stopping of the request on our built-in OPTIONS request.
|
|
8
|
+
*/
|
|
9
|
+
export declare type HandlerOnRequestPluginCallableResponse = false | undefined | null | void;
|
|
10
|
+
interface HandlerOnRequestPluginCallable {
|
|
11
|
+
(request: FastifyRequest, reply: FastifyReply): Promise<HandlerOnRequestPluginCallableResponse>;
|
|
12
|
+
}
|
|
13
|
+
export declare class HandlerOnRequestPlugin extends Plugin {
|
|
14
|
+
static type: string;
|
|
15
|
+
private readonly cb;
|
|
16
|
+
constructor(cb: HandlerOnRequestPluginCallable);
|
|
17
|
+
exec(request: FastifyRequest, reply: FastifyReply): Promise<HandlerOnRequestPluginCallableResponse>;
|
|
18
|
+
}
|
|
19
|
+
export declare const createHandlerOnRequest: (cb: HandlerOnRequestPluginCallable) => HandlerOnRequestPlugin;
|
|
20
|
+
export {};
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault").default;
|
|
4
|
+
|
|
5
|
+
Object.defineProperty(exports, "__esModule", {
|
|
6
|
+
value: true
|
|
7
|
+
});
|
|
8
|
+
exports.createHandlerOnRequest = exports.HandlerOnRequestPlugin = void 0;
|
|
9
|
+
|
|
10
|
+
var _defineProperty2 = _interopRequireDefault(require("@babel/runtime/helpers/defineProperty"));
|
|
11
|
+
|
|
12
|
+
var _plugins = require("@webiny/plugins");
|
|
13
|
+
|
|
14
|
+
class HandlerOnRequestPlugin extends _plugins.Plugin {
|
|
15
|
+
constructor(cb) {
|
|
16
|
+
super();
|
|
17
|
+
(0, _defineProperty2.default)(this, "cb", void 0);
|
|
18
|
+
this.cb = cb;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
async exec(request, reply) {
|
|
22
|
+
return this.cb(request, reply);
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
exports.HandlerOnRequestPlugin = HandlerOnRequestPlugin;
|
|
28
|
+
(0, _defineProperty2.default)(HandlerOnRequestPlugin, "type", "handler.event.onRequest");
|
|
29
|
+
|
|
30
|
+
const createHandlerOnRequest = cb => {
|
|
31
|
+
return new HandlerOnRequestPlugin(cb);
|
|
32
|
+
};
|
|
33
|
+
|
|
34
|
+
exports.createHandlerOnRequest = createHandlerOnRequest;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["HandlerOnRequestPlugin","Plugin","constructor","cb","exec","request","reply","createHandlerOnRequest"],"sources":["HandlerOnRequestPlugin.ts"],"sourcesContent":["import { Plugin } from \"@webiny/plugins\";\nimport { FastifyReply, FastifyRequest } from \"fastify\";\n\n/**\n * If the execution of the callable returns false, no more plugins will be executed after the given one.\n * Nor it will execute our default OPTIONS code.\n *\n * This way users can prevent stopping of the request on our built-in OPTIONS request.\n */\nexport type HandlerOnRequestPluginCallableResponse = false | undefined | null | void;\ninterface HandlerOnRequestPluginCallable {\n (request: FastifyRequest, reply: FastifyReply): Promise<HandlerOnRequestPluginCallableResponse>;\n}\n\nexport class HandlerOnRequestPlugin extends Plugin {\n public static override type = \"handler.event.onRequest\";\n\n private readonly cb: HandlerOnRequestPluginCallable;\n\n public constructor(cb: HandlerOnRequestPluginCallable) {\n super();\n this.cb = cb;\n }\n\n public async exec(\n request: FastifyRequest,\n reply: FastifyReply\n ): Promise<HandlerOnRequestPluginCallableResponse> {\n return this.cb(request, reply);\n }\n}\n\nexport const createHandlerOnRequest = (cb: HandlerOnRequestPluginCallable) => {\n return new HandlerOnRequestPlugin(cb);\n};\n"],"mappings":";;;;;;;;;;;AAAA;;AAcO,MAAMA,sBAAN,SAAqCC,eAArC,CAA4C;EAKxCC,WAAW,CAACC,EAAD,EAAqC;IACnD;IADmD;IAEnD,KAAKA,EAAL,GAAUA,EAAV;EACH;;EAEgB,MAAJC,IAAI,CACbC,OADa,EAEbC,KAFa,EAGkC;IAC/C,OAAO,KAAKH,EAAL,CAAQE,OAAR,EAAiBC,KAAjB,CAAP;EACH;;AAf8C;;;8BAAtCN,sB,UACqB,yB;;AAiB3B,MAAMO,sBAAsB,GAAIJ,EAAD,IAAwC;EAC1E,OAAO,IAAIH,sBAAJ,CAA2BG,EAA3B,CAAP;AACH,CAFM"}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { Plugin } from "@webiny/plugins/Plugin";
|
|
2
|
+
import { FastifyInstance } from "fastify";
|
|
3
|
+
interface ModifyFastifyPluginCallable {
|
|
4
|
+
(app: FastifyInstance): void;
|
|
5
|
+
}
|
|
6
|
+
export declare class ModifyFastifyPlugin extends Plugin {
|
|
7
|
+
static type: string;
|
|
8
|
+
private readonly cb;
|
|
9
|
+
constructor(cb: ModifyFastifyPluginCallable);
|
|
10
|
+
modify(app: FastifyInstance): void;
|
|
11
|
+
}
|
|
12
|
+
export declare const createModifyFastifyPlugin: (cb: ModifyFastifyPluginCallable) => ModifyFastifyPlugin;
|
|
13
|
+
export {};
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault").default;
|
|
4
|
+
|
|
5
|
+
Object.defineProperty(exports, "__esModule", {
|
|
6
|
+
value: true
|
|
7
|
+
});
|
|
8
|
+
exports.createModifyFastifyPlugin = exports.ModifyFastifyPlugin = void 0;
|
|
9
|
+
|
|
10
|
+
var _defineProperty2 = _interopRequireDefault(require("@babel/runtime/helpers/defineProperty"));
|
|
11
|
+
|
|
12
|
+
var _Plugin = require("@webiny/plugins/Plugin");
|
|
13
|
+
|
|
14
|
+
class ModifyFastifyPlugin extends _Plugin.Plugin {
|
|
15
|
+
constructor(cb) {
|
|
16
|
+
super();
|
|
17
|
+
(0, _defineProperty2.default)(this, "cb", void 0);
|
|
18
|
+
this.cb = cb;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
modify(app) {
|
|
22
|
+
this.cb(app);
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
exports.ModifyFastifyPlugin = ModifyFastifyPlugin;
|
|
28
|
+
(0, _defineProperty2.default)(ModifyFastifyPlugin, "type", "handler.fastify.modify");
|
|
29
|
+
|
|
30
|
+
const createModifyFastifyPlugin = cb => {
|
|
31
|
+
return new ModifyFastifyPlugin(cb);
|
|
32
|
+
};
|
|
33
|
+
|
|
34
|
+
exports.createModifyFastifyPlugin = createModifyFastifyPlugin;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["ModifyFastifyPlugin","Plugin","constructor","cb","modify","app","createModifyFastifyPlugin"],"sources":["ModifyFastifyPlugin.ts"],"sourcesContent":["import { Plugin } from \"@webiny/plugins/Plugin\";\nimport { FastifyInstance } from \"fastify\";\n\ninterface ModifyFastifyPluginCallable {\n (app: FastifyInstance): void;\n}\n\nexport class ModifyFastifyPlugin extends Plugin {\n public static override type = \"handler.fastify.modify\";\n\n private readonly cb: ModifyFastifyPluginCallable;\n\n public constructor(cb: ModifyFastifyPluginCallable) {\n super();\n this.cb = cb;\n }\n\n public modify(app: FastifyInstance): void {\n this.cb(app);\n }\n}\n\nexport const createModifyFastifyPlugin = (cb: ModifyFastifyPluginCallable) => {\n return new ModifyFastifyPlugin(cb);\n};\n"],"mappings":";;;;;;;;;;;AAAA;;AAOO,MAAMA,mBAAN,SAAkCC,cAAlC,CAAyC;EAKrCC,WAAW,CAACC,EAAD,EAAkC;IAChD;IADgD;IAEhD,KAAKA,EAAL,GAAUA,EAAV;EACH;;EAEMC,MAAM,CAACC,GAAD,EAA6B;IACtC,KAAKF,EAAL,CAAQE,GAAR;EACH;;AAZ2C;;;8BAAnCL,mB,UACqB,wB;;AAc3B,MAAMM,yBAAyB,GAAIH,EAAD,IAAqC;EAC1E,OAAO,IAAIH,mBAAJ,CAAwBG,EAAxB,CAAP;AACH,CAFM"}
|
package/types.d.ts
CHANGED
package/types.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":[],"sources":["types.ts"],"sourcesContent":["import {\n FastifyInstance,\n FastifyRequest,\n FastifyReply,\n HTTPMethods,\n RouteHandlerMethod\n} from \"fastify\";\n\nexport { FastifyInstance, HTTPMethods } from \"fastify\";\nimport { ClientContext } from \"@webiny/handler-client/types\";\n\nexport interface RouteMethodOptions {\n override?: boolean;\n}\n\nexport type RouteMethodPath = `/${string}` | \"*\";\nexport interface RouteMethod {\n (path: RouteMethodPath, handler: RouteHandlerMethod, options?: RouteMethodOptions): void;\n}\n\nexport type Request = FastifyRequest;\nexport type Reply = FastifyReply;\n\nexport type DefinedContextRoutes = Record<HTTPMethods, string[]>;\nexport interface ContextRoutes {\n defined: DefinedContextRoutes;\n onGet: RouteMethod;\n onPost: RouteMethod;\n onPut: RouteMethod;\n onPatch: RouteMethod;\n onDelete: RouteMethod;\n onOptions: RouteMethod;\n onAll: RouteMethod;\n onHead: RouteMethod;\n}\n\nexport interface Context extends ClientContext {\n /**\n * An instance of fastify server.\n * Use at your own risk.\n * @instance\n */\n server: FastifyInstance;\n /**\n * Current request. Must be set only once!\n */\n request: FastifyRequest;\n /**\n * @internal\n */\n routes: ContextRoutes;\n}\n\ndeclare module \"fastify\" {\n interface FastifyInstance {\n webiny: Context;\n }\n}\n"],"mappings":";;;;;;;;;;;;;;;;;;AAAA"}
|
|
1
|
+
{"version":3,"names":[],"sources":["types.ts"],"sourcesContent":["import {\n FastifyInstance,\n FastifyRequest,\n FastifyReply,\n HTTPMethods,\n RouteHandlerMethod\n} from \"fastify\";\n\nexport { FastifyInstance, HTTPMethods } from \"fastify\";\nimport { ClientContext } from \"@webiny/handler-client/types\";\n\nexport interface RouteMethodOptions {\n override?: boolean;\n}\n\nexport type RouteMethodPath = `/${string}` | \"*\";\nexport interface RouteMethod {\n (path: RouteMethodPath, handler: RouteHandlerMethod, options?: RouteMethodOptions): void;\n}\n\nexport type Request = FastifyRequest;\nexport type Reply = FastifyReply;\n\nexport type DefinedContextRoutes = Record<HTTPMethods, string[]>;\nexport interface ContextRoutes {\n defined: DefinedContextRoutes;\n onGet: RouteMethod;\n onPost: RouteMethod;\n onPut: RouteMethod;\n onPatch: RouteMethod;\n onDelete: RouteMethod;\n onOptions: RouteMethod;\n onAll: RouteMethod;\n onHead: RouteMethod;\n}\n\nexport interface Context extends ClientContext {\n /**\n * An instance of fastify server.\n * Use at your own risk.\n * @instance\n */\n server: FastifyInstance;\n /**\n * Current request. Must be set only once!\n */\n request: FastifyRequest;\n /**\n * Current reply. Must be set only once!\n */\n reply: FastifyReply;\n /**\n * @internal\n */\n routes: ContextRoutes;\n}\n\ndeclare module \"fastify\" {\n interface FastifyInstance {\n webiny: Context;\n }\n}\n"],"mappings":";;;;;;;;;;;;;;;;;;AAAA"}
|