mirror of
https://github.com/jakejarvis/sofa.git
synced 2026-08-29 02:45:39 -04:00
- Add composite indexes on userEpisodeWatches and userMovieWatches for hot queries - Batch episode tracking: wrap season/batch watches in single transaction (~8 queries vs 8*N) - Fix N+1 patterns in credits, recommendations, and filmography with batch prefetch+insert - Stream TV season hydration via Suspense instead of blocking page render - Optimize webhook logs (per-connection LIMIT 10) and system health queries - Merge genre filter waterfalls into single Promise.all fetch - Migrate deprecated Jotai loadable() to unwrap() - Replace isolated createStore()+Provider with useHydrateAtoms on root store - Remove unnecessary atomWithStorage SSR guards (handled by Jotai internally) Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
86 lines
2.2 KiB
TypeScript
86 lines
2.2 KiB
TypeScript
"use server";
|
|
|
|
import { eq } from "drizzle-orm";
|
|
import { headers } from "next/headers";
|
|
import { auth } from "@/lib/auth/server";
|
|
import { db } from "@/lib/db/client";
|
|
import { episodes } from "@/lib/db/schema";
|
|
import {
|
|
logEpisodeWatch,
|
|
logEpisodeWatchBatch,
|
|
logMovieWatch,
|
|
markAllEpisodesWatched,
|
|
rateTitleStars,
|
|
removeTitleStatus,
|
|
setTitleStatus,
|
|
unwatchEpisode,
|
|
unwatchSeason,
|
|
} from "@/lib/services/tracking";
|
|
|
|
async function getSessionUserId() {
|
|
const session = await auth.api.getSession({ headers: await headers() });
|
|
if (!session) throw new Error("Unauthorized");
|
|
return session.user.id;
|
|
}
|
|
|
|
export async function updateTitleStatus(
|
|
titleId: string,
|
|
status: "in_progress" | null,
|
|
) {
|
|
const userId = await getSessionUserId();
|
|
if (status === null) {
|
|
removeTitleStatus(userId, titleId);
|
|
} else {
|
|
setTitleStatus(userId, titleId, status);
|
|
}
|
|
}
|
|
|
|
export async function markAllWatchedAction(titleId: string) {
|
|
const userId = await getSessionUserId();
|
|
markAllEpisodesWatched(userId, titleId);
|
|
}
|
|
|
|
export async function updateTitleRating(titleId: string, ratingStars: number) {
|
|
const userId = await getSessionUserId();
|
|
if (ratingStars < 0 || ratingStars > 5) throw new Error("Invalid rating");
|
|
rateTitleStars(userId, titleId, ratingStars);
|
|
}
|
|
|
|
export async function watchMovie(titleId: string) {
|
|
const userId = await getSessionUserId();
|
|
logMovieWatch(userId, titleId);
|
|
}
|
|
|
|
export async function watchEpisode(episodeId: string) {
|
|
const userId = await getSessionUserId();
|
|
logEpisodeWatch(userId, episodeId);
|
|
}
|
|
|
|
export async function unwatchEpisodeAction(episodeId: string) {
|
|
const userId = await getSessionUserId();
|
|
unwatchEpisode(userId, episodeId);
|
|
}
|
|
|
|
export async function watchSeason(seasonId: string) {
|
|
const userId = await getSessionUserId();
|
|
const seasonEps = db
|
|
.select()
|
|
.from(episodes)
|
|
.where(eq(episodes.seasonId, seasonId))
|
|
.all();
|
|
logEpisodeWatchBatch(
|
|
userId,
|
|
seasonEps.map((ep) => ep.id),
|
|
);
|
|
}
|
|
|
|
export async function unwatchSeasonAction(seasonId: string) {
|
|
const userId = await getSessionUserId();
|
|
unwatchSeason(userId, seasonId);
|
|
}
|
|
|
|
export async function batchWatchEpisodes(episodeIds: string[]) {
|
|
const userId = await getSessionUserId();
|
|
logEpisodeWatchBatch(userId, episodeIds);
|
|
}
|