2022-07-19 22:17:10 +02:00
|
|
|
##############################################################################
|
|
|
|
# ScoDoc
|
2023-01-02 13:16:27 +01:00
|
|
|
# Copyright (c) 1999 - 2023 Emmanuel Viennet. All rights reserved.
|
2022-07-19 22:17:10 +02:00
|
|
|
# See LICENSE
|
|
|
|
##############################################################################
|
|
|
|
|
|
|
|
"""
|
|
|
|
ScoDoc 9 API : accès aux formsemestres
|
|
|
|
"""
|
2023-04-03 17:46:31 +02:00
|
|
|
from operator import attrgetter, itemgetter
|
|
|
|
|
2023-05-15 23:39:08 +02:00
|
|
|
from flask import g, make_response, request
|
2023-04-06 16:10:32 +02:00
|
|
|
from flask_json import as_json
|
2022-07-27 16:03:14 +02:00
|
|
|
from flask_login import login_required
|
2022-03-02 16:45:47 +01:00
|
|
|
|
2022-04-20 15:50:02 +02:00
|
|
|
import app
|
2023-05-15 23:39:08 +02:00
|
|
|
from app import db
|
2023-02-22 02:13:06 +01:00
|
|
|
from app.api import api_bp as bp, api_web_bp, API_CLIENT_ERROR
|
2022-07-27 16:03:14 +02:00
|
|
|
from app.decorators import scodoc, permission_required
|
2022-08-07 19:56:25 +02:00
|
|
|
from app.scodoc.sco_utils import json_error
|
2022-05-31 16:08:57 +02:00
|
|
|
from app.comp import res_sem
|
|
|
|
from app.comp.moy_mod import ModuleImplResults
|
|
|
|
from app.comp.res_compat import NotesTableCompat
|
2022-07-27 16:03:14 +02:00
|
|
|
from app.models import (
|
|
|
|
Departement,
|
|
|
|
Evaluation,
|
|
|
|
FormSemestre,
|
|
|
|
FormSemestreEtape,
|
2022-10-28 15:14:33 +02:00
|
|
|
FormSemestreInscription,
|
|
|
|
Identite,
|
2022-07-27 16:03:14 +02:00
|
|
|
ModuleImpl,
|
2022-07-29 16:19:40 +02:00
|
|
|
NotesNotes,
|
2022-07-27 16:03:14 +02:00
|
|
|
)
|
2023-05-15 23:39:08 +02:00
|
|
|
from app.models.formsemestre import GROUPS_AUTO_ASSIGNMENT_DATA_MAX
|
2022-04-26 17:12:30 +02:00
|
|
|
from app.scodoc.sco_bulletins import get_formsemestre_bulletin_etud_json
|
2023-11-11 18:13:18 +01:00
|
|
|
from app.scodoc import sco_edt_cal
|
2022-07-21 16:46:07 +02:00
|
|
|
from app.scodoc import sco_groups
|
2022-03-04 17:16:08 +01:00
|
|
|
from app.scodoc.sco_permissions import Permission
|
2022-05-09 16:26:23 +02:00
|
|
|
from app.scodoc.sco_utils import ModuleType
|
2022-05-31 16:08:57 +02:00
|
|
|
import app.scodoc.sco_utils as scu
|
2023-02-03 22:39:45 +01:00
|
|
|
from app.tables.recap import TableRecap
|
2022-03-02 16:45:47 +01:00
|
|
|
|
|
|
|
|
2022-07-27 16:03:14 +02:00
|
|
|
@bp.route("/formsemestre/<int:formsemestre_id>")
|
|
|
|
@api_web_bp.route("/formsemestre/<int:formsemestre_id>")
|
|
|
|
@login_required
|
|
|
|
@scodoc
|
|
|
|
@permission_required(Permission.ScoView)
|
2023-04-06 16:10:32 +02:00
|
|
|
@as_json
|
2022-07-19 22:17:10 +02:00
|
|
|
def formsemestre_infos(formsemestre_id: int):
|
2022-03-02 16:45:47 +01:00
|
|
|
"""
|
2022-05-09 16:26:23 +02:00
|
|
|
Information sur le formsemestre indiqué.
|
2022-03-02 16:45:47 +01:00
|
|
|
|
2022-05-09 16:26:23 +02:00
|
|
|
formsemestre_id : l'id du formsemestre
|
2022-03-02 16:45:47 +01:00
|
|
|
|
2022-04-27 14:11:06 +02:00
|
|
|
Exemple de résultat :
|
|
|
|
{
|
2022-05-09 16:26:23 +02:00
|
|
|
"block_moyennes": false,
|
|
|
|
"bul_bgcolor": "white",
|
|
|
|
"bul_hide_xml": false,
|
|
|
|
"date_debut_iso": "2021-09-01",
|
|
|
|
"date_debut": "01/09/2021",
|
|
|
|
"date_fin_iso": "2022-08-31",
|
|
|
|
"date_fin": "31/08/2022",
|
|
|
|
"dept_id": 1,
|
|
|
|
"elt_annee_apo": null,
|
|
|
|
"elt_sem_apo": null,
|
|
|
|
"ens_can_edit_eval": false,
|
|
|
|
"etat": true,
|
|
|
|
"formation_id": 1,
|
|
|
|
"formsemestre_id": 1,
|
|
|
|
"gestion_compensation": false,
|
|
|
|
"gestion_semestrielle": false,
|
|
|
|
"id": 1,
|
|
|
|
"modalite": "FI",
|
|
|
|
"resp_can_change_ens": true,
|
|
|
|
"resp_can_edit": false,
|
|
|
|
"responsables": [1, 99], // uids
|
|
|
|
"scodoc7_id": null,
|
|
|
|
"semestre_id": 1,
|
|
|
|
"titre_formation" : "BUT GEA",
|
|
|
|
"titre_num": "BUT GEA semestre 1",
|
|
|
|
"titre": "BUT GEA",
|
|
|
|
}
|
|
|
|
|
2022-03-02 16:45:47 +01:00
|
|
|
"""
|
2022-07-27 16:03:14 +02:00
|
|
|
query = FormSemestre.query.filter_by(id=formsemestre_id)
|
|
|
|
if g.scodoc_dept:
|
|
|
|
query = query.filter_by(dept_id=g.scodoc_dept_id)
|
|
|
|
formsemestre: FormSemestre = query.first_or_404(formsemestre_id)
|
2023-04-06 16:10:32 +02:00
|
|
|
return formsemestre.to_dict_api()
|
2022-03-02 16:45:47 +01:00
|
|
|
|
|
|
|
|
2022-07-27 16:03:14 +02:00
|
|
|
@bp.route("/formsemestres/query")
|
|
|
|
@api_web_bp.route("/formsemestres/query")
|
|
|
|
@login_required
|
|
|
|
@scodoc
|
|
|
|
@permission_required(Permission.ScoView)
|
2023-04-06 16:10:32 +02:00
|
|
|
@as_json
|
2022-07-21 08:53:44 +02:00
|
|
|
def formsemestres_query():
|
2022-04-27 09:24:20 +02:00
|
|
|
"""
|
2022-07-21 08:53:44 +02:00
|
|
|
Retourne les formsemestres filtrés par
|
2023-08-11 18:44:51 +02:00
|
|
|
étape Apogée ou année scolaire ou département (acronyme ou id) ou état ou code étudiant
|
2022-04-27 09:24:20 +02:00
|
|
|
|
2022-05-03 13:35:17 +02:00
|
|
|
etape_apo : un code étape apogée
|
2022-07-21 08:53:44 +02:00
|
|
|
annee_scolaire : année de début de l'année scolaire
|
|
|
|
dept_acronym : acronyme du département (eg "RT")
|
|
|
|
dept_id : id du département
|
2022-10-28 15:14:33 +02:00
|
|
|
ine ou nip: code d'un étudiant: ramène alors tous les semestres auxquels il est inscrit.
|
2023-08-11 18:44:51 +02:00
|
|
|
etat: 0 si verrouillé, 1 sinon
|
2022-04-27 09:24:20 +02:00
|
|
|
"""
|
2022-07-21 08:53:44 +02:00
|
|
|
etape_apo = request.args.get("etape_apo")
|
|
|
|
annee_scolaire = request.args.get("annee_scolaire")
|
|
|
|
dept_acronym = request.args.get("dept_acronym")
|
|
|
|
dept_id = request.args.get("dept_id")
|
2023-08-11 18:44:51 +02:00
|
|
|
etat = request.args.get("etat")
|
2022-10-28 15:14:33 +02:00
|
|
|
nip = request.args.get("nip")
|
2022-10-28 15:48:27 +02:00
|
|
|
ine = request.args.get("ine")
|
2022-07-21 08:53:44 +02:00
|
|
|
formsemestres = FormSemestre.query
|
2022-07-27 16:03:14 +02:00
|
|
|
if g.scodoc_dept:
|
2022-07-29 16:19:40 +02:00
|
|
|
formsemestres = formsemestres.filter_by(dept_id=g.scodoc_dept_id)
|
2022-07-21 08:53:44 +02:00
|
|
|
if annee_scolaire is not None:
|
|
|
|
try:
|
|
|
|
annee_scolaire_int = int(annee_scolaire)
|
|
|
|
except ValueError:
|
2023-02-22 02:13:06 +01:00
|
|
|
return json_error(API_CLIENT_ERROR, "invalid annee_scolaire: not int")
|
2022-07-21 08:53:44 +02:00
|
|
|
debut_annee = scu.date_debut_anne_scolaire(annee_scolaire_int)
|
|
|
|
fin_annee = scu.date_fin_anne_scolaire(annee_scolaire_int)
|
|
|
|
formsemestres = formsemestres.filter(
|
|
|
|
FormSemestre.date_fin >= debut_annee, FormSemestre.date_debut <= fin_annee
|
|
|
|
)
|
2023-08-11 18:44:51 +02:00
|
|
|
if etat is not None:
|
|
|
|
try:
|
|
|
|
etat = bool(int(etat))
|
|
|
|
except ValueError:
|
|
|
|
return json_error(404, "invalid etat: integer expected")
|
|
|
|
formsemestres = formsemestres.filter_by(etat=etat)
|
2022-07-21 08:53:44 +02:00
|
|
|
if dept_acronym is not None:
|
2022-07-27 16:03:14 +02:00
|
|
|
formsemestres = formsemestres.join(Departement).filter_by(acronym=dept_acronym)
|
2022-07-21 08:53:44 +02:00
|
|
|
if dept_id is not None:
|
|
|
|
try:
|
|
|
|
dept_id = int(dept_id)
|
|
|
|
except ValueError:
|
2023-02-22 02:13:06 +01:00
|
|
|
return json_error(404, "invalid dept_id: integer expected")
|
2022-07-21 08:53:44 +02:00
|
|
|
formsemestres = formsemestres.filter_by(dept_id=dept_id)
|
2022-07-29 16:19:40 +02:00
|
|
|
if etape_apo is not None:
|
|
|
|
formsemestres = formsemestres.join(FormSemestreEtape).filter(
|
|
|
|
FormSemestreEtape.etape_apo == etape_apo
|
|
|
|
)
|
2022-10-28 15:48:27 +02:00
|
|
|
inscr_joined = False
|
2022-10-28 15:14:33 +02:00
|
|
|
if nip is not None:
|
|
|
|
formsemestres = (
|
|
|
|
formsemestres.join(FormSemestreInscription)
|
|
|
|
.join(Identite)
|
|
|
|
.filter_by(code_nip=nip)
|
|
|
|
)
|
2022-10-28 15:48:27 +02:00
|
|
|
inscr_joined = True
|
2022-10-28 15:14:33 +02:00
|
|
|
if ine is not None:
|
2022-10-28 15:48:27 +02:00
|
|
|
if not inscr_joined:
|
|
|
|
formsemestres = formsemestres.join(FormSemestreInscription).join(Identite)
|
|
|
|
formsemestres = formsemestres.filter_by(code_ine=ine)
|
|
|
|
|
2023-08-11 18:44:51 +02:00
|
|
|
return [
|
|
|
|
formsemestre.to_dict_api()
|
|
|
|
for formsemestre in formsemestres.order_by(
|
|
|
|
FormSemestre.date_debut.desc(),
|
|
|
|
FormSemestre.modalite,
|
|
|
|
FormSemestre.semestre_id,
|
|
|
|
FormSemestre.titre,
|
|
|
|
)
|
|
|
|
]
|
2022-04-27 09:24:20 +02:00
|
|
|
|
|
|
|
|
2022-07-27 16:03:14 +02:00
|
|
|
@bp.route("/formsemestre/<int:formsemestre_id>/bulletins")
|
2022-11-28 19:13:57 +01:00
|
|
|
@bp.route("/formsemestre/<int:formsemestre_id>/bulletins/<string:version>")
|
2022-07-27 16:03:14 +02:00
|
|
|
@api_web_bp.route("/formsemestre/<int:formsemestre_id>/bulletins")
|
2022-11-28 19:13:57 +01:00
|
|
|
@api_web_bp.route("/formsemestre/<int:formsemestre_id>/bulletins/<string:version>")
|
2022-07-27 16:03:14 +02:00
|
|
|
@login_required
|
|
|
|
@scodoc
|
|
|
|
@permission_required(Permission.ScoView)
|
2023-04-06 16:10:32 +02:00
|
|
|
@as_json
|
2022-11-28 19:13:57 +01:00
|
|
|
def bulletins(formsemestre_id: int, version: str = "long"):
|
2022-03-02 16:45:47 +01:00
|
|
|
"""
|
|
|
|
Retourne les bulletins d'un formsemestre donné
|
|
|
|
|
|
|
|
formsemestre_id : l'id d'un formesemestre
|
2022-04-27 14:11:06 +02:00
|
|
|
|
2022-07-19 22:17:10 +02:00
|
|
|
Exemple de résultat : liste, voir https://scodoc.org/ScoDoc9API/#bulletin
|
2022-03-02 16:45:47 +01:00
|
|
|
"""
|
2022-07-27 16:03:14 +02:00
|
|
|
query = FormSemestre.query.filter_by(id=formsemestre_id)
|
|
|
|
if g.scodoc_dept:
|
|
|
|
query = query.filter_by(dept_id=g.scodoc_dept_id)
|
2022-11-28 19:13:57 +01:00
|
|
|
formsemestre: FormSemestre = query.first()
|
|
|
|
if formsemestre is None:
|
|
|
|
return json_error(404, "formsemestre non trouve")
|
2022-07-19 22:17:10 +02:00
|
|
|
app.set_sco_dept(formsemestre.departement.acronym)
|
2022-04-26 17:12:30 +02:00
|
|
|
|
|
|
|
data = []
|
2022-05-03 13:35:17 +02:00
|
|
|
for etu in formsemestre.etuds:
|
2022-11-28 19:13:57 +01:00
|
|
|
bul_etu = get_formsemestre_bulletin_etud_json(
|
|
|
|
formsemestre, etu, version=version
|
|
|
|
)
|
2022-04-26 17:12:30 +02:00
|
|
|
data.append(bul_etu.json)
|
2022-03-02 16:45:47 +01:00
|
|
|
|
2023-04-06 16:10:32 +02:00
|
|
|
return data
|
2022-03-02 16:45:47 +01:00
|
|
|
|
|
|
|
|
2022-07-27 16:03:14 +02:00
|
|
|
@bp.route("/formsemestre/<int:formsemestre_id>/programme")
|
|
|
|
@api_web_bp.route("/formsemestre/<int:formsemestre_id>/programme")
|
|
|
|
@login_required
|
|
|
|
@scodoc
|
|
|
|
@permission_required(Permission.ScoView)
|
2023-04-06 16:10:32 +02:00
|
|
|
@as_json
|
2022-05-09 16:26:23 +02:00
|
|
|
def formsemestre_programme(formsemestre_id: int):
|
|
|
|
"""
|
2023-08-26 16:34:56 +02:00
|
|
|
Retourne la liste des UEs, ressources et SAEs d'un semestre
|
2022-05-09 16:26:23 +02:00
|
|
|
|
|
|
|
formsemestre_id : l'id d'un formsemestre
|
|
|
|
|
|
|
|
Exemple de résultat :
|
|
|
|
{
|
|
|
|
"ues": [
|
|
|
|
{
|
|
|
|
"type": 0,
|
|
|
|
"formation_id": 1,
|
|
|
|
"ue_code": "UCOD11",
|
|
|
|
"id": 1,
|
|
|
|
"ects": 12.0,
|
|
|
|
"acronyme": "RT1.1",
|
|
|
|
"is_external": false,
|
|
|
|
"numero": 1,
|
|
|
|
"code_apogee": "",
|
|
|
|
"titre": "Administrer les r\u00e9seaux et l\u2019Internet",
|
|
|
|
"coefficient": 0.0,
|
|
|
|
"semestre_idx": 1,
|
|
|
|
"color": "#B80004",
|
|
|
|
"ue_id": 1
|
|
|
|
},
|
|
|
|
...
|
|
|
|
],
|
|
|
|
"ressources": [
|
|
|
|
{
|
|
|
|
"ens": [ 10, 18 ],
|
|
|
|
"formsemestre_id": 1,
|
|
|
|
"id": 15,
|
|
|
|
"module": {
|
|
|
|
"abbrev": "Programmer",
|
|
|
|
"code": "SAE15",
|
|
|
|
"code_apogee": "V7GOP",
|
|
|
|
"coefficient": 1.0,
|
|
|
|
"formation_id": 1,
|
|
|
|
"heures_cours": 0.0,
|
|
|
|
"heures_td": 0.0,
|
|
|
|
"heures_tp": 0.0,
|
|
|
|
"id": 15,
|
|
|
|
"matiere_id": 3,
|
|
|
|
"module_id": 15,
|
|
|
|
"module_type": 3,
|
|
|
|
"numero": 50,
|
|
|
|
"semestre_id": 1,
|
|
|
|
"titre": "Programmer en Python",
|
|
|
|
"ue_id": 3
|
|
|
|
},
|
|
|
|
"module_id": 15,
|
|
|
|
"moduleimpl_id": 15,
|
|
|
|
"responsable_id": 2
|
|
|
|
},
|
|
|
|
...
|
|
|
|
],
|
|
|
|
"saes": [
|
|
|
|
{
|
|
|
|
...
|
|
|
|
},
|
|
|
|
...
|
|
|
|
],
|
|
|
|
"modules" : [ ... les modules qui ne sont ni des SAEs ni des ressources ... ]
|
|
|
|
}
|
|
|
|
"""
|
2022-07-27 16:03:14 +02:00
|
|
|
query = FormSemestre.query.filter_by(id=formsemestre_id)
|
|
|
|
if g.scodoc_dept:
|
|
|
|
query = query.filter_by(dept_id=g.scodoc_dept_id)
|
|
|
|
formsemestre: FormSemestre = query.first_or_404(formsemestre_id)
|
2023-04-03 17:46:31 +02:00
|
|
|
ues = formsemestre.get_ues()
|
2022-05-09 16:26:23 +02:00
|
|
|
m_list = {
|
|
|
|
ModuleType.RESSOURCE: [],
|
|
|
|
ModuleType.SAE: [],
|
|
|
|
ModuleType.STANDARD: [],
|
2022-08-25 18:22:04 +02:00
|
|
|
ModuleType.MALUS: [],
|
2022-05-09 16:26:23 +02:00
|
|
|
}
|
|
|
|
for modimpl in formsemestre.modimpls_sorted:
|
2022-07-21 14:21:06 +02:00
|
|
|
d = modimpl.to_dict(convert_objects=True)
|
2022-05-09 16:26:23 +02:00
|
|
|
m_list[modimpl.module.module_type].append(d)
|
2023-04-06 16:10:32 +02:00
|
|
|
return {
|
|
|
|
"ues": [ue.to_dict(convert_objects=True) for ue in ues],
|
|
|
|
"ressources": m_list[ModuleType.RESSOURCE],
|
|
|
|
"saes": m_list[ModuleType.SAE],
|
|
|
|
"modules": m_list[ModuleType.STANDARD],
|
|
|
|
"malus": m_list[ModuleType.MALUS],
|
|
|
|
}
|
2022-05-13 14:37:02 +02:00
|
|
|
|
|
|
|
|
|
|
|
@bp.route(
|
2022-05-13 15:56:54 +02:00
|
|
|
"/formsemestre/<int:formsemestre_id>/etudiants",
|
2022-08-30 19:13:21 +02:00
|
|
|
defaults={"with_query": False, "long": False},
|
|
|
|
)
|
|
|
|
@bp.route(
|
|
|
|
"/formsemestre/<int:formsemestre_id>/etudiants/long",
|
|
|
|
defaults={"with_query": False, "long": True},
|
2022-08-08 10:06:42 +02:00
|
|
|
)
|
|
|
|
@bp.route(
|
2022-08-10 07:16:34 +02:00
|
|
|
"/formsemestre/<int:formsemestre_id>/etudiants/query",
|
2022-08-30 19:13:21 +02:00
|
|
|
defaults={"with_query": True, "long": False},
|
|
|
|
)
|
|
|
|
@bp.route(
|
|
|
|
"/formsemestre/<int:formsemestre_id>/etudiants/long/query",
|
|
|
|
defaults={"with_query": True, "long": True},
|
2022-05-13 14:37:02 +02:00
|
|
|
)
|
2022-07-27 16:03:14 +02:00
|
|
|
@api_web_bp.route(
|
|
|
|
"/formsemestre/<int:formsemestre_id>/etudiants",
|
2022-08-30 19:13:21 +02:00
|
|
|
defaults={"with_query": False, "long": False},
|
|
|
|
)
|
|
|
|
@api_web_bp.route(
|
|
|
|
"/formsemestre/<int:formsemestre_id>/etudiants/long",
|
|
|
|
defaults={"with_query": False, "long": True},
|
2022-07-27 16:03:14 +02:00
|
|
|
)
|
|
|
|
@api_web_bp.route(
|
2022-08-10 07:16:34 +02:00
|
|
|
"/formsemestre/<int:formsemestre_id>/etudiants/query",
|
2022-08-30 19:13:21 +02:00
|
|
|
defaults={"with_query": True, "long": False},
|
|
|
|
)
|
|
|
|
@api_web_bp.route(
|
|
|
|
"/formsemestre/<int:formsemestre_id>/etudiants/long/query",
|
|
|
|
defaults={"with_query": True, "long": True},
|
2022-07-27 16:03:14 +02:00
|
|
|
)
|
|
|
|
@login_required
|
|
|
|
@scodoc
|
|
|
|
@permission_required(Permission.ScoView)
|
2023-04-06 16:10:32 +02:00
|
|
|
@as_json
|
2022-08-30 19:13:21 +02:00
|
|
|
def formsemestre_etudiants(
|
|
|
|
formsemestre_id: int, with_query: bool = False, long: bool = False
|
|
|
|
):
|
2022-09-03 11:41:56 +02:00
|
|
|
"""Étudiants d'un formsemestre."""
|
2022-07-27 16:03:14 +02:00
|
|
|
query = FormSemestre.query.filter_by(id=formsemestre_id)
|
|
|
|
if g.scodoc_dept:
|
|
|
|
query = query.filter_by(dept_id=g.scodoc_dept_id)
|
|
|
|
formsemestre: FormSemestre = query.first_or_404(formsemestre_id)
|
2022-08-10 07:16:34 +02:00
|
|
|
if with_query:
|
|
|
|
etat = request.args.get("etat")
|
|
|
|
if etat is not None:
|
|
|
|
etat = {
|
|
|
|
"actifs": scu.INSCRIT,
|
|
|
|
"demissionnaires": scu.DEMISSION,
|
|
|
|
"defaillants": scu.DEF,
|
|
|
|
}.get(etat, etat)
|
|
|
|
inscriptions = [
|
|
|
|
ins for ins in formsemestre.inscriptions if ins.etat == etat
|
|
|
|
]
|
|
|
|
else:
|
|
|
|
inscriptions = formsemestre.inscriptions
|
2022-08-08 10:06:42 +02:00
|
|
|
else:
|
2022-08-10 07:16:34 +02:00
|
|
|
inscriptions = formsemestre.inscriptions
|
2022-05-13 14:37:02 +02:00
|
|
|
|
2022-08-30 19:13:21 +02:00
|
|
|
if long:
|
|
|
|
etuds = [ins.etud.to_dict_api() for ins in inscriptions]
|
|
|
|
else:
|
|
|
|
etuds = [ins.etud.to_dict_short() for ins in inscriptions]
|
2022-07-19 22:17:10 +02:00
|
|
|
# Ajout des groupes de chaque étudiants
|
2022-07-21 16:46:07 +02:00
|
|
|
# XXX A REVOIR: trop inefficace !
|
2022-07-19 22:17:10 +02:00
|
|
|
for etud in etuds:
|
2022-08-17 18:24:18 +02:00
|
|
|
etud["groups"] = sco_groups.get_etud_groups(
|
2022-12-07 13:21:24 +01:00
|
|
|
etud["id"], formsemestre_id, exclude_default=True
|
2022-08-17 18:24:18 +02:00
|
|
|
)
|
2022-05-13 14:37:02 +02:00
|
|
|
|
2023-04-06 16:10:32 +02:00
|
|
|
return sorted(etuds, key=itemgetter("sort_key"))
|
2022-05-30 16:08:04 +02:00
|
|
|
|
|
|
|
|
2022-07-27 16:03:14 +02:00
|
|
|
@bp.route("/formsemestre/<int:formsemestre_id>/etat_evals")
|
|
|
|
@api_web_bp.route("/formsemestre/<int:formsemestre_id>/etat_evals")
|
|
|
|
@login_required
|
|
|
|
@scodoc
|
|
|
|
@permission_required(Permission.ScoView)
|
2023-04-06 16:10:32 +02:00
|
|
|
@as_json
|
2022-05-30 16:08:04 +02:00
|
|
|
def etat_evals(formsemestre_id: int):
|
|
|
|
"""
|
2022-07-19 22:17:10 +02:00
|
|
|
Informations sur l'état des évaluations d'un formsemestre.
|
2022-05-30 16:08:04 +02:00
|
|
|
|
|
|
|
formsemestre_id : l'id d'un semestre
|
|
|
|
|
|
|
|
Exemple de résultat :
|
2022-07-19 22:17:10 +02:00
|
|
|
[
|
|
|
|
{
|
|
|
|
"id": 1, // moduleimpl_id
|
|
|
|
"titre": "Initiation aux réseaux informatiques",
|
|
|
|
"evaluations": [
|
|
|
|
{
|
|
|
|
"id": 1,
|
|
|
|
"description": null,
|
|
|
|
"datetime_epreuve": null,
|
|
|
|
"heure_fin": "09:00:00",
|
|
|
|
"coefficient": "02.00"
|
|
|
|
"is_complete": true,
|
|
|
|
"nb_inscrits": 16,
|
|
|
|
"nb_manquantes": 0,
|
|
|
|
"ABS": 0,
|
|
|
|
"ATT": 0,
|
|
|
|
"EXC": 0,
|
|
|
|
"saisie_notes": {
|
|
|
|
"datetime_debut": "2021-09-11T00:00:00+02:00",
|
|
|
|
"datetime_fin": "2022-08-25T00:00:00+02:00",
|
|
|
|
"datetime_mediane": "2022-03-19T00:00:00+01:00"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
...
|
|
|
|
]
|
|
|
|
},
|
|
|
|
]
|
2022-05-30 16:08:04 +02:00
|
|
|
"""
|
2022-07-27 16:03:14 +02:00
|
|
|
query = FormSemestre.query.filter_by(id=formsemestre_id)
|
|
|
|
if g.scodoc_dept:
|
|
|
|
query = query.filter_by(dept_id=g.scodoc_dept_id)
|
|
|
|
formsemestre: FormSemestre = query.first_or_404(formsemestre_id)
|
2022-07-19 22:17:10 +02:00
|
|
|
app.set_sco_dept(formsemestre.departement.acronym)
|
2022-05-31 16:08:57 +02:00
|
|
|
nt: NotesTableCompat = res_sem.load_formsemestre_results(formsemestre)
|
2022-05-30 16:08:04 +02:00
|
|
|
|
2022-07-19 22:17:10 +02:00
|
|
|
result = []
|
|
|
|
for modimpl_id in nt.modimpls_results:
|
|
|
|
modimpl_results: ModuleImplResults = nt.modimpls_results[modimpl_id]
|
2022-08-02 17:13:13 +02:00
|
|
|
modimpl: ModuleImpl = ModuleImpl.query.get_or_404(modimpl_id)
|
|
|
|
modimpl_dict = modimpl.to_dict(convert_objects=True)
|
2022-07-19 22:17:10 +02:00
|
|
|
|
|
|
|
list_eval = []
|
|
|
|
for evaluation_id in modimpl_results.evaluations_etat:
|
|
|
|
eval_etat = modimpl_results.evaluations_etat[evaluation_id]
|
|
|
|
evaluation = Evaluation.query.get_or_404(evaluation_id)
|
2022-11-01 11:19:28 +01:00
|
|
|
eval_dict = evaluation.to_dict_api()
|
2022-07-19 22:17:10 +02:00
|
|
|
eval_dict["etat"] = eval_etat.to_dict()
|
|
|
|
|
|
|
|
eval_dict["nb_inscrits"] = modimpl_results.nb_inscrits_module
|
|
|
|
eval_dict["nb_notes_manquantes"] = len(
|
|
|
|
modimpl_results.evals_etudids_sans_note[evaluation.id]
|
|
|
|
)
|
|
|
|
eval_dict["nb_notes_abs"] = sum(
|
|
|
|
modimpl_results.evals_notes[evaluation.id] == scu.NOTES_ABSENCE
|
|
|
|
)
|
|
|
|
eval_dict["nb_notes_att"] = eval_etat.nb_attente
|
|
|
|
eval_dict["nb_notes_exc"] = sum(
|
|
|
|
modimpl_results.evals_notes[evaluation.id] == scu.NOTES_NEUTRALISE
|
|
|
|
)
|
|
|
|
|
|
|
|
# Récupération de toutes les notes de l'évaluation
|
|
|
|
# eval["notes"] = modimpl_results.get_eval_notes_dict(evaluation_id)
|
|
|
|
|
2022-07-29 16:19:40 +02:00
|
|
|
notes = NotesNotes.query.filter_by(evaluation_id=evaluation.id).all()
|
2022-07-19 22:17:10 +02:00
|
|
|
|
|
|
|
date_debut = None
|
|
|
|
date_fin = None
|
|
|
|
date_mediane = None
|
|
|
|
|
|
|
|
# Si il y a plus d'une note saisie pour l'évaluation
|
|
|
|
if len(notes) >= 1:
|
2022-07-23 08:46:00 +02:00
|
|
|
# Tri des notes en fonction de leurs dates
|
2023-04-03 17:46:31 +02:00
|
|
|
notes_sorted = sorted(notes, key=attrgetter("date"))
|
2022-07-19 22:17:10 +02:00
|
|
|
|
|
|
|
date_debut = notes_sorted[0].date
|
|
|
|
date_fin = notes_sorted[-1].date
|
|
|
|
|
2022-07-22 21:22:06 +02:00
|
|
|
# Note médiane
|
|
|
|
date_mediane = notes_sorted[len(notes_sorted) // 2].date
|
2022-07-19 22:17:10 +02:00
|
|
|
|
|
|
|
eval_dict["saisie_notes"] = {
|
|
|
|
"datetime_debut": date_debut.isoformat()
|
|
|
|
if date_debut is not None
|
|
|
|
else None,
|
|
|
|
"datetime_fin": date_fin.isoformat() if date_fin is not None else None,
|
|
|
|
"datetime_mediane": date_mediane.isoformat()
|
|
|
|
if date_mediane is not None
|
|
|
|
else None,
|
|
|
|
}
|
|
|
|
|
2022-07-22 21:22:06 +02:00
|
|
|
list_eval.append(eval_dict)
|
2022-07-19 22:17:10 +02:00
|
|
|
|
|
|
|
modimpl_dict["evaluations"] = list_eval
|
|
|
|
result.append(modimpl_dict)
|
2023-04-06 16:10:32 +02:00
|
|
|
return result
|
2022-07-21 16:46:07 +02:00
|
|
|
|
|
|
|
|
2022-07-27 16:03:14 +02:00
|
|
|
@bp.route("/formsemestre/<int:formsemestre_id>/resultats")
|
|
|
|
@api_web_bp.route("/formsemestre/<int:formsemestre_id>/resultats")
|
|
|
|
@login_required
|
|
|
|
@scodoc
|
|
|
|
@permission_required(Permission.ScoView)
|
2023-04-06 16:10:32 +02:00
|
|
|
@as_json
|
2022-07-21 16:46:07 +02:00
|
|
|
def formsemestre_resultat(formsemestre_id: int):
|
|
|
|
"""Tableau récapitulatif des résultats
|
|
|
|
Pour chaque étudiant, son état, ses groupes, ses moyennes d'UE et de modules.
|
|
|
|
"""
|
2022-07-23 08:46:00 +02:00
|
|
|
format_spec = request.args.get("format", None)
|
|
|
|
if format_spec is not None and format_spec != "raw":
|
2023-02-22 02:13:06 +01:00
|
|
|
return json_error(API_CLIENT_ERROR, "invalid format specification")
|
2022-07-23 08:46:00 +02:00
|
|
|
convert_values = format_spec != "raw"
|
|
|
|
|
2022-07-27 16:03:14 +02:00
|
|
|
query = FormSemestre.query.filter_by(id=formsemestre_id)
|
|
|
|
if g.scodoc_dept:
|
|
|
|
query = query.filter_by(dept_id=g.scodoc_dept_id)
|
|
|
|
formsemestre: FormSemestre = query.first_or_404(formsemestre_id)
|
2022-07-21 16:46:07 +02:00
|
|
|
app.set_sco_dept(formsemestre.departement.acronym)
|
|
|
|
res: NotesTableCompat = res_sem.load_formsemestre_results(formsemestre)
|
2023-02-04 02:17:30 +01:00
|
|
|
table = TableRecap(
|
|
|
|
res, convert_values=convert_values, include_evaluations=False, mode_jury=False
|
2022-07-21 16:46:07 +02:00
|
|
|
)
|
|
|
|
# Supprime les champs inutiles (mise en forme)
|
2023-01-29 21:52:39 +01:00
|
|
|
rows = table.to_list()
|
|
|
|
# Ajoute le groupe de chaque partition:
|
2022-07-21 16:46:07 +02:00
|
|
|
etud_groups = sco_groups.get_formsemestre_etuds_groups(formsemestre_id)
|
2023-01-29 21:52:39 +01:00
|
|
|
for row in rows:
|
2022-07-21 16:46:07 +02:00
|
|
|
row["partitions"] = etud_groups.get(row["etudid"], {})
|
2023-01-29 21:52:39 +01:00
|
|
|
|
2023-04-06 16:10:32 +02:00
|
|
|
return rows
|
2023-05-15 23:39:08 +02:00
|
|
|
|
|
|
|
|
|
|
|
@bp.route("/formsemestre/<int:formsemestre_id>/get_groups_auto_assignment")
|
|
|
|
@api_web_bp.route("/formsemestre/<int:formsemestre_id>/get_groups_auto_assignment")
|
|
|
|
@login_required
|
|
|
|
@scodoc
|
|
|
|
@permission_required(Permission.ScoView)
|
|
|
|
@as_json
|
|
|
|
def get_groups_auto_assignment(formsemestre_id: int):
|
|
|
|
"""rend les données"""
|
|
|
|
query = FormSemestre.query.filter_by(id=formsemestre_id)
|
|
|
|
if g.scodoc_dept:
|
|
|
|
query = query.filter_by(dept_id=g.scodoc_dept_id)
|
|
|
|
formsemestre: FormSemestre = query.first_or_404(formsemestre_id)
|
|
|
|
response = make_response(formsemestre.groups_auto_assignment_data or b"")
|
|
|
|
response.headers["Content-Type"] = scu.JSON_MIMETYPE
|
|
|
|
return response
|
|
|
|
|
|
|
|
|
|
|
|
@bp.route(
|
|
|
|
"/formsemestre/<int:formsemestre_id>/save_groups_auto_assignment", methods=["POST"]
|
|
|
|
)
|
|
|
|
@api_web_bp.route(
|
|
|
|
"/formsemestre/<int:formsemestre_id>/save_groups_auto_assignment", methods=["POST"]
|
|
|
|
)
|
|
|
|
@login_required
|
|
|
|
@scodoc
|
|
|
|
@permission_required(Permission.ScoView)
|
|
|
|
@as_json
|
|
|
|
def save_groups_auto_assignment(formsemestre_id: int):
|
|
|
|
"""enregistre les données"""
|
|
|
|
query = FormSemestre.query.filter_by(id=formsemestre_id)
|
|
|
|
if g.scodoc_dept:
|
|
|
|
query = query.filter_by(dept_id=g.scodoc_dept_id)
|
|
|
|
formsemestre: FormSemestre = query.first_or_404(formsemestre_id)
|
|
|
|
|
|
|
|
if len(request.data) > GROUPS_AUTO_ASSIGNMENT_DATA_MAX:
|
|
|
|
return json_error(413, "data too large")
|
|
|
|
formsemestre.groups_auto_assignment_data = request.data
|
|
|
|
db.session.add(formsemestre)
|
|
|
|
db.session.commit()
|
2023-11-11 18:13:18 +01:00
|
|
|
|
|
|
|
|
|
|
|
@bp.route("/formsemestre/<int:formsemestre_id>/edt")
|
|
|
|
@api_web_bp.route("/formsemestre/<int:formsemestre_id>/edt")
|
|
|
|
@login_required
|
|
|
|
@scodoc
|
|
|
|
@permission_required(Permission.ScoView)
|
|
|
|
@as_json
|
|
|
|
def formsemestre_edt(formsemestre_id: int):
|
2023-11-16 23:34:47 +01:00
|
|
|
"""l'emploi du temps du semestre.
|
2023-11-14 14:06:47 +01:00
|
|
|
Si ok, une liste d'évènements. Sinon, une chaine indiquant un message d'erreur.
|
2023-11-16 23:34:47 +01:00
|
|
|
|
|
|
|
group_ids permet de filtrer sur les groupes ScoDoc.
|
2023-12-24 16:09:07 +01:00
|
|
|
show_modules_titles affiche le titre complet du module (défaut), sinon juste le code.
|
2023-11-14 14:06:47 +01:00
|
|
|
"""
|
2023-11-11 18:13:18 +01:00
|
|
|
query = FormSemestre.query.filter_by(id=formsemestre_id)
|
|
|
|
if g.scodoc_dept:
|
|
|
|
query = query.filter_by(dept_id=g.scodoc_dept_id)
|
|
|
|
formsemestre: FormSemestre = query.first_or_404(formsemestre_id)
|
2023-11-16 23:34:47 +01:00
|
|
|
group_ids = request.args.getlist("group_ids", int)
|
2023-12-24 16:09:07 +01:00
|
|
|
show_modules_titles = scu.to_bool(request.args.get("show_modules_titles", False))
|
|
|
|
return sco_edt_cal.formsemestre_edt_dict(
|
|
|
|
formsemestre, group_ids=group_ids, show_modules_titles=show_modules_titles
|
|
|
|
)
|