-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhttp-api.ts
97 lines (89 loc) · 2.86 KB
/
http-api.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
import {
APIGatewayProxyEventV2,
APIGatewayProxyResultV2,
APIGatewayProxyStructuredResultV2,
APIGatewayProxyEventHeaders,
Context,
} from 'aws-lambda'
import { envKey, sessionIdHeaderName } from './config'
import { parseQueryString } from './parse-querystring'
import { EventInput, HTTPMethod, RCHeaders, RCRequest, RCResponse } from './types'
import { getEnvRegion } from './utils'
import { parseCookies } from './parse-cookies'
export type RequestEvent = APIGatewayProxyEventV2
export type ResponseEvent = APIGatewayProxyResultV2
export const isRequestEvent = (event: EventInput): event is RequestEvent => {
if ((event as RequestEvent).hasOwnProperty('isBase64Encoded')) {
return true
}
return false
}
const requestHeadersHandler = (headers: APIGatewayProxyEventHeaders): RCHeaders => {
const rcHeaders: RCHeaders = {}
Object.entries(headers).forEach(([k, v]) => {
if (v) {
rcHeaders[k] = v.split(',')
}
})
return rcHeaders
}
const responseHeadersHandler = (rcHeaders: RCHeaders): APIGatewayProxyStructuredResultV2['headers'] => {
const headers: Record<string, string> = {}
Object.entries(rcHeaders).forEach(([k, v]) => {
headers[k] = Array.isArray(v) ? v[0] : v
})
return headers
}
const requestBodyHandler = (event: RequestEvent) => {
if (event.body && event.isBase64Encoded) {
return Buffer.from(event.body, 'base64').toString('utf8')
}
return event.body
}
const getEnv = (headers: RCHeaders): Record<string, string> => {
const envHeader = Array.isArray(headers[envKey]) ? headers[envKey][0] : headers[envKey]
delete headers[envKey]
const env = envHeader ? JSON.parse(Buffer.from(envHeader, 'base64').toString('utf-8')) : {}
if (env.domainMapping) {
return Object.values(env.domainMapping)[0] as Record<string, string>
}
return env
}
export const toRCRequest = <EnvType>(request: RequestEvent, context: Context): RCRequest<EnvType> => {
const headers = requestHeadersHandler(request.headers)
const { functionName, functionVersion, awsRequestId } = context
const meta = {
event: request,
sessionId: headers[sessionIdHeaderName]?.toString(),
functionName,
functionVersion,
invocationId: awsRequestId,
}
const req = {
method: request.requestContext.http.method as HTTPMethod,
path: request.rawPath,
host: Array.isArray(headers['host']) ? headers['host'][0] : headers['host'],
cookies: parseCookies(headers['cookie']),
body: requestBodyHandler(request),
headers,
env: getEnv(headers) as EnvType,
...getEnvRegion(),
meta,
}
const query = parseQueryString(request.rawQueryString)
if (query) {
return {
...req,
query,
}
}
return req
}
export const handleRCResponse = (res: RCResponse): ResponseEvent => {
return {
headers: responseHeadersHandler(res.headers),
isBase64Encoded: false,
body: res.body,
statusCode: res.status,
}
}