Files
linkder/packages/api/src/routers/geocode.ts
T
serfaandClaude Opus 5 974e312534 M2: the full job lifecycle — chat, hiring, geocoding, quotes, bookings, reviews
Closes the funnel. Before this the product could match two people and then
stopped: `quotes`, `bookings` and `reviews` had tables and state machines and
nothing that wrote a row, the entry deck's right swipe was wired to an empty
handler, and every address resolved to the city centre.

Jobs tab and chat
- message router: thread, send, markRead, unreadTotal. A thread is a MATCH, not
  a job — one job with three interested pros is three private conversations.
- Current/Past segments derived from ACTIVE_JOB_STATUSES, job detail listing the
  pros who accepted, and the conversation itself with attachments.

Hiring from the deck
- A right swipe on the entry deck opened nothing. It now resolves "which job?"
  through a sheet — sign in, pick an open job, or post one — and calls the same
  deck.swipe the per-job deck does, so the open-request cap and row lock apply
  exactly once. Swipes are vetoable so closing the sheet returns the card.

Geocoding
- ST_Distance and ST_DWithin rank and filter every deck, and both operands were
  placeholders. Addresses now resolve through Mapbox (permanent=true, which is
  what licenses storing the coordinates), the server resolves points rather than
  trusting client-supplied lat/lng, and every stored point records how it was
  obtained. A `city`-precision base cannot reach the verification queue.

Quote -> booking -> review
- The commercial chain, minus payments. Accepting a quote is the only place a
  booking is created; confirming completion is what unlocks reviews and moves
  the pro's completed_jobs.
- Reviews publish double-blind with no sweeper: each is written with
  published_at already set to its embargo deadline and every read filters
  published_at <= now(), so it publishes itself. The second review pulls both
  forward. A silent counterparty cannot bury a bad review by never replying.

State machine changes, both deliberate
- booked -> matched: a cancelled booking is not a cancelled job.
- scheduled -> awaiting_confirmation: in_progress is optional, so a pro who
  never tapped Start can still say the work is done.

Test suite
- api tests ran files in parallel against one database and failed roughly one
  run in three on whichever file lost the race. Serialised, and three fixtures
  that grabbed "the first client" pinned to the seeded accounts.

Also includes work from a parallel session: admin verification queue, pro
public profile and reviews read path, notification sending, denormalised stats
recompute, search, and observability.

318 tests passing; typecheck and lint clean across 7 packages.

Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
2026-08-21 06:29:59 -04:00

102 lines
3.4 KiB
TypeScript

import { TRPCError } from '@trpc/server';
import { z } from 'zod';
import {
forward,
GeocodeError,
isConfigured,
MAX_SUGGESTIONS,
reverse,
type GeocodeResult,
} from '@linkder/geocode';
import { latLngSchema } from '@linkder/shared';
import { protectedProcedure, router } from '../trpc';
/**
* Turning what someone typed into a point we can match on.
*
* `protectedProcedure`, not public: every address surface in the product is
* already behind sign-in, and unlike `pro.search` this one costs money per
* keystroke. An anonymous caller with a loop would be spending our Mapbox
* budget, so the session is the first cost bound and the throttle below is the
* second.
*/
/**
* A per-process throttle, same shape as the one in `message.ts` and with the
* same caveat: it resets on deploy and does not span instances. It is a spend
* ceiling on a runaway client, not a rate limiter — the real one arrives with
* the shared Redis in M4.
*
* Sized for typing rather than for sending: the client debounces at 250ms, so a
* person filling in one address costs a handful of calls and this only bites a
* loop.
*/
const WINDOW_MS = 60_000;
const LIMIT = 60;
const recent = new Map<string, number[]>();
function assertRate(userId: string): void {
const now = Date.now();
const window = (recent.get(userId) ?? []).filter((at) => now - at < WINDOW_MS);
if (window.length >= LIMIT) {
throw new TRPCError({ code: 'TOO_MANY_REQUESTS', message: 'Too many lookups. Pause a moment.' });
}
window.push(now);
recent.set(userId, window);
}
/**
* A geocoder that is down, or not configured, must not take a form down with it.
*
* Callers get an empty list and the UI says "we could not look that up" — the
* user can still submit, and the point lands as `city` precision, which is
* exactly what the flag is for. The alternative, a 500 out of an address field,
* would block posting a job because a third party had a bad minute.
*/
async function tolerant(work: () => Promise<GeocodeResult[]>): Promise<GeocodeResult[]> {
if (!isConfigured()) return [];
try {
return await work();
} catch (error) {
if (error instanceof GeocodeError) return [];
throw error;
}
}
export const geocodeRouter = router({
/** Address text → candidates, for the address field's suggestion list. */
suggest: protectedProcedure
.input(
z.object({
q: z.string().trim().min(1).max(200),
/** Bias toward here — the city centre, or a pin the user already has. */
proximity: latLngSchema.optional(),
limit: z.number().int().min(1).max(MAX_SUGGESTIONS).optional(),
}),
)
.query(async ({ ctx, input }) => {
assertRate(ctx.session.userId);
const results = await tolerant(() => forward(input));
return { results, configured: isConfigured() };
}),
/**
* Coordinates → the nearest address.
*
* What makes "Use my current location" honest: the button used to set a point
* with no label, so the form had silently decided where you live and shown you
* nothing about it.
*/
reverse: protectedProcedure.input(latLngSchema).mutation(async ({ ctx, input }) => {
assertRate(ctx.session.userId);
if (!isConfigured()) return { result: null, configured: false };
try {
return { result: await reverse(input), configured: true };
} catch (error) {
if (error instanceof GeocodeError) return { result: null, configured: true };
throw error;
}
}),
});