Files
16gagent/cases/bookshelf-v3/backend/src/routes/notes.ts
T
2026-06-06 10:40:48 +08:00

52 lines
1.8 KiB
TypeScript

// Auto-generated Note routes
import type { FastifyInstance } from "fastify";
import { authenticate } from "../middleware/auth.js";
import { NoteService } from "../services/note.js";
import type { CreateNoteInput, UpdateNoteInput } from "../types/index.js";
const service = new NoteService();
export async function notesRoutes(app: FastifyInstance): Promise<void> {
// All routes require authentication
app.addHook("onRequest", authenticate);
// GET /api/notes — list
app.get("/", async (request, reply) => {
const items = service.list();
return { data: items };
});
// GET /api/notes/:id — get by id
app.get<{ Params: { id: string } }>("/:id", async (request, reply) => {
const item = service.getById(request.params.id);
if (!item) {
return reply.status(404).send({ error: "Not Found", message: "Note not found", statusCode: 404 });
}
return { data: item };
});
// POST /api/notes — create
app.post<{ Body: CreateNoteInput }>("/", async (request, reply) => {
const item = service.create(request.body);
return reply.status(201).send({ data: item });
});
// PUT /api/notes/:id — update
app.put<{ Params: { id: string }; Body: UpdateNoteInput }>("/:id", async (request, reply) => {
const item = service.update(request.params.id, request.body);
if (!item) {
return reply.status(404).send({ error: "Not Found", message: "Note not found", statusCode: 404 });
}
return { data: item };
});
// DELETE /api/notes/:id — delete
app.delete<{ Params: { id: string } }>("/:id", async (request, reply) => {
const deleted = service.delete(request.params.id);
if (!deleted) {
return reply.status(404).send({ error: "Not Found", message: "Note not found", statusCode: 404 });
}
return reply.status(204).send();
});
}