Two related fixes from the architecture review: Typed job seam. Job payloads were `unknown` end-to-end: every handler opened with `job.data as SomePayload`, every enqueue site passed a bare string queue name and an unchecked object, and a typo meant a runtime failure in a background worker. packages/jobs gains defineJob(), which keeps the payload typed inside the handler and performs the contravariance cast once inside the package. The journal declares all 14 queues and their payload shapes in app/jobs/payloads.ts; enqueue()/ enqueueOptional() and defineJournalJob() key off that map, so enqueue sites and handlers cannot drift and queue names are compile-checked. Komoot credential bypass. The bulk-import route enqueued the raw credentials JSONB in the pg-boss payload, skipping withFreshCredentials entirely: credentials sat at rest in the job table, were never refreshed if stale, and markNeedsRelink never fired. The payload now carries only the serviceId; the handler resolves fresh credentials through the ConnectedServiceManager at execution time, and marks the import batch failed (instead of leaving it pending forever) when credential resolution itself fails. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
31 lines
1.1 KiB
TypeScript
31 lines
1.1 KiB
TypeScript
import { defineJournalJob } from "./payloads.ts";
|
|
import { lt } from "drizzle-orm";
|
|
import { consumedJwtJti } from "@trails-cool/db/schema/journal";
|
|
import { getDb } from "../lib/db.ts";
|
|
import { logger } from "../lib/logger.server.ts";
|
|
|
|
/**
|
|
* Daily cleanup for the JWT replay-protection table. Each row was
|
|
* inserted by `verifyRouteToken` to mark a token as consumed; once
|
|
* the token's `exp` claim has passed, the row is no longer useful
|
|
* (the JWT itself would fail signature verification before reaching
|
|
* the consume step). Bound the table to keep it tiny.
|
|
*
|
|
* See planner-audit #2 Phase B.
|
|
*/
|
|
export const consumedJtiSweepJob = defineJournalJob({
|
|
name: "consumed-jti-sweep",
|
|
cron: "45 3 * * *", // daily at 03:45 UTC (offset from notifications-purge)
|
|
retryLimit: 1,
|
|
expireInSeconds: 60,
|
|
async handler() {
|
|
const db = getDb();
|
|
const result = await db
|
|
.delete(consumedJwtJti)
|
|
.where(lt(consumedJwtJti.expiresAt, new Date()))
|
|
.returning({ jti: consumedJwtJti.jti });
|
|
const purged = result.length;
|
|
logger.info({ purged }, "consumed-jti-sweep");
|
|
return { purged };
|
|
},
|
|
});
|