Compare commits

...

2 Commits

Author SHA1 Message Date
djalim 21c936312d feat(admin/api/users): add GET and POST endpoints for users 2026-04-22 13:24:03 +02:00
djalim b8d359a507 feat(database): add roles, permissions, users, modules, and related tables
Add tables for role-based access control and academic entities.
Includes modules, UEs, notes, and adjustments.
Update students and mobility tables to reference new primary keys.
This enables richer data modeling for the application.
2026-04-22 13:17:08 +02:00
2 changed files with 113 additions and 54 deletions
+53 -54
View File
@@ -1,4 +1,5 @@
import { import {
date,
doublePrecision, doublePrecision,
integer, integer,
pgTable, pgTable,
@@ -7,7 +8,30 @@ import {
text, text,
} from "npm:drizzle-orm/pg-core"; } from "npm:drizzle-orm/pg-core";
// Ancien schéma conservé export const roles = pgTable("roles", {
id: serial("id").primaryKey(),
nom: text("nom").notNull(),
});
export const permissions = pgTable("permissions", {
id: text("id").primaryKey(),
nom: text("nom").notNull(),
});
export const rolePermissions = pgTable("role_permissions", {
idRole: integer("idRole").notNull().references(() => roles.id),
idPermission: text("idPermission").notNull().references(() => permissions.id),
}, (t) => ({
pk: primaryKey({ columns: [t.idRole, t.idPermission] }),
}));
export const users = pgTable("users", {
id: text("id").primaryKey(),
nom: text("nom").notNull(),
prenom: text("prenom").notNull(),
idRole: integer("idRole").references(() => roles.id),
});
export const promotions = pgTable("promotions", { export const promotions = pgTable("promotions", {
id: text("idPromo").primaryKey(), id: text("idPromo").primaryKey(),
annee: text("annee"), annee: text("annee"),
@@ -15,56 +39,20 @@ export const promotions = pgTable("promotions", {
export const students = pgTable("students", { export const students = pgTable("students", {
numEtud: serial("numEtud").primaryKey(), numEtud: serial("numEtud").primaryKey(),
nom: text("nom"), nom: text("nom").notNull(),
prenom: text("prenom"), prenom: text("prenom").notNull(),
idPromo: text("idPromo").references(() => promotions.id), idPromo: text("idPromo").references(() => promotions.id),
}); });
export const mobility = pgTable("mobility", {
id: serial("id").primaryKey(),
studentId: text("studentId").references(() => students.numEtud),
startDate: text("startDate"),
endDate: text("endDate"),
weeksCount: integer("weeksCount"),
destinationCountry: text("destinationCountry"),
destinationName: text("destinationName"),
mobilityStatus: text("mobilityStatus").default("N/A"),
});
// Nouveau schéma
export const roles = pgTable("roles", {
id: serial("id").primaryKey(),
nom: text("nom"),
});
export const permissions = pgTable("permissions", {
id: serial("id").primaryKey(),
nom: text("nom"),
});
export const rolePermissions = pgTable("role_permissions", {
idRole: integer("idRole").references(() => roles.id),
idPermission: integer("idPermission").references(() => permissions.id),
}, (t) => ({
pk: primaryKey({ columns: [t.idRole, t.idPermission] }),
}));
export const users = pgTable("users", {
id: text("id").primaryKey(),
nom: text("nom"),
prenom: text("prenom"),
idRole: integer("idRole").references(() => roles.id),
});
export const modules = pgTable("modules", { export const modules = pgTable("modules", {
id: text("id").primaryKey(), id: text("id").primaryKey(),
nom: text("nom"), nom: text("nom").notNull(),
}); });
export const enseignements = pgTable("enseignements", { export const enseignements = pgTable("enseignements", {
idProf: text("idProf").references(() => users.id), idProf: text("idProf").notNull().references(() => users.id),
idModule: text("idModule").references(() => modules.id), idModule: text("idModule").notNull().references(() => modules.id),
idPromo: text("idPromo").references(() => promotions.id), idPromo: text("idPromo").notNull().references(() => promotions.id),
}, (t) => ({ }, (t) => ({
pk: primaryKey({ columns: [t.idProf, t.idModule, t.idPromo] }), pk: primaryKey({ columns: [t.idProf, t.idModule, t.idPromo] }),
})); }));
@@ -75,26 +63,37 @@ export const ues = pgTable("ues", {
}); });
export const ueModules = pgTable("ue_modules", { export const ueModules = pgTable("ue_modules", {
idModule: text("idModule").references(() => modules.id), idModule: text("idModule").notNull().references(() => modules.id),
idUE: integer("idUE").references(() => ues.id), idUE: integer("idUE").notNull().references(() => ues.id),
idPromo: text("idPromo").references(() => promotions.id), idPromo: text("idPromo").notNull().references(() => promotions.id),
coeff: doublePrecision("coeff"), coeff: doublePrecision("coeff").notNull(),
}, (t) => ({ }, (t) => ({
pk: primaryKey({ columns: [t.idModule, t.idUE, t.idPromo] }), pk: primaryKey({ columns: [t.idModule, t.idUE, t.idPromo] }),
})); }));
export const notes = pgTable("notes", { export const notes = pgTable("notes", {
numEtud: integer("numEtud").references(() => students.numEtud), numEtud: integer("numEtud").notNull().references(() => students.numEtud),
idModule: text("idModule").references(() => modules.id), idModule: text("idModule").notNull().references(() => modules.id),
note: doublePrecision("note"), note: doublePrecision("note").notNull(),
}, (t) => ({ }, (t) => ({
pk: primaryKey({ columns: [t.numEtud, t.idModule] }), pk: primaryKey({ columns: [t.numEtud, t.idModule] }),
})); }));
export const ajustements = pgTable("ajustements", { export const ajustements = pgTable("ajustements", {
numEtud: integer("numEtud").references(() => students.numEtud), numEtud: integer("numEtud").notNull().references(() => students.numEtud),
idUE: integer("idUE").references(() => ues.id), idUE: integer("idUE").notNull().references(() => ues.id),
valeur: doublePrecision("valeur"), valeur: doublePrecision("valeur").notNull(),
}, (t) => ({ }, (t) => ({
pk: primaryKey({ columns: [t.numEtud, t.idUE] }), pk: primaryKey({ columns: [t.numEtud, t.idUE] }),
})); }));
export const mobility = pgTable("mobility", {
id: serial("id").primaryKey(),
studentId: integer("studentId").references(() => students.numEtud),
startDate: date("startDate"),
endDate: date("endDate"),
weeksCount: integer("weeksCount"),
destinationCountry: text("destinationCountry"),
destinationName: text("destinationName"),
mobilityStatus: text("mobilityStatus").default("N/A"),
});
+60
View File
@@ -0,0 +1,60 @@
import { FreshContext, Handlers } from "$fresh/server.ts";
import { db } from "$root/databases/db.ts";
import { users } from "$root/databases/schema.ts";
import { AuthenticatedState } from "$root/defaults/interfaces.ts";
import { eq } from "npm:drizzle-orm";
export const handler: Handlers<null, AuthenticatedState> = {
// #60 GET /users
async GET(
request: Request,
_context: FreshContext<AuthenticatedState>,
): Promise<Response> {
const url = new URL(request.url);
const idRole = url.searchParams.get("idRole");
const rows = idRole
? await db.select().from(users).where(eq(users.idRole, Number(idRole)))
: await db.select().from(users);
return new Response(JSON.stringify(rows), {
headers: { "content-type": "application/json" },
});
},
// #61 POST /users
async POST(
request: Request,
_context: FreshContext<AuthenticatedState>,
): Promise<Response> {
const body: { id: string; nom: string; prenom: string; idRole: number } =
await request.json();
if (!body.id || !body.nom || !body.prenom) {
return new Response(null, { status: 400 });
}
const existing = await db
.select()
.from(users)
.where(eq(users.id, body.id))
.then((rows) => rows[0] ?? null);
if (existing) {
return new Response(
JSON.stringify({ error: "Un utilisateur avec cet identifiant existe déjà" }),
{ status: 409, headers: { "content-type": "application/json" } },
);
}
const [created] = await db
.insert(users)
.values({ id: body.id, nom: body.nom, prenom: body.prenom, idRole: body.idRole })
.returning();
return new Response(JSON.stringify(created), {
status: 201,
headers: { "content-type": "application/json" },
});
},
};