Multi-file uploads now generate a batch ID, grouping files together.
A single batch URL (e.g. /b/Ab3xKz9q) shows all files with previews
and download links. Schema migrates automatically for existing DBs.
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
R2 PutObject requires Content-Length header. Buffer files <100MB into
memory before uploading so the SDK can set the header. Also fix HTML
pattern regex escaping for slug input.
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Use presigned R2 URLs with native HTML elements instead of generic
icons for all previewable file types on the download page.
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Uploaders can optionally set a custom path via the "slug" field.
Slug appears before the file in multipart form so it's available
before streaming begins. Validated: alphanumeric + hyphens/dots/
underscores, 1-64 chars, checked for uniqueness.
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
- Images show actual thumbnail from R2 (presigned inline URL)
- Video/audio/PDF show type-specific icons
- Use flexbox gap for consistent spacing (no overlap)
- Move filename into card as h2, remove top-level h1
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
GET /f/{id} now shows a file info page with metadata and action buttons
instead of redirecting directly. Previewable files (images, video, audio,
text, PDF) get a "View" button (inline disposition). All files get a
"Download" button. Actual redirects moved to /f/{id}/dl and /f/{id}/view.
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Go service streaming file uploads to Cloudflare R2 with SQLite metadata.
Features: drag-and-drop web UI, presigned URL downloads, password protection,
expiry with cleanup, rate limiting, CLI tool, Infisical secret injection.
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>