@webiny/handler 0.0.0-unstable.9e825fd5fb → 0.0.0-unstable.a9593f74dd
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 +17 -10
- package/Context.js +19 -13
- package/Context.js.map +1 -1
- package/ResponseHeaders.d.ts +25 -0
- package/ResponseHeaders.js +46 -0
- package/ResponseHeaders.js.map +1 -0
- package/fastify.d.ts +3 -2
- package/fastify.js +95 -65
- package/fastify.js.map +1 -1
- package/index.d.ts +3 -1
- package/index.js +25 -12
- package/index.js.map +1 -1
- package/middleware.d.ts +4 -1
- package/middleware.js +3 -1
- package/middleware.js.map +1 -1
- package/package.json +16 -18
- package/plugins/BeforeHandlerPlugin.js +4 -5
- package/plugins/BeforeHandlerPlugin.js.map +1 -1
- package/plugins/EventPlugin.js +4 -5
- package/plugins/EventPlugin.js.map +1 -1
- package/plugins/HandlerErrorPlugin.d.ts +5 -2
- package/plugins/HandlerErrorPlugin.js +4 -5
- package/plugins/HandlerErrorPlugin.js.map +1 -1
- package/plugins/HandlerOnRequestPlugin.js +11 -5
- package/plugins/HandlerOnRequestPlugin.js.map +1 -1
- package/plugins/HandlerResultPlugin.js +4 -5
- package/plugins/HandlerResultPlugin.js.map +1 -1
- package/plugins/ModifyFastifyPlugin.js +4 -5
- package/plugins/ModifyFastifyPlugin.js.map +1 -1
- package/plugins/ModifyResponseHeadersPlugin.d.ts +14 -0
- package/plugins/ModifyResponseHeadersPlugin.js +24 -0
- package/plugins/ModifyResponseHeadersPlugin.js.map +1 -0
- package/plugins/RoutePlugin.js +4 -5
- package/plugins/RoutePlugin.js.map +1 -1
- package/types.d.ts +2 -7
- package/types.js +4 -1
- package/types.js.map +1 -1
package/Context.d.ts
CHANGED
|
@@ -1,14 +1,21 @@
|
|
|
1
|
-
import { Context as BaseContext, ContextParams as BaseContextParams } from "@webiny/api";
|
|
2
|
-
import { Context as
|
|
1
|
+
import { Context as BaseContext, ContextParams as BaseContextParams, ContextPlugin as BaseContextPlugin, ContextPluginCallable as BaseContextPluginCallable } from "@webiny/api";
|
|
2
|
+
import { Context as ContextInterface } from "./types";
|
|
3
3
|
export interface ContextParams extends BaseContextParams {
|
|
4
|
-
|
|
5
|
-
routes: BaseContextType["routes"];
|
|
4
|
+
routes: ContextInterface["routes"];
|
|
6
5
|
}
|
|
7
|
-
export declare class Context extends BaseContext implements
|
|
8
|
-
readonly
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
reply: BaseContextType["reply"];
|
|
6
|
+
export declare class Context extends BaseContext implements ContextInterface {
|
|
7
|
+
readonly routes: ContextInterface["routes"];
|
|
8
|
+
handlerClient: ContextInterface["handlerClient"];
|
|
9
|
+
request: ContextInterface["request"];
|
|
10
|
+
reply: ContextInterface["reply"];
|
|
13
11
|
constructor(params: ContextParams);
|
|
14
12
|
}
|
|
13
|
+
/**
|
|
14
|
+
* We need to extend and reexport the ContextPlugin, ContextPluginCallable and createContextPlugin to support extended context.
|
|
15
|
+
*
|
|
16
|
+
* This can be removed when we introduce the type augmentation.
|
|
17
|
+
*/
|
|
18
|
+
export declare type ContextPluginCallable<T extends ContextInterface = ContextInterface> = BaseContextPluginCallable<T>;
|
|
19
|
+
export declare class ContextPlugin<T extends ContextInterface = ContextInterface> extends BaseContextPlugin<T> {
|
|
20
|
+
}
|
|
21
|
+
export declare const createContextPlugin: <T extends ContextInterface = ContextInterface>(callable: ContextPluginCallable<T>) => BaseContextPlugin<T>;
|
package/Context.js
CHANGED
|
@@ -1,28 +1,34 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
|
|
3
|
-
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault").default;
|
|
4
3
|
Object.defineProperty(exports, "__esModule", {
|
|
5
4
|
value: true
|
|
6
5
|
});
|
|
7
|
-
exports.Context = void 0;
|
|
8
|
-
var _defineProperty2 = _interopRequireDefault(require("@babel/runtime/helpers/defineProperty"));
|
|
6
|
+
exports.createContextPlugin = exports.ContextPlugin = exports.Context = void 0;
|
|
9
7
|
var _api = require("@webiny/api");
|
|
10
8
|
class Context extends _api.Context {
|
|
11
|
-
// @ts-
|
|
9
|
+
// @ts-expect-error
|
|
12
10
|
|
|
13
|
-
// @ts-
|
|
11
|
+
// @ts-expect-error
|
|
14
12
|
|
|
15
|
-
// @ts-
|
|
13
|
+
// @ts-expect-error
|
|
16
14
|
|
|
17
15
|
constructor(params) {
|
|
18
16
|
super(params);
|
|
19
|
-
(0, _defineProperty2.default)(this, "server", void 0);
|
|
20
|
-
(0, _defineProperty2.default)(this, "routes", void 0);
|
|
21
|
-
(0, _defineProperty2.default)(this, "handlerClient", void 0);
|
|
22
|
-
(0, _defineProperty2.default)(this, "request", void 0);
|
|
23
|
-
(0, _defineProperty2.default)(this, "reply", void 0);
|
|
24
|
-
this.server = params.server;
|
|
25
17
|
this.routes = params.routes;
|
|
26
18
|
}
|
|
27
19
|
}
|
|
28
|
-
|
|
20
|
+
|
|
21
|
+
/**
|
|
22
|
+
* We need to extend and reexport the ContextPlugin, ContextPluginCallable and createContextPlugin to support extended context.
|
|
23
|
+
*
|
|
24
|
+
* This can be removed when we introduce the type augmentation.
|
|
25
|
+
*/
|
|
26
|
+
exports.Context = Context;
|
|
27
|
+
class ContextPlugin extends _api.ContextPlugin {}
|
|
28
|
+
exports.ContextPlugin = ContextPlugin;
|
|
29
|
+
const createContextPlugin = callable => {
|
|
30
|
+
return (0, _api.createContextPlugin)(callable);
|
|
31
|
+
};
|
|
32
|
+
exports.createContextPlugin = createContextPlugin;
|
|
33
|
+
|
|
34
|
+
//# sourceMappingURL=Context.js.map
|
package/Context.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["Context","BaseContext","constructor","params","
|
|
1
|
+
{"version":3,"names":["_api","require","Context","BaseContext","constructor","params","routes","exports","ContextPlugin","BaseContextPlugin","createContextPlugin","callable","baseCreateContextPlugin"],"sources":["Context.ts"],"sourcesContent":["import {\n Context as BaseContext,\n ContextParams as BaseContextParams,\n ContextPlugin as BaseContextPlugin,\n ContextPluginCallable as BaseContextPluginCallable,\n createContextPlugin as baseCreateContextPlugin\n} from \"@webiny/api\";\nimport { Context as ContextInterface } from \"~/types\";\n\nexport interface ContextParams extends BaseContextParams {\n routes: ContextInterface[\"routes\"];\n}\n\nexport class Context extends BaseContext implements ContextInterface {\n public readonly routes: ContextInterface[\"routes\"];\n // @ts-expect-error\n public handlerClient: ContextInterface[\"handlerClient\"];\n // @ts-expect-error\n public request: ContextInterface[\"request\"];\n // @ts-expect-error\n public reply: ContextInterface[\"reply\"];\n\n public constructor(params: ContextParams) {\n super(params);\n this.routes = params.routes;\n }\n}\n\n/**\n * We need to extend and reexport the ContextPlugin, ContextPluginCallable and createContextPlugin to support extended context.\n *\n * This can be removed when we introduce the type augmentation.\n */\nexport type ContextPluginCallable<T extends ContextInterface = ContextInterface> =\n BaseContextPluginCallable<T>;\n\nexport class ContextPlugin<\n T extends ContextInterface = ContextInterface\n> extends BaseContextPlugin<T> {}\n\nexport const createContextPlugin = <T extends ContextInterface = ContextInterface>(\n callable: ContextPluginCallable<T>\n) => {\n return baseCreateContextPlugin<T>(callable);\n};\n"],"mappings":";;;;;;AAAA,IAAAA,IAAA,GAAAC,OAAA;AAaO,MAAMC,OAAO,SAASC,YAAW,CAA6B;EAEjE;;EAEA;;EAEA;;EAGOC,WAAWA,CAACC,MAAqB,EAAE;IACtC,KAAK,CAACA,MAAM,CAAC;IACb,IAAI,CAACC,MAAM,GAAGD,MAAM,CAACC,MAAM;EAC/B;AACJ;;AAEA;AACA;AACA;AACA;AACA;AAJAC,OAAA,CAAAL,OAAA,GAAAA,OAAA;AAQO,MAAMM,aAAa,SAEhBC,kBAAiB,CAAI;AAAEF,OAAA,CAAAC,aAAA,GAAAA,aAAA;AAE1B,MAAME,mBAAmB,GAC5BC,QAAkC,IACjC;EACD,OAAO,IAAAC,wBAAuB,EAAID,QAAQ,CAAC;AAC/C,CAAC;AAACJ,OAAA,CAAAG,mBAAA,GAAAA,mBAAA"}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
/// <reference types="node" />
|
|
2
|
+
import * as http from "http";
|
|
3
|
+
declare type ExtraHeaders = {
|
|
4
|
+
"content-type"?: string | undefined;
|
|
5
|
+
"x-webiny-version"?: http.OutgoingHttpHeader | undefined;
|
|
6
|
+
};
|
|
7
|
+
declare type AllHeaders = http.OutgoingHttpHeaders & ExtraHeaders;
|
|
8
|
+
export declare type StandardHeaderValue = http.OutgoingHttpHeader | boolean | undefined;
|
|
9
|
+
export declare type StandardHeaders = {
|
|
10
|
+
[K in keyof AllHeaders as string extends K ? never : number extends K ? never : K]: http.OutgoingHttpHeaders[K];
|
|
11
|
+
} & {
|
|
12
|
+
[name: string]: StandardHeaderValue;
|
|
13
|
+
};
|
|
14
|
+
declare type Setter<T> = ((value: T) => T) | T;
|
|
15
|
+
export declare class ResponseHeaders {
|
|
16
|
+
private readonly headers;
|
|
17
|
+
private constructor();
|
|
18
|
+
set<T extends keyof StandardHeaders>(header: T, setter: Setter<StandardHeaders[T]>): this;
|
|
19
|
+
merge(headers: ResponseHeaders): ResponseHeaders;
|
|
20
|
+
getHeaders(): {
|
|
21
|
+
[k: string]: StandardHeaderValue;
|
|
22
|
+
};
|
|
23
|
+
static create(initialHeaders?: StandardHeaders): ResponseHeaders;
|
|
24
|
+
}
|
|
25
|
+
export {};
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.ResponseHeaders = void 0;
|
|
7
|
+
// Extract known standard headers, and remove all non-string keys.
|
|
8
|
+
|
|
9
|
+
function isFunction(setter) {
|
|
10
|
+
return typeof setter === "function";
|
|
11
|
+
}
|
|
12
|
+
class ResponseHeaders {
|
|
13
|
+
headers = new Map();
|
|
14
|
+
constructor(initialHeaders) {
|
|
15
|
+
if (initialHeaders) {
|
|
16
|
+
Object.keys(initialHeaders).forEach(key => {
|
|
17
|
+
this.headers.set(key, initialHeaders[key]);
|
|
18
|
+
});
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
set(header, setter) {
|
|
22
|
+
if (isFunction(setter)) {
|
|
23
|
+
const previousValue = this.headers.get(header);
|
|
24
|
+
const newValue = setter(previousValue);
|
|
25
|
+
this.headers.set(header, newValue);
|
|
26
|
+
return this;
|
|
27
|
+
}
|
|
28
|
+
this.headers.set(header, setter);
|
|
29
|
+
return this;
|
|
30
|
+
}
|
|
31
|
+
merge(headers) {
|
|
32
|
+
return ResponseHeaders.create({
|
|
33
|
+
...this.getHeaders(),
|
|
34
|
+
...headers.getHeaders()
|
|
35
|
+
});
|
|
36
|
+
}
|
|
37
|
+
getHeaders() {
|
|
38
|
+
return Object.fromEntries(this.headers);
|
|
39
|
+
}
|
|
40
|
+
static create(initialHeaders) {
|
|
41
|
+
return new ResponseHeaders(initialHeaders);
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
exports.ResponseHeaders = ResponseHeaders;
|
|
45
|
+
|
|
46
|
+
//# sourceMappingURL=ResponseHeaders.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["isFunction","setter","ResponseHeaders","headers","Map","constructor","initialHeaders","Object","keys","forEach","key","set","header","previousValue","get","newValue","merge","create","getHeaders","fromEntries","exports"],"sources":["ResponseHeaders.ts"],"sourcesContent":["import * as http from \"http\";\n\ntype ExtraHeaders = {\n \"content-type\"?: string | undefined;\n \"x-webiny-version\"?: http.OutgoingHttpHeader | undefined;\n};\n\ntype AllHeaders = http.OutgoingHttpHeaders & ExtraHeaders;\n\nexport type StandardHeaderValue = http.OutgoingHttpHeader | boolean | undefined;\n\n// Extract known standard headers, and remove all non-string keys.\nexport type StandardHeaders = {\n [K in keyof AllHeaders as string extends K\n ? never\n : number extends K\n ? never\n : K]: http.OutgoingHttpHeaders[K];\n} & {\n [name: string]: StandardHeaderValue;\n};\n\nfunction isFunction<T>(setter: unknown): setter is (value: T) => T {\n return typeof setter === \"function\";\n}\n\ntype Setter<T> = ((value: T) => T) | T;\n\nexport class ResponseHeaders {\n private readonly headers = new Map<keyof StandardHeaders, StandardHeaderValue>();\n\n private constructor(initialHeaders?: StandardHeaders) {\n if (initialHeaders) {\n (Object.keys(initialHeaders) as Array<keyof StandardHeaders>).forEach(key => {\n this.headers.set(key, initialHeaders[key]);\n });\n }\n }\n\n set<T extends keyof StandardHeaders>(header: T, setter: Setter<StandardHeaders[T]>) {\n if (isFunction<StandardHeaders[T]>(setter)) {\n const previousValue = this.headers.get(header) as StandardHeaders[T];\n const newValue = setter(previousValue);\n this.headers.set(header, newValue);\n return this;\n }\n\n this.headers.set(header, setter);\n\n return this;\n }\n\n merge(headers: ResponseHeaders) {\n return ResponseHeaders.create({ ...this.getHeaders(), ...headers.getHeaders() });\n }\n\n getHeaders() {\n return Object.fromEntries(this.headers);\n }\n\n static create(initialHeaders?: StandardHeaders) {\n return new ResponseHeaders(initialHeaders);\n }\n}\n"],"mappings":";;;;;;AAWA;;AAWA,SAASA,UAAUA,CAAIC,MAAe,EAA6B;EAC/D,OAAO,OAAOA,MAAM,KAAK,UAAU;AACvC;AAIO,MAAMC,eAAe,CAAC;EACRC,OAAO,GAAG,IAAIC,GAAG,CAA6C,CAAC;EAExEC,WAAWA,CAACC,cAAgC,EAAE;IAClD,IAAIA,cAAc,EAAE;MACfC,MAAM,CAACC,IAAI,CAACF,cAAc,CAAC,CAAkCG,OAAO,CAACC,GAAG,IAAI;QACzE,IAAI,CAACP,OAAO,CAACQ,GAAG,CAACD,GAAG,EAAEJ,cAAc,CAACI,GAAG,CAAC,CAAC;MAC9C,CAAC,CAAC;IACN;EACJ;EAEAC,GAAGA,CAAkCC,MAAS,EAAEX,MAAkC,EAAE;IAChF,IAAID,UAAU,CAAqBC,MAAM,CAAC,EAAE;MACxC,MAAMY,aAAa,GAAG,IAAI,CAACV,OAAO,CAACW,GAAG,CAACF,MAAM,CAAuB;MACpE,MAAMG,QAAQ,GAAGd,MAAM,CAACY,aAAa,CAAC;MACtC,IAAI,CAACV,OAAO,CAACQ,GAAG,CAACC,MAAM,EAAEG,QAAQ,CAAC;MAClC,OAAO,IAAI;IACf;IAEA,IAAI,CAACZ,OAAO,CAACQ,GAAG,CAACC,MAAM,EAAEX,MAAM,CAAC;IAEhC,OAAO,IAAI;EACf;EAEAe,KAAKA,CAACb,OAAwB,EAAE;IAC5B,OAAOD,eAAe,CAACe,MAAM,CAAC;MAAE,GAAG,IAAI,CAACC,UAAU,CAAC,CAAC;MAAE,GAAGf,OAAO,CAACe,UAAU,CAAC;IAAE,CAAC,CAAC;EACpF;EAEAA,UAAUA,CAAA,EAAG;IACT,OAAOX,MAAM,CAACY,WAAW,CAAC,IAAI,CAAChB,OAAO,CAAC;EAC3C;EAEA,OAAOc,MAAMA,CAACX,cAAgC,EAAE;IAC5C,OAAO,IAAIJ,eAAe,CAACI,cAAc,CAAC;EAC9C;AACJ;AAACc,OAAA,CAAAlB,eAAA,GAAAA,eAAA"}
|
package/fastify.d.ts
CHANGED
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
/// <reference types="node" />
|
|
2
|
-
import { PluginCollection } from "@webiny/plugins/types";
|
|
2
|
+
import { PluginCollection, PluginsContainer } from "@webiny/plugins/types";
|
|
3
3
|
import { FastifyServerOptions as ServerOptions } from "fastify";
|
|
4
4
|
export interface CreateHandlerParams {
|
|
5
|
-
plugins: PluginCollection;
|
|
5
|
+
plugins: PluginCollection | PluginsContainer;
|
|
6
6
|
options?: ServerOptions;
|
|
7
|
+
debug?: boolean;
|
|
7
8
|
}
|
|
8
9
|
export declare const createHandler: (params: CreateHandlerParams) => import("fastify").FastifyInstance<import("fastify").RawServerDefault, import("http").IncomingMessage, import("http").ServerResponse<import("http").IncomingMessage>, import("fastify").FastifyBaseLogger, import("fastify").FastifyTypeProviderDefault> & PromiseLike<import("fastify").FastifyInstance<import("fastify").RawServerDefault, import("http").IncomingMessage, import("http").ServerResponse<import("http").IncomingMessage>, import("fastify").FastifyBaseLogger, import("fastify").FastifyTypeProviderDefault>>;
|
package/fastify.js
CHANGED
|
@@ -5,7 +5,7 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
5
5
|
value: true
|
|
6
6
|
});
|
|
7
7
|
exports.createHandler = void 0;
|
|
8
|
-
var
|
|
8
|
+
var _types = require("@webiny/plugins/types");
|
|
9
9
|
var _fastify = _interopRequireDefault(require("fastify"));
|
|
10
10
|
var _utils = require("@webiny/utils");
|
|
11
11
|
var _Context = require("./Context");
|
|
@@ -21,35 +21,46 @@ var _HandlerResultPlugin = require("./plugins/HandlerResultPlugin");
|
|
|
21
21
|
var _HandlerErrorPlugin = require("./plugins/HandlerErrorPlugin");
|
|
22
22
|
var _ModifyFastifyPlugin = require("./plugins/ModifyFastifyPlugin");
|
|
23
23
|
var _HandlerOnRequestPlugin = require("./plugins/HandlerOnRequestPlugin");
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
24
|
+
var _ResponseHeaders = require("./ResponseHeaders");
|
|
25
|
+
var _ModifyResponseHeadersPlugin = require("./plugins/ModifyResponseHeadersPlugin");
|
|
26
|
+
function createDefaultHeaders() {
|
|
27
|
+
return _ResponseHeaders.ResponseHeaders.create({
|
|
28
|
+
"content-type": "application/json; charset=utf-8",
|
|
29
|
+
"cache-control": "no-store",
|
|
30
|
+
"access-control-allow-origin": "*",
|
|
31
|
+
"access-control-allow-headers": "*",
|
|
32
|
+
"access-control-allow-methods": "OPTIONS,POST,GET,DELETE,PUT,PATCH",
|
|
33
|
+
...(0, _utils.getWebinyVersionHeaders)()
|
|
34
|
+
});
|
|
35
|
+
}
|
|
36
|
+
const getDefaultOptionsHeaders = () => {
|
|
37
|
+
return _ResponseHeaders.ResponseHeaders.create({
|
|
38
|
+
"access-control-max-age": "86400",
|
|
39
|
+
"cache-control": "public, max-age=86400"
|
|
40
|
+
});
|
|
41
|
+
};
|
|
31
42
|
const getDefaultHeaders = routes => {
|
|
43
|
+
const headers = createDefaultHeaders();
|
|
44
|
+
|
|
32
45
|
/**
|
|
33
46
|
* If we are accepting all headers, just output that one.
|
|
34
47
|
*/
|
|
35
48
|
const keys = Object.keys(routes);
|
|
36
49
|
const all = keys.every(key => routes[key].length > 0);
|
|
37
50
|
if (all) {
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
return (0, _objectSpread2.default)((0, _objectSpread2.default)({}, DEFAULT_HEADERS), {}, {
|
|
43
|
-
"Access-Control-Allow-Methods": keys.filter(type => {
|
|
44
|
-
if (!routes[type] || Array.isArray(routes[type]) === false) {
|
|
51
|
+
headers.set("access-control-allow-methods", "*");
|
|
52
|
+
} else {
|
|
53
|
+
const allowedMethods = keys.filter(type => {
|
|
54
|
+
if (!routes[type] || !Array.isArray(routes[type])) {
|
|
45
55
|
return false;
|
|
46
56
|
}
|
|
47
57
|
return routes[type].length > 0;
|
|
48
|
-
}).sort().join(",")
|
|
49
|
-
|
|
58
|
+
}).sort().join(",");
|
|
59
|
+
headers.set("access-control-allow-methods", allowedMethods);
|
|
60
|
+
}
|
|
61
|
+
return headers;
|
|
50
62
|
};
|
|
51
63
|
const stringifyError = error => {
|
|
52
|
-
var _error$constructor;
|
|
53
64
|
const {
|
|
54
65
|
name,
|
|
55
66
|
message,
|
|
@@ -57,18 +68,15 @@ const stringifyError = error => {
|
|
|
57
68
|
stack,
|
|
58
69
|
data
|
|
59
70
|
} = error;
|
|
60
|
-
return JSON.stringify(
|
|
61
|
-
|
|
71
|
+
return JSON.stringify({
|
|
72
|
+
...error,
|
|
73
|
+
constructorName: error.constructor?.name || "UnknownError",
|
|
62
74
|
name: name || "No error name",
|
|
63
75
|
message: message || "No error message",
|
|
64
76
|
code: code || "NO_CODE",
|
|
65
77
|
data,
|
|
66
78
|
stack: process.env.DEBUG === "true" ? stack : "Turn on the debug flag to see the stack."
|
|
67
|
-
})
|
|
68
|
-
};
|
|
69
|
-
const OPTIONS_HEADERS = {
|
|
70
|
-
"Access-Control-Max-Age": "86400",
|
|
71
|
-
"Cache-Control": "public, max-age=86400"
|
|
79
|
+
});
|
|
72
80
|
};
|
|
73
81
|
const createHandler = params => {
|
|
74
82
|
const definedRoutes = {
|
|
@@ -106,7 +114,7 @@ const createHandler = params => {
|
|
|
106
114
|
});
|
|
107
115
|
} else if (definedRoutes[type].includes(path) === false) {
|
|
108
116
|
return;
|
|
109
|
-
} else if (
|
|
117
|
+
} else if (options?.override === true) {
|
|
110
118
|
return;
|
|
111
119
|
}
|
|
112
120
|
console.error(`Error while trying to override route: [${type}] ${path}`);
|
|
@@ -126,7 +134,9 @@ const createHandler = params => {
|
|
|
126
134
|
/**
|
|
127
135
|
* We must attach the server to our internal context if we want to have it accessible.
|
|
128
136
|
*/
|
|
129
|
-
const app = (0, _fastify.default)(
|
|
137
|
+
const app = (0, _fastify.default)({
|
|
138
|
+
...(params.options || {})
|
|
139
|
+
});
|
|
130
140
|
/**
|
|
131
141
|
* We need to register routes in our system so we can output headers later on and dissallow overriding routes.
|
|
132
142
|
*/
|
|
@@ -205,19 +215,20 @@ const createHandler = params => {
|
|
|
205
215
|
}
|
|
206
216
|
};
|
|
207
217
|
let context;
|
|
218
|
+
const plugins = new _types.PluginsContainer([
|
|
219
|
+
/**
|
|
220
|
+
* We must have handlerClient by default.
|
|
221
|
+
* And it must be one of the first context plugins applied.
|
|
222
|
+
*/
|
|
223
|
+
(0, _handlerClient.createHandlerClient)()]);
|
|
224
|
+
plugins.merge(params.plugins || []);
|
|
208
225
|
try {
|
|
209
226
|
context = new _Context.Context({
|
|
210
|
-
plugins
|
|
211
|
-
/**
|
|
212
|
-
* We must have handlerClient by default.
|
|
213
|
-
* And it must be one of the first context plugins applied.
|
|
214
|
-
*/
|
|
215
|
-
(0, _handlerClient.createHandlerClient)(), ...(params.plugins || [])],
|
|
227
|
+
plugins,
|
|
216
228
|
/**
|
|
217
|
-
* Inserted via webpack
|
|
229
|
+
* Inserted via webpack at build time.
|
|
218
230
|
*/
|
|
219
231
|
WEBINY_VERSION: process.env.WEBINY_VERSION,
|
|
220
|
-
server: app,
|
|
221
232
|
routes
|
|
222
233
|
});
|
|
223
234
|
} catch (ex) {
|
|
@@ -231,42 +242,18 @@ const createHandler = params => {
|
|
|
231
242
|
*/
|
|
232
243
|
app.decorate("webiny", context);
|
|
233
244
|
|
|
234
|
-
/**
|
|
235
|
-
* We have few types of triggers:
|
|
236
|
-
* * Events - EventPlugin
|
|
237
|
-
* * Routes - RoutePlugin
|
|
238
|
-
*
|
|
239
|
-
* Routes are registered in fastify but events must be handled in package which implements cloud specific methods.
|
|
240
|
-
*/
|
|
241
|
-
const routePlugins = app.webiny.plugins.byType(_RoutePlugin.RoutePlugin.type);
|
|
242
|
-
|
|
243
|
-
/**
|
|
244
|
-
* Add routes to the system.
|
|
245
|
-
*/
|
|
246
|
-
let routePluginName;
|
|
247
|
-
try {
|
|
248
|
-
for (const plugin of routePlugins) {
|
|
249
|
-
routePluginName = plugin.name;
|
|
250
|
-
plugin.cb((0, _objectSpread2.default)((0, _objectSpread2.default)({}, app.webiny.routes), {}, {
|
|
251
|
-
context: app.webiny
|
|
252
|
-
}));
|
|
253
|
-
}
|
|
254
|
-
} catch (ex) {
|
|
255
|
-
console.error(`Error while running the "RoutePlugin" ${routePluginName ? `(${routePluginName})` : ""} plugin in the beginning of the "createHandler" callable.`);
|
|
256
|
-
console.error(stringifyError(ex));
|
|
257
|
-
throw ex;
|
|
258
|
-
}
|
|
259
|
-
|
|
260
245
|
/**
|
|
261
246
|
* On every request we add default headers, which can be changed later.
|
|
262
247
|
* Also, if it is an options request, we skip everything after this hook and output options headers.
|
|
263
248
|
*/
|
|
264
249
|
app.addHook("onRequest", async (request, reply) => {
|
|
250
|
+
const isOptionsRequest = request.method === "OPTIONS";
|
|
265
251
|
/**
|
|
266
252
|
* Our default headers are always set. Users can override them.
|
|
267
253
|
*/
|
|
268
254
|
const defaultHeaders = getDefaultHeaders(definedRoutes);
|
|
269
|
-
|
|
255
|
+
const initialHeaders = isOptionsRequest ? defaultHeaders.merge(getDefaultOptionsHeaders()) : defaultHeaders;
|
|
256
|
+
reply.headers(initialHeaders.getHeaders());
|
|
270
257
|
/**
|
|
271
258
|
* Users can define their own custom handlers for the onRequest event - so let's run them first.
|
|
272
259
|
*/
|
|
@@ -290,7 +277,7 @@ const createHandler = params => {
|
|
|
290
277
|
*
|
|
291
278
|
* Users can prevent this by creating their own HandlerOnRequestPlugin and returning false as the result of the callable.
|
|
292
279
|
*/
|
|
293
|
-
if (
|
|
280
|
+
if (!isOptionsRequest) {
|
|
294
281
|
return;
|
|
295
282
|
}
|
|
296
283
|
if (reply.sent) {
|
|
@@ -303,7 +290,7 @@ const createHandler = params => {
|
|
|
303
290
|
}));
|
|
304
291
|
return;
|
|
305
292
|
}
|
|
306
|
-
reply.
|
|
293
|
+
reply.code(204).send("").hijack();
|
|
307
294
|
});
|
|
308
295
|
app.addHook("preParsing", async (request, reply) => {
|
|
309
296
|
app.webiny.request = request;
|
|
@@ -397,6 +384,20 @@ const createHandler = params => {
|
|
|
397
384
|
await handler(app.webiny, error);
|
|
398
385
|
return reply;
|
|
399
386
|
});
|
|
387
|
+
|
|
388
|
+
/**
|
|
389
|
+
* Apply response headers modifier plugins.
|
|
390
|
+
*/
|
|
391
|
+
app.addHook("onSend", async (request, reply, payload) => {
|
|
392
|
+
const modifyHeaders = app.webiny.plugins.byType(_ModifyResponseHeadersPlugin.ModifyResponseHeadersPlugin.type);
|
|
393
|
+
const headers = _ResponseHeaders.ResponseHeaders.create(reply.getHeaders());
|
|
394
|
+
modifyHeaders.forEach(plugin => {
|
|
395
|
+
plugin.modify(request, headers);
|
|
396
|
+
});
|
|
397
|
+
reply.headers(headers.getHeaders());
|
|
398
|
+
return payload;
|
|
399
|
+
});
|
|
400
|
+
|
|
400
401
|
/**
|
|
401
402
|
* We need to output the benchmark results at the end of the request in both response and timeout cases
|
|
402
403
|
*/
|
|
@@ -422,6 +423,35 @@ const createHandler = params => {
|
|
|
422
423
|
console.error(stringifyError(ex));
|
|
423
424
|
throw ex;
|
|
424
425
|
}
|
|
426
|
+
|
|
427
|
+
/**
|
|
428
|
+
* We have few types of triggers:
|
|
429
|
+
* * Events - EventPlugin
|
|
430
|
+
* * Routes - RoutePlugin
|
|
431
|
+
*
|
|
432
|
+
* Routes are registered in fastify but events must be handled in package which implements cloud specific methods.
|
|
433
|
+
*/
|
|
434
|
+
const routePlugins = app.webiny.plugins.byType(_RoutePlugin.RoutePlugin.type);
|
|
435
|
+
|
|
436
|
+
/**
|
|
437
|
+
* Add routes to the system.
|
|
438
|
+
*/
|
|
439
|
+
let routePluginName;
|
|
440
|
+
try {
|
|
441
|
+
for (const plugin of routePlugins) {
|
|
442
|
+
routePluginName = plugin.name;
|
|
443
|
+
plugin.cb({
|
|
444
|
+
...app.webiny.routes,
|
|
445
|
+
context: app.webiny
|
|
446
|
+
});
|
|
447
|
+
}
|
|
448
|
+
} catch (ex) {
|
|
449
|
+
console.error(`Error while running the "RoutePlugin" ${routePluginName ? `(${routePluginName})` : ""} plugin in the beginning of the "createHandler" callable.`);
|
|
450
|
+
console.error(stringifyError(ex));
|
|
451
|
+
throw ex;
|
|
452
|
+
}
|
|
425
453
|
return app;
|
|
426
454
|
};
|
|
427
|
-
exports.createHandler = createHandler;
|
|
455
|
+
exports.createHandler = createHandler;
|
|
456
|
+
|
|
457
|
+
//# sourceMappingURL=fastify.js.map
|
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","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","benchmark","output","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 * We need to output the benchmark results at the end of the request in both response and timeout cases\n */\n app.addHook(\"onResponse\", async () => {\n await context.benchmark.output();\n });\n app.addHook(\"onTimeout\", async () => {\n await context.benchmark.output();\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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"}
|
|
1
|
+
{"version":3,"names":["_types","require","_fastify","_interopRequireDefault","_utils","_Context","_error","_RoutePlugin","_handlerClient","_cookie","_compress","_middleware","_api","_BeforeHandlerPlugin","_HandlerResultPlugin","_HandlerErrorPlugin","_ModifyFastifyPlugin","_HandlerOnRequestPlugin","_ResponseHeaders","_ModifyResponseHeadersPlugin","createDefaultHeaders","ResponseHeaders","create","getWebinyVersionHeaders","getDefaultOptionsHeaders","getDefaultHeaders","routes","headers","keys","Object","all","every","key","length","set","allowedMethods","filter","type","Array","isArray","sort","join","stringifyError","error","name","message","code","stack","data","JSON","stringify","constructorName","constructor","process","env","DEBUG","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","plugins","PluginsContainer","createHandlerClient","merge","Context","WEBINY_VERSION","ex","decorate","request","isOptionsRequest","defaultHeaders","initialHeaders","getHeaders","webiny","byType","HandlerOnRequestPlugin","plugin","result","exec","sent","explanation","send","hijack","ContextPlugin","apply","BeforeHandlerPlugin","preSerialization","__","payload","HandlerResultPlugin","handle","setErrorHandler","status","HandlerErrorPlugin","middleware","map","pl","next","modifyHeaders","ModifyResponseHeadersPlugin","forEach","modify","benchmark","output","modifyPlugins","ModifyFastifyPlugin","modifyFastifyPluginName","routePlugins","RoutePlugin","routePluginName","cb","exports"],"sources":["fastify.ts"],"sourcesContent":["import { PluginCollection, PluginsContainer } from \"@webiny/plugins/types\";\nimport fastify, {\n FastifyServerOptions as ServerOptions,\n preSerializationAsyncHookHandler\n} from \"fastify\";\nimport { getWebinyVersionHeaders } from \"@webiny/utils\";\nimport { ContextRoutes, DefinedContextRoutes, HTTPMethods, RouteMethodOptions } 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, MiddlewareCallable } 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\";\nimport { ResponseHeaders } from \"~/ResponseHeaders\";\nimport { ModifyResponseHeadersPlugin } from \"~/plugins/ModifyResponseHeadersPlugin\";\n\nfunction createDefaultHeaders() {\n return ResponseHeaders.create({\n \"content-type\": \"application/json; charset=utf-8\",\n \"cache-control\": \"no-store\",\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}\n\nconst getDefaultOptionsHeaders = () => {\n return ResponseHeaders.create({\n \"access-control-max-age\": \"86400\",\n \"cache-control\": \"public, max-age=86400\"\n });\n};\n\nconst getDefaultHeaders = (routes: DefinedContextRoutes): ResponseHeaders => {\n const headers = createDefaultHeaders();\n\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 headers.set(\"access-control-allow-methods\", \"*\");\n } else {\n const allowedMethods = keys\n .filter(type => {\n if (!routes[type] || !Array.isArray(routes[type])) {\n return false;\n }\n return routes[type].length > 0;\n })\n .sort()\n .join(\",\");\n\n headers.set(\"access-control-allow-methods\", allowedMethods);\n }\n\n return headers;\n};\n\ninterface CustomError extends Error {\n code?: string;\n data?: Record<string, any>;\n}\n\nconst stringifyError = (error: CustomError) => {\n const { name, message, code, stack, data } = error;\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\nexport interface CreateHandlerParams {\n plugins: PluginCollection | PluginsContainer;\n options?: ServerOptions;\n debug?: boolean;\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\n const plugins = new PluginsContainer([\n /**\n * We must have handlerClient by default.\n * And it must be one of the first context plugins applied.\n */\n createHandlerClient()\n ]);\n plugins.merge(params.plugins || []);\n\n try {\n context = new Context({\n plugins,\n /**\n * Inserted via webpack at build time.\n */\n WEBINY_VERSION: process.env.WEBINY_VERSION as string,\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 * 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 isOptionsRequest = request.method === \"OPTIONS\";\n /**\n * Our default headers are always set. Users can override them.\n */\n const defaultHeaders = getDefaultHeaders(definedRoutes);\n\n const initialHeaders = isOptionsRequest\n ? defaultHeaders.merge(getDefaultOptionsHeaders())\n : defaultHeaders;\n\n reply.headers(initialHeaders.getHeaders());\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 (!isOptionsRequest) {\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.code(204).send(\"\").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: MiddlewareCallable) => {\n return pl.handle(context, error, next);\n };\n })\n );\n await handler(app.webiny, error);\n\n return reply;\n });\n\n /**\n * Apply response headers modifier plugins.\n */\n app.addHook(\"onSend\", async (request, reply, payload) => {\n const modifyHeaders = app.webiny.plugins.byType<ModifyResponseHeadersPlugin>(\n ModifyResponseHeadersPlugin.type\n );\n\n const headers = ResponseHeaders.create(reply.getHeaders());\n\n modifyHeaders.forEach(plugin => {\n plugin.modify(request, headers);\n });\n\n reply.headers(headers.getHeaders());\n\n return payload;\n });\n\n /**\n * We need to output the benchmark results at the end of the request in both response and timeout cases\n */\n app.addHook(\"onResponse\", async () => {\n await context.benchmark.output();\n });\n\n app.addHook(\"onTimeout\", async () => {\n await context.benchmark.output();\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 /**\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 return app;\n};\n"],"mappings":"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"}
|
package/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
export * from "@webiny/api/plugins/ContextPlugin";
|
|
2
1
|
export * from "./fastify";
|
|
3
2
|
export * from "./Context";
|
|
3
|
+
export * from "./ResponseHeaders";
|
|
4
4
|
export * from "./plugins/EventPlugin";
|
|
5
5
|
export * from "./plugins/RoutePlugin";
|
|
6
6
|
export * from "./plugins/BeforeHandlerPlugin";
|
|
@@ -8,3 +8,5 @@ export * from "./plugins/HandlerErrorPlugin";
|
|
|
8
8
|
export * from "./plugins/HandlerResultPlugin";
|
|
9
9
|
export * from "./plugins/HandlerOnRequestPlugin";
|
|
10
10
|
export * from "./plugins/ModifyFastifyPlugin";
|
|
11
|
+
export * from "./plugins/ModifyResponseHeadersPlugin";
|
|
12
|
+
export * from "./ResponseHeaders";
|