New routes: companies, approvals, costs, dashboard, authz. New services: companies, approvals, costs, dashboard, heartbeat, activity-log. Add auth middleware and structured error handling. Expand existing agent and issue routes with richer CRUD operations. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
107 lines
3.0 KiB
TypeScript
107 lines
3.0 KiB
TypeScript
import { Router } from "express";
|
|
import type { Db } from "@paperclip/db";
|
|
import { createGoalSchema, updateGoalSchema } from "@paperclip/shared";
|
|
import { validate } from "../middleware/validate.js";
|
|
import { goalService, logActivity } from "../services/index.js";
|
|
import { assertCompanyAccess, getActorInfo } from "./authz.js";
|
|
|
|
export function goalRoutes(db: Db) {
|
|
const router = Router();
|
|
const svc = goalService(db);
|
|
|
|
router.get("/companies/:companyId/goals", async (req, res) => {
|
|
const companyId = req.params.companyId as string;
|
|
assertCompanyAccess(req, companyId);
|
|
const result = await svc.list(companyId);
|
|
res.json(result);
|
|
});
|
|
|
|
router.get("/goals/:id", async (req, res) => {
|
|
const id = req.params.id as string;
|
|
const goal = await svc.getById(id);
|
|
if (!goal) {
|
|
res.status(404).json({ error: "Goal not found" });
|
|
return;
|
|
}
|
|
assertCompanyAccess(req, goal.companyId);
|
|
res.json(goal);
|
|
});
|
|
|
|
router.post("/companies/:companyId/goals", validate(createGoalSchema), async (req, res) => {
|
|
const companyId = req.params.companyId as string;
|
|
assertCompanyAccess(req, companyId);
|
|
const goal = await svc.create(companyId, req.body);
|
|
const actor = getActorInfo(req);
|
|
await logActivity(db, {
|
|
companyId,
|
|
actorType: actor.actorType,
|
|
actorId: actor.actorId,
|
|
agentId: actor.agentId,
|
|
action: "goal.created",
|
|
entityType: "goal",
|
|
entityId: goal.id,
|
|
details: { title: goal.title },
|
|
});
|
|
res.status(201).json(goal);
|
|
});
|
|
|
|
router.patch("/goals/:id", validate(updateGoalSchema), async (req, res) => {
|
|
const id = req.params.id as string;
|
|
const existing = await svc.getById(id);
|
|
if (!existing) {
|
|
res.status(404).json({ error: "Goal not found" });
|
|
return;
|
|
}
|
|
assertCompanyAccess(req, existing.companyId);
|
|
const goal = await svc.update(id, req.body);
|
|
if (!goal) {
|
|
res.status(404).json({ error: "Goal not found" });
|
|
return;
|
|
}
|
|
|
|
const actor = getActorInfo(req);
|
|
await logActivity(db, {
|
|
companyId: goal.companyId,
|
|
actorType: actor.actorType,
|
|
actorId: actor.actorId,
|
|
agentId: actor.agentId,
|
|
action: "goal.updated",
|
|
entityType: "goal",
|
|
entityId: goal.id,
|
|
details: req.body,
|
|
});
|
|
|
|
res.json(goal);
|
|
});
|
|
|
|
router.delete("/goals/:id", async (req, res) => {
|
|
const id = req.params.id as string;
|
|
const existing = await svc.getById(id);
|
|
if (!existing) {
|
|
res.status(404).json({ error: "Goal not found" });
|
|
return;
|
|
}
|
|
assertCompanyAccess(req, existing.companyId);
|
|
const goal = await svc.remove(id);
|
|
if (!goal) {
|
|
res.status(404).json({ error: "Goal not found" });
|
|
return;
|
|
}
|
|
|
|
const actor = getActorInfo(req);
|
|
await logActivity(db, {
|
|
companyId: goal.companyId,
|
|
actorType: actor.actorType,
|
|
actorId: actor.actorId,
|
|
agentId: actor.agentId,
|
|
action: "goal.deleted",
|
|
entityType: "goal",
|
|
entityId: goal.id,
|
|
});
|
|
|
|
res.json(goal);
|
|
});
|
|
|
|
return router;
|
|
}
|