Checkpoint: v2.0完整版本:新增社区排行榜、每日打卡、24种成就徽章、实时摄像头姿势分析、在线录制(稳定压缩流/断线重连/自动剪辑)、移动端全面适配。47个测试通过。包含完整开发文档。

这个提交包含在:
Manus
2026-03-14 08:04:00 -04:00
父节点 36907d1110
当前提交 2c418b482e
修改 22 个文件,包含 4370 行新增41 行删除

查看文件

@@ -8,6 +8,8 @@ import {
poseAnalyses, InsertPoseAnalysis,
trainingRecords, InsertTrainingRecord,
ratingHistory, InsertRatingHistory,
dailyCheckins, InsertDailyCheckin,
userBadges, InsertUserBadge,
} from "../drizzle/schema";
import { ENV } from './_core/env';
@@ -112,6 +114,9 @@ export async function updateUserProfile(userId: number, data: {
ntrpRating?: number;
totalSessions?: number;
totalMinutes?: number;
currentStreak?: number;
longestStreak?: number;
totalShots?: number;
}) {
const db = await getDb();
if (!db) return;
@@ -234,6 +239,196 @@ export async function getUserRatingHistory(userId: number, limit = 30) {
return db.select().from(ratingHistory).where(eq(ratingHistory.userId, userId)).orderBy(desc(ratingHistory.createdAt)).limit(limit);
}
// ===== DAILY CHECK-IN OPERATIONS =====
export async function checkinToday(userId: number, notes?: string, minutesTrained?: number) {
const db = await getDb();
if (!db) throw new Error("Database not available");
const today = new Date().toISOString().slice(0, 10);
// Check if already checked in today
const existing = await db.select().from(dailyCheckins)
.where(and(eq(dailyCheckins.userId, userId), eq(dailyCheckins.checkinDate, today)))
.limit(1);
if (existing.length > 0) {
return { alreadyCheckedIn: true, streak: existing[0].streakCount };
}
// Get yesterday's check-in to calculate streak
const yesterday = new Date(Date.now() - 86400000).toISOString().slice(0, 10);
const yesterdayCheckin = await db.select().from(dailyCheckins)
.where(and(eq(dailyCheckins.userId, userId), eq(dailyCheckins.checkinDate, yesterday)))
.limit(1);
const newStreak = yesterdayCheckin.length > 0 ? (yesterdayCheckin[0].streakCount + 1) : 1;
await db.insert(dailyCheckins).values({
userId,
checkinDate: today,
streakCount: newStreak,
notes: notes ?? null,
minutesTrained: minutesTrained ?? 0,
});
// Update user streak
const [userRow] = await db.select().from(users).where(eq(users.id, userId)).limit(1);
const longestStreak = Math.max(userRow?.longestStreak || 0, newStreak);
await db.update(users).set({ currentStreak: newStreak, longestStreak }).where(eq(users.id, userId));
return { alreadyCheckedIn: false, streak: newStreak };
}
export async function getUserCheckins(userId: number, limit = 60) {
const db = await getDb();
if (!db) return [];
return db.select().from(dailyCheckins)
.where(eq(dailyCheckins.userId, userId))
.orderBy(desc(dailyCheckins.checkinDate))
.limit(limit);
}
export async function getTodayCheckin(userId: number) {
const db = await getDb();
if (!db) return null;
const today = new Date().toISOString().slice(0, 10);
const result = await db.select().from(dailyCheckins)
.where(and(eq(dailyCheckins.userId, userId), eq(dailyCheckins.checkinDate, today)))
.limit(1);
return result.length > 0 ? result[0] : null;
}
// ===== BADGE OPERATIONS =====
// Badge definitions
export const BADGE_DEFINITIONS: Record<string, { name: string; description: string; icon: string; category: string }> = {
first_login: { name: "初来乍到", description: "首次登录Tennis Hub", icon: "🎾", category: "milestone" },
first_training: { name: "初试身手", description: "完成第一次训练", icon: "💪", category: "training" },
first_video: { name: "影像记录", description: "上传第一个训练视频", icon: "📹", category: "video" },
first_analysis: { name: "AI教练", description: "完成第一次视频分析", icon: "🤖", category: "analysis" },
streak_3: { name: "三日坚持", description: "连续打卡3天", icon: "🔥", category: "streak" },
streak_7: { name: "一周达人", description: "连续打卡7天", icon: "⭐", category: "streak" },
streak_14: { name: "两周勇士", description: "连续打卡14天", icon: "🏆", category: "streak" },
streak_30: { name: "月度冠军", description: "连续打卡30天", icon: "👑", category: "streak" },
sessions_10: { name: "十次训练", description: "累计完成10次训练", icon: "🎯", category: "training" },
sessions_50: { name: "五十次训练", description: "累计完成50次训练", icon: "💎", category: "training" },
sessions_100: { name: "百次训练", description: "累计完成100次训练", icon: "🌟", category: "training" },
videos_5: { name: "视频达人", description: "上传5个训练视频", icon: "🎬", category: "video" },
videos_20: { name: "视频大师", description: "上传20个训练视频", icon: "📽️", category: "video" },
score_80: { name: "优秀姿势", description: "视频分析获得80分以上", icon: "🏅", category: "analysis" },
score_90: { name: "完美姿势", description: "视频分析获得90分以上", icon: "🥇", category: "analysis" },
ntrp_2: { name: "NTRP 2.0", description: "NTRP评分达到2.0", icon: "📈", category: "rating" },
ntrp_3: { name: "NTRP 3.0", description: "NTRP评分达到3.0", icon: "📊", category: "rating" },
ntrp_4: { name: "NTRP 4.0", description: "NTRP评分达到4.0", icon: "🚀", category: "rating" },
minutes_60: { name: "一小时训练", description: "累计训练60分钟", icon: "⏱️", category: "training" },
minutes_300: { name: "五小时训练", description: "累计训练300分钟", icon: "⏰", category: "training" },
minutes_1000: { name: "千分钟训练", description: "累计训练1000分钟", icon: "🕐", category: "training" },
shots_100: { name: "百球达人", description: "累计击球100次", icon: "🎾", category: "analysis" },
shots_500: { name: "五百球大师", description: "累计击球500次", icon: "🏸", category: "analysis" },
};
export async function getUserBadges(userId: number) {
const db = await getDb();
if (!db) return [];
return db.select().from(userBadges).where(eq(userBadges.userId, userId));
}
export async function awardBadge(userId: number, badgeKey: string) {
const db = await getDb();
if (!db) return false;
// Check if already has this badge
const existing = await db.select().from(userBadges)
.where(and(eq(userBadges.userId, userId), eq(userBadges.badgeKey, badgeKey)))
.limit(1);
if (existing.length > 0) return false;
await db.insert(userBadges).values({ userId, badgeKey });
return true;
}
export async function checkAndAwardBadges(userId: number) {
const db = await getDb();
if (!db) return [];
const [userRow] = await db.select().from(users).where(eq(users.id, userId)).limit(1);
if (!userRow) return [];
const records = await db.select().from(trainingRecords).where(eq(trainingRecords.userId, userId));
const videos = await db.select().from(trainingVideos).where(eq(trainingVideos.userId, userId));
const analyses = await db.select().from(poseAnalyses).where(eq(poseAnalyses.userId, userId));
const completedRecords = records.filter(r => r.completed === 1);
const totalMinutes = records.reduce((sum, r) => sum + (r.durationMinutes || 0), 0);
const totalShots = analyses.reduce((sum, a) => sum + (a.shotCount || 0), 0);
const maxScore = analyses.reduce((max, a) => Math.max(max, a.overallScore || 0), 0);
const streak = userRow.currentStreak || 0;
const ntrp = userRow.ntrpRating || 1.5;
const newBadges: string[] = [];
const checks: [boolean, string][] = [
[true, "first_login"],
[completedRecords.length >= 1, "first_training"],
[videos.length >= 1, "first_video"],
[analyses.length >= 1, "first_analysis"],
[streak >= 3, "streak_3"],
[streak >= 7, "streak_7"],
[streak >= 14, "streak_14"],
[streak >= 30, "streak_30"],
[completedRecords.length >= 10, "sessions_10"],
[completedRecords.length >= 50, "sessions_50"],
[completedRecords.length >= 100, "sessions_100"],
[videos.length >= 5, "videos_5"],
[videos.length >= 20, "videos_20"],
[maxScore >= 80, "score_80"],
[maxScore >= 90, "score_90"],
[ntrp >= 2.0, "ntrp_2"],
[ntrp >= 3.0, "ntrp_3"],
[ntrp >= 4.0, "ntrp_4"],
[totalMinutes >= 60, "minutes_60"],
[totalMinutes >= 300, "minutes_300"],
[totalMinutes >= 1000, "minutes_1000"],
[totalShots >= 100, "shots_100"],
[totalShots >= 500, "shots_500"],
];
for (const [condition, key] of checks) {
if (condition) {
const awarded = await awardBadge(userId, key);
if (awarded) newBadges.push(key);
}
}
return newBadges;
}
// ===== LEADERBOARD OPERATIONS =====
export async function getLeaderboard(sortBy: "ntrpRating" | "totalMinutes" | "totalSessions" | "totalShots" = "ntrpRating", limit = 50) {
const db = await getDb();
if (!db) return [];
const sortColumn = {
ntrpRating: users.ntrpRating,
totalMinutes: users.totalMinutes,
totalSessions: users.totalSessions,
totalShots: users.totalShots,
}[sortBy];
return db.select({
id: users.id,
name: users.name,
ntrpRating: users.ntrpRating,
totalSessions: users.totalSessions,
totalMinutes: users.totalMinutes,
totalShots: users.totalShots,
currentStreak: users.currentStreak,
longestStreak: users.longestStreak,
skillLevel: users.skillLevel,
createdAt: users.createdAt,
}).from(users).orderBy(desc(sortColumn)).limit(limit);
}
// ===== STATS HELPERS =====
export async function getUserStats(userId: number) {

查看文件

@@ -18,6 +18,9 @@ function createTestUser(overrides?: Partial<AuthenticatedUser>): AuthenticatedUs
ntrpRating: 1.5,
totalSessions: 0,
totalMinutes: 0,
totalShots: 0,
currentStreak: 0,
longestStreak: 0,
createdAt: new Date(),
updatedAt: new Date(),
lastSignedIn: new Date(),
@@ -54,6 +57,8 @@ function createMockContext(user: AuthenticatedUser | null = null): {
};
}
// ===== AUTH TESTS =====
describe("auth.me", () => {
it("returns null for unauthenticated users", async () => {
const { ctx } = createMockContext(null);
@@ -94,6 +99,22 @@ describe("auth.logout", () => {
});
});
describe("auth.loginWithUsername input validation", () => {
it("rejects empty username", async () => {
const { ctx } = createMockContext(null);
const caller = appRouter.createCaller(ctx);
await expect(caller.auth.loginWithUsername({ username: "" })).rejects.toThrow();
});
it("rejects username over 64 chars", async () => {
const { ctx } = createMockContext(null);
const caller = appRouter.createCaller(ctx);
await expect(caller.auth.loginWithUsername({ username: "a".repeat(65) })).rejects.toThrow();
});
});
// ===== PROFILE TESTS =====
describe("profile.stats", () => {
it("requires authentication", async () => {
const { ctx } = createMockContext(null);
@@ -102,6 +123,38 @@ describe("profile.stats", () => {
});
});
describe("profile.update input validation", () => {
it("requires authentication", async () => {
const { ctx } = createMockContext(null);
const caller = appRouter.createCaller(ctx);
await expect(caller.profile.update({ skillLevel: "beginner" })).rejects.toThrow();
});
it("rejects invalid skill level", async () => {
const user = createTestUser();
const { ctx } = createMockContext(user);
const caller = appRouter.createCaller(ctx);
await expect(caller.profile.update({ skillLevel: "expert" as any })).rejects.toThrow();
});
it("accepts valid skill levels", async () => {
const user = createTestUser();
const { ctx } = createMockContext(user);
const caller = appRouter.createCaller(ctx);
for (const level of ["beginner", "intermediate", "advanced"] as const) {
try {
await caller.profile.update({ skillLevel: level });
} catch (e: any) {
// DB errors expected, but input validation should pass
expect(e.message).not.toContain("invalid_enum_value");
}
}
});
});
// ===== TRAINING PLAN TESTS =====
describe("plan.generate input validation", () => {
it("rejects invalid skill level", async () => {
const user = createTestUser();
@@ -109,23 +162,17 @@ describe("plan.generate input validation", () => {
const caller = appRouter.createCaller(ctx);
await expect(
caller.plan.generate({
skillLevel: "expert" as any,
durationDays: 7,
})
caller.plan.generate({ skillLevel: "expert" as any, durationDays: 7 })
).rejects.toThrow();
});
it("rejects invalid duration", async () => {
it("rejects invalid duration (0)", async () => {
const user = createTestUser();
const { ctx } = createMockContext(user);
const caller = appRouter.createCaller(ctx);
await expect(
caller.plan.generate({
skillLevel: "beginner",
durationDays: 0,
})
caller.plan.generate({ skillLevel: "beginner", durationDays: 0 })
).rejects.toThrow();
});
@@ -135,14 +182,45 @@ describe("plan.generate input validation", () => {
const caller = appRouter.createCaller(ctx);
await expect(
caller.plan.generate({
skillLevel: "beginner",
durationDays: 31,
})
caller.plan.generate({ skillLevel: "beginner", durationDays: 31 })
).rejects.toThrow();
});
it("requires authentication", async () => {
const { ctx } = createMockContext(null);
const caller = appRouter.createCaller(ctx);
await expect(
caller.plan.generate({ skillLevel: "beginner", durationDays: 7 })
).rejects.toThrow();
});
});
describe("plan.list", () => {
it("requires authentication", async () => {
const { ctx } = createMockContext(null);
const caller = appRouter.createCaller(ctx);
await expect(caller.plan.list()).rejects.toThrow();
});
});
describe("plan.active", () => {
it("requires authentication", async () => {
const { ctx } = createMockContext(null);
const caller = appRouter.createCaller(ctx);
await expect(caller.plan.active()).rejects.toThrow();
});
});
describe("plan.adjust input validation", () => {
it("requires authentication", async () => {
const { ctx } = createMockContext(null);
const caller = appRouter.createCaller(ctx);
await expect(caller.plan.adjust({ planId: 1 })).rejects.toThrow();
});
});
// ===== VIDEO TESTS =====
describe("video.upload input validation", () => {
it("requires authentication", async () => {
const { ctx } = createMockContext(null);
@@ -157,18 +235,48 @@ describe("video.upload input validation", () => {
})
).rejects.toThrow();
});
it("rejects missing title", async () => {
const user = createTestUser();
const { ctx } = createMockContext(user);
const caller = appRouter.createCaller(ctx);
await expect(
caller.video.upload({
title: undefined as any,
format: "mp4",
fileSize: 1000,
fileBase64: "dGVzdA==",
})
).rejects.toThrow();
});
});
describe("video.list", () => {
it("requires authentication", async () => {
const { ctx } = createMockContext(null);
const caller = appRouter.createCaller(ctx);
await expect(caller.video.list()).rejects.toThrow();
});
});
describe("video.get input validation", () => {
it("requires authentication", async () => {
const { ctx } = createMockContext(null);
const caller = appRouter.createCaller(ctx);
await expect(caller.video.get({ videoId: 1 })).rejects.toThrow();
});
});
// ===== ANALYSIS TESTS =====
describe("analysis.save input validation", () => {
it("requires authentication", async () => {
const { ctx } = createMockContext(null);
const caller = appRouter.createCaller(ctx);
await expect(
caller.analysis.save({
videoId: 1,
overallScore: 75,
})
caller.analysis.save({ videoId: 1, overallScore: 75 })
).rejects.toThrow();
});
});
@@ -188,16 +296,31 @@ describe("analysis.getCorrections input validation", () => {
});
});
describe("analysis.list", () => {
it("requires authentication", async () => {
const { ctx } = createMockContext(null);
const caller = appRouter.createCaller(ctx);
await expect(caller.analysis.list()).rejects.toThrow();
});
});
describe("analysis.getByVideo", () => {
it("requires authentication", async () => {
const { ctx } = createMockContext(null);
const caller = appRouter.createCaller(ctx);
await expect(caller.analysis.getByVideo({ videoId: 1 })).rejects.toThrow();
});
});
// ===== RECORD TESTS =====
describe("record.create input validation", () => {
it("requires authentication", async () => {
const { ctx } = createMockContext(null);
const caller = appRouter.createCaller(ctx);
await expect(
caller.record.create({
exerciseName: "正手挥拍",
durationMinutes: 30,
})
caller.record.create({ exerciseName: "正手挥拍", durationMinutes: 30 })
).rejects.toThrow();
});
@@ -206,20 +329,32 @@ describe("record.create input validation", () => {
const { ctx } = createMockContext(user);
const caller = appRouter.createCaller(ctx);
// This should not throw on input validation (may throw on DB)
// We just verify the input schema accepts a valid name
try {
await caller.record.create({
exerciseName: "正手挥拍",
durationMinutes: 30,
});
await caller.record.create({ exerciseName: "正手挥拍", durationMinutes: 30 });
} catch (e: any) {
// DB errors are expected in test env, but input validation should pass
expect(e.message).not.toContain("invalid_type");
}
});
});
describe("record.complete input validation", () => {
it("requires authentication", async () => {
const { ctx } = createMockContext(null);
const caller = appRouter.createCaller(ctx);
await expect(caller.record.complete({ recordId: 1 })).rejects.toThrow();
});
});
describe("record.list", () => {
it("requires authentication", async () => {
const { ctx } = createMockContext(null);
const caller = appRouter.createCaller(ctx);
await expect(caller.record.list()).rejects.toThrow();
});
});
// ===== RATING TESTS =====
describe("rating.history", () => {
it("requires authentication", async () => {
const { ctx } = createMockContext(null);
@@ -235,3 +370,187 @@ describe("rating.current", () => {
await expect(caller.rating.current()).rejects.toThrow();
});
});
// ===== DAILY CHECK-IN TESTS =====
describe("checkin.today", () => {
it("requires authentication", async () => {
const { ctx } = createMockContext(null);
const caller = appRouter.createCaller(ctx);
await expect(caller.checkin.today()).rejects.toThrow();
});
});
describe("checkin.do", () => {
it("requires authentication", async () => {
const { ctx } = createMockContext(null);
const caller = appRouter.createCaller(ctx);
await expect(caller.checkin.do()).rejects.toThrow();
});
it("accepts optional notes and minutesTrained", async () => {
const user = createTestUser();
const { ctx } = createMockContext(user);
const caller = appRouter.createCaller(ctx);
try {
await caller.checkin.do({ notes: "练了正手", minutesTrained: 30 });
} catch (e: any) {
// DB errors expected, input validation should pass
expect(e.message).not.toContain("invalid_type");
}
});
it("accepts empty input", async () => {
const user = createTestUser();
const { ctx } = createMockContext(user);
const caller = appRouter.createCaller(ctx);
try {
await caller.checkin.do();
} catch (e: any) {
expect(e.message).not.toContain("invalid_type");
}
});
});
describe("checkin.history", () => {
it("requires authentication", async () => {
const { ctx } = createMockContext(null);
const caller = appRouter.createCaller(ctx);
await expect(caller.checkin.history()).rejects.toThrow();
});
it("accepts custom limit", async () => {
const user = createTestUser();
const { ctx } = createMockContext(user);
const caller = appRouter.createCaller(ctx);
try {
await caller.checkin.history({ limit: 30 });
} catch (e: any) {
expect(e.message).not.toContain("invalid_type");
}
});
});
// ===== BADGE TESTS =====
describe("badge.list", () => {
it("requires authentication", async () => {
const { ctx } = createMockContext(null);
const caller = appRouter.createCaller(ctx);
await expect(caller.badge.list()).rejects.toThrow();
});
});
describe("badge.check", () => {
it("requires authentication", async () => {
const { ctx } = createMockContext(null);
const caller = appRouter.createCaller(ctx);
await expect(caller.badge.check()).rejects.toThrow();
});
});
describe("badge.definitions", () => {
it("returns badge definitions without authentication", async () => {
const { ctx } = createMockContext(null);
const caller = appRouter.createCaller(ctx);
const result = await caller.badge.definitions();
expect(Array.isArray(result)).toBe(true);
expect(result.length).toBeGreaterThan(0);
// Check badge structure
const firstBadge = result[0];
expect(firstBadge).toHaveProperty("key");
expect(firstBadge).toHaveProperty("name");
expect(firstBadge).toHaveProperty("description");
expect(firstBadge).toHaveProperty("icon");
expect(firstBadge).toHaveProperty("category");
});
it("contains expected badge categories", async () => {
const { ctx } = createMockContext(null);
const caller = appRouter.createCaller(ctx);
const result = await caller.badge.definitions();
const categories = [...new Set(result.map((b: any) => b.category))];
expect(categories).toContain("milestone");
expect(categories).toContain("training");
expect(categories).toContain("streak");
expect(categories).toContain("video");
expect(categories).toContain("analysis");
expect(categories).toContain("rating");
});
it("has unique badge keys", async () => {
const { ctx } = createMockContext(null);
const caller = appRouter.createCaller(ctx);
const result = await caller.badge.definitions();
const keys = result.map((b: any) => b.key);
const uniqueKeys = [...new Set(keys)];
expect(keys.length).toBe(uniqueKeys.length);
});
});
// ===== LEADERBOARD TESTS =====
describe("leaderboard.get", () => {
it("requires authentication", async () => {
const { ctx } = createMockContext(null);
const caller = appRouter.createCaller(ctx);
await expect(caller.leaderboard.get()).rejects.toThrow();
});
it("accepts sortBy parameter", async () => {
const user = createTestUser();
const { ctx } = createMockContext(user);
const caller = appRouter.createCaller(ctx);
for (const sortBy of ["ntrpRating", "totalMinutes", "totalSessions", "totalShots"] as const) {
try {
await caller.leaderboard.get({ sortBy, limit: 10 });
} catch (e: any) {
expect(e.message).not.toContain("invalid_enum_value");
}
}
});
it("rejects invalid sortBy", async () => {
const user = createTestUser();
const { ctx } = createMockContext(user);
const caller = appRouter.createCaller(ctx);
await expect(
caller.leaderboard.get({ sortBy: "invalidField" as any })
).rejects.toThrow();
});
});
// ===== BADGE DEFINITIONS UNIT TESTS =====
describe("BADGE_DEFINITIONS via badge.definitions endpoint", () => {
it("all badges have required fields", async () => {
const { ctx } = createMockContext(null);
const caller = appRouter.createCaller(ctx);
const badges = await caller.badge.definitions();
for (const badge of badges) {
expect(typeof badge.key).toBe("string");
expect(badge.key.length).toBeGreaterThan(0);
expect(typeof badge.name).toBe("string");
expect(typeof badge.description).toBe("string");
expect(typeof badge.icon).toBe("string");
expect(typeof badge.category).toBe("string");
}
});
it("has at least 20 badges defined", async () => {
const { ctx } = createMockContext(null);
const caller = appRouter.createCaller(ctx);
const badges = await caller.badge.definitions();
expect(badges.length).toBeGreaterThanOrEqual(20);
});
});

查看文件

@@ -412,6 +412,65 @@ ${recentScores.length > 0 ? `- 用户最近的分析数据: ${JSON.stringify(rec
return { rating: user?.ntrpRating || 1.5 };
}),
}),
// Daily check-in system
checkin: router({
today: protectedProcedure.query(async ({ ctx }) => {
return db.getTodayCheckin(ctx.user.id);
}),
do: protectedProcedure
.input(z.object({
notes: z.string().optional(),
minutesTrained: z.number().optional(),
}).optional())
.mutation(async ({ ctx, input }) => {
const result = await db.checkinToday(ctx.user.id, input?.notes, input?.minutesTrained);
// Check for new badges after check-in
const newBadges = await db.checkAndAwardBadges(ctx.user.id);
return { ...result, newBadges };
}),
history: protectedProcedure
.input(z.object({ limit: z.number().default(60) }).optional())
.query(async ({ ctx, input }) => {
return db.getUserCheckins(ctx.user.id, input?.limit || 60);
}),
}),
// Badge system
badge: router({
list: protectedProcedure.query(async ({ ctx }) => {
const earned = await db.getUserBadges(ctx.user.id);
const allBadges = Object.entries(db.BADGE_DEFINITIONS).map(([key, def]) => {
const earnedBadge = earned.find(b => b.badgeKey === key);
return {
key,
...def,
earned: !!earnedBadge,
earnedAt: earnedBadge?.earnedAt || null,
};
});
return allBadges;
}),
check: protectedProcedure.mutation(async ({ ctx }) => {
const newBadges = await db.checkAndAwardBadges(ctx.user.id);
return { newBadges: newBadges.map(key => ({ key, ...db.BADGE_DEFINITIONS[key] })) };
}),
definitions: publicProcedure.query(() => {
return Object.entries(db.BADGE_DEFINITIONS).map(([key, def]) => ({ key, ...def }));
}),
}),
// Leaderboard
leaderboard: router({
get: protectedProcedure
.input(z.object({
sortBy: z.enum(["ntrpRating", "totalMinutes", "totalSessions", "totalShots"]).default("ntrpRating"),
limit: z.number().default(50),
}).optional())
.query(async ({ input }) => {
return db.getLeaderboard(input?.sortBy || "ntrpRating", input?.limit || 50);
}),
}),
});
// NTRP Rating calculation function