mirror of
https://github.com/temetro/temetro.git
synced 2026-08-05 16:37:42 +00:00
9dabe2f5d2
Implements the first temetro backend: an Express 5 API on Postgres via Drizzle ORM, with authentication and multi-tenant clinics powered by Better Auth. - Auth: email/password with required email verification, password reset, rate limiting, CSRF/trusted-origins, secure cookies, session audit hook. - Organizations (clinics) with RBAC (owner/admin/member/viewer) and an extended `patient` permission set; member invitations by email. - Org-scoped patient records mirroring the frontend Patient shape, with CRUD endpoints gated by permission (read/write/delete). - Email helper logs links to the console when SMTP is unset (zero-setup local dev); Dockerfile + docker-compose (db + backend + frontend) with migrations applied on startup and a configurable Postgres host port. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
28 lines
750 B
TypeScript
28 lines
750 B
TypeScript
import type { NextFunction, Request, Response } from "express";
|
|
import { ZodError } from "zod";
|
|
|
|
import { HttpError } from "../lib/http-error.js";
|
|
|
|
export function notFound(_req: Request, res: Response): void {
|
|
res.status(404).json({ error: "Not found" });
|
|
}
|
|
|
|
// Express error handler (must take 4 args).
|
|
export function errorHandler(
|
|
err: unknown,
|
|
_req: Request,
|
|
res: Response,
|
|
_next: NextFunction,
|
|
): void {
|
|
if (err instanceof HttpError) {
|
|
res.status(err.status).json({ error: err.message });
|
|
return;
|
|
}
|
|
if (err instanceof ZodError) {
|
|
res.status(400).json({ error: "Validation failed", details: err.issues });
|
|
return;
|
|
}
|
|
console.error("[error]", err);
|
|
res.status(500).json({ error: "Internal server error" });
|
|
}
|