@webiny/api-websockets 6.0.0-alpha.5 → 6.0.0-rc.0
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/README.md +10 -9
- package/context/WebsocketsContext.d.ts +10 -8
- package/context/WebsocketsContext.js +44 -33
- package/context/WebsocketsContext.js.map +1 -1
- package/context/abstractions/IWebsocketsContext.d.ts +10 -9
- package/context/abstractions/IWebsocketsContext.js +1 -5
- package/context/abstractions/IWebsocketsContext.js.map +1 -1
- package/context/index.d.ts +2 -3
- package/context/index.js +11 -42
- package/context/index.js.map +1 -1
- package/features/WebsocketService/abstractions.d.ts +9 -0
- package/features/WebsocketService/abstractions.js +4 -0
- package/features/WebsocketService/abstractions.js.map +1 -0
- package/features/WebsocketService/errors.d.ts +19 -0
- package/features/WebsocketService/errors.js +36 -0
- package/features/WebsocketService/errors.js.map +1 -0
- package/features/WebsocketService/index.d.ts +1 -0
- package/features/WebsocketService/index.js +3 -0
- package/features/WebsocketService/index.js.map +1 -0
- package/graphql/checkPermissions.d.ts +1 -1
- package/graphql/checkPermissions.js +6 -11
- package/graphql/checkPermissions.js.map +1 -1
- package/graphql/createResolvers.d.ts +2 -3
- package/graphql/createResolvers.js +41 -29
- package/graphql/createResolvers.js.map +1 -1
- package/graphql/createTypeDefs.js +2 -11
- package/graphql/createTypeDefs.js.map +1 -1
- package/graphql/index.d.ts +1 -1
- package/graphql/index.js +7 -14
- package/graphql/index.js.map +1 -1
- package/graphql/utils.js +5 -13
- package/graphql/utils.js.map +1 -1
- package/handler/handler.d.ts +1 -1
- package/handler/handler.js +45 -48
- package/handler/handler.js.map +1 -1
- package/handler/headers.d.ts +1 -2
- package/handler/headers.js +1 -13
- package/handler/headers.js.map +1 -1
- package/handler/register.js +5 -7
- package/handler/register.js.map +1 -1
- package/handler/types.d.ts +5 -8
- package/handler/types.js +2 -8
- package/handler/types.js.map +1 -1
- package/index.d.ts +9 -9
- package/index.js +11 -98
- package/index.js.map +1 -1
- package/package.json +28 -27
- package/plugins/WebsocketsActionPlugin.d.ts +2 -2
- package/plugins/WebsocketsActionPlugin.js +3 -11
- package/plugins/WebsocketsActionPlugin.js.map +1 -1
- package/plugins/WebsocketsRoutePlugin.d.ts +6 -7
- package/plugins/WebsocketsRoutePlugin.js +3 -11
- package/plugins/WebsocketsRoutePlugin.js.map +1 -1
- package/plugins/abstrations/IWebsocketsActionPlugin.d.ts +2 -3
- package/plugins/abstrations/IWebsocketsActionPlugin.js +1 -5
- package/plugins/abstrations/IWebsocketsActionPlugin.js.map +1 -1
- package/plugins/index.d.ts +3 -3
- package/plugins/index.js +2 -38
- package/plugins/index.js.map +1 -1
- package/registry/WebsocketsConnectionRegistry.d.ts +3 -3
- package/registry/WebsocketsConnectionRegistry.js +34 -59
- package/registry/WebsocketsConnectionRegistry.js.map +1 -1
- package/registry/abstractions/IWebsocketsConnectionRegistry.d.ts +2 -4
- package/registry/abstractions/IWebsocketsConnectionRegistry.js +1 -5
- package/registry/abstractions/IWebsocketsConnectionRegistry.js.map +1 -1
- package/registry/entity.d.ts +3 -108
- package/registry/entity.js +18 -33
- package/registry/entity.js.map +1 -1
- package/registry/index.d.ts +2 -2
- package/registry/index.js +1 -27
- package/registry/index.js.map +1 -1
- package/response/WebsocketsResponse.d.ts +1 -1
- package/response/WebsocketsResponse.js +1 -8
- package/response/WebsocketsResponse.js.map +1 -1
- package/response/abstractions/IWebsocketsResponse.d.ts +1 -1
- package/response/abstractions/IWebsocketsResponse.js +1 -5
- package/response/abstractions/IWebsocketsResponse.js.map +1 -1
- package/response/index.d.ts +2 -2
- package/response/index.js +1 -27
- package/response/index.js.map +1 -1
- package/runner/WebsocketsRunner.d.ts +6 -6
- package/runner/WebsocketsRunner.js +10 -23
- package/runner/WebsocketsRunner.js.map +1 -1
- package/runner/abstractions/IWebsocketsRunner.d.ts +2 -2
- package/runner/abstractions/IWebsocketsRunner.js +1 -5
- package/runner/abstractions/IWebsocketsRunner.js.map +1 -1
- package/runner/index.d.ts +2 -2
- package/runner/index.js +1 -27
- package/runner/index.js.map +1 -1
- package/runner/routes/connect.d.ts +1 -1
- package/runner/routes/connect.js +9 -19
- package/runner/routes/connect.js.map +1 -1
- package/runner/routes/default.d.ts +1 -1
- package/runner/routes/default.js +4 -17
- package/runner/routes/default.js.map +1 -1
- package/runner/routes/disconnect.d.ts +1 -1
- package/runner/routes/disconnect.js +4 -11
- package/runner/routes/disconnect.js.map +1 -1
- package/runner/routes/index.d.ts +1 -1
- package/runner/routes/index.js +5 -12
- package/runner/routes/index.js.map +1 -1
- package/transport/WebsocketsTransport.d.ts +2 -2
- package/transport/WebsocketsTransport.js +5 -12
- package/transport/WebsocketsTransport.js.map +1 -1
- package/transport/abstractions/IWebsocketsTransport.d.ts +2 -2
- package/transport/abstractions/IWebsocketsTransport.js +1 -5
- package/transport/abstractions/IWebsocketsTransport.js.map +1 -1
- package/transport/index.d.ts +2 -2
- package/transport/index.js +1 -27
- package/transport/index.js.map +1 -1
- package/types.d.ts +5 -5
- package/types.js +1 -5
- package/types.js.map +1 -1
- package/utils/middleware.d.ts +1 -1
- package/utils/middleware.js +1 -8
- package/utils/middleware.js.map +1 -1
- package/validator/WebsocketsEventValidator.d.ts +2 -2
- package/validator/WebsocketsEventValidator.js +25 -34
- package/validator/WebsocketsEventValidator.js.map +1 -1
- package/validator/abstractions/IWebsocketsEventValidator.d.ts +1 -1
- package/validator/abstractions/IWebsocketsEventValidator.js +1 -5
- package/validator/abstractions/IWebsocketsEventValidator.js.map +1 -1
- package/validator/index.d.ts +2 -2
- package/validator/index.js +1 -27
- package/validator/index.js.map +1 -1
|
@@ -1,24 +1,17 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
requestContext: _zod.default.object({
|
|
14
|
-
connectionId: _zod.default.string(),
|
|
15
|
-
stage: _zod.default.string(),
|
|
16
|
-
connectedAt: _zod.default.number(),
|
|
17
|
-
domainName: _zod.default.string(),
|
|
18
|
-
eventType: _zod.default.enum([_types.WebsocketsEventRequestContextEventType.connect, _types.WebsocketsEventRequestContextEventType.message, _types.WebsocketsEventRequestContextEventType.disconnect]),
|
|
19
|
-
routeKey: _zod.default.string()
|
|
1
|
+
import zod from "zod";
|
|
2
|
+
import { WebsocketsEventRequestContextEventType } from "../handler/types.js";
|
|
3
|
+
import { createZodError } from "@webiny/utils";
|
|
4
|
+
const validation = zod.object({
|
|
5
|
+
headers: zod.object({}).passthrough().optional(),
|
|
6
|
+
requestContext: zod.object({
|
|
7
|
+
connectionId: zod.string(),
|
|
8
|
+
stage: zod.string(),
|
|
9
|
+
connectedAt: zod.number(),
|
|
10
|
+
domainName: zod.string(),
|
|
11
|
+
eventType: zod.enum([WebsocketsEventRequestContextEventType.connect, WebsocketsEventRequestContextEventType.message, WebsocketsEventRequestContextEventType.disconnect]),
|
|
12
|
+
routeKey: zod.string()
|
|
20
13
|
}),
|
|
21
|
-
body:
|
|
14
|
+
body: zod.string().transform((value, context) => {
|
|
22
15
|
if (!value) {
|
|
23
16
|
return undefined;
|
|
24
17
|
}
|
|
@@ -36,13 +29,13 @@ const validation = _zod.default.object({
|
|
|
36
29
|
context.addIssue({
|
|
37
30
|
path: [],
|
|
38
31
|
message: `Invalid JSON: ${ex.message}`,
|
|
39
|
-
code:
|
|
32
|
+
code: zod.ZodIssueCode.custom,
|
|
40
33
|
fatal: true
|
|
41
34
|
});
|
|
42
35
|
}
|
|
43
36
|
}).optional()
|
|
44
37
|
}).superRefine((output, context) => {
|
|
45
|
-
if (output.requestContext.eventType !==
|
|
38
|
+
if (output.requestContext.eventType !== WebsocketsEventRequestContextEventType.message) {
|
|
46
39
|
return;
|
|
47
40
|
} else if (output.body) {
|
|
48
41
|
return;
|
|
@@ -50,27 +43,26 @@ const validation = _zod.default.object({
|
|
|
50
43
|
context.addIssue({
|
|
51
44
|
path: ["body"],
|
|
52
45
|
message: "There must be a body defined when having a message event.",
|
|
53
|
-
code:
|
|
46
|
+
code: zod.ZodIssueCode.custom,
|
|
54
47
|
fatal: true
|
|
55
48
|
});
|
|
56
49
|
});
|
|
57
|
-
const bodyValidation =
|
|
58
|
-
token:
|
|
59
|
-
tenant:
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
data: _zod.default.object({}).passthrough().nullish()
|
|
50
|
+
const bodyValidation = zod.object({
|
|
51
|
+
token: zod.string(),
|
|
52
|
+
tenant: zod.string(),
|
|
53
|
+
messageId: zod.string().nullish(),
|
|
54
|
+
action: zod.string(),
|
|
55
|
+
data: zod.object({}).passthrough().nullish()
|
|
64
56
|
}).passthrough().optional();
|
|
65
|
-
class WebsocketsEventValidator {
|
|
57
|
+
export class WebsocketsEventValidator {
|
|
66
58
|
async validate(input) {
|
|
67
59
|
const result = await validation.safeParseAsync(input);
|
|
68
60
|
if (!result.success) {
|
|
69
|
-
throw
|
|
61
|
+
throw createZodError(result.error);
|
|
70
62
|
}
|
|
71
63
|
const bodyResult = await bodyValidation.safeParseAsync(result.data.body);
|
|
72
64
|
if (!bodyResult.success) {
|
|
73
|
-
throw
|
|
65
|
+
throw createZodError(bodyResult.error);
|
|
74
66
|
}
|
|
75
67
|
return {
|
|
76
68
|
...result.data,
|
|
@@ -80,6 +72,5 @@ class WebsocketsEventValidator {
|
|
|
80
72
|
};
|
|
81
73
|
}
|
|
82
74
|
}
|
|
83
|
-
exports.WebsocketsEventValidator = WebsocketsEventValidator;
|
|
84
75
|
|
|
85
76
|
//# sourceMappingURL=WebsocketsEventValidator.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["
|
|
1
|
+
{"version":3,"names":["zod","WebsocketsEventRequestContextEventType","createZodError","validation","object","headers","passthrough","optional","requestContext","connectionId","string","stage","connectedAt","number","domainName","eventType","enum","connect","message","disconnect","routeKey","body","transform","value","context","undefined","JSON","parse","ex","console","error","log","addIssue","path","code","ZodIssueCode","custom","fatal","superRefine","output","bodyValidation","token","tenant","messageId","nullish","action","data","WebsocketsEventValidator","validate","input","result","safeParseAsync","success","bodyResult"],"sources":["WebsocketsEventValidator.ts"],"sourcesContent":["import zod from \"zod\";\nimport type { IWebsocketsEvent, IWebsocketsEventData } from \"~/handler/types.js\";\nimport { WebsocketsEventRequestContextEventType } from \"~/handler/types.js\";\nimport type {\n IWebsocketsEventValidator,\n IWebsocketsEventValidatorValidateParams\n} from \"./abstractions/IWebsocketsEventValidator.js\";\nimport { createZodError } from \"@webiny/utils\";\n\nconst validation = zod\n .object({\n headers: zod.object({}).passthrough().optional(),\n requestContext: zod.object({\n connectionId: zod.string(),\n stage: zod.string(),\n connectedAt: zod.number(),\n domainName: zod.string(),\n eventType: zod.enum([\n WebsocketsEventRequestContextEventType.connect,\n WebsocketsEventRequestContextEventType.message,\n WebsocketsEventRequestContextEventType.disconnect\n ]),\n routeKey: zod.string()\n }),\n body: zod\n .string()\n .transform<IWebsocketsEventData>((value, context) => {\n if (!value) {\n return undefined;\n }\n try {\n return JSON.parse(value);\n } catch (ex) {\n /**\n * We want to log the error, for easier debugging.\n */\n console.error(`Failed body validation: ${ex.message}`);\n console.log(`Body: ${value}`);\n /**\n * And we want to add an issue to the context, so that the user knows what went wrong.\n */\n context.addIssue({\n path: [],\n message: `Invalid JSON: ${ex.message}`,\n code: zod.ZodIssueCode.custom,\n fatal: true\n });\n }\n })\n .optional()\n })\n .superRefine((output, context) => {\n if (output.requestContext.eventType !== WebsocketsEventRequestContextEventType.message) {\n return;\n } else if (output.body) {\n return;\n }\n context.addIssue({\n path: [\"body\"],\n message: \"There must be a body defined when having a message event.\",\n code: zod.ZodIssueCode.custom,\n fatal: true\n });\n });\n\nconst bodyValidation = zod\n .object({\n token: zod.string(),\n tenant: zod.string(),\n messageId: zod.string().nullish(),\n action: zod.string(),\n data: zod.object({}).passthrough().nullish()\n })\n .passthrough()\n .optional();\n\nexport class WebsocketsEventValidator implements IWebsocketsEventValidator {\n public async validate<T extends IWebsocketsEventData = IWebsocketsEventData>(\n input: IWebsocketsEventValidatorValidateParams\n ): Promise<IWebsocketsEvent<T>> {\n const result = await validation.safeParseAsync(input);\n if (!result.success) {\n throw createZodError(result.error);\n }\n const bodyResult = await bodyValidation.safeParseAsync(result.data.body);\n if (!bodyResult.success) {\n throw createZodError(bodyResult.error);\n }\n return {\n ...result.data,\n body: {\n ...((bodyResult.data || {}) as T)\n }\n };\n }\n}\n"],"mappings":"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","ignoreList":[]}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { IWebsocketsEvent, IWebsocketsEventData, IWebsocketsIncomingEvent } from "../../handler/types";
|
|
1
|
+
import type { IWebsocketsEvent, IWebsocketsEventData, IWebsocketsIncomingEvent } from "../../handler/types.js";
|
|
2
2
|
export type IWebsocketsEventValidatorValidateParams = IWebsocketsIncomingEvent;
|
|
3
3
|
export interface IWebsocketsEventValidator {
|
|
4
4
|
/**
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":[],"sources":["IWebsocketsEventValidator.ts"],"sourcesContent":["import type {\n IWebsocketsEvent,\n IWebsocketsEventData,\n IWebsocketsIncomingEvent\n} from \"~/handler/types\";\n\nexport type IWebsocketsEventValidatorValidateParams = IWebsocketsIncomingEvent;\n\nexport interface IWebsocketsEventValidator {\n /**\n * @throws {Error}\n */\n validate<T extends IWebsocketsEventData = IWebsocketsEventData>(\n params: IWebsocketsEventValidatorValidateParams\n ): Promise<IWebsocketsEvent<T>>;\n}\n"],"mappings":"","ignoreList":[]}
|
|
1
|
+
{"version":3,"names":[],"sources":["IWebsocketsEventValidator.ts"],"sourcesContent":["import type {\n IWebsocketsEvent,\n IWebsocketsEventData,\n IWebsocketsIncomingEvent\n} from \"~/handler/types.js\";\n\nexport type IWebsocketsEventValidatorValidateParams = IWebsocketsIncomingEvent;\n\nexport interface IWebsocketsEventValidator {\n /**\n * @throws {Error}\n */\n validate<T extends IWebsocketsEventData = IWebsocketsEventData>(\n params: IWebsocketsEventValidatorValidateParams\n ): Promise<IWebsocketsEvent<T>>;\n}\n"],"mappings":"","ignoreList":[]}
|
package/validator/index.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export * from "./abstractions/IWebsocketsEventValidator";
|
|
2
|
-
export * from "./WebsocketsEventValidator";
|
|
1
|
+
export type * from "./abstractions/IWebsocketsEventValidator.js";
|
|
2
|
+
export * from "./WebsocketsEventValidator.js";
|
package/validator/index.js
CHANGED
|
@@ -1,29 +1,3 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
Object.defineProperty(exports, "__esModule", {
|
|
4
|
-
value: true
|
|
5
|
-
});
|
|
6
|
-
var _IWebsocketsEventValidator = require("./abstractions/IWebsocketsEventValidator");
|
|
7
|
-
Object.keys(_IWebsocketsEventValidator).forEach(function (key) {
|
|
8
|
-
if (key === "default" || key === "__esModule") return;
|
|
9
|
-
if (key in exports && exports[key] === _IWebsocketsEventValidator[key]) return;
|
|
10
|
-
Object.defineProperty(exports, key, {
|
|
11
|
-
enumerable: true,
|
|
12
|
-
get: function () {
|
|
13
|
-
return _IWebsocketsEventValidator[key];
|
|
14
|
-
}
|
|
15
|
-
});
|
|
16
|
-
});
|
|
17
|
-
var _WebsocketsEventValidator = require("./WebsocketsEventValidator");
|
|
18
|
-
Object.keys(_WebsocketsEventValidator).forEach(function (key) {
|
|
19
|
-
if (key === "default" || key === "__esModule") return;
|
|
20
|
-
if (key in exports && exports[key] === _WebsocketsEventValidator[key]) return;
|
|
21
|
-
Object.defineProperty(exports, key, {
|
|
22
|
-
enumerable: true,
|
|
23
|
-
get: function () {
|
|
24
|
-
return _WebsocketsEventValidator[key];
|
|
25
|
-
}
|
|
26
|
-
});
|
|
27
|
-
});
|
|
1
|
+
export * from "./WebsocketsEventValidator.js";
|
|
28
2
|
|
|
29
3
|
//# sourceMappingURL=index.js.map
|
package/validator/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":[
|
|
1
|
+
{"version":3,"names":[],"sources":["index.ts"],"sourcesContent":["export type * from \"./abstractions/IWebsocketsEventValidator.js\";\nexport * from \"./WebsocketsEventValidator.js\";\n"],"mappings":"AACA","ignoreList":[]}
|