Next.js app with a browser-side buttplug/buttplug-wasm control layer (server never touches real-time device commands), SQLite storage via Drizzle, single-secret auth, recordings/replay with device remapping, a usage stats dashboard, Docker deployment, and Gitea CI. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01W8WkFF5ppURBAB918593Eb
24 lines
787 B
TypeScript
24 lines
787 B
TypeScript
import { NextResponse } from "next/server";
|
|
import { z } from "zod";
|
|
import { createRecording, listRecordings } from "@/lib/db/queries/recordings";
|
|
|
|
const bodySchema = z.object({
|
|
sourcePlaySessionId: z.number().int().positive(),
|
|
name: z.string().min(1).max(160),
|
|
description: z.string().max(2000).optional(),
|
|
});
|
|
|
|
export async function GET() {
|
|
const rows = await listRecordings();
|
|
return NextResponse.json({ recordings: rows });
|
|
}
|
|
|
|
export async function POST(req: Request) {
|
|
const parsed = bodySchema.safeParse(await req.json().catch(() => null));
|
|
if (!parsed.success) {
|
|
return NextResponse.json({ error: parsed.error.message }, { status: 400 });
|
|
}
|
|
const recording = await createRecording(parsed.data);
|
|
return NextResponse.json({ recording }, { status: 201 });
|
|
}
|