Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| b6ad667e90 | |||
| c155bfba5b |
@@ -6,26 +6,9 @@ on:
|
|||||||
- main
|
- main
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
check-code:
|
|
||||||
name: "Check Deno code"
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v4
|
|
||||||
|
|
||||||
- uses: denoland/setup-deno@v2
|
|
||||||
with:
|
|
||||||
deno-version: v2.x
|
|
||||||
|
|
||||||
- name: Check formatting
|
|
||||||
run: deno fmt --check
|
|
||||||
|
|
||||||
- name: Check linting
|
|
||||||
run: deno lint
|
|
||||||
|
|
||||||
deploy:
|
deploy:
|
||||||
name: "Build Docker image"
|
name: "Build Docker image"
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
needs: check-code
|
|
||||||
steps:
|
steps:
|
||||||
- name: Login to Docker Hub
|
- name: Login to Docker Hub
|
||||||
uses: docker/login-action@v3
|
uses: docker/login-action@v3
|
||||||
|
|||||||
@@ -4,10 +4,6 @@ on:
|
|||||||
pull_request:
|
pull_request:
|
||||||
branches:
|
branches:
|
||||||
- main
|
- main
|
||||||
- develop
|
|
||||||
push:
|
|
||||||
branches:
|
|
||||||
- develop
|
|
||||||
|
|
||||||
permissions:
|
permissions:
|
||||||
contents: read
|
contents: read
|
||||||
|
|||||||
@@ -4,16 +4,32 @@
|
|||||||
|
|
||||||
import * as $_apps_layout from "./routes/(apps)/_layout.tsx";
|
import * as $_apps_layout from "./routes/(apps)/_layout.tsx";
|
||||||
import * as $_apps_middleware from "./routes/(apps)/_middleware.ts";
|
import * as $_apps_middleware from "./routes/(apps)/_middleware.ts";
|
||||||
|
import * as $_apps_admin_api_example from "./routes/(apps)/admin/api/example.ts";
|
||||||
|
import * as $_apps_admin_api_modules from "./routes/(apps)/admin/api/modules.ts";
|
||||||
|
import * as $_apps_admin_api_modules_idModule_ from "./routes/(apps)/admin/api/modules/[idModule].ts";
|
||||||
|
import * as $_apps_admin_api_permissions from "./routes/(apps)/admin/api/permissions.ts";
|
||||||
|
import * as $_apps_admin_api_roles from "./routes/(apps)/admin/api/roles.ts";
|
||||||
|
import * as $_apps_admin_api_roles_idRole_ from "./routes/(apps)/admin/api/roles/[idRole].ts";
|
||||||
|
import * as $_apps_admin_api_users from "./routes/(apps)/admin/api/users.ts";
|
||||||
|
import * as $_apps_admin_api_users_id_ from "./routes/(apps)/admin/api/users/[id].ts";
|
||||||
|
import * as $_apps_admin_index from "./routes/(apps)/admin/index.tsx";
|
||||||
|
import * as $_apps_admin_partials_index from "./routes/(apps)/admin/partials/index.tsx";
|
||||||
import * as $_apps_mobility_api_insert_mobility from "./routes/(apps)/mobility/api/insert_mobility.ts";
|
import * as $_apps_mobility_api_insert_mobility from "./routes/(apps)/mobility/api/insert_mobility.ts";
|
||||||
import * as $_apps_mobility_index from "./routes/(apps)/mobility/index.tsx";
|
import * as $_apps_mobility_index from "./routes/(apps)/mobility/index.tsx";
|
||||||
import * as $_apps_mobility_partials_admin_edit_mobility from "./routes/(apps)/mobility/partials/(admin)/edit_mobility.tsx";
|
import * as $_apps_mobility_partials_admin_edit_mobility from "./routes/(apps)/mobility/partials/(admin)/edit_mobility.tsx";
|
||||||
import * as $_apps_mobility_partials_index from "./routes/(apps)/mobility/partials/index.tsx";
|
import * as $_apps_mobility_partials_index from "./routes/(apps)/mobility/partials/index.tsx";
|
||||||
import * as $_apps_mobility_partials_overview from "./routes/(apps)/mobility/partials/overview.tsx";
|
import * as $_apps_mobility_partials_overview from "./routes/(apps)/mobility/partials/overview.tsx";
|
||||||
|
import * as $_apps_notes_api_notes from "./routes/(apps)/notes/api/notes.ts";
|
||||||
|
import * as $_apps_notes_api_ues from "./routes/(apps)/notes/api/ues.ts";
|
||||||
import * as $_apps_notes_index from "./routes/(apps)/notes/index.tsx";
|
import * as $_apps_notes_index from "./routes/(apps)/notes/index.tsx";
|
||||||
import * as $_apps_notes_partials_admin_courses from "./routes/(apps)/notes/partials/(admin)/courses.tsx";
|
import * as $_apps_notes_partials_admin_courses from "./routes/(apps)/notes/partials/(admin)/courses.tsx";
|
||||||
import * as $_apps_notes_partials_index from "./routes/(apps)/notes/partials/index.tsx";
|
import * as $_apps_notes_partials_index from "./routes/(apps)/notes/partials/index.tsx";
|
||||||
import * as $_apps_notes_partials_notes from "./routes/(apps)/notes/partials/notes.tsx";
|
import * as $_apps_notes_partials_notes from "./routes/(apps)/notes/partials/notes.tsx";
|
||||||
|
import * as $_apps_students_api_promotions from "./routes/(apps)/students/api/promotions.ts";
|
||||||
|
import * as $_apps_students_api_promotions_idPromo_ from "./routes/(apps)/students/api/promotions/[idPromo].ts";
|
||||||
import * as $_apps_students_api_students from "./routes/(apps)/students/api/students.ts";
|
import * as $_apps_students_api_students from "./routes/(apps)/students/api/students.ts";
|
||||||
|
import * as $_apps_students_api_students_numEtud_ from "./routes/(apps)/students/api/students/[numEtud].ts";
|
||||||
|
import * as $_apps_students_api_students_import_csv from "./routes/(apps)/students/api/students/import-csv.ts";
|
||||||
import * as $_apps_students_index from "./routes/(apps)/students/index.tsx";
|
import * as $_apps_students_index from "./routes/(apps)/students/index.tsx";
|
||||||
import * as $_apps_students_partials_admin_consult from "./routes/(apps)/students/partials/(admin)/consult.tsx";
|
import * as $_apps_students_partials_admin_consult from "./routes/(apps)/students/partials/(admin)/consult.tsx";
|
||||||
import * as $_apps_students_partials_admin_upload from "./routes/(apps)/students/partials/(admin)/upload.tsx";
|
import * as $_apps_students_partials_admin_upload from "./routes/(apps)/students/partials/(admin)/upload.tsx";
|
||||||
@@ -41,6 +57,18 @@ const manifest = {
|
|||||||
routes: {
|
routes: {
|
||||||
"./routes/(apps)/_layout.tsx": $_apps_layout,
|
"./routes/(apps)/_layout.tsx": $_apps_layout,
|
||||||
"./routes/(apps)/_middleware.ts": $_apps_middleware,
|
"./routes/(apps)/_middleware.ts": $_apps_middleware,
|
||||||
|
"./routes/(apps)/admin/api/example.ts": $_apps_admin_api_example,
|
||||||
|
"./routes/(apps)/admin/api/modules.ts": $_apps_admin_api_modules,
|
||||||
|
"./routes/(apps)/admin/api/modules/[idModule].ts":
|
||||||
|
$_apps_admin_api_modules_idModule_,
|
||||||
|
"./routes/(apps)/admin/api/permissions.ts": $_apps_admin_api_permissions,
|
||||||
|
"./routes/(apps)/admin/api/roles.ts": $_apps_admin_api_roles,
|
||||||
|
"./routes/(apps)/admin/api/roles/[idRole].ts":
|
||||||
|
$_apps_admin_api_roles_idRole_,
|
||||||
|
"./routes/(apps)/admin/api/users.ts": $_apps_admin_api_users,
|
||||||
|
"./routes/(apps)/admin/api/users/[id].ts": $_apps_admin_api_users_id_,
|
||||||
|
"./routes/(apps)/admin/index.tsx": $_apps_admin_index,
|
||||||
|
"./routes/(apps)/admin/partials/index.tsx": $_apps_admin_partials_index,
|
||||||
"./routes/(apps)/mobility/api/insert_mobility.ts":
|
"./routes/(apps)/mobility/api/insert_mobility.ts":
|
||||||
$_apps_mobility_api_insert_mobility,
|
$_apps_mobility_api_insert_mobility,
|
||||||
"./routes/(apps)/mobility/index.tsx": $_apps_mobility_index,
|
"./routes/(apps)/mobility/index.tsx": $_apps_mobility_index,
|
||||||
@@ -50,12 +78,22 @@ const manifest = {
|
|||||||
$_apps_mobility_partials_index,
|
$_apps_mobility_partials_index,
|
||||||
"./routes/(apps)/mobility/partials/overview.tsx":
|
"./routes/(apps)/mobility/partials/overview.tsx":
|
||||||
$_apps_mobility_partials_overview,
|
$_apps_mobility_partials_overview,
|
||||||
|
"./routes/(apps)/notes/api/notes.ts": $_apps_notes_api_notes,
|
||||||
|
"./routes/(apps)/notes/api/ues.ts": $_apps_notes_api_ues,
|
||||||
"./routes/(apps)/notes/index.tsx": $_apps_notes_index,
|
"./routes/(apps)/notes/index.tsx": $_apps_notes_index,
|
||||||
"./routes/(apps)/notes/partials/(admin)/courses.tsx":
|
"./routes/(apps)/notes/partials/(admin)/courses.tsx":
|
||||||
$_apps_notes_partials_admin_courses,
|
$_apps_notes_partials_admin_courses,
|
||||||
"./routes/(apps)/notes/partials/index.tsx": $_apps_notes_partials_index,
|
"./routes/(apps)/notes/partials/index.tsx": $_apps_notes_partials_index,
|
||||||
"./routes/(apps)/notes/partials/notes.tsx": $_apps_notes_partials_notes,
|
"./routes/(apps)/notes/partials/notes.tsx": $_apps_notes_partials_notes,
|
||||||
|
"./routes/(apps)/students/api/promotions.ts":
|
||||||
|
$_apps_students_api_promotions,
|
||||||
|
"./routes/(apps)/students/api/promotions/[idPromo].ts":
|
||||||
|
$_apps_students_api_promotions_idPromo_,
|
||||||
"./routes/(apps)/students/api/students.ts": $_apps_students_api_students,
|
"./routes/(apps)/students/api/students.ts": $_apps_students_api_students,
|
||||||
|
"./routes/(apps)/students/api/students/[numEtud].ts":
|
||||||
|
$_apps_students_api_students_numEtud_,
|
||||||
|
"./routes/(apps)/students/api/students/import-csv.ts":
|
||||||
|
$_apps_students_api_students_import_csv,
|
||||||
"./routes/(apps)/students/index.tsx": $_apps_students_index,
|
"./routes/(apps)/students/index.tsx": $_apps_students_index,
|
||||||
"./routes/(apps)/students/partials/(admin)/consult.tsx":
|
"./routes/(apps)/students/partials/(admin)/consult.tsx":
|
||||||
$_apps_students_partials_admin_consult,
|
$_apps_students_partials_admin_consult,
|
||||||
|
|||||||
@@ -40,68 +40,4 @@ export const handler: Handlers<null, AuthenticatedState> = {
|
|||||||
headers: { "content-type": "application/json" },
|
headers: { "content-type": "application/json" },
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
|
||||||
// #51 PUT /ajustements/{numEtud}/{idUE}
|
|
||||||
async PUT(
|
|
||||||
request: Request,
|
|
||||||
context: FreshContext<AuthenticatedState>,
|
|
||||||
): Promise<Response> {
|
|
||||||
if (context.state.session.eduPersonPrimaryAffiliation !== "employee") {
|
|
||||||
return FORBIDDEN;
|
|
||||||
}
|
|
||||||
|
|
||||||
const numEtud = Number(context.params.numEtud);
|
|
||||||
const idUE = Number(context.params.idUE);
|
|
||||||
|
|
||||||
if (isNaN(numEtud) || isNaN(idUE)) {
|
|
||||||
return new Response("Paramètres invalides", { status: 400 });
|
|
||||||
}
|
|
||||||
|
|
||||||
const body: { valeur: number } = await request.json();
|
|
||||||
|
|
||||||
if (body.valeur === undefined) {
|
|
||||||
return new Response(JSON.stringify({ error: "Champ requis: valeur" }), {
|
|
||||||
status: 400,
|
|
||||||
headers: { "content-type": "application/json" },
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
const [updated] = await db
|
|
||||||
.update(ajustements)
|
|
||||||
.set({ valeur: body.valeur })
|
|
||||||
.where(eq(ajustements.numEtud, numEtud), eq(ajustements.idUE, idUE))
|
|
||||||
.returning();
|
|
||||||
|
|
||||||
if (!updated) return NOT_FOUND;
|
|
||||||
|
|
||||||
return new Response(JSON.stringify(updated), {
|
|
||||||
headers: { "content-type": "application/json" },
|
|
||||||
});
|
|
||||||
},
|
|
||||||
|
|
||||||
// #52 DELETE /ajustements/{numEtud}/{idUE}
|
|
||||||
async DELETE(
|
|
||||||
_request: Request,
|
|
||||||
context: FreshContext<AuthenticatedState>,
|
|
||||||
): Promise<Response> {
|
|
||||||
if (context.state.session.eduPersonPrimaryAffiliation !== "employee") {
|
|
||||||
return FORBIDDEN;
|
|
||||||
}
|
|
||||||
|
|
||||||
const numEtud = Number(context.params.numEtud);
|
|
||||||
const idUE = Number(context.params.idUE);
|
|
||||||
|
|
||||||
if (isNaN(numEtud) || isNaN(idUE)) {
|
|
||||||
return new Response("Paramètres invalides", { status: 400 });
|
|
||||||
}
|
|
||||||
|
|
||||||
const [deleted] = await db
|
|
||||||
.delete(ajustements)
|
|
||||||
.where(eq(ajustements.numEtud, numEtud), eq(ajustements.idUE, idUE))
|
|
||||||
.returning();
|
|
||||||
|
|
||||||
if (!deleted) return NOT_FOUND;
|
|
||||||
|
|
||||||
return new Response(null, { status: 204 });
|
|
||||||
},
|
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -1,121 +0,0 @@
|
|||||||
import { Handlers } from "$fresh/server.ts";
|
|
||||||
import { db } from "../../../../../../databases/db.ts";
|
|
||||||
import { notes } from "../../../../../../databases/schema.ts";
|
|
||||||
import { and, eq } from "npm:drizzle-orm";
|
|
||||||
|
|
||||||
export const handler: Handlers = {
|
|
||||||
// #45 GET /notes/:numEtud/:idModule
|
|
||||||
async GET(_request, context) {
|
|
||||||
try {
|
|
||||||
const numEtud = parseInt(context.params.numEtud);
|
|
||||||
const { idModule } = context.params;
|
|
||||||
|
|
||||||
if (isNaN(numEtud)) {
|
|
||||||
return new Response(JSON.stringify({ error: "Paramètre numEtud invalide" }), {
|
|
||||||
status: 400,
|
|
||||||
headers: { "Content-Type": "application/json" },
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
const result = await db.select().from(notes).where(
|
|
||||||
and(
|
|
||||||
eq(notes.numEtud, numEtud),
|
|
||||||
eq(notes.idModule, idModule),
|
|
||||||
),
|
|
||||||
);
|
|
||||||
|
|
||||||
if (result.length === 0) {
|
|
||||||
return new Response(JSON.stringify({ error: "Ressource introuvable" }), {
|
|
||||||
status: 404,
|
|
||||||
headers: { "Content-Type": "application/json" },
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
return new Response(JSON.stringify(result[0]), {
|
|
||||||
status: 200,
|
|
||||||
headers: { "Content-Type": "application/json" },
|
|
||||||
});
|
|
||||||
} catch (error) {
|
|
||||||
console.error("Error fetching note:", error);
|
|
||||||
return new Response("Failed to fetch data", { status: 500 });
|
|
||||||
}
|
|
||||||
},
|
|
||||||
|
|
||||||
// #46 PUT /notes/:numEtud/:idModule
|
|
||||||
async PUT(request, context) {
|
|
||||||
try {
|
|
||||||
const numEtud = parseInt(context.params.numEtud);
|
|
||||||
const { idModule } = context.params;
|
|
||||||
|
|
||||||
if (isNaN(numEtud)) {
|
|
||||||
return new Response(JSON.stringify({ error: "Paramètre numEtud invalide" }), {
|
|
||||||
status: 400,
|
|
||||||
headers: { "Content-Type": "application/json" },
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
const body = await request.json();
|
|
||||||
const { note } = body;
|
|
||||||
|
|
||||||
if (note === undefined) {
|
|
||||||
return new Response("Champ 'note' manquant", { status: 400 });
|
|
||||||
}
|
|
||||||
|
|
||||||
const result = await db.update(notes).set({ note }).where(
|
|
||||||
and(
|
|
||||||
eq(notes.numEtud, numEtud),
|
|
||||||
eq(notes.idModule, idModule),
|
|
||||||
),
|
|
||||||
).returning();
|
|
||||||
|
|
||||||
if (result.length === 0) {
|
|
||||||
return new Response(JSON.stringify({ error: "Ressource introuvable" }), {
|
|
||||||
status: 404,
|
|
||||||
headers: { "Content-Type": "application/json" },
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
return new Response(JSON.stringify(result[0]), {
|
|
||||||
status: 200,
|
|
||||||
headers: { "Content-Type": "application/json" },
|
|
||||||
});
|
|
||||||
} catch (error) {
|
|
||||||
console.error("Error updating note:", error);
|
|
||||||
return new Response("Failed to update note", { status: 500 });
|
|
||||||
}
|
|
||||||
},
|
|
||||||
|
|
||||||
// #47 DELETE /notes/:numEtud/:idModule
|
|
||||||
async DELETE(_request, context) {
|
|
||||||
try {
|
|
||||||
const numEtud = parseInt(context.params.numEtud);
|
|
||||||
const { idModule } = context.params;
|
|
||||||
|
|
||||||
if (isNaN(numEtud)) {
|
|
||||||
return new Response(JSON.stringify({ error: "Paramètre numEtud invalide" }), {
|
|
||||||
status: 400,
|
|
||||||
headers: { "Content-Type": "application/json" },
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
const result = await db.delete(notes).where(
|
|
||||||
and(
|
|
||||||
eq(notes.numEtud, numEtud),
|
|
||||||
eq(notes.idModule, idModule),
|
|
||||||
),
|
|
||||||
).returning();
|
|
||||||
|
|
||||||
if (result.length === 0) {
|
|
||||||
return new Response(JSON.stringify({ error: "Ressource introuvable" }), {
|
|
||||||
status: 404,
|
|
||||||
headers: { "Content-Type": "application/json" },
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
return new Response(null, { status: 204 });
|
|
||||||
} catch (error) {
|
|
||||||
console.error("Error deleting note:", error);
|
|
||||||
return new Response("Failed to delete note", { status: 500 });
|
|
||||||
}
|
|
||||||
},
|
|
||||||
};
|
|
||||||
@@ -4,36 +4,6 @@ import { ueModules } from "../../../../databases/schema.ts";
|
|||||||
import { and, eq } from "npm:drizzle-orm";
|
import { and, eq } from "npm:drizzle-orm";
|
||||||
|
|
||||||
export const handler: Handlers = {
|
export const handler: Handlers = {
|
||||||
// #37 GET /ue-modules
|
|
||||||
async GET(request) {
|
|
||||||
try {
|
|
||||||
const url = new URL(request.url);
|
|
||||||
const idPromo = url.searchParams.get("idPromo");
|
|
||||||
const idUEParam = url.searchParams.get("idUE");
|
|
||||||
|
|
||||||
const idUE = idUEParam ? parseInt(idUEParam) : null;
|
|
||||||
|
|
||||||
if (idUEParam && isNaN(idUE!)) {
|
|
||||||
return new Response("Paramètre idUE invalide", { status: 400 });
|
|
||||||
}
|
|
||||||
|
|
||||||
const result = await db.select().from(ueModules).where(
|
|
||||||
and(
|
|
||||||
idPromo ? eq(ueModules.idPromo, idPromo) : undefined,
|
|
||||||
idUE ? eq(ueModules.idUE, idUE) : undefined,
|
|
||||||
),
|
|
||||||
);
|
|
||||||
|
|
||||||
return new Response(JSON.stringify(result), {
|
|
||||||
status: 200,
|
|
||||||
headers: { "Content-Type": "application/json" },
|
|
||||||
});
|
|
||||||
} catch (error) {
|
|
||||||
console.error("Error fetching UE-modules:", error);
|
|
||||||
return new Response("Failed to fetch data", { status: 500 });
|
|
||||||
}
|
|
||||||
},
|
|
||||||
|
|
||||||
// #38 POST /ue-modules
|
// #38 POST /ue-modules
|
||||||
async POST(request) {
|
async POST(request) {
|
||||||
try {
|
try {
|
||||||
|
|||||||
@@ -1,136 +0,0 @@
|
|||||||
import { FreshContext, Handlers } from "$fresh/server.ts";
|
|
||||||
import { db } from "$root/databases/db.ts";
|
|
||||||
import { ueModules } from "$root/databases/schema.ts";
|
|
||||||
import { AuthenticatedState } from "$root/defaults/interfaces.ts";
|
|
||||||
import { and, eq } from "npm:drizzle-orm@0.45.2";
|
|
||||||
|
|
||||||
const NOT_FOUND = new Response(
|
|
||||||
JSON.stringify({ error: "Association UE-Module introuvable" }),
|
|
||||||
{ status: 404, headers: { "content-type": "application/json" } },
|
|
||||||
);
|
|
||||||
|
|
||||||
const FORBIDDEN = new Response(null, { status: 403 });
|
|
||||||
|
|
||||||
const BAD_REQUEST = new Response(
|
|
||||||
JSON.stringify({ error: "Paramètres invalides" }),
|
|
||||||
{ status: 400, headers: { "content-type": "application/json" } },
|
|
||||||
);
|
|
||||||
|
|
||||||
export const handler: Handlers<null, AuthenticatedState> = {
|
|
||||||
// #39 GET /ue-modules/{idModule}/{idUE}/{idPromo}
|
|
||||||
async GET(
|
|
||||||
_request: Request,
|
|
||||||
context: FreshContext<AuthenticatedState>,
|
|
||||||
): Promise<Response> {
|
|
||||||
if (context.state.session.eduPersonPrimaryAffiliation !== "employee") {
|
|
||||||
return FORBIDDEN;
|
|
||||||
}
|
|
||||||
|
|
||||||
const idModule = context.params.idModule;
|
|
||||||
const idUE = Number(context.params.idUE);
|
|
||||||
const idPromo = context.params.idPromo;
|
|
||||||
|
|
||||||
if (isNaN(idUE)) {
|
|
||||||
return BAD_REQUEST;
|
|
||||||
}
|
|
||||||
|
|
||||||
const ueModuleAssociation = await db
|
|
||||||
.select()
|
|
||||||
.from(ueModules)
|
|
||||||
.where(
|
|
||||||
eq(ueModules.idModule, idModule),
|
|
||||||
eq(ueModules.idUE, idUE),
|
|
||||||
eq(ueModules.idPromo, idPromo),
|
|
||||||
)
|
|
||||||
.then((rows) => rows[0] ?? null);
|
|
||||||
|
|
||||||
if (!ueModuleAssociation) return NOT_FOUND;
|
|
||||||
|
|
||||||
return new Response(JSON.stringify(ueModuleAssociation), {
|
|
||||||
headers: { "content-type": "application/json" },
|
|
||||||
});
|
|
||||||
},
|
|
||||||
|
|
||||||
// #40 PUT /ue-modules/{idModule}/{idUE}/{idPromo}
|
|
||||||
async PUT(
|
|
||||||
request: Request,
|
|
||||||
context: FreshContext<AuthenticatedState>,
|
|
||||||
): Promise<Response> {
|
|
||||||
if (context.state.session.eduPersonPrimaryAffiliation !== "employee") {
|
|
||||||
return FORBIDDEN;
|
|
||||||
}
|
|
||||||
|
|
||||||
const idModule = context.params.idModule;
|
|
||||||
const idUE = Number(context.params.idUE);
|
|
||||||
const idPromo = context.params.idPromo;
|
|
||||||
|
|
||||||
if (isNaN(idUE)) {
|
|
||||||
return BAD_REQUEST;
|
|
||||||
}
|
|
||||||
|
|
||||||
const body: { coeff: number } = await request.json();
|
|
||||||
|
|
||||||
if (typeof body.coeff !== "number") {
|
|
||||||
return new Response(
|
|
||||||
JSON.stringify({ error: "Le champ 'coeff' doit être un nombre" }),
|
|
||||||
{ status: 400, headers: { "content-type": "application/json" } },
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
const [updated] = await db
|
|
||||||
.update(ueModules)
|
|
||||||
.set({ coeff: body.coeff })
|
|
||||||
.where(
|
|
||||||
and(
|
|
||||||
eq(ueModules.idModule, idModule),
|
|
||||||
eq(ueModules.idUE, idUE),
|
|
||||||
eq(ueModules.idPromo, idPromo),
|
|
||||||
),
|
|
||||||
)
|
|
||||||
.returning();
|
|
||||||
|
|
||||||
if (!updated) return NOT_FOUND;
|
|
||||||
|
|
||||||
return new Response(JSON.stringify({
|
|
||||||
idModule: updated.idModule,
|
|
||||||
idUE: updated.idUE,
|
|
||||||
idPromo: updated.idPromo,
|
|
||||||
coeff: updated.coeff,
|
|
||||||
}), {
|
|
||||||
headers: { "content-type": "application/json" },
|
|
||||||
});
|
|
||||||
},
|
|
||||||
|
|
||||||
// #41 DELETE /ue-modules/{idModule}/{idUE}/{idPromo}
|
|
||||||
async DELETE(
|
|
||||||
_request: Request,
|
|
||||||
context: FreshContext<AuthenticatedState>,
|
|
||||||
): Promise<Response> {
|
|
||||||
if (context.state.session.eduPersonPrimaryAffiliation !== "employee") {
|
|
||||||
return FORBIDDEN;
|
|
||||||
}
|
|
||||||
|
|
||||||
const idModule = context.params.idModule;
|
|
||||||
const idUE = Number(context.params.idUE);
|
|
||||||
const idPromo = context.params.idPromo;
|
|
||||||
|
|
||||||
if (isNaN(idUE)) {
|
|
||||||
return BAD_REQUEST;
|
|
||||||
}
|
|
||||||
|
|
||||||
const [deleted] = await db
|
|
||||||
.delete(ueModules)
|
|
||||||
.where(
|
|
||||||
and(
|
|
||||||
eq(ueModules.idModule, idModule),
|
|
||||||
eq(ueModules.idUE, idUE),
|
|
||||||
eq(ueModules.idPromo, idPromo),
|
|
||||||
),
|
|
||||||
)
|
|
||||||
.returning();
|
|
||||||
|
|
||||||
if (!deleted) return NOT_FOUND;
|
|
||||||
|
|
||||||
return new Response(null, { status: 204 });
|
|
||||||
},
|
|
||||||
};
|
|
||||||
@@ -34,70 +34,4 @@ export const handler: Handlers = {
|
|||||||
return new Response("Failed to fetch data", { status: 500 });
|
return new Response("Failed to fetch data", { status: 500 });
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
// #35 PUT /ues/:idUE
|
|
||||||
async PUT(request, context) {
|
|
||||||
try {
|
|
||||||
const idUE = parseInt(context.params.idUE);
|
|
||||||
|
|
||||||
if (isNaN(idUE)) {
|
|
||||||
return new Response(JSON.stringify({ error: "Paramètre idUE invalide" }), {
|
|
||||||
status: 400,
|
|
||||||
headers: { "Content-Type": "application/json" },
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
const body = await request.json();
|
|
||||||
const { nom } = body;
|
|
||||||
|
|
||||||
if (!nom) {
|
|
||||||
return new Response("Champ 'nom' manquant", { status: 400 });
|
|
||||||
}
|
|
||||||
|
|
||||||
const result = await db.update(ues).set({ nom }).where(eq(ues.id, idUE)).returning();
|
|
||||||
|
|
||||||
if (result.length === 0) {
|
|
||||||
return new Response(JSON.stringify({ error: "Ressource introuvable" }), {
|
|
||||||
status: 404,
|
|
||||||
headers: { "Content-Type": "application/json" },
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
return new Response(JSON.stringify(result[0]), {
|
|
||||||
status: 200,
|
|
||||||
headers: { "Content-Type": "application/json" },
|
|
||||||
});
|
|
||||||
} catch (error) {
|
|
||||||
console.error("Error updating UE:", error);
|
|
||||||
return new Response("Failed to update UE", { status: 500 });
|
|
||||||
}
|
|
||||||
},
|
|
||||||
|
|
||||||
// #36 DELETE /ues/:idUE
|
|
||||||
async DELETE(_request, context) {
|
|
||||||
try {
|
|
||||||
const idUE = parseInt(context.params.idUE);
|
|
||||||
|
|
||||||
if (isNaN(idUE)) {
|
|
||||||
return new Response(JSON.stringify({ error: "Paramètre idUE invalide" }), {
|
|
||||||
status: 400,
|
|
||||||
headers: { "Content-Type": "application/json" },
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
const result = await db.delete(ues).where(eq(ues.id, idUE)).returning();
|
|
||||||
|
|
||||||
if (result.length === 0) {
|
|
||||||
return new Response(JSON.stringify({ error: "Ressource introuvable" }), {
|
|
||||||
status: 404,
|
|
||||||
headers: { "Content-Type": "application/json" },
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
return new Response(null, { status: 204 });
|
|
||||||
} catch (error) {
|
|
||||||
console.error("Error deleting UE:", error);
|
|
||||||
return new Response("Failed to delete UE", { status: 500 });
|
|
||||||
}
|
|
||||||
},
|
|
||||||
};
|
};
|
||||||
Reference in New Issue
Block a user