feat(api): spaces routes

Add lib/api/routes/spaces.js: list, create, get-by-id, get-by-slug,
patch, delete. Mounted under /api/spaces. Server smoke restored.

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
This commit is contained in:
root
2026-05-31 16:38:23 +10:00
parent 75afedaef0
commit ebb1e836ca
4 changed files with 158 additions and 1 deletions

View File

@@ -1,12 +1,13 @@
import { Router } from 'express';
import { ownerOnly } from '../auth/owner.js';
import { errorMiddleware, NotFoundError } from './errors.js';
import { router as spacesRouter } from './routes/spaces.js';
export function mountApi(app) {
const api = Router();
api.use(ownerOnly);
// route modules registered here as Plan 2 progresses
api.use('/spaces', spacesRouter);
api.use((_req, _res, next) => next(new NotFoundError('route not found')));

70
lib/api/routes/spaces.js Normal file
View File

@@ -0,0 +1,70 @@
import { Router } from 'express';
import { z } from 'zod';
import * as repo from '../../db/repos/spaces.js';
import { validate } from '../validate.js';
import { NotFoundError, asyncWrap } from '../errors.js';
const createSchema = z.object({
slug: z.string().min(1).max(64).regex(/^[a-z0-9-]+$/),
name: z.string().min(1).max(200),
description: z.string().optional(),
theme: z.string().optional()
});
const patchSchema = z.object({
slug: z.string().min(1).max(64).regex(/^[a-z0-9-]+$/).optional(),
name: z.string().min(1).max(200).optional(),
description: z.string().nullable().optional(),
theme: z.string().nullable().optional()
});
const uuidParams = z.object({ id: z.string().uuid() });
export const router = Router();
router.get('/', asyncWrap(async (_req, res) => {
res.json(await repo.list());
}));
router.post('/',
validate({ body: createSchema }),
asyncWrap(async (req, res) => {
const row = await repo.create(req.body, req.actor);
res.status(201).json(row);
})
);
router.get('/by-slug/:slug', asyncWrap(async (req, res) => {
const row = await repo.getBySlug(req.params.slug);
if (!row) throw new NotFoundError('space not found');
res.json(row);
}));
router.get('/:id',
validate({ params: uuidParams }),
asyncWrap(async (req, res) => {
const row = await repo.getById(req.params.id);
if (!row) throw new NotFoundError('space not found');
res.json(row);
})
);
router.patch('/:id',
validate({ params: uuidParams, body: patchSchema }),
asyncWrap(async (req, res) => {
const existing = await repo.getById(req.params.id);
if (!existing) throw new NotFoundError('space not found');
const row = await repo.update(req.params.id, req.body, req.actor);
res.json(row);
})
);
router.delete('/:id',
validate({ params: uuidParams }),
asyncWrap(async (req, res) => {
const existing = await repo.getById(req.params.id);
if (!existing) throw new NotFoundError('space not found');
await repo.del(req.params.id, req.actor);
res.status(204).end();
})
);