Sistema de préstamos LabRe UABC — implementación inicial

Sistema web para gestión de préstamos de material del Laboratorio de
Sistemas Computacionales de la UABC.

- Backend: Supabase self-hosted, schema aislado `prestamos` con RLS,
  triggers de stock y audit log (supabase/migrations/0001_init.sql).
- Auth: Google OAuth restringido a @uabc.edu.mx, verificado en
  middleware y como segunda línea en trigger de DB.
- Frontend: Astro 7 (SSR con adapter Node) + React islands + Tailwind
  v4 con paleta UABC (primary #00723F, secondary #DD971A) bajo regla
  60/30/10.
- Interfaz alumno mobile-first: catálogo con filtro por categorías,
  solicitud de préstamos, historial personal.
- Interfaz admin desktop-first: panel con KPIs, bandeja de solicitudes
  (aprobar/rechazar/devolver), CRUD de inventario y categorías,
  reportes filtrables con export CSV nativo.
- Modales con `<dialog>` nativo, cero librerías de UI adicionales.
- Deploy: Dockerfile multi-stage node:22-alpine + docker-compose para
  publicar bajo prestamos.buglabs.dev vía Cloudflare Tunnel.

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
This commit is contained in:
2026-08-14 19:37:49 -07:00
parent 6bbd6d3a6b
commit 1121ab7199
58 changed files with 6281 additions and 252 deletions
+58
View File
@@ -0,0 +1,58 @@
import type { APIRoute } from 'astro';
export const prerender = false;
export const POST: APIRoute = async ({ request, locals }) => {
const user = locals.user;
if (!user) {
return Response.json({ error: 'No autenticado' }, { status: 401 });
}
let body: { material_id?: unknown; cantidad?: unknown; notas?: unknown };
try {
body = await request.json();
} catch {
return Response.json({ error: 'JSON inválido' }, { status: 400 });
}
const material_id = Number(body.material_id);
const cantidad = Number(body.cantidad);
const notas = typeof body.notas === 'string' && body.notas.trim() ? body.notas.trim() : null;
if (!Number.isInteger(material_id) || material_id <= 0) {
return Response.json({ error: 'material_id requerido' }, { status: 400 });
}
if (!Number.isInteger(cantidad) || cantidad <= 0) {
return Response.json({ error: 'cantidad debe ser un entero mayor que cero' }, { status: 400 });
}
const supabase = locals.supabase;
const { data: material, error: matErr } = await supabase
.from('materiales')
.select('id, cantidad_disponible, estado')
.eq('id', material_id)
.maybeSingle();
if (matErr) {
return Response.json({ error: 'No se pudo verificar el material' }, { status: 500 });
}
if (!material || material.estado !== 'disponible') {
return Response.json({ error: 'Material no disponible' }, { status: 404 });
}
if (material.cantidad_disponible < cantidad) {
return Response.json({ error: 'Sin stock suficiente' }, { status: 409 });
}
const { data, error } = await supabase
.from('prestamos')
.insert({ alumno_id: user.id, material_id, cantidad, notas })
.select('id')
.single();
if (error) {
return Response.json({ error: 'No se pudo registrar la solicitud' }, { status: 500 });
}
return Response.json({ id: data.id }, { status: 201 });
};