brackt/server/snapshots.ts

117 lines
3.6 KiB
TypeScript
Raw Normal View History

import { drizzle } from "drizzle-orm/postgres-js";
import postgres from "postgres";
import * as schema from "~/database/schema";
Add oxlint linting setup with zero errors (#194) * Add oxlint and fix all lint errors - Install oxlint, add .oxlintrc.json with rules for TypeScript/React - Add npm run lint / lint:fix scripts - Add Claude PostToolUse hook to run oxlint on every edited file - Fix 101 errors: unused vars/imports, eqeqeq, prefer-const, no-new-array - Fix no-array-index-key (use stable keys or suppress positional cases) - Fix exhaustive-deps missing dependency in useEffect - Promote exhaustive-deps and no-array-index-key to errors - Fix Map.get() !== null bug in $leagueId.server.ts (should be !== undefined) Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> * Fix no-explicit-any warnings and upgrade tsconfig to ES2023 - Replace all `any` types with proper types or `unknown` across ~20 files - Add typed socket payload interfaces in draft route and useDraftSocket - Use any[] with eslint-disable for socket.io callbacks (legitimate escape hatch) - Bump all tsconfigs from ES2022 → ES2023 to support toSorted/toReversed - Fix cascading type errors uncovered by removing any: Map.get narrowing, participant relation types, ChartDataPoint, Partial<NewSeason> indexing - Add ParticipantResultWithParticipant type to participant-result model - Fix test fixtures to match updated interfaces (DraftCell, ParticipantResult) - Fix duplicate getQPStandings import in sportsSeasonId.server.ts Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> * Promote no-explicit-any to error Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> --------- Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-03-21 09:44:05 -07:00
import { eq, or } from "drizzle-orm";
import { createDailySnapshot } from "~/models/standings";
// Create a dedicated database connection for the snapshot system
const connectionString = process.env.DATABASE_URL;
if (!connectionString) {
throw new Error("DATABASE_URL is required for snapshot system");
}
const client = postgres(connectionString);
const db = drizzle(client, { schema });
let snapshotInterval: NodeJS.Timeout | null = null;
const CHECK_INTERVAL = 24 * 60 * 60 * 1000; // Check once per day (in milliseconds)
/**
* Start the daily snapshot system
* Runs once per day to create snapshots for all active seasons
*/
export function startSnapshotSystem(): void {
if (snapshotInterval) {
console.log("[Snapshots] Snapshot system already running");
return;
}
// Run immediately on startup
void createDailySnapshots();
// Then run once per day
snapshotInterval = setInterval(async () => {
try {
await createDailySnapshots();
} catch (error) {
console.error("[Snapshots] Error creating daily snapshots:", error);
}
}, CHECK_INTERVAL);
console.log("[Snapshots] Daily snapshot system started (runs once per day)");
}
/**
* Stop the snapshot system
*/
export function stopSnapshotSystem(): void {
if (snapshotInterval) {
clearInterval(snapshotInterval);
snapshotInterval = null;
console.log("[Snapshots] Snapshot system stopped");
}
}
/**
* Create daily snapshots for all active seasons
* Only creates snapshots if they don't already exist for today
*/
async function createDailySnapshots(): Promise<void> {
const now = new Date();
const today = `${now.getFullYear()}-${String(now.getMonth() + 1).padStart(2, "0")}-${String(now.getDate()).padStart(2, "0")}`;
console.log(`[Snapshots] Checking for snapshots to create (${today})`);
// Get all seasons that are active or in draft (we want to track standings for these)
const activeSeasons = await db.query.seasons.findMany({
where: or(
eq(schema.seasons.status, "active"),
eq(schema.seasons.status, "draft")
),
});
if (activeSeasons.length === 0) {
console.log("[Snapshots] No active seasons found");
return;
}
console.log(`[Snapshots] Found ${activeSeasons.length} active season(s)`);
for (const season of activeSeasons) {
try {
await createDailySnapshot(season.id, db);
console.log(`[Snapshots] ✅ Upserted snapshot for season ${season.id}`);
} catch (error) {
console.error(`[Snapshots] Error creating snapshot for season ${season.id}:`, error);
}
}
console.log("[Snapshots] Daily snapshot check complete");
}
/**
* Manually trigger snapshot creation for specific seasons
* Useful for admin tools or manual triggers
*/
export async function createSnapshotsForSeasons(seasonIds: string[]): Promise<void> {
console.log(`[Snapshots] Manual trigger for ${seasonIds.length} season(s)`);
for (const seasonId of seasonIds) {
try {
await createDailySnapshot(seasonId, db);
console.log(`[Snapshots] ✅ Created snapshot for season ${seasonId}`);
} catch (error) {
console.error(`[Snapshots] Error creating snapshot for season ${seasonId}:`, error);
throw error;
}
}
}
/**
* Manually trigger snapshot creation for all active seasons
* Useful for testing or manual refreshes
*/
export async function createSnapshotsForAllSeasons(): Promise<void> {
console.log("[Snapshots] Manual trigger for all active seasons");
await createDailySnapshots();
}