6c38cd0019
- Cascade delete on all entities (student, module, UE, user, role, promotion) - Fix Response body reuse bug (factory functions instead of constants) - Student note viewing via CAS uid (strip non-digit prefix) - Fix middleware page visibility for students in LOCAL mode - Import result popup component (shared across all import pages) - Fix student import to use numEtud from Excel - Bulk student selection with promo change and delete - Move UE/UE-Module API and pages from notes to admin module - Move promotions page from students to admin module - Multi-year maquette import with per-year promo selection - Inline promo creation in maquette import - Static Excel templates (students, notes, maquette) - Fix XLSX export using blob download instead of writeFile - Allow students to read modules list (GET /modules)
112 lines
3.3 KiB
TypeScript
112 lines
3.3 KiB
TypeScript
import { FreshContext, Handlers } from "$fresh/server.ts";
|
|
import { db } from "$root/databases/db.ts";
|
|
import {
|
|
ajustements,
|
|
mobility,
|
|
notes,
|
|
students,
|
|
} from "$root/databases/schema.ts";
|
|
import { AuthenticatedState } from "$root/defaults/interfaces.ts";
|
|
import { eq } from "npm:drizzle-orm@0.45.2";
|
|
|
|
const NOT_FOUND = () =>
|
|
new Response(
|
|
JSON.stringify({ error: "Ressource introuvable" }),
|
|
{ status: 404, headers: { "content-type": "application/json" } },
|
|
);
|
|
|
|
const FORBIDDEN = () => new Response(null, { status: 403 });
|
|
|
|
export const handler: Handlers<null, AuthenticatedState> = {
|
|
// #10 GET /students/{numEtud}
|
|
async GET(
|
|
_request: Request,
|
|
context: FreshContext<AuthenticatedState>,
|
|
): Promise<Response> {
|
|
if (context.state.session.eduPersonPrimaryAffiliation !== "employee") {
|
|
return FORBIDDEN();
|
|
}
|
|
|
|
const numEtud = Number(context.params.numEtud);
|
|
const student = await db
|
|
.select()
|
|
.from(students)
|
|
.where(eq(students.numEtud, numEtud))
|
|
.then((rows) => rows[0] ?? null);
|
|
|
|
if (!student) return NOT_FOUND();
|
|
|
|
return new Response(JSON.stringify(student), {
|
|
headers: { "content-type": "application/json" },
|
|
});
|
|
},
|
|
|
|
// #11 PUT /students/{numEtud}
|
|
async PUT(
|
|
request: Request,
|
|
context: FreshContext<AuthenticatedState>,
|
|
): Promise<Response> {
|
|
if (context.state.session.eduPersonPrimaryAffiliation !== "employee") {
|
|
return FORBIDDEN();
|
|
}
|
|
|
|
const numEtud = Number(context.params.numEtud);
|
|
const body: { nom?: string; prenom?: string; idPromo?: string } =
|
|
await request.json();
|
|
|
|
const set: { nom?: string; prenom?: string; idPromo?: string } = {};
|
|
if (body.nom !== undefined) set.nom = body.nom;
|
|
if (body.prenom !== undefined) set.prenom = body.prenom;
|
|
if (body.idPromo !== undefined) set.idPromo = body.idPromo;
|
|
|
|
if (Object.keys(set).length === 0) {
|
|
return new Response(
|
|
JSON.stringify({ error: "Au moins un champ requis" }),
|
|
{ status: 400, headers: { "content-type": "application/json" } },
|
|
);
|
|
}
|
|
|
|
const [updated] = await db
|
|
.update(students)
|
|
.set(set)
|
|
.where(eq(students.numEtud, numEtud))
|
|
.returning();
|
|
|
|
if (!updated) return NOT_FOUND();
|
|
|
|
return new Response(JSON.stringify(updated), {
|
|
headers: { "content-type": "application/json" },
|
|
});
|
|
},
|
|
|
|
// #12 DELETE /students/{numEtud}
|
|
// Cascade: deletes notes, ajustements, mobility for this student.
|
|
async DELETE(
|
|
_request: Request,
|
|
context: FreshContext<AuthenticatedState>,
|
|
): Promise<Response> {
|
|
if (context.state.session.eduPersonPrimaryAffiliation !== "employee") {
|
|
return FORBIDDEN();
|
|
}
|
|
|
|
const numEtud = Number(context.params.numEtud);
|
|
|
|
const student = await db
|
|
.select()
|
|
.from(students)
|
|
.where(eq(students.numEtud, numEtud))
|
|
.then((r) => r[0] ?? null);
|
|
|
|
if (!student) return NOT_FOUND();
|
|
|
|
await db.transaction(async (tx) => {
|
|
await tx.delete(notes).where(eq(notes.numEtud, numEtud));
|
|
await tx.delete(ajustements).where(eq(ajustements.numEtud, numEtud));
|
|
await tx.delete(mobility).where(eq(mobility.studentId, numEtud));
|
|
await tx.delete(students).where(eq(students.numEtud, numEtud));
|
|
});
|
|
|
|
return new Response(null, { status: 204 });
|
|
},
|
|
};
|