trails/apps/planner/app/routes/new.tsx
Ullrich Schäfer 0a8dd0b766
Add transactional emails (SMTP) and planner features (no-go areas, notes, crash recovery)
Transactional emails:
- Add nodemailer SMTP email module with dev-mode console logging
- Magic link template and welcome template with HTML + plain text
- Wire sendMagicLink into login flow, sendWelcome into registration
- Update privacy page and deploy docs for SMTP configuration

Planner features:
- No-go areas: draw polygons on map (leaflet-geoman), synced via Yjs,
  passed to BRouter as nogos parameter, route recomputes on change
- Session notes: collaborative Y.Text textarea in sidebar tab
- Crash recovery: periodic localStorage save of Yjs state, restore on reconnect
- Rate limit session creation (10/IP/hour) in /new route

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-26 01:00:42 +01:00

51 lines
1.7 KiB
TypeScript

import { redirect, data } from "react-router";
import type { Route } from "./+types/new";
import { createSession, initializeSessionWithWaypoints } from "~/lib/sessions";
import { parseGpx } from "@trails-cool/gpx";
import { checkRateLimit } from "~/lib/rate-limit";
export async function loader({ request }: Route.LoaderArgs) {
const url = new URL(request.url);
// Rate limit session creation by IP
const ip = request.headers.get("x-forwarded-for") ?? "unknown";
const limit = checkRateLimit(`session-create:${ip}`, { maxRequests: 10 });
if (!limit.allowed) {
throw data(
{ error: "Too many sessions created. Please try again later." },
{
status: 429,
headers: { "Retry-After": String(limit.retryAfterSeconds) },
},
);
}
const callbackUrl = url.searchParams.get("callback");
const token = url.searchParams.get("token");
const returnUrl = url.searchParams.get("returnUrl");
const gpxEncoded = url.searchParams.get("gpx");
// Create a session with callback info
const session = await createSession({
callbackUrl: callbackUrl ?? undefined,
callbackToken: token ?? undefined,
});
// Initialize with GPX waypoints if provided
if (gpxEncoded) {
try {
const gpx = decodeURIComponent(gpxEncoded);
const gpxData = parseGpx(gpx);
initializeSessionWithWaypoints(session.id, gpxData.waypoints);
} catch {
// Continue with empty session if GPX is invalid
}
}
// Store returnUrl in the session URL for later
const sessionUrl = returnUrl
? `/session/${session.id}?returnUrl=${encodeURIComponent(returnUrl)}`
: `/session/${session.id}`;
return redirect(sessionUrl);
}