@middy/http-event-normalizer 2.5.3 → 3.0.0-alpha.2
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/LICENSE +1 -1
- package/README.md +2 -2
- package/index.d.ts +1 -5
- package/index.js +19 -29
- package/package.json +7 -6
package/LICENSE
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
MIT License
|
|
2
2
|
|
|
3
|
-
Copyright (c) 2017-
|
|
3
|
+
Copyright (c) 2017-2022 Luciano Mammino, will Farrell and the [Middy team](https://github.com/middyjs/middy/graphs/contributors)
|
|
4
4
|
|
|
5
5
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
6
|
of this software and associated documentation files (the "Software"), to deal
|
package/README.md
CHANGED
|
@@ -54,7 +54,7 @@ npm install --save @middy/http-event-normalizer
|
|
|
54
54
|
|
|
55
55
|
## Options
|
|
56
56
|
|
|
57
|
-
- payloadFormatVersion (number) (optional): Defaults to `1
|
|
57
|
+
- payloadFormatVersion (number) (optional): Defaults to `1 ` for API Gateway REST API v1 or Application Load Balancer (ALB) event payload. Set it to `2` to use API Gateway HTTP API v2 event payload.
|
|
58
58
|
|
|
59
59
|
|
|
60
60
|
## Sample usage
|
|
@@ -84,7 +84,7 @@ Everyone is very welcome to contribute to this repository. Feel free to [raise i
|
|
|
84
84
|
|
|
85
85
|
## License
|
|
86
86
|
|
|
87
|
-
Licensed under [MIT License](LICENSE). Copyright (c) 2017-
|
|
87
|
+
Licensed under [MIT License](LICENSE). Copyright (c) 2017-2022 Luciano Mammino, will Farrell, and the [Middy team](https://github.com/middyjs/middy/graphs/contributors).
|
|
88
88
|
|
|
89
89
|
<a href="https://app.fossa.io/projects/git%2Bgithub.com%2Fmiddyjs%2Fmiddy?ref=badge_large">
|
|
90
90
|
<img src="https://app.fossa.io/api/projects/git%2Bgithub.com%2Fmiddyjs%2Fmiddy.svg?type=large" alt="FOSSA Status" style="max-width:100%;">
|
package/index.d.ts
CHANGED
|
@@ -1,9 +1,5 @@
|
|
|
1
1
|
import middy from '@middy/core'
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
payloadFormatVersion?: 1 | 2
|
|
5
|
-
}
|
|
6
|
-
|
|
7
|
-
declare function httpEventNormalizer (options?: Options): middy.MiddlewareObj
|
|
3
|
+
declare function httpEventNormalizer (): middy.MiddlewareObj
|
|
8
4
|
|
|
9
5
|
export default httpEventNormalizer
|
package/index.js
CHANGED
|
@@ -1,30 +1,22 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
const defaults = {
|
|
4
|
-
payloadFormatVersion: 1
|
|
5
|
-
};
|
|
6
|
-
|
|
7
|
-
const httpEventNormalizerMiddleware = (opts = {}) => {
|
|
8
|
-
const options = { ...defaults,
|
|
9
|
-
...opts
|
|
10
|
-
};
|
|
11
|
-
|
|
1
|
+
const httpEventNormalizerMiddleware = () => {
|
|
12
2
|
const httpEventNormalizerMiddlewareBefore = async request => {
|
|
3
|
+
var _isVersionHttpEvent$v;
|
|
4
|
+
|
|
13
5
|
const {
|
|
14
6
|
event
|
|
15
7
|
} = request;
|
|
8
|
+
const version = event.version ?? '1.0';
|
|
9
|
+
const isHttpEvent = (_isVersionHttpEvent$v = isVersionHttpEvent[version]) === null || _isVersionHttpEvent$v === void 0 ? void 0 : _isVersionHttpEvent$v.call(isVersionHttpEvent, event);
|
|
16
10
|
|
|
17
|
-
if (isHttpEvent
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
event.queryStringParameters = (_event$queryStringPar = event.queryStringParameters) !== null && _event$queryStringPar !== void 0 ? _event$queryStringPar : {};
|
|
21
|
-
event.pathParameters = (_event$pathParameters = event.pathParameters) !== null && _event$pathParameters !== void 0 ? _event$pathParameters : {};
|
|
11
|
+
if (!isHttpEvent) {
|
|
12
|
+
throw new Error('Unknown API Gateway Payload format');
|
|
13
|
+
}
|
|
22
14
|
|
|
23
|
-
|
|
24
|
-
|
|
15
|
+
event.queryStringParameters ?? (event.queryStringParameters = {});
|
|
16
|
+
event.pathParameters ?? (event.pathParameters = {});
|
|
25
17
|
|
|
26
|
-
|
|
27
|
-
}
|
|
18
|
+
if (version === '1.0') {
|
|
19
|
+
event.multiValueQueryStringParameters ?? (event.multiValueQueryStringParameters = {});
|
|
28
20
|
}
|
|
29
21
|
};
|
|
30
22
|
|
|
@@ -33,14 +25,12 @@ const httpEventNormalizerMiddleware = (opts = {}) => {
|
|
|
33
25
|
};
|
|
34
26
|
};
|
|
35
27
|
|
|
36
|
-
const
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
return Object.prototype.hasOwnProperty.call(event, 'requestContext') && Object.prototype.hasOwnProperty.call(event.requestContext, 'http') && Object.prototype.hasOwnProperty.call(event.requestContext.http, 'method');
|
|
41
|
-
}
|
|
28
|
+
const isVersionHttpEvent = {
|
|
29
|
+
'1.0': event => event.httpMethod !== undefined,
|
|
30
|
+
'2.0': event => {
|
|
31
|
+
var _event$requestContext, _event$requestContext2;
|
|
42
32
|
|
|
43
|
-
|
|
33
|
+
return ((_event$requestContext = event.requestContext) === null || _event$requestContext === void 0 ? void 0 : (_event$requestContext2 = _event$requestContext.http) === null || _event$requestContext2 === void 0 ? void 0 : _event$requestContext2.method) !== undefined;
|
|
34
|
+
}
|
|
44
35
|
};
|
|
45
|
-
|
|
46
|
-
module.exports = httpEventNormalizerMiddleware;
|
|
36
|
+
export default httpEventNormalizerMiddleware;
|
package/package.json
CHANGED
|
@@ -1,18 +1,19 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@middy/http-event-normalizer",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "3.0.0-alpha.2",
|
|
4
4
|
"description": "Http event normalizer middleware for the middy framework",
|
|
5
|
-
"type": "
|
|
5
|
+
"type": "module",
|
|
6
6
|
"engines": {
|
|
7
|
-
"node": ">=
|
|
7
|
+
"node": ">=14"
|
|
8
8
|
},
|
|
9
9
|
"engineStrict": true,
|
|
10
10
|
"publishConfig": {
|
|
11
11
|
"access": "public"
|
|
12
12
|
},
|
|
13
|
-
"
|
|
13
|
+
"exports": "./index.js",
|
|
14
14
|
"types": "index.d.ts",
|
|
15
15
|
"files": [
|
|
16
|
+
"index.js",
|
|
16
17
|
"index.d.ts"
|
|
17
18
|
],
|
|
18
19
|
"scripts": {
|
|
@@ -45,8 +46,8 @@
|
|
|
45
46
|
"url": "https://github.com/middyjs/middy/issues"
|
|
46
47
|
},
|
|
47
48
|
"homepage": "https://github.com/middyjs/middy#readme",
|
|
48
|
-
"gitHead": "
|
|
49
|
+
"gitHead": "de30419273ecbff08f367f47c7e320ec981cf145",
|
|
49
50
|
"devDependencies": {
|
|
50
|
-
"@middy/core": "^
|
|
51
|
+
"@middy/core": "^3.0.0-alpha.2"
|
|
51
52
|
}
|
|
52
53
|
}
|