2021-05-29 18:22:51 +02:00
|
|
|
# -*- mode: python -*-
|
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
|
|
|
"""Definition of ScoDoc default roles
|
|
|
|
"""
|
|
|
|
|
2021-06-19 23:21:37 +02:00
|
|
|
from app.scodoc.sco_permissions import Permission as p
|
2021-05-29 18:22:51 +02:00
|
|
|
|
|
|
|
SCO_ROLES_DEFAULTS = {
|
|
|
|
"Observateur": (p.ScoObservateur,),
|
|
|
|
"Ens": (
|
|
|
|
p.ScoAbsAddBillet,
|
2021-09-16 09:13:05 +02:00
|
|
|
p.ScoAbsChange,
|
|
|
|
p.ScoEnsView,
|
2021-05-29 18:22:51 +02:00
|
|
|
p.ScoEntrepriseView,
|
2021-09-16 09:13:05 +02:00
|
|
|
p.ScoEtudAddAnnotations,
|
2021-05-29 18:22:51 +02:00
|
|
|
p.ScoObservateur,
|
|
|
|
p.ScoUsersView,
|
2021-09-16 09:13:05 +02:00
|
|
|
p.ScoView,
|
|
|
|
),
|
|
|
|
"Secr": (
|
2021-05-29 18:22:51 +02:00
|
|
|
p.ScoAbsAddBillet,
|
2021-09-16 09:13:05 +02:00
|
|
|
p.ScoAbsChange,
|
|
|
|
p.ScoEditApo,
|
2021-05-29 18:22:51 +02:00
|
|
|
p.ScoEntrepriseChange,
|
2021-09-16 09:13:05 +02:00
|
|
|
p.ScoEntrepriseView,
|
|
|
|
p.ScoEtudAddAnnotations,
|
2021-05-29 18:22:51 +02:00
|
|
|
p.ScoEtudChangeAdr,
|
2021-09-16 09:13:05 +02:00
|
|
|
p.ScoObservateur,
|
|
|
|
p.ScoUsersView,
|
|
|
|
p.ScoView,
|
2021-05-29 18:22:51 +02:00
|
|
|
),
|
|
|
|
# Admin est le chef du département, pas le "super admin"
|
2021-07-05 21:56:28 +02:00
|
|
|
# on doit donc lister toutes ses permissions:
|
2021-05-29 18:22:51 +02:00
|
|
|
"Admin": (
|
|
|
|
p.ScoAbsAddBillet,
|
2021-09-16 09:13:05 +02:00
|
|
|
p.ScoAbsChange,
|
2021-05-29 18:22:51 +02:00
|
|
|
p.ScoChangeFormation,
|
2021-09-16 09:13:05 +02:00
|
|
|
p.ScoChangePreferences,
|
2021-05-29 18:22:51 +02:00
|
|
|
p.ScoEditAllEvals,
|
2021-09-16 09:13:05 +02:00
|
|
|
p.ScoEditAllNotes,
|
|
|
|
p.ScoEditApo,
|
|
|
|
p.ScoEditFormationTags,
|
|
|
|
p.ScoEnsView,
|
|
|
|
p.ScoEntrepriseChange,
|
|
|
|
p.ScoEntrepriseView,
|
|
|
|
p.ScoEtudAddAnnotations,
|
|
|
|
p.ScoEtudChangeAdr,
|
2021-05-29 18:22:51 +02:00
|
|
|
p.ScoEtudChangeGroups,
|
|
|
|
p.ScoEtudInscrit,
|
2021-09-16 09:13:05 +02:00
|
|
|
p.ScoImplement,
|
|
|
|
p.ScoObservateur,
|
2021-05-29 18:22:51 +02:00
|
|
|
p.ScoUsersAdmin,
|
2021-09-16 09:13:05 +02:00
|
|
|
p.ScoUsersView,
|
|
|
|
p.ScoView,
|
2022-03-10 17:43:12 +01:00
|
|
|
p.APIView,
|
2021-05-29 18:22:51 +02:00
|
|
|
),
|
2021-08-14 18:54:32 +02:00
|
|
|
# RespPE est le responsable poursuites d'études
|
|
|
|
# il peut ajouter des tags sur les formations:
|
|
|
|
# (doit avoir un rôle Ens en plus !)
|
|
|
|
"RespPe": (p.ScoEditFormationTags,),
|
2022-01-31 14:17:09 +01:00
|
|
|
# Rôles pour l'application relations entreprises
|
|
|
|
# ObservateurEntreprise est un observateur de l'application entreprise
|
|
|
|
"ObservateurEntreprise": (p.RelationsEntreprisesView,),
|
|
|
|
# UtilisateurEntreprise est un utilisateur de l'application entreprise (droit de modification)
|
2022-04-21 21:18:47 +02:00
|
|
|
"UtilisateurEntreprise": (
|
|
|
|
p.RelationsEntreprisesView,
|
|
|
|
p.RelationsEntreprisesChange,
|
|
|
|
p.RelationsEntreprisesCorrespondants,
|
|
|
|
),
|
2022-01-31 14:17:09 +01:00
|
|
|
# AdminEntreprise est un admin de l'application entreprise (toutes les actions possibles de l'application)
|
|
|
|
"AdminEntreprise": (
|
|
|
|
p.RelationsEntreprisesView,
|
|
|
|
p.RelationsEntreprisesChange,
|
|
|
|
p.RelationsEntreprisesExport,
|
|
|
|
p.RelationsEntreprisesSend,
|
|
|
|
p.RelationsEntreprisesValidate,
|
2022-04-21 21:18:47 +02:00
|
|
|
p.RelationsEntreprisesCorrespondants,
|
2022-01-31 14:17:09 +01:00
|
|
|
),
|
2022-04-27 09:31:03 +02:00
|
|
|
# LecteurAPI peut utiliser l'API en lecture
|
|
|
|
"LecteurAPI": (p.APIView,),
|
2021-05-29 18:22:51 +02:00
|
|
|
# Super Admin est un root: création/suppression de départements
|
|
|
|
# _tous_ les droits
|
2021-07-05 21:56:28 +02:00
|
|
|
# Afin d'avoir tous les droits, il ne doit pas être asscoié à un département
|
2021-05-29 18:22:51 +02:00
|
|
|
"SuperAdmin": p.ALL_PERMISSIONS,
|
2021-06-19 23:21:37 +02:00
|
|
|
}
|
2022-01-31 14:17:09 +01:00
|
|
|
|
|
|
|
# Les rôles accessibles via la page d'admin utilisateurs
|
|
|
|
# - associés à un département:
|
|
|
|
ROLES_ATTRIBUABLES_DEPT = ("Ens", "Secr", "Admin", "RespPe")
|
|
|
|
# - globaux: (ne peuvent être attribués que par un SuperAdmin)
|
|
|
|
ROLES_ATTRIBUABLES_SCODOC = (
|
|
|
|
"ObservateurEntreprise",
|
|
|
|
"UtilisateurEntreprise",
|
|
|
|
"AdminEntreprise",
|
2022-04-27 09:31:03 +02:00
|
|
|
"LecteurAPI",
|
2022-01-31 14:17:09 +01:00
|
|
|
)
|