|
| 1 | +import { pipeline as pipelineSync } from 'node:stream' |
| 2 | +import { promisify } from 'node:util' |
| 3 | + |
| 4 | +import type { Handler, HandlerEvent, HandlerContext, StreamingHandler, StreamingResponse } from '../function/index.js' |
| 5 | + |
| 6 | +// Node v14 doesn't have node:stream/promises |
| 7 | +const pipeline = promisify(pipelineSync) |
| 8 | + |
| 9 | +declare global { |
| 10 | + // eslint-disable-next-line @typescript-eslint/no-namespace |
| 11 | + namespace awslambda { |
| 12 | + function streamifyResponse( |
| 13 | + handler: (event: HandlerEvent, responseStream: NodeJS.WritableStream, context: HandlerContext) => Promise<void>, |
| 14 | + ): Handler |
| 15 | + |
| 16 | + // eslint-disable-next-line @typescript-eslint/no-namespace |
| 17 | + namespace HttpResponseStream { |
| 18 | + function from(stream: NodeJS.WritableStream, metadata: Omit<StreamingResponse, 'body'>): NodeJS.WritableStream |
| 19 | + } |
| 20 | + } |
| 21 | +} |
| 22 | + |
| 23 | +/** |
| 24 | + * Enables streaming responses. `body` accepts a Node.js `Readable` stream or a WHATWG `ReadableStream`. |
| 25 | + * |
| 26 | + * @example |
| 27 | + * ``` |
| 28 | + * const { Readable } = require('stream'); |
| 29 | + * |
| 30 | + * export const handler = stream(async (event, context) => { |
| 31 | + * const stream = Readable.from(Buffer.from(JSON.stringify(event))) |
| 32 | + * return { |
| 33 | + * statusCode: 200, |
| 34 | + * body: stream, |
| 35 | + * } |
| 36 | + * }) |
| 37 | + * ``` |
| 38 | + * |
| 39 | + * @example |
| 40 | + * ``` |
| 41 | + * export const handler = stream(async (event, context) => { |
| 42 | + * const response = await fetch('https://api.openai.com/', { ... }) |
| 43 | + * // ... |
| 44 | + * return { |
| 45 | + * statusCode: 200, |
| 46 | + * body: response.body, // Web stream |
| 47 | + * } |
| 48 | + * }) |
| 49 | + * ``` |
| 50 | + * |
| 51 | + * @param handler |
| 52 | + * @see https://ntl.fyi/streaming-func |
| 53 | + */ |
| 54 | +const stream = (handler: StreamingHandler): Handler => |
| 55 | + awslambda.streamifyResponse(async (event, responseStream, context) => { |
| 56 | + const { body, ...httpResponseMetadata } = await handler(event, context) |
| 57 | + |
| 58 | + const responseBody = awslambda.HttpResponseStream.from(responseStream, httpResponseMetadata) |
| 59 | + |
| 60 | + if (typeof body === 'undefined') { |
| 61 | + responseBody.end() |
| 62 | + } else if (typeof body === 'string') { |
| 63 | + responseBody.write(body) |
| 64 | + responseBody.end() |
| 65 | + } else { |
| 66 | + await pipeline(body, responseBody) |
| 67 | + } |
| 68 | + }) |
| 69 | + |
| 70 | +export { stream } |
0 commit comments