generated from nhcarrigan/template
a36c8e72a5
## Summary
- Add comprehensive try/catch error handling across all API routes, middleware, and the Hono global error handler, piping every unhandled error to the `@nhcarrigan/logger` service to prevent silent crashes and unhandled Promise rejections
- Add a `logError` utility on the frontend that forwards errors through the overridden `console.error` to the backend telemetry endpoint; apply it to every silent `catch {}` block in the game context, sound, notification, and clipboard utilities, and wrap the React tree in an `ErrorBoundary`
- Add Plausible analytics, Open Graph + Twitter Card meta tags, Tree-Nation widget, and Google Ads to `index.html`
- Make the game sidebar sticky with a `--resource-bar-height` CSS custom property offset so it stays viewport-height without overlapping the resource bar; reset sticky behaviour in the mobile responsive override
## Test plan
- [ ] Lint passes: `pnpm lint`
- [ ] Build passes: `pnpm build`
- [ ] Verify errors thrown in API routes appear in the logger service rather than crashing the process
- [ ] Verify frontend errors appear in the `/api/fe/error` backend log
- [ ] Verify Open Graph tags render correctly when sharing the URL
- [ ] Verify Plausible analytics fires on page load
- [ ] Verify Tree-Nation badge renders in the sidebar
- [ ] Verify sidebar stays fixed while the main content scrolls on desktop
- [ ] Verify mobile layout is unaffected
✨ This issue was created with help from Hikari~ 🌸
Reviewed-on: #44
Co-authored-by: Hikari <hikari@nhcarrigan.com>
Co-committed-by: Hikari <hikari@nhcarrigan.com>
134 lines
4.3 KiB
TypeScript
134 lines
4.3 KiB
TypeScript
/**
|
|
* @file Apotheosis route handling the apotheosis reset mechanic.
|
|
* @copyright nhcarrigan
|
|
* @license Naomi's Public License
|
|
* @author Naomi Carrigan
|
|
*/
|
|
/* eslint-disable max-lines-per-function -- Route handler requires many steps */
|
|
/* eslint-disable max-statements -- Route handler requires many statements */
|
|
|
|
/* eslint-disable stylistic/max-len -- Description string cannot be shortened */
|
|
import { Hono } from "hono";
|
|
import { prisma } from "../db/client.js";
|
|
import { authMiddleware } from "../middleware/auth.js";
|
|
import {
|
|
buildPostApotheosisState,
|
|
isEligibleForApotheosis,
|
|
} from "../services/apotheosis.js";
|
|
import { logger } from "../services/logger.js";
|
|
import {
|
|
grantApotheosisRole,
|
|
postMilestoneWebhook,
|
|
} from "../services/webhook.js";
|
|
import type { HonoEnvironment } from "../types/hono.js";
|
|
import type { GameState } from "@elysium/types";
|
|
|
|
const apotheosisRouter = new Hono<HonoEnvironment>();
|
|
|
|
apotheosisRouter.use("*", authMiddleware);
|
|
|
|
apotheosisRouter.post("/", async(context) => {
|
|
try {
|
|
const discordId = context.get("discordId");
|
|
|
|
const record = await prisma.gameState.findUnique({ where: { discordId } });
|
|
if (!record) {
|
|
return context.json({ error: "No save found" }, 404);
|
|
}
|
|
|
|
const rawState: unknown = record.state;
|
|
/* eslint-disable-next-line @typescript-eslint/consistent-type-assertions -- Prisma returns JsonValue; cast to GameState */
|
|
const state = rawState as GameState;
|
|
|
|
if (!isEligibleForApotheosis(state)) {
|
|
return context.json(
|
|
{
|
|
error:
|
|
"Not eligible for Apotheosis — purchase all Transcendence upgrades first",
|
|
},
|
|
400,
|
|
);
|
|
}
|
|
|
|
// Capture current-run stats before the nuclear reset
|
|
// eslint-disable-next-line capitalized-comments -- v8 ignore
|
|
/* v8 ignore next 9 -- @preserve */
|
|
const runBossesDefeated = state.bosses.filter((b) => {
|
|
return b.status === "defeated";
|
|
}).length;
|
|
const runQuestsCompleted = state.quests.filter((q) => {
|
|
return q.status === "completed";
|
|
}).length;
|
|
const runAdventurersRecruited = state.adventurers.reduce((sum, a) => {
|
|
return sum + a.count;
|
|
}, 0);
|
|
|
|
// eslint-disable-next-line capitalized-comments -- v8 ignore
|
|
/* v8 ignore next 3 -- @preserve */
|
|
const runAchievementsUnlocked = state.achievements.filter((a) => {
|
|
return a.unlockedAt !== null;
|
|
}).length;
|
|
|
|
const { updatedState, updatedApotheosisData } = buildPostApotheosisState(
|
|
state,
|
|
state.player.characterName,
|
|
);
|
|
|
|
const now = Date.now();
|
|
await prisma.gameState.update({
|
|
/* eslint-disable-next-line @typescript-eslint/consistent-type-assertions -- Prisma requires object */
|
|
data: { state: updatedState as object, updatedAt: now },
|
|
where: { discordId },
|
|
});
|
|
|
|
await prisma.player.update({
|
|
data: {
|
|
characterName: state.player.characterName,
|
|
|
|
lastSavedAt: now,
|
|
|
|
lifetimeAchievementsUnlocked: { increment: runAchievementsUnlocked },
|
|
|
|
lifetimeAdventurersRecruited: { increment: runAdventurersRecruited },
|
|
|
|
lifetimeBossesDefeated: { increment: runBossesDefeated },
|
|
|
|
lifetimeClicks: { increment: state.player.totalClicks },
|
|
|
|
// Accumulate into lifetime totals
|
|
lifetimeGoldEarned: { increment: state.player.totalGoldEarned },
|
|
|
|
lifetimeQuestsCompleted: { increment: runQuestsCompleted },
|
|
|
|
totalClicks: 0,
|
|
// Reset current-run counters
|
|
totalGoldEarned: 0,
|
|
},
|
|
where: { discordId },
|
|
});
|
|
|
|
const apotheosisCount = updatedApotheosisData.count;
|
|
void logger.metric("apotheosis", 1, { apotheosisCount, discordId });
|
|
void grantApotheosisRole(discordId);
|
|
void postMilestoneWebhook(discordId, "apotheosis", {
|
|
apotheosis: updatedApotheosisData.count,
|
|
prestige: updatedState.prestige.count,
|
|
// eslint-disable-next-line capitalized-comments -- v8 ignore
|
|
/* v8 ignore next -- @preserve */
|
|
transcendence: updatedState.transcendence?.count ?? 0,
|
|
});
|
|
|
|
return context.json({ apotheosisCount: updatedApotheosisData.count });
|
|
} catch (error) {
|
|
void logger.error(
|
|
"apotheosis",
|
|
error instanceof Error
|
|
? error
|
|
: new Error(String(error)),
|
|
);
|
|
return context.json({ error: "Internal server error" }, 500);
|
|
}
|
|
});
|
|
|
|
export { apotheosisRouter };
|