-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathaws-stream.handler.ts
332 lines (295 loc) · 8.47 KB
/
aws-stream.handler.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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
//#region Imports
import { Writable } from 'node:stream';
import { inspect } from 'node:util';
import type { APIGatewayProxyEventV2, Context } from 'aws-lambda';
import type { APIGatewayProxyStructuredResultV2 } from 'aws-lambda/trigger/api-gateway-proxy';
import type { BinarySettings } from '../../@types';
import type {
AdapterContract,
AdapterRequest,
FrameworkContract,
ResolverContract,
ServerlessHandler,
} from '../../contracts';
import {
BaseHandler,
type ILogger,
getFlattenedHeadersMap,
setCurrentInvoke,
waitForStreamComplete,
} from '../../core';
import { ServerlessRequest, ServerlessStreamResponse } from '../../network';
//#endregion
/**
* @breadcrumb Handlers / AwsStreamHandler
* @public
*/
export type AWSResponseStream = Writable;
/**
* @breadcrumb Handlers / AwsStreamHandler
* @public
*/
export type AWSStreamResponseMetadata = Pick<
APIGatewayProxyStructuredResultV2,
'statusCode' | 'headers' | 'cookies'
>;
/**
* @breadcrumb Handlers / AwsStreamHandler
* @public
*/
declare const awslambda: {
streamifyResponse: (
handler: (
event: APIGatewayProxyEventV2,
response: AWSResponseStream,
context: Context,
) => Promise<void>,
) => any;
HttpResponseStream: {
from: (
stream: AWSResponseStream,
httpResponseMetadata: AWSStreamResponseMetadata,
) => AWSResponseStream;
};
};
/**
* The interface that describes the internal context used by the {@link AwsStreamHandler}
*
* @breadcrumb Handlers / AwsStreamHandler
* @public
*/
export type AWSStreamContext = {
/**
* The response stream provided by the serverless
*/
response: AWSResponseStream;
/**
* The context provided by the serverless
*/
context: Context;
};
/**
* The class that implements a default serverless handler consisting of a function with event, context and callback parameters respectively
*
* @breadcrumb Handlers / AwsStreamHandler
* @public
*/
export class AwsStreamHandler<TApp> extends BaseHandler<
TApp,
APIGatewayProxyEventV2,
AWSStreamContext,
void,
AWSStreamResponseMetadata,
void
> {
//#region Public Methods
/**
* {@inheritDoc}
*/
public getHandler(
app: TApp,
framework: FrameworkContract<TApp>,
adapters: AdapterContract<
APIGatewayProxyEventV2,
AWSStreamContext,
AWSStreamResponseMetadata
>[],
_resolverFactory: ResolverContract<
unknown,
unknown,
unknown,
unknown,
unknown
>,
binarySettings: BinarySettings,
respondWithErrors: boolean,
log: ILogger,
): ServerlessHandler<Promise<void>> {
return awslambda.streamifyResponse(async (event, response, context) => {
const streamContext = { response, context };
this.onReceiveRequest(
log,
event,
streamContext,
binarySettings,
respondWithErrors,
);
const adapter = this.getAdapterByEventAndContext(
event,
streamContext,
adapters,
log,
);
this.onResolveAdapter(log, adapter);
setCurrentInvoke({ event, context });
await this.forwardRequestToFramework(
app,
framework,
event,
streamContext,
adapter,
binarySettings,
log,
);
});
}
//#endregion
//#region Hooks
/**
* The hook executed on receive a request, before the request is being processed
*
* @param log - The instance of logger
* @param event - The event sent by serverless
* @param context - The context sent by serverless
* @param binarySettings - The binary settings
* @param respondWithErrors - Indicates whether the error stack should be included in the response or not
*/
protected onReceiveRequest(
log: ILogger,
event: APIGatewayProxyEventV2,
context: AWSStreamContext,
binarySettings: BinarySettings,
respondWithErrors: boolean,
): void {
log.debug('SERVERLESS_ADAPTER:PROXY', () => ({
event,
context: inspect(context, { depth: null }),
binarySettings,
respondWithErrors,
}));
}
/**
* The hook executed after resolve the adapter that will be used to handle the request and response
*
* @param log - The instance of logger
* @param adapter - The adapter resolved
*/
protected onResolveAdapter(
log: ILogger,
adapter: AdapterContract<
APIGatewayProxyEventV2,
AWSStreamContext,
AWSStreamResponseMetadata
>,
): void {
log.debug(
'SERVERLESS_ADAPTER:RESOLVED_ADAPTER_NAME: ',
adapter.getAdapterName(),
);
}
/**
* The hook executed after resolves the request values that will be sent to the framework
*
* @param log - The instance of logger
* @param requestValues - The request values returned by the adapter
*/
protected onResolveRequestValues(
log: ILogger,
requestValues: AdapterRequest,
): void {
log.debug(
'SERVERLESS_ADAPTER:FORWARD_REQUEST_TO_FRAMEWORK:REQUEST_VALUES',
() => ({
requestValues: {
...requestValues,
body: requestValues.body?.toString(),
},
}),
);
}
/**
* The hook executed before sending response to the serverless with response from adapter
*
* @param log - The instance of logger
* @param successResponse - The success response resolved by the adapter
*/
protected onForwardResponseAdapterResponse(
log: ILogger,
successResponse: AWSStreamResponseMetadata,
) {
log.debug('SERVERLESS_ADAPTER:FORWARD_RESPONSE:EVENT_SOURCE_RESPONSE', {
successResponse,
});
}
//#endregion
//#region Protected Methods
/**
* The function to forward the event to the framework
*
* @param app - The instance of the app (express, hapi, etc...)
* @param framework - The framework that will process requests
* @param event - The event sent by serverless
* @param context - The context sent by serverless
* @param adapter - The adapter resolved to this event
* @param _binarySettings - The binary settings
* @param log - The instance of logger
*/
protected async forwardRequestToFramework(
app: TApp,
framework: FrameworkContract<TApp>,
event: APIGatewayProxyEventV2,
context: AWSStreamContext,
adapter: AdapterContract<
APIGatewayProxyEventV2,
AWSStreamContext,
AWSStreamResponseMetadata
>,
_binarySettings: BinarySettings,
log: ILogger,
): Promise<void> {
const requestValues = adapter.getRequest(event, context, log);
this.onResolveRequestValues(log, requestValues);
const request = new ServerlessRequest({
method: requestValues.method,
headers: requestValues.headers,
body: requestValues.body,
remoteAddress: requestValues.remoteAddress,
url: requestValues.path,
});
const response = new ServerlessStreamResponse({
method: requestValues.method,
onReceiveHeaders: (status, headers) => {
const flattenedHeaders = getFlattenedHeadersMap(headers);
const awsMetadata: AWSStreamResponseMetadata = {
statusCode: status,
headers: flattenedHeaders,
};
const cookies = headers['set-cookie'];
if (cookies) {
awsMetadata.cookies = Array.isArray(cookies) ? cookies : [cookies];
delete headers['set-cookie'];
delete flattenedHeaders['set-cookie'];
}
this.onForwardResponseAdapterResponse(log, awsMetadata);
const finalResponse = awslambda.HttpResponseStream.from(
context.response,
awsMetadata,
);
// some status do not return body, and
// for some unknown reason, we cannot finish the stream without writing at least once
// so I have this thing just to fix this issue
// ref: https://stackoverflow.com/a/37303151
const isHundreadStatus = status >= 100 && status < 200;
const isNoContentStatus = status === 304 || status === 204;
const isHeadRequest = requestValues.method === 'HEAD';
if (isHundreadStatus || isNoContentStatus || isHeadRequest) {
finalResponse.write('');
// end the response to avoid waiting for nothing
response.end();
}
return finalResponse;
},
log,
});
framework.sendRequest(app, request, response);
log.debug(
'SERVERLESS_ADAPTER:FORWARD_REQUEST_TO_FRAMEWORK:WAITING_STREAM_COMPLETE',
);
await waitForStreamComplete(response);
log.debug(
'SERVERLESS_ADAPTER:FORWARD_REQUEST_TO_FRAMEWORK:STREAM_COMPLETE',
);
context.response.end();
}
//#endregion
}