-
Notifications
You must be signed in to change notification settings - Fork 0
/
carte-etu.php
133 lines (111 loc) · 4.31 KB
/
carte-etu.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
<?php // -*-PHP-*-
require_once ('config/config.inc.php');
require_once ('lib/supannPerson.inc.php');
$CARTE_ETU_ALLOWED_ATTRS = [
'sn' => 'sn', 'givenName' => 'givenName', 'supannNomDeNaissance' => 'supannNomDeNaissance',
'supannEtuId' => 'supannEtuId',
'supannCodeINE' => 'supannCodeINE',
'employeeNumber' => 'employeeNumber',
'supannEntiteAffectationPrincipale' => 'supannEntiteAffectationPrincipale',
'supannEtuInscription' => 'MULTI',
'supannRefId' => 'MULTI',
];
$UP1_COMPOSANTE_TO_LIB_CMP_STICKER = [
'UFR 08' => 'Géographie',
'UFR 10' => 'Philo',
'UFR 11' => 'Science Po',
'UFR 27' => 'Maths info',
'UFR 10 - Socio' => 'Socio',
];
$typedip_labels = [
'XA-L1' => 'Lic 1 et 2',
'XA-L2' => 'Lic 1 et 2',
'XA-L3' => 'Licence 3',
'XB-M1' => 'Master 1',
'XB-M2' => 'Master 2',
'YA-D1' => 'Doctorat',
'YA-D2' => 'Doctorat',
'XD-M1' => 'Master 1E',
'XD-M2' => 'Master 2E',
'UE-B4' => 'DU niv. M1',
'03-B6' => 'HDR',
];
initPhpCAS();
if (!phpCAS::checkAuthentication()) {
echoJson([ "error" => "Unauthorized", "cas_login_url" => 'https://' . $GLOBALS['CAS_HOST'] . $GLOBALS['CAS_CONTEXT'] . '/login' ]);
exit(0);
}
$uid = phpCAS::getUser();
// to access supannCodeINE, employeeNumber
$LDAP_CONNECT = $GLOBALS['LDAP_CONNECT_LEVEL2'];
$impersonate = GET_or_NULL("uid");
if ($impersonate) {
if (existsLdap($GLOBALS['PEOPLE_DN'], "(&(uid=$uid)" . $GLOBALS['LEVEL1_FILTER'] . ")")) {
$uid = $impersonate;
} else {
error_log("not allowing $uid to impersonate");
}
}
function affectation_label($code) {
$affect = $GLOBALS['structureKeyToAll'][$code];
if ($affect) {
$label = str_replace('EDS-Formation-', 'EDS-', $affect['name']);
$label = $GLOBALS['UP1_COMPOSANTE_TO_LIB_CMP_STICKER'][$label] ?? $label;
}
return $label ?? $code;
}
function typedip($typedip, $cursusann) {
$typedip = removePrefix($typedip, '{SISE}');
$cursusann = removePrefix($cursusann, '{SUPANN}');
return $GLOBALS['typedip_labels']["$typedip-$cursusann"] ?? null;
}
function diploma_name($code_etape) {
require_once 'lib/groups.inc.php';
$diploma = getGroupsFromDiplomaDn(array("(ou=$code_etape)"), 1);
return removePrefix($diploma[0]["description"], "$code_etape - ");
}
function importantEtuInscription($inscriptions, $primaryAffect, $uid, $etab) {
$best = null;
foreach ($inscriptions as $s) {
$inscr = parse_supannEtuInscription($s);
if ($inscr['etab'] !== $etab) continue;
$inscr['anneeinsc'] = intval($inscr['anneeinsc']);
if (!$best || $inscr['anneeinsc'] > $best['anneeinsc'] || $inscr['anneeinsc'] === $best['anneeinsc'] && $inscr['typedip'] > $best['typedip']) {
$best = $inscr;
}
}
if ($best) {
if ($best['affect'] !== $primaryAffect) error_log("weird affectation for $uid");
$code_etape = removePrefix($best['etape'], '{UAI:0751717J}');
$best = [
'affect' => affectation_label($best['affect']),
'etape' => $code_etape,
'anneeinsc' => $best['anneeinsc'],
'typedip' => typedip($best['typedip'], $best['cursusann']) ?? diploma_name($code_etape),
];
}
return $best;
}
$attrs = getFirstLdapInfo($PEOPLE_DN, "(&(uid=$uid)(supannEntiteAffectationPrincipale=*)(supannEtuInscription=*))", $CARTE_ETU_ALLOWED_ATTRS);
$etab = '{UAI}0751717J';
if ($attrs) {
$ids = groupByEtiquette(getAndUnset($attrs, 'supannRefId'));
if (isset($ids['ESCN'])) $attrs['ESCN'] = $ids['ESCN'];
if (isset($_GET["iae"])) {
$etab = '{UAI}0753364Z';
$attrs['employeeNumber'] = $ids['UAI:0753364Z:BARCODE'];
}
}
if (!$attrs || !$attrs['employeeNumber']) {
$error = !$attrs ? "Inconnu" :
"Pour avoir accès à la carte d'étudiant dématérialisée, il faut actuellement :
- soit avoir une carte physique
- soit avoir perdu une carte physique
- soit une carte physique est imprimée mais vous ne l'avez pas encore reçu
Vous n'êtes donc pas éligible (pour l'instant, nous travaillons pour étendre les cas éligibles...)";
echoJson([ "error" => $error ]);
exit(0);
}
$attrs['importantEtuInscription'] = importantEtuInscription(getAndUnset($attrs, 'supannEtuInscription'), $primaryAffect, $uid, $etab);
echoJson($attrs);
?>