Initial implementation of Bluetooth toy control app
CI / Static checks (push) Successful in 1m27s
CI / Build and push image (push) Skipped

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
This commit is contained in:
2026-08-25 07:51:38 +02:00
co-authored by Claude Sonnet 5
commit 1119c8eea0
112 changed files with 15522 additions and 0 deletions
+64
View File
@@ -0,0 +1,64 @@
CREATE TABLE `devices` (
`id` integer PRIMARY KEY AUTOINCREMENT NOT NULL,
`display_name` text,
`ble_name` text NOT NULL,
`device_class` text,
`capabilities` text,
`created_at` integer NOT NULL,
`last_connected_at` integer
);
--> statement-breakpoint
CREATE TABLE `play_sessions` (
`id` integer PRIMARY KEY AUTOINCREMENT NOT NULL,
`name` text,
`kind` text NOT NULL,
`replayed_recording_id` integer,
`status` text DEFAULT 'active' NOT NULL,
`started_at` integer NOT NULL,
`ended_at` integer,
`duration_ms` integer,
`notes` text,
FOREIGN KEY (`replayed_recording_id`) REFERENCES `recordings`(`id`) ON UPDATE no action ON DELETE set null
);
--> statement-breakpoint
CREATE TABLE `recordings` (
`id` integer PRIMARY KEY AUTOINCREMENT NOT NULL,
`source_play_session_id` integer NOT NULL,
`name` text NOT NULL,
`description` text,
`created_at` integer NOT NULL,
`duration_ms` integer NOT NULL,
`device_slots` text NOT NULL,
`play_count` integer DEFAULT 0 NOT NULL,
`last_played_at` integer,
FOREIGN KEY (`source_play_session_id`) REFERENCES `play_sessions`(`id`) ON UPDATE no action ON DELETE restrict
);
--> statement-breakpoint
CREATE TABLE `session_devices` (
`id` integer PRIMARY KEY AUTOINCREMENT NOT NULL,
`play_session_id` integer NOT NULL,
`device_id` integer NOT NULL,
`slot_label` text NOT NULL,
`connected_at` integer NOT NULL,
`disconnected_at` integer,
FOREIGN KEY (`play_session_id`) REFERENCES `play_sessions`(`id`) ON UPDATE no action ON DELETE cascade,
FOREIGN KEY (`device_id`) REFERENCES `devices`(`id`) ON UPDATE no action ON DELETE restrict
);
--> statement-breakpoint
CREATE INDEX `session_devices_play_session_id_idx` ON `session_devices` (`play_session_id`);--> statement-breakpoint
CREATE TABLE `session_events` (
`id` integer PRIMARY KEY AUTOINCREMENT NOT NULL,
`play_session_id` integer NOT NULL,
`session_device_id` integer NOT NULL,
`ts_ms` integer NOT NULL,
`command_type` text NOT NULL,
`feature_index` integer NOT NULL,
`value` real NOT NULL,
`duration_ms` integer,
`raw_payload` text,
FOREIGN KEY (`play_session_id`) REFERENCES `play_sessions`(`id`) ON UPDATE no action ON DELETE cascade,
FOREIGN KEY (`session_device_id`) REFERENCES `session_devices`(`id`) ON UPDATE no action ON DELETE cascade
);
--> statement-breakpoint
CREATE INDEX `session_events_session_ts_idx` ON `session_events` (`play_session_id`,`ts_ms`);--> statement-breakpoint
CREATE INDEX `session_events_session_device_idx` ON `session_events` (`session_device_id`);