feat(api): add teams CRUD routes and update auth team references

This commit is contained in:
Siddharth Kumar Sah
2026-03-26 01:10:51 +08:00
parent 62fbb5484c
commit ab370a74fe
5 changed files with 893 additions and 206 deletions
+164
View File
@@ -0,0 +1,164 @@
/**
* Team management routes (CRUD).
*
* GET /api/v1/teams — List all teams with member count
* POST /api/v1/teams — Create team (admin only)
* PUT /api/v1/teams/:id — Rename team (admin only)
* DELETE /api/v1/teams/:id — Delete team (admin only)
*/
import { randomUUID } from "node:crypto";
import { eq, sql } from "drizzle-orm";
import type { FastifyInstance, FastifyReply, FastifyRequest } from "fastify";
import { db, schema } from "../db/index.js";
import { requireAdmin, requireAuth } from "../plugins/auth.js";
function validateTeamName(name: unknown): string | null {
if (typeof name !== "string") return "Team name is required";
const trimmed = name.trim();
if (trimmed.length === 0) return "Team name is required";
if (trimmed.length > 50) return "Team name must be 50 characters or fewer";
return null;
}
export async function teamsRoutes(app: FastifyInstance): Promise<void> {
// GET /api/v1/teams — List all teams with member count
app.get("/api/v1/teams", async (request: FastifyRequest, reply: FastifyReply) => {
const user = requireAuth(request, reply);
if (!user) return;
const teams = db
.select({
id: schema.teams.id,
name: schema.teams.name,
memberCount: sql<number>`(SELECT COUNT(*) FROM users WHERE users.team = ${schema.teams.id})`,
createdAt: schema.teams.createdAt,
})
.from(schema.teams)
.all();
return reply.send({
teams: teams.map((t) => ({
...t,
createdAt: t.createdAt.toISOString(),
})),
});
});
// POST /api/v1/teams — Create team (admin only)
app.post("/api/v1/teams", async (request: FastifyRequest, reply: FastifyReply) => {
const admin = requireAdmin(request, reply);
if (!admin) return;
const body = request.body as { name?: string } | null;
const nameError = validateTeamName(body?.name);
if (nameError) {
return reply.status(400).send({ error: nameError, code: "VALIDATION_ERROR" });
}
const trimmedName = (body!.name as string).trim();
// Check for duplicate name (case-insensitive)
const existing = db
.select()
.from(schema.teams)
.where(sql`LOWER(${schema.teams.name}) = LOWER(${trimmedName})`)
.get();
if (existing) {
return reply.status(409).send({ error: "Team name already exists", code: "CONFLICT" });
}
const id = randomUUID();
db.insert(schema.teams).values({ id, name: trimmedName }).run();
return reply.status(201).send({ id, name: trimmedName });
});
// PUT /api/v1/teams/:id — Rename team (admin only)
app.put(
"/api/v1/teams/:id",
async (request: FastifyRequest<{ Params: { id: string } }>, reply: FastifyReply) => {
const admin = requireAdmin(request, reply);
if (!admin) return;
const { id } = request.params;
const body = request.body as { name?: string } | null;
const team = db.select().from(schema.teams).where(eq(schema.teams.id, id)).get();
if (!team) {
return reply.status(404).send({ error: "Team not found", code: "NOT_FOUND" });
}
const nameError = validateTeamName(body?.name);
if (nameError) {
return reply.status(400).send({ error: nameError, code: "VALIDATION_ERROR" });
}
const trimmedName = (body!.name as string).trim();
// Check for duplicate name (case-insensitive), excluding current team
const duplicate = db
.select()
.from(schema.teams)
.where(
sql`LOWER(${schema.teams.name}) = LOWER(${trimmedName}) AND ${schema.teams.id} != ${id}`,
)
.get();
if (duplicate) {
return reply.status(409).send({ error: "Team name already exists", code: "CONFLICT" });
}
db.update(schema.teams).set({ name: trimmedName }).where(eq(schema.teams.id, id)).run();
return reply.send({ ok: true });
},
);
// DELETE /api/v1/teams/:id — Delete team (admin only)
app.delete(
"/api/v1/teams/:id",
async (request: FastifyRequest<{ Params: { id: string } }>, reply: FastifyReply) => {
const admin = requireAdmin(request, reply);
if (!admin) return;
const { id } = request.params;
const team = db.select().from(schema.teams).where(eq(schema.teams.id, id)).get();
if (!team) {
return reply.status(404).send({ error: "Team not found", code: "NOT_FOUND" });
}
// Cannot delete the Default team
if (team.name === "Default") {
return reply.status(400).send({
error: "Cannot delete the Default team",
code: "VALIDATION_ERROR",
});
}
// Cannot delete a team that has members
const memberCount = db
.select({ count: sql<number>`COUNT(*)` })
.from(schema.users)
.where(eq(schema.users.team, id))
.get();
if (memberCount && memberCount.count > 0) {
return reply.status(400).send({
error: "Cannot delete a team that has members",
code: "VALIDATION_ERROR",
});
}
db.delete(schema.teams).where(eq(schema.teams.id, id)).run();
return reply.send({ ok: true });
},
);
app.log.info("Teams routes registered");
}