mirror of
https://github.com/temetro/temetro.git
synced 2026-08-26 02:17:22 +00:00
75940313a4
Add the activity_log table, a best-effort recordActivity() service and a GET /api/activity feed, and write entries on create/update/delete of patients, notes, appointments, prescriptions and tasks. The Activity page now shows the real audit trail (actor, action, patient context, time); the fabricated signing hashes / approval badges are gone — that vision stays deferred. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
110 lines
3.1 KiB
TypeScript
110 lines
3.1 KiB
TypeScript
import { Router } from "express";
|
|
|
|
import { HttpError } from "../lib/http-error.js";
|
|
import { prescriptionInputSchema } from "../lib/prescription-validation.js";
|
|
import {
|
|
requireAuth,
|
|
requireOrg,
|
|
requirePermission,
|
|
} from "../middleware/auth.js";
|
|
import { recordActivity } from "../services/activity.js";
|
|
import * as service from "../services/prescriptions.js";
|
|
|
|
export const prescriptionsRouter = Router();
|
|
|
|
prescriptionsRouter.use(requireAuth, requireOrg);
|
|
|
|
prescriptionsRouter.get(
|
|
"/",
|
|
requirePermission({ prescription: ["read"] }),
|
|
async (req, res, next) => {
|
|
try {
|
|
res.json(await service.listPrescriptions(req.organizationId!));
|
|
} catch (err) {
|
|
next(err);
|
|
}
|
|
},
|
|
);
|
|
|
|
prescriptionsRouter.post(
|
|
"/",
|
|
requirePermission({ prescription: ["write"] }),
|
|
async (req, res, next) => {
|
|
try {
|
|
const input = prescriptionInputSchema.parse(req.body);
|
|
// Default the prescriber to the signed-in clinician when not provided.
|
|
input.prescriber = input.prescriber || req.user!.name || "Clinician";
|
|
const created = await service.createPrescription(
|
|
req.organizationId!,
|
|
req.user!.id,
|
|
input,
|
|
);
|
|
await recordActivity({
|
|
orgId: req.organizationId!,
|
|
actor: { id: req.user!.id, name: req.user!.name },
|
|
action: `Prescribed ${created.medication} for ${created.name}`,
|
|
entityType: "prescription",
|
|
entityId: created.id,
|
|
patientName: created.name,
|
|
patientFileNumber: created.fileNumber || null,
|
|
});
|
|
res.status(201).json(created);
|
|
} catch (err) {
|
|
next(err);
|
|
}
|
|
},
|
|
);
|
|
|
|
prescriptionsRouter.put(
|
|
"/:id",
|
|
requirePermission({ prescription: ["write"] }),
|
|
async (req, res, next) => {
|
|
try {
|
|
const input = prescriptionInputSchema.parse(req.body);
|
|
input.prescriber = input.prescriber || req.user!.name || "Clinician";
|
|
const updated = await service.updatePrescription(
|
|
req.organizationId!,
|
|
req.params.id as string,
|
|
input,
|
|
);
|
|
if (!updated) throw new HttpError(404, "Prescription not found.");
|
|
await recordActivity({
|
|
orgId: req.organizationId!,
|
|
actor: { id: req.user!.id, name: req.user!.name },
|
|
action: `Updated prescription — ${updated.medication}`,
|
|
entityType: "prescription",
|
|
entityId: updated.id,
|
|
patientName: updated.name,
|
|
patientFileNumber: updated.fileNumber || null,
|
|
});
|
|
res.json(updated);
|
|
} catch (err) {
|
|
next(err);
|
|
}
|
|
},
|
|
);
|
|
|
|
prescriptionsRouter.delete(
|
|
"/:id",
|
|
requirePermission({ prescription: ["delete"] }),
|
|
async (req, res, next) => {
|
|
try {
|
|
const ok = await service.deletePrescription(
|
|
req.organizationId!,
|
|
req.params.id as string,
|
|
);
|
|
if (!ok) throw new HttpError(404, "Prescription not found.");
|
|
await recordActivity({
|
|
orgId: req.organizationId!,
|
|
actor: { id: req.user!.id, name: req.user!.name },
|
|
action: "Deleted prescription",
|
|
entityType: "prescription",
|
|
entityId: req.params.id as string,
|
|
});
|
|
res.status(204).end();
|
|
} catch (err) {
|
|
next(err);
|
|
}
|
|
},
|
|
);
|