Phase 1b — Core Features: - Huawei ID Kit login (token exchange + user info) with guest mode - Quiz engine: randomized questions, distractor shuffling, answer verification - XP service with combo bonuses (3/5/10-hit streaks), daily reset - Streak service: >=3 correct/day, freeze, UTC date handling - Hearts service: 5/day, 30min auto-restore, Pro unlimited - 50 quiz questions across 3 categories (history/drama/crosstalk) - 13 skill tree chapters with linear progression - Idempotent seed import script (categories → skill tree → questions) - 7 admin CRUD services (questions, categories, knowledge cards, skill tree, users, stats, feedback) with Zod validation - All routes use Zod schema validation, /auth/me endpoint Phase 1c — Commercialization: - Leaderboard with live XP ranking, 10 tiers, weekly settlement - Achievement system with 15 seed achievements and condition checking - Huawei IAP receipt verification + subscription management - Differentiated rate limiting (auth 10/min, quiz 60/min) - Admin audit logging middleware Infrastructure: - Vitest test framework with DB mock utilities (19 tests passing) - 12 DB tables (5 new: question_ratings, user_feedback, achievements, user_achievements, leaderboard_snapshots, subscriptions, admin_audit_log) - TypeScript strict mode: zero errors
107 lines
2.2 KiB
JSON
107 lines
2.2 KiB
JSON
[
|
|
{
|
|
"categoryId": "history",
|
|
"title": "先秦风云",
|
|
"sortOrder": 1,
|
|
"questionsRequired": 4,
|
|
"passThreshold": 2,
|
|
"parentId": null
|
|
},
|
|
{
|
|
"categoryId": "history",
|
|
"title": "秦汉帝国",
|
|
"sortOrder": 2,
|
|
"questionsRequired": 4,
|
|
"passThreshold": 2,
|
|
"parentId": "DEPENDS_ON_PREVIOUS"
|
|
},
|
|
{
|
|
"categoryId": "history",
|
|
"title": "魏晋南北朝",
|
|
"sortOrder": 3,
|
|
"questionsRequired": 4,
|
|
"passThreshold": 2,
|
|
"parentId": "DEPENDS_ON_PREVIOUS"
|
|
},
|
|
{
|
|
"categoryId": "history",
|
|
"title": "盛唐气象",
|
|
"sortOrder": 4,
|
|
"questionsRequired": 5,
|
|
"passThreshold": 3,
|
|
"parentId": "DEPENDS_ON_PREVIOUS"
|
|
},
|
|
{
|
|
"categoryId": "history",
|
|
"title": "宋元变革",
|
|
"sortOrder": 5,
|
|
"questionsRequired": 4,
|
|
"passThreshold": 2,
|
|
"parentId": "DEPENDS_ON_PREVIOUS"
|
|
},
|
|
{
|
|
"categoryId": "drama",
|
|
"title": "经典名著",
|
|
"sortOrder": 1,
|
|
"questionsRequired": 4,
|
|
"passThreshold": 2,
|
|
"parentId": null
|
|
},
|
|
{
|
|
"categoryId": "drama",
|
|
"title": "历史正剧",
|
|
"sortOrder": 2,
|
|
"questionsRequired": 4,
|
|
"passThreshold": 2,
|
|
"parentId": "DEPENDS_ON_PREVIOUS"
|
|
},
|
|
{
|
|
"categoryId": "drama",
|
|
"title": "宫斗风云",
|
|
"sortOrder": 3,
|
|
"questionsRequired": 4,
|
|
"passThreshold": 2,
|
|
"parentId": "DEPENDS_ON_PREVIOUS"
|
|
},
|
|
{
|
|
"categoryId": "drama",
|
|
"title": "现代精品",
|
|
"sortOrder": 4,
|
|
"questionsRequired": 4,
|
|
"passThreshold": 2,
|
|
"parentId": "DEPENDS_ON_PREVIOUS"
|
|
},
|
|
{
|
|
"categoryId": "crosstalk",
|
|
"title": "相声入门",
|
|
"sortOrder": 1,
|
|
"questionsRequired": 4,
|
|
"passThreshold": 2,
|
|
"parentId": null
|
|
},
|
|
{
|
|
"categoryId": "crosstalk",
|
|
"title": "小品经典",
|
|
"sortOrder": 2,
|
|
"questionsRequired": 4,
|
|
"passThreshold": 2,
|
|
"parentId": "DEPENDS_ON_PREVIOUS"
|
|
},
|
|
{
|
|
"categoryId": "crosstalk",
|
|
"title": "名家名段",
|
|
"sortOrder": 3,
|
|
"questionsRequired": 4,
|
|
"passThreshold": 2,
|
|
"parentId": "DEPENDS_ON_PREVIOUS"
|
|
},
|
|
{
|
|
"categoryId": "crosstalk",
|
|
"title": "喜剧新势力",
|
|
"sortOrder": 4,
|
|
"questionsRequired": 4,
|
|
"passThreshold": 2,
|
|
"parentId": "DEPENDS_ON_PREVIOUS"
|
|
}
|
|
]
|