Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| dc6848c533 | |||
| b8d359a507 |
+52
-53
@@ -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"),
|
||||||
|
});
|
||||||
|
|||||||
@@ -0,0 +1,97 @@
|
|||||||
|
import { FreshContext, Handlers } from "$fresh/server.ts";
|
||||||
|
import { db } from "$root/databases/db.ts";
|
||||||
|
import { rolePermissions, roles } from "$root/databases/schema.ts";
|
||||||
|
import { AuthenticatedState } from "$root/defaults/interfaces.ts";
|
||||||
|
import { eq } from "npm:drizzle-orm";
|
||||||
|
|
||||||
|
const NOT_FOUND = new Response(
|
||||||
|
JSON.stringify({ error: "Ressource introuvable" }),
|
||||||
|
{ status: 404, headers: { "content-type": "application/json" } },
|
||||||
|
);
|
||||||
|
|
||||||
|
async function getRoleWithPermissions(
|
||||||
|
id: number,
|
||||||
|
): Promise<{ id: number; nom: string; permissions: string[] } | null> {
|
||||||
|
const role = await db
|
||||||
|
.select()
|
||||||
|
.from(roles)
|
||||||
|
.where(eq(roles.id, id))
|
||||||
|
.then((rows) => rows[0] ?? null);
|
||||||
|
|
||||||
|
if (!role) return null;
|
||||||
|
|
||||||
|
const perms = await db
|
||||||
|
.select({ idPermission: rolePermissions.idPermission })
|
||||||
|
.from(rolePermissions)
|
||||||
|
.where(eq(rolePermissions.idRole, id));
|
||||||
|
|
||||||
|
return { id: role.id, nom: role.nom, permissions: perms.map((p) => p.idPermission) };
|
||||||
|
}
|
||||||
|
|
||||||
|
export const handler: Handlers<null, AuthenticatedState> = {
|
||||||
|
// #67 GET /roles/{idRole}
|
||||||
|
async GET(
|
||||||
|
_request: Request,
|
||||||
|
context: FreshContext<AuthenticatedState>,
|
||||||
|
): Promise<Response> {
|
||||||
|
const id = Number(context.params.idRole);
|
||||||
|
const role = await getRoleWithPermissions(id);
|
||||||
|
|
||||||
|
if (!role) return NOT_FOUND;
|
||||||
|
|
||||||
|
return new Response(JSON.stringify(role), {
|
||||||
|
headers: { "content-type": "application/json" },
|
||||||
|
});
|
||||||
|
},
|
||||||
|
|
||||||
|
// #68 PUT /roles/{idRole}
|
||||||
|
async PUT(
|
||||||
|
request: Request,
|
||||||
|
context: FreshContext<AuthenticatedState>,
|
||||||
|
): Promise<Response> {
|
||||||
|
const id = Number(context.params.idRole);
|
||||||
|
const body: { nom: string; permissions: string[] } = await request.json();
|
||||||
|
|
||||||
|
const [updated] = await db
|
||||||
|
.update(roles)
|
||||||
|
.set({ nom: body.nom })
|
||||||
|
.where(eq(roles.id, id))
|
||||||
|
.returning();
|
||||||
|
|
||||||
|
if (!updated) return NOT_FOUND;
|
||||||
|
|
||||||
|
// Reset permissions
|
||||||
|
await db.delete(rolePermissions).where(eq(rolePermissions.idRole, id));
|
||||||
|
|
||||||
|
if (body.permissions?.length) {
|
||||||
|
await db.insert(rolePermissions).values(
|
||||||
|
body.permissions.map((p) => ({ idRole: id, idPermission: p })),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
const role = await getRoleWithPermissions(id);
|
||||||
|
return new Response(JSON.stringify(role), {
|
||||||
|
headers: { "content-type": "application/json" },
|
||||||
|
});
|
||||||
|
},
|
||||||
|
|
||||||
|
// #69 DELETE /roles/{idRole}
|
||||||
|
async DELETE(
|
||||||
|
_request: Request,
|
||||||
|
context: FreshContext<AuthenticatedState>,
|
||||||
|
): Promise<Response> {
|
||||||
|
const id = Number(context.params.idRole);
|
||||||
|
|
||||||
|
// Cascade delete role_permissions first
|
||||||
|
await db.delete(rolePermissions).where(eq(rolePermissions.idRole, id));
|
||||||
|
|
||||||
|
const [deleted] = await db
|
||||||
|
.delete(roles)
|
||||||
|
.where(eq(roles.id, id))
|
||||||
|
.returning();
|
||||||
|
|
||||||
|
if (!deleted) return NOT_FOUND;
|
||||||
|
|
||||||
|
return new Response(null, { status: 204 });
|
||||||
|
},
|
||||||
|
};
|
||||||
Reference in New Issue
Block a user