d25d482dc2
Publish CLI Package / publish-npm (push) Waiting to run
Publish Python SDK / publish-pypi (push) Waiting to run
Publish TypeScript SDK / publish-npm (push) Waiting to run
CI / Migrate Dev DB (push) Has been skipped
CI / Detect Version (push) Has been cancelled
CI / Migrate DB (push) Has been cancelled
CI / Build Dev ECR (./docker/app.Dockerfile, ECR_APP) (push) Has been cancelled
CI / Build Dev ECR (./docker/db.Dockerfile, ECR_MIGRATIONS) (push) Has been cancelled
CI / Build Dev ECR (./docker/pii.Dockerfile, ECR_PII) (push) Has been cancelled
CI / Build Dev ECR (./docker/realtime.Dockerfile, ECR_REALTIME) (push) Has been cancelled
CI / Deploy Trigger.dev (Dev) (push) Has been cancelled
CI / Build AMD64 (./docker/app.Dockerfile, ECR_APP, ghcr.io/simstudioai/simstudio) (push) Has been cancelled
CI / Build AMD64 (./docker/db.Dockerfile, ECR_MIGRATIONS, ghcr.io/simstudioai/migrations) (push) Has been cancelled
CI / Build AMD64 (./docker/pii.Dockerfile, ECR_PII, ghcr.io/simstudioai/pii) (push) Has been cancelled
CI / Build AMD64 (./docker/realtime.Dockerfile, ECR_REALTIME, ghcr.io/simstudioai/realtime) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/app.Dockerfile, ghcr.io/simstudioai/simstudio) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/db.Dockerfile, ghcr.io/simstudioai/migrations) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/pii.Dockerfile, ghcr.io/simstudioai/pii) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/realtime.Dockerfile, ghcr.io/simstudioai/realtime) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/migrations) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/pii) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/realtime) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/simstudio) (push) Has been cancelled
CI / Check Docs Changes (push) Has been cancelled
CI / Process Docs (push) Has been cancelled
CI / Create GitHub Release (push) Has been cancelled
CI / Test and Build (push) Has been cancelled
342 lines
10 KiB
TypeScript
342 lines
10 KiB
TypeScript
import { toError } from '@sim/utils/errors'
|
|
|
|
export const DEFAULT_MAX_ERROR_BODY_BYTES = 64 * 1024
|
|
|
|
/**
|
|
* Slack for multipart boundary/header overhead on top of the intended file
|
|
* size limit, so legitimate uploads near the limit aren't rejected purely
|
|
* for encoding overhead.
|
|
*/
|
|
export const MAX_MULTIPART_OVERHEAD_BYTES = 1024 * 1024
|
|
|
|
export interface PayloadSizeLimitContext {
|
|
label: string
|
|
maxBytes: number
|
|
observedBytes?: number
|
|
}
|
|
|
|
export class PayloadSizeLimitError extends Error {
|
|
readonly label: string
|
|
readonly maxBytes: number
|
|
readonly observedBytes?: number
|
|
|
|
constructor({ label, maxBytes, observedBytes }: PayloadSizeLimitContext) {
|
|
super(
|
|
observedBytes === undefined
|
|
? `${label} exceeds maximum size of ${maxBytes} bytes`
|
|
: `${label} exceeds maximum size of ${maxBytes} bytes (${observedBytes} bytes received)`
|
|
)
|
|
this.name = 'PayloadSizeLimitError'
|
|
this.label = label
|
|
this.maxBytes = maxBytes
|
|
this.observedBytes = observedBytes
|
|
}
|
|
}
|
|
|
|
export function isPayloadSizeLimitError(error: unknown): error is PayloadSizeLimitError {
|
|
return error instanceof PayloadSizeLimitError
|
|
}
|
|
|
|
export function assertKnownSizeWithinLimit(size: number, maxBytes: number, label: string): void {
|
|
if (Number.isFinite(size) && size > maxBytes) {
|
|
throw new PayloadSizeLimitError({ label, maxBytes, observedBytes: size })
|
|
}
|
|
}
|
|
|
|
function getContentLength(
|
|
headers: { get(name: string): string | null } | undefined
|
|
): number | null {
|
|
const rawLength = headers?.get('content-length')
|
|
if (!rawLength) return null
|
|
const parsed = Number.parseInt(rawLength, 10)
|
|
return Number.isFinite(parsed) && parsed >= 0 ? parsed : null
|
|
}
|
|
|
|
export function assertContentLengthWithinLimit(
|
|
headers: { get(name: string): string | null } | undefined,
|
|
maxBytes: number,
|
|
label: string
|
|
): void {
|
|
const contentLength = getContentLength(headers)
|
|
if (contentLength !== null) {
|
|
assertKnownSizeWithinLimit(contentLength, maxBytes, label)
|
|
}
|
|
}
|
|
|
|
export interface ReadFormDataWithLimitRequest {
|
|
url: string
|
|
method: string
|
|
headers?: Headers
|
|
body?: ReadableStream<Uint8Array> | null
|
|
formData: () => Promise<FormData>
|
|
}
|
|
|
|
export async function readFormDataWithLimit(
|
|
request: ReadFormDataWithLimitRequest,
|
|
options: { maxBytes: number; label: string }
|
|
): Promise<FormData> {
|
|
assertContentLengthWithinLimit(request.headers, options.maxBytes, options.label)
|
|
|
|
if (request.headers?.get('content-length') || !request.body) {
|
|
return request.formData()
|
|
}
|
|
|
|
const body = await readStreamToBufferWithLimit(request.body, options)
|
|
const boundedRequest = new Request(request.url, {
|
|
method: request.method,
|
|
headers: request.headers,
|
|
body: new Uint8Array(body),
|
|
})
|
|
return boundedRequest.formData()
|
|
}
|
|
|
|
export interface ReadStreamWithLimitOptions {
|
|
maxBytes: number
|
|
label: string
|
|
signal?: AbortSignal
|
|
onChunk?: (chunk: Uint8Array, totalBytes: number) => void | Promise<void>
|
|
}
|
|
|
|
export async function readStreamToBufferWithLimit(
|
|
stream: ReadableStream<Uint8Array> | null | undefined,
|
|
options: ReadStreamWithLimitOptions
|
|
): Promise<Buffer> {
|
|
if (!stream) return Buffer.alloc(0)
|
|
|
|
const reader = stream.getReader()
|
|
const chunks: Buffer[] = []
|
|
let totalBytes = 0
|
|
const abortFromSignal = () => {
|
|
void reader.cancel(options.signal?.reason).catch(() => {})
|
|
}
|
|
|
|
try {
|
|
if (options.signal?.aborted) {
|
|
await reader.cancel(options.signal.reason).catch(() => {})
|
|
throw toError(options.signal.reason ?? new Error('Aborted'))
|
|
}
|
|
options.signal?.addEventListener('abort', abortFromSignal, { once: true })
|
|
|
|
while (true) {
|
|
if (options.signal?.aborted) {
|
|
await reader.cancel(options.signal.reason).catch(() => {})
|
|
throw toError(options.signal.reason ?? new Error('Aborted'))
|
|
}
|
|
|
|
const { done, value } = await reader.read()
|
|
if (options.signal?.aborted) {
|
|
throw toError(options.signal.reason ?? new Error('Aborted'))
|
|
}
|
|
if (done) break
|
|
if (!value) continue
|
|
|
|
totalBytes += value.byteLength
|
|
if (totalBytes > options.maxBytes) {
|
|
await reader.cancel().catch(() => {})
|
|
throw new PayloadSizeLimitError({
|
|
label: options.label,
|
|
maxBytes: options.maxBytes,
|
|
observedBytes: totalBytes,
|
|
})
|
|
}
|
|
|
|
await options.onChunk?.(value, totalBytes)
|
|
chunks.push(Buffer.from(value))
|
|
}
|
|
} finally {
|
|
options.signal?.removeEventListener('abort', abortFromSignal)
|
|
reader.releaseLock()
|
|
}
|
|
|
|
return Buffer.concat(chunks, totalBytes)
|
|
}
|
|
|
|
export async function readNodeStreamToBufferWithLimit(
|
|
stream: NodeJS.ReadableStream | null | undefined,
|
|
options: ReadStreamWithLimitOptions
|
|
): Promise<Buffer> {
|
|
if (!stream) return Buffer.alloc(0)
|
|
|
|
return new Promise((resolve, reject) => {
|
|
const chunks: Buffer[] = []
|
|
let totalBytes = 0
|
|
let settled = false
|
|
|
|
const finish = (callback: () => void) => {
|
|
if (settled) return
|
|
settled = true
|
|
cleanup()
|
|
callback()
|
|
}
|
|
|
|
const cleanup = () => {
|
|
stream.off('data', onData)
|
|
stream.off('end', onEnd)
|
|
stream.off('error', onError)
|
|
options.signal?.removeEventListener('abort', onAbort)
|
|
}
|
|
|
|
const onAbort = () => {
|
|
if ('destroy' in stream && typeof stream.destroy === 'function') {
|
|
stream.destroy(toError(options.signal?.reason ?? new Error('Aborted')))
|
|
}
|
|
finish(() => reject(toError(options.signal?.reason ?? new Error('Aborted'))))
|
|
}
|
|
|
|
const onData = (chunk: Buffer | Uint8Array | string) => {
|
|
const buffer = Buffer.isBuffer(chunk) ? chunk : Buffer.from(chunk)
|
|
totalBytes += buffer.byteLength
|
|
|
|
if (totalBytes > options.maxBytes) {
|
|
if ('destroy' in stream && typeof stream.destroy === 'function') {
|
|
stream.destroy()
|
|
}
|
|
finish(() =>
|
|
reject(
|
|
new PayloadSizeLimitError({
|
|
label: options.label,
|
|
maxBytes: options.maxBytes,
|
|
observedBytes: totalBytes,
|
|
})
|
|
)
|
|
)
|
|
return
|
|
}
|
|
|
|
void options.onChunk?.(buffer, totalBytes)
|
|
chunks.push(buffer)
|
|
}
|
|
|
|
const onEnd = () => {
|
|
finish(() => resolve(Buffer.concat(chunks, totalBytes)))
|
|
}
|
|
|
|
const onError = (error: unknown) => {
|
|
finish(() => reject(error))
|
|
}
|
|
|
|
if (options.signal?.aborted) {
|
|
onAbort()
|
|
return
|
|
}
|
|
|
|
options.signal?.addEventListener('abort', onAbort, { once: true })
|
|
stream.on('data', onData)
|
|
stream.on('end', onEnd)
|
|
stream.on('error', onError)
|
|
})
|
|
}
|
|
|
|
export interface ReadResponseWithLimitOptions extends ReadStreamWithLimitOptions {
|
|
headers?: { get(name: string): string | null }
|
|
preferTextFallback?: boolean
|
|
allowNoBodyFallback?: boolean
|
|
}
|
|
|
|
export async function readResponseToBufferWithLimit(
|
|
response: {
|
|
headers?: { get(name: string): string | null }
|
|
body?: ReadableStream<Uint8Array> | null
|
|
arrayBuffer?: () => Promise<ArrayBuffer>
|
|
text?: () => Promise<string>
|
|
},
|
|
options: ReadResponseWithLimitOptions
|
|
): Promise<Buffer> {
|
|
const contentLength = getContentLength(response.headers ?? options.headers)
|
|
try {
|
|
if (contentLength !== null) {
|
|
assertKnownSizeWithinLimit(contentLength, options.maxBytes, options.label)
|
|
}
|
|
} catch (error) {
|
|
if (isPayloadSizeLimitError(error)) {
|
|
await response.body?.cancel(error).catch(() => {})
|
|
}
|
|
throw error
|
|
}
|
|
if (
|
|
!options.allowNoBodyFallback &&
|
|
!response.body &&
|
|
contentLength === null &&
|
|
(response.arrayBuffer || response.text)
|
|
) {
|
|
throw new PayloadSizeLimitError({
|
|
label: options.label,
|
|
maxBytes: options.maxBytes,
|
|
})
|
|
}
|
|
if (!response.body && options.preferTextFallback && response.text) {
|
|
const text = await response.text()
|
|
const buffer = Buffer.from(text)
|
|
assertKnownSizeWithinLimit(buffer.byteLength, options.maxBytes, options.label)
|
|
return buffer
|
|
}
|
|
if (!response.body && response.arrayBuffer) {
|
|
const buffer = Buffer.from(await response.arrayBuffer())
|
|
assertKnownSizeWithinLimit(buffer.byteLength, options.maxBytes, options.label)
|
|
if (buffer.byteLength > 0 || !response.text) {
|
|
return buffer
|
|
}
|
|
const text = await response.text()
|
|
const textBuffer = Buffer.from(text)
|
|
assertKnownSizeWithinLimit(textBuffer.byteLength, options.maxBytes, options.label)
|
|
return textBuffer
|
|
}
|
|
if (!response.body && response.text) {
|
|
const text = await response.text()
|
|
const buffer = Buffer.from(text)
|
|
assertKnownSizeWithinLimit(buffer.byteLength, options.maxBytes, options.label)
|
|
return buffer
|
|
}
|
|
return readStreamToBufferWithLimit(response.body, options)
|
|
}
|
|
|
|
export async function readResponseTextWithLimit(
|
|
response: {
|
|
headers?: { get(name: string): string | null }
|
|
body?: ReadableStream<Uint8Array> | null
|
|
arrayBuffer?: () => Promise<ArrayBuffer>
|
|
text?: () => Promise<string>
|
|
},
|
|
options: ReadResponseWithLimitOptions
|
|
): Promise<string> {
|
|
return (
|
|
await readResponseToBufferWithLimit(response, { ...options, preferTextFallback: true })
|
|
).toString('utf-8')
|
|
}
|
|
|
|
export async function readResponseJsonWithLimit<T = unknown>(
|
|
response: {
|
|
headers?: { get(name: string): string | null }
|
|
body?: ReadableStream<Uint8Array> | null
|
|
},
|
|
options: ReadResponseWithLimitOptions
|
|
): Promise<T> {
|
|
return JSON.parse(await readResponseTextWithLimit(response, options)) as T
|
|
}
|
|
|
|
export async function readFileToBufferWithLimit(
|
|
file: File,
|
|
options: { maxBytes: number; label: string }
|
|
): Promise<Buffer> {
|
|
assertKnownSizeWithinLimit(file.size, options.maxBytes, options.label)
|
|
const buffer = Buffer.from(await file.arrayBuffer())
|
|
assertKnownSizeWithinLimit(buffer.byteLength, options.maxBytes, options.label)
|
|
return buffer
|
|
}
|
|
|
|
export async function consumeOrCancelBody(
|
|
response: { body?: ReadableStream<Uint8Array> | null },
|
|
maxBytes = DEFAULT_MAX_ERROR_BODY_BYTES
|
|
): Promise<void> {
|
|
if (!response.body) return
|
|
|
|
try {
|
|
await readStreamToBufferWithLimit(response.body, {
|
|
maxBytes,
|
|
label: 'response body',
|
|
})
|
|
} catch {
|
|
await response.body.cancel().catch(() => {})
|
|
}
|
|
}
|