2021-09-09 12:49:23 +02:00
|
|
|
|
# -*- mode: python -*-
|
|
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
|
|
|
|
|
##############################################################################
|
|
|
|
|
#
|
|
|
|
|
# Gestion scolarite IUT
|
|
|
|
|
#
|
2022-01-01 14:49:42 +01:00
|
|
|
|
# Copyright (c) 1999 - 2022 Emmanuel Viennet. All rights reserved.
|
2021-09-09 12:49:23 +02:00
|
|
|
|
#
|
|
|
|
|
# This program is free software; you can redistribute it and/or modify
|
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
|
# the Free Software Foundation; either version 2 of the License, or
|
|
|
|
|
# (at your option) any later version.
|
|
|
|
|
#
|
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
|
#
|
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
|
# along with this program; if not, write to the Free Software
|
|
|
|
|
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
|
#
|
|
|
|
|
# Emmanuel Viennet emmanuel.viennet@viennet.net
|
|
|
|
|
#
|
|
|
|
|
##############################################################################
|
|
|
|
|
|
|
|
|
|
"""API ScoDoc 9
|
|
|
|
|
"""
|
|
|
|
|
# PAS ENCORE IMPLEMENTEE, juste un essai
|
2021-09-09 16:11:05 +02:00
|
|
|
|
# Pour P. Bouron, il faudrait en priorité l'équivalent de
|
2021-10-15 14:00:51 +02:00
|
|
|
|
# Scolarite/Notes/moduleimpl_withmodule_list (alias scodoc7 do_moduleimpl_withmodule_list)
|
2021-09-09 16:11:05 +02:00
|
|
|
|
# Scolarite/Notes/evaluation_create
|
|
|
|
|
# Scolarite/Notes/evaluation_delete
|
|
|
|
|
# Scolarite/Notes/formation_list
|
|
|
|
|
# Scolarite/Notes/formsemestre_list
|
|
|
|
|
# Scolarite/Notes/formsemestre_partition_list
|
|
|
|
|
# Scolarite/Notes/groups_view
|
|
|
|
|
# Scolarite/Notes/moduleimpl_status
|
|
|
|
|
# Scolarite/setGroups
|
2021-12-21 18:49:33 +01:00
|
|
|
|
from datetime import datetime
|
2021-09-09 12:49:23 +02:00
|
|
|
|
|
2021-12-21 18:49:33 +01:00
|
|
|
|
from flask import jsonify, request, g, send_file
|
2021-12-21 00:10:51 +01:00
|
|
|
|
from sqlalchemy.sql import func
|
|
|
|
|
|
|
|
|
|
from app import db, log
|
2021-12-22 00:35:58 +01:00
|
|
|
|
from app.api import bp, requested_format
|
2021-09-09 12:49:23 +02:00
|
|
|
|
from app.api.auth import token_auth
|
2021-12-21 18:49:33 +01:00
|
|
|
|
from app.api.errors import error_response
|
2021-09-09 12:49:23 +02:00
|
|
|
|
from app import models
|
2021-12-21 00:10:51 +01:00
|
|
|
|
from app.models import FormSemestre, FormSemestreInscription, Identite
|
2022-01-08 14:35:02 +01:00
|
|
|
|
from app.models import ApcReferentielCompetences
|
2022-02-23 16:10:10 +01:00
|
|
|
|
from app.scodoc.sco_abs import annule_absence, annule_justif, add_absence, add_justif, list_abs_date
|
2022-02-18 11:26:17 +01:00
|
|
|
|
from app.scodoc.sco_bulletins import formsemestre_bulletinetud_dict
|
|
|
|
|
from app.scodoc.sco_bulletins_json import make_json_formsemestre_bulletinetud
|
2022-02-21 16:12:31 +01:00
|
|
|
|
from app.scodoc.sco_evaluation_db import do_evaluation_get_all_notes
|
2022-02-18 11:26:17 +01:00
|
|
|
|
from app.scodoc.sco_formations import formation_export
|
|
|
|
|
from app.scodoc.sco_formsemestre_inscriptions import do_formsemestre_inscription_listinscrits
|
2022-02-21 16:12:31 +01:00
|
|
|
|
from app.scodoc.sco_groups import setGroups, get_etud_groups, get_group_members
|
2022-02-23 16:10:10 +01:00
|
|
|
|
from app.scodoc.sco_logos import list_logos, find_logo, _list_dept_logos
|
2022-02-18 11:26:17 +01:00
|
|
|
|
from app.scodoc.sco_moduleimpl import moduleimpl_list
|
2021-12-21 00:10:51 +01:00
|
|
|
|
from app.scodoc.sco_permissions import Permission
|
2021-09-09 12:49:23 +02:00
|
|
|
|
|
|
|
|
|
|
2022-01-07 08:49:16 +01:00
|
|
|
|
|
2022-03-02 16:45:47 +01:00
|
|
|
|
# ###################################################### Logos ##########################################################
|
|
|
|
|
#
|
|
|
|
|
# # XXX TODO voir get_logo déjà existant dans app/views/scodoc.py
|
|
|
|
|
#
|
|
|
|
|
# @bp.route("/logos", methods=["GET"])
|
|
|
|
|
# def liste_logos(format="json"):
|
|
|
|
|
# """
|
|
|
|
|
# Liste des logos définis pour le site scodoc.
|
|
|
|
|
# """
|
|
|
|
|
# # fonction to use : list_logos()
|
|
|
|
|
# # try:
|
|
|
|
|
# # res = list_logos()
|
|
|
|
|
# # except ValueError:
|
|
|
|
|
# # return error_response(409, message="La requête ne peut être traitée en l’état actuel")
|
|
|
|
|
# #
|
|
|
|
|
# # if res is None:
|
|
|
|
|
# # return error_response(200, message="Aucun logo trouvé correspondant aux informations renseignés")
|
|
|
|
|
# #
|
|
|
|
|
# # return res
|
|
|
|
|
#
|
|
|
|
|
#
|
|
|
|
|
#
|
|
|
|
|
# @bp.route("/logos/<string:logo_name>", methods=["GET"])
|
|
|
|
|
# def recup_logo_global(logo_name: str):
|
|
|
|
|
# """
|
|
|
|
|
# Retourne l'image au format png ou jpg
|
|
|
|
|
#
|
|
|
|
|
# logo_name : le nom du logo rechercher
|
|
|
|
|
# """
|
|
|
|
|
# # fonction to use find_logo
|
|
|
|
|
# # try:
|
|
|
|
|
# # res = find_logo(logo_name)
|
|
|
|
|
# # except ValueError:
|
|
|
|
|
# # return error_response(409, message="La requête ne peut être traitée en l’état actuel")
|
|
|
|
|
# #
|
|
|
|
|
# # if res is None:
|
|
|
|
|
# # return error_response(200, message="Aucun logo trouvé correspondant aux informations renseignés")
|
|
|
|
|
# #
|
|
|
|
|
# # return res
|
|
|
|
|
#
|
|
|
|
|
#
|
|
|
|
|
# @bp.route("/departements/<string:dept>/logos", methods=["GET"])
|
|
|
|
|
# def logo_dept(dept: str):
|
|
|
|
|
# """
|
|
|
|
|
# Liste des logos définis pour le département visé.
|
|
|
|
|
#
|
|
|
|
|
# dept : l'id d'un département
|
|
|
|
|
# """
|
|
|
|
|
# # fonction to use: _list_dept_logos
|
|
|
|
|
# # dept_id = models.Departement.query.filter_by(acronym=dept).first()
|
|
|
|
|
# # try:
|
|
|
|
|
# # res = _list_dept_logos(dept_id.id)
|
|
|
|
|
# # except ValueError:
|
|
|
|
|
# # return error_response(409, message="La requête ne peut être traitée en l’état actuel")
|
|
|
|
|
# #
|
|
|
|
|
# # if res is None:
|
|
|
|
|
# # return error_response(200, message="Aucun logo trouvé correspondant aux informations renseignés")
|
|
|
|
|
# #
|
|
|
|
|
# # return res
|
|
|
|
|
#
|
|
|
|
|
#
|
|
|
|
|
# @bp.route("/departement/<string:dept>/logos/<string:logo_name>", methods=["GET"])
|
|
|
|
|
# def recup_logo_dept_global(dept: str, logo_name: str):
|
|
|
|
|
# """
|
|
|
|
|
# L'image format png ou jpg
|
|
|
|
|
#
|
|
|
|
|
# dept : l'id d'un département
|
|
|
|
|
# logo_name : le nom du logo rechercher
|
|
|
|
|
# """
|
|
|
|
|
# # fonction to use find_logo
|
|
|
|
|
# # dept_id = models.Departement.query.filter_by(acronym=dept).first()
|
|
|
|
|
# # try:
|
|
|
|
|
# # res = find_logo(logo_name, dept_id.id)
|
|
|
|
|
# # except ValueError:
|
|
|
|
|
# # return error_response(409, message="La requête ne peut être traitée en l’état actuel")
|
|
|
|
|
# #
|
|
|
|
|
# # if res is None:
|
|
|
|
|
# # return error_response(200, message="Aucun logo trouvé correspondant aux informations renseignés")
|
|
|
|
|
# #
|
|
|
|
|
# # return res
|
2022-01-07 08:49:16 +01:00
|
|
|
|
|
2022-02-25 16:03:05 +01:00
|
|
|
|
|