d25d482dc2
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
Publish CLI Package / publish-npm (push) Has been cancelled
Publish Python SDK / publish-pypi (push) Has been cancelled
Publish TypeScript SDK / publish-npm (push) Has been cancelled
46 lines
1.6 KiB
TypeScript
46 lines
1.6 KiB
TypeScript
import { NextResponse } from 'next/server'
|
|
import { RateLimiter, type TokenBucketConfig } from '@/lib/core/rate-limiter'
|
|
import { getClientIp } from '@/lib/core/utils/request'
|
|
|
|
const rateLimiter = new RateLimiter()
|
|
|
|
/** Metadata reads are cheap (one indexed lookup) — generous per-IP budget. */
|
|
const METADATA_RATE_LIMIT: TokenBucketConfig = {
|
|
maxTokens: 120,
|
|
refillRate: 120,
|
|
refillIntervalMs: 60_000,
|
|
}
|
|
|
|
/** Content reads stream bytes from storage (S3 egress) — tighter per-IP budget. */
|
|
const CONTENT_RATE_LIMIT: TokenBucketConfig = {
|
|
maxTokens: 60,
|
|
refillRate: 60,
|
|
refillIntervalMs: 60_000,
|
|
}
|
|
|
|
/**
|
|
* Per-IP rate limit for the unauthenticated public share endpoints, returning a
|
|
* `429` response when exceeded (or `null` to proceed). The token is unguessable,
|
|
* so this defends a *known* link against hammering (DoS / S3 egress) rather than
|
|
* enumeration. Fails open on storage errors (availability over strictness),
|
|
* matching the chat public route.
|
|
*/
|
|
export async function enforcePublicFileRateLimit(
|
|
request: { headers: { get(name: string): string | null } },
|
|
scope: 'metadata' | 'content'
|
|
): Promise<NextResponse | null> {
|
|
const ip = getClientIp(request)
|
|
const config = scope === 'content' ? CONTENT_RATE_LIMIT : METADATA_RATE_LIMIT
|
|
const result = await rateLimiter.checkRateLimitDirect(`public-file:${scope}:${ip}`, config)
|
|
if (result.allowed) return null
|
|
|
|
const headers =
|
|
result.retryAfterMs != null
|
|
? { 'Retry-After': String(Math.ceil(result.retryAfterMs / 1000)) }
|
|
: undefined
|
|
return NextResponse.json(
|
|
{ error: 'Too many requests. Please try again later.' },
|
|
{ status: 429, headers }
|
|
)
|
|
}
|