2806 |
aurelien |
1 |
<?php
|
|
|
2 |
// declare(encoding='UTF-8');
|
|
|
3 |
/**
|
|
|
4 |
* Classe de gestion des utilisateurs
|
|
|
5 |
*
|
|
|
6 |
*
|
|
|
7 |
* @internal Mininum PHP version : 5.2
|
|
|
8 |
* @category CEL
|
|
|
9 |
* @package Services
|
|
|
10 |
* @subpackage Bibliothèques
|
|
|
11 |
* @version 0.1
|
|
|
12 |
* @author Aurelien PERONNET <aurelien@tela-botanica.org>
|
|
|
13 |
* @license GPL v3 <http://www.gnu.org/licenses/gpl.txt>
|
|
|
14 |
* @license CECILL v2 <http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt>
|
|
|
15 |
* @copyright 1999-2015 Tela Botanica <accueil@tela-botanica.org>
|
|
|
16 |
*/
|
|
|
17 |
class GestionUtilisateur extends Cel {
|
3027 |
mathias |
18 |
|
|
|
19 |
/** contient le jeton SSO décodé, si une authentification a eu lieu avec succès */
|
|
|
20 |
protected $token_decode;
|
|
|
21 |
|
2823 |
mathias |
22 |
public function obtenirIdentiteConnectee() {
|
|
|
23 |
$login_utilisateur = $this->getLoginUtilisateurVerifie();
|
|
|
24 |
if ($login_utilisateur) {
|
|
|
25 |
$utilisateur = $this->chargerInfosUtilisateur($login_utilisateur);
|
|
|
26 |
$utilisateur['connecte'] = true;
|
|
|
27 |
} else {
|
|
|
28 |
$utilisateur = $this->getUtilisateurAnonyme();
|
2806 |
aurelien |
29 |
}
|
2823 |
mathias |
30 |
return $utilisateur;
|
|
|
31 |
}
|
|
|
32 |
|
|
|
33 |
public function obtenirUtilisateurSiExiste($login_utilisateur) {
|
|
|
34 |
$utilisateur = $this->getUtilisateurAnonyme();
|
|
|
35 |
if ($utilisateur_existe = $this->chargerInfosUtilisateur($login_utilisateur)) {
|
|
|
36 |
$utilisateur = $utilisateur_existe;
|
|
|
37 |
$utilisateur['connecte'] = true;
|
|
|
38 |
}
|
|
|
39 |
return $utilisateur;
|
|
|
40 |
}
|
3027 |
mathias |
41 |
|
2823 |
mathias |
42 |
private function chargerInfosUtilisateur($login) {
|
3027 |
mathias |
43 |
//var_dump($this->token_decode);
|
2823 |
mathias |
44 |
$requete = 'SELECT * '.
|
3027 |
mathias |
45 |
'FROM cel_utilisateurs_infos AS cu '.
|
2823 |
mathias |
46 |
'WHERE courriel = '.Cel::db()->proteger($login).' '.
|
|
|
47 |
' -- '.__FILE__.':'.__LINE__;
|
|
|
48 |
$resultats = Cel::db()->requeter($requete);
|
3027 |
mathias |
49 |
|
2823 |
mathias |
50 |
$retour = false;
|
|
|
51 |
if (is_array($resultats) && count($resultats) > 0) {
|
|
|
52 |
$retour = $resultats[0];
|
3027 |
mathias |
53 |
} else {
|
|
|
54 |
// première connexion au CeL !
|
|
|
55 |
$this->initialiserInfosUtilisateur();
|
2823 |
mathias |
56 |
$this->affecterDonneesWidgetSaisie($login, $retour);
|
|
|
57 |
}
|
2806 |
aurelien |
58 |
// booleanisation des valeurs
|
|
|
59 |
$retour['admin'] = ($retour['admin'] == 1);
|
2823 |
mathias |
60 |
$retour['licence_acceptee'] = (isset($retour['licence_acceptee']) && ($retour['licence_acceptee'] == 1));
|
3027 |
mathias |
61 |
|
2823 |
mathias |
62 |
return $retour;
|
|
|
63 |
}
|
3027 |
mathias |
64 |
|
2823 |
mathias |
65 |
private function utilisateurEstAutorise($id_utilisateur) {
|
|
|
66 |
$autorise = false;
|
2806 |
aurelien |
67 |
$token = $this->getToken();
|
2823 |
mathias |
68 |
// TODO: tester si le jeton contient réelement quelque chose ?
|
|
|
69 |
if($token) {
|
|
|
70 |
// On demande à l'annuaire si le jeton est bien valide
|
|
|
71 |
$valide = file_get_contents($this->config['identification']['sso_url'].'/verifierjeton?token='.$token);
|
|
|
72 |
$token_decode = $this->decoderToken($token);
|
|
|
73 |
|
|
|
74 |
// Si l'utilisateur du token est bien le même que celui sur lequel on veut agir : OK
|
|
|
75 |
if($token_decode['id'] == $id_utilisateur) {
|
|
|
76 |
$autorise = true;
|
|
|
77 |
} else {
|
|
|
78 |
// Sinon on vérifie que l'utilisateur est admin
|
3027 |
mathias |
79 |
$requete = "SELECT admin FROM cel_utilisateurs_infos WHERE id_utilisateur = ".Cel::db()->proteger($token_decode['id']);
|
2823 |
mathias |
80 |
$resultat = Cel::db()->requeter($requete);
|
|
|
81 |
|
|
|
82 |
$admin = false;
|
|
|
83 |
if ($resultat && count($resultat) > 0) {
|
|
|
84 |
$autorise = ($resultat[0]['admin'] == 1);
|
|
|
85 |
}
|
|
|
86 |
}
|
|
|
87 |
} else {
|
|
|
88 |
// pas de token, on vérifie bien qu'il s'agit d'une session temporaire
|
|
|
89 |
$autorise = ($id_utilisateur == session_id());
|
|
|
90 |
}
|
|
|
91 |
return $autorise;
|
2806 |
aurelien |
92 |
}
|
2823 |
mathias |
93 |
|
|
|
94 |
// renvoie false ou bien le login utilisateur actuel
|
|
|
95 |
private function getLoginUtilisateurVerifie() {
|
|
|
96 |
$token = $this->getToken();
|
|
|
97 |
$login = false;
|
|
|
98 |
if($token) {
|
|
|
99 |
// On demande à l'annuaire si le jeton est bien valide
|
2846 |
mathias |
100 |
|
|
|
101 |
// curl avec les options suivantes ignore le pb de certificat (pour tester en local)
|
|
|
102 |
// @TODO CHANGER !
|
|
|
103 |
$ch = curl_init();
|
|
|
104 |
$timeout = 5;
|
3027 |
mathias |
105 |
$url = $this->config['identification']['sso_url'].'/verifierjeton?token='.$token;
|
|
|
106 |
curl_setopt($ch, CURLOPT_URL, $url);
|
2846 |
mathias |
107 |
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
|
|
|
108 |
curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, $timeout);
|
|
|
109 |
// équivalent de "-k"
|
|
|
110 |
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false);
|
|
|
111 |
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
|
|
|
112 |
$valide = curl_exec($ch);
|
|
|
113 |
curl_close($ch);
|
|
|
114 |
|
|
|
115 |
//$valide = file_get_contents($this->config['identification']['sso_url'].'/verifierjeton?token='.$token);
|
2823 |
mathias |
116 |
$login = ($valide === "true") ? $this->obtenirLoginParToken($token) : false;
|
|
|
117 |
}
|
|
|
118 |
|
|
|
119 |
return $login;
|
|
|
120 |
}
|
3027 |
mathias |
121 |
|
|
|
122 |
// @WTF doublon avec la méthode du dessus ? Qu'est-ce que c'est que ce bins ?
|
2846 |
mathias |
123 |
protected function verifierJeton($jeton) {
|
|
|
124 |
$urlServiceVerification = $this->conteneur->getParametre("urlServiceBaseAuth") . "verifierjeton";
|
|
|
125 |
$urlServiceVerification .= "?token=" . $jeton;
|
|
|
126 |
|
|
|
127 |
// file_get_contents râle si le certificat HTTPS est auto-signé
|
|
|
128 |
//$retour = file_get_contents($urlServiceVerification);
|
|
|
129 |
|
|
|
130 |
// curl avec les options suivantes ignore le pb de certificat (pour tester en local)
|
|
|
131 |
$ch = curl_init();
|
|
|
132 |
$timeout = 5;
|
|
|
133 |
curl_setopt($ch, CURLOPT_URL, $urlServiceVerification);
|
|
|
134 |
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
|
|
|
135 |
curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, $timeout);
|
|
|
136 |
// équivalent de "-k"
|
|
|
137 |
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false);
|
|
|
138 |
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
|
|
|
139 |
$data = curl_exec($ch);
|
|
|
140 |
curl_close($ch);
|
|
|
141 |
$retour = $data;
|
|
|
142 |
|
|
|
143 |
$retour = json_decode($retour, true);
|
|
|
144 |
|
|
|
145 |
return ($retour === true);
|
|
|
146 |
}
|
2823 |
mathias |
147 |
|
|
|
148 |
private function decoderToken($token) {
|
|
|
149 |
$token_parts = explode('.', $token);
|
3024 |
mathias |
150 |
return json_decode($this->urlsafeB64Decode($token_parts[1]), true);
|
2823 |
mathias |
151 |
}
|
3024 |
mathias |
152 |
|
|
|
153 |
/**
|
|
|
154 |
* Decode a string with URL-safe Base64.
|
|
|
155 |
* copié depuis firebase/jwt
|
|
|
156 |
*
|
|
|
157 |
* @param string $input A Base64 encoded string
|
|
|
158 |
* @return string A decoded string
|
|
|
159 |
*/
|
|
|
160 |
protected function urlsafeB64Decode($input) {
|
|
|
161 |
$remainder = strlen($input) % 4;
|
|
|
162 |
if ($remainder) {
|
|
|
163 |
$padlen = 4 - $remainder;
|
|
|
164 |
$input .= str_repeat('=', $padlen);
|
|
|
165 |
}
|
|
|
166 |
return base64_decode(strtr($input, '-_', '+/'));
|
|
|
167 |
}
|
2823 |
mathias |
168 |
|
|
|
169 |
private function obtenirLoginParToken($token) {
|
3027 |
mathias |
170 |
$this->token_decode = $this->decoderToken($token);
|
|
|
171 |
return $this->token_decode['sub'];
|
2823 |
mathias |
172 |
}
|
|
|
173 |
|
|
|
174 |
private function getToken() {
|
|
|
175 |
// Premier essai, dans le header
|
|
|
176 |
$headers = apache_request_headers();
|
|
|
177 |
$token = !empty($headers['Authorization']) ? $headers['Authorization'] : null;
|
|
|
178 |
|
|
|
179 |
// Sinon dans $_REQUEST ?
|
|
|
180 |
if($token == null) {
|
|
|
181 |
$token = !empty($_REQUEST['Authorization']) ? $_REQUEST['Authorization'] : null;
|
|
|
182 |
}
|
|
|
183 |
|
|
|
184 |
return $token;
|
|
|
185 |
}
|
|
|
186 |
|
|
|
187 |
private function getUtilisateurAnonyme() {
|
|
|
188 |
return array('connecte' => false,
|
|
|
189 |
'id_utilisateur' => session_id(),
|
|
|
190 |
'courriel' => '',
|
|
|
191 |
'mot_de_passe' => '',
|
|
|
192 |
'nom' => '',
|
|
|
193 |
'prenom' => '',
|
|
|
194 |
'licence_acceptee' => false,
|
|
|
195 |
'preferences_utilisateur' => '',
|
|
|
196 |
'admin' => false
|
|
|
197 |
);
|
|
|
198 |
}
|
3027 |
mathias |
199 |
|
|
|
200 |
/**
|
|
|
201 |
* Lors de la première connexion au CeL, remplis la table cel_utilisateurs_infos avec
|
|
|
202 |
* les données du jeton SSO
|
|
|
203 |
*/
|
|
|
204 |
private function initialiserInfosUtilisateur() {
|
|
|
205 |
$requete = 'INSERT INTO cel_utilisateurs_infos'
|
|
|
206 |
. ' (id_utilisateur, intitule, prenom, nom, courriel, admin, licence_acceptee, preferences, date_premiere_utilisation )'
|
|
|
207 |
. ' VALUES ('
|
|
|
208 |
. Cel::db()->proteger($this->token_decode['id']) . ', '
|
|
|
209 |
. Cel::db()->proteger($this->token_decode['intitule']) . ', '
|
|
|
210 |
. Cel::db()->proteger($this->token_decode['prenom']) . ', '
|
|
|
211 |
. Cel::db()->proteger($this->token_decode['nom']) . ', '
|
|
|
212 |
. Cel::db()->proteger($this->token_decode['sub']) . ', '
|
|
|
213 |
. "'0', '0', NULL, NOW()"
|
|
|
214 |
. ' ) ON DUPLICATE KEY UPDATE date_premiere_utilisation = NOW()'
|
|
|
215 |
. ' -- '.__FILE__.':'.__LINE__
|
|
|
216 |
;
|
2823 |
mathias |
217 |
Cel::db()->executer($requete);
|
|
|
218 |
}
|
|
|
219 |
|
|
|
220 |
/**
|
|
|
221 |
* Lors de la première connection au cel d'un utilisateur, affecte à son compte ses observations saisies
|
|
|
222 |
* dans les widgets de saisie, où seul son mail avait été conservé en attendant
|
|
|
223 |
* Enter description here ...
|
|
|
224 |
* @param string $mail_utilisateur
|
|
|
225 |
* @param array $infos_utilisateur
|
|
|
226 |
*/
|
|
|
227 |
private function affecterDonneesWidgetSaisie($mail_utilisateur, $infos_utilisateur) {
|
|
|
228 |
//TODO tout ceci pourrait être simplifié sans avoir besoin d'instancier quoi que ce soit
|
|
|
229 |
$gestion_obs = new GestionObservation($this->config);
|
|
|
230 |
$gestion_img = new GestionImage($this->config);
|
|
|
231 |
|
|
|
232 |
$gestion_obs->migrerObservationsMailVersId($mail_utilisateur, $infos_utilisateur);
|
|
|
233 |
$gestion_img->migrerImagesMailVersId($mail_utilisateur, $infos_utilisateur);
|
|
|
234 |
GestionMotsClesChemin::migrerMotsClesMailVersId($mail_utilisateur, $infos_utilisateur);
|
|
|
235 |
}
|
2806 |
aurelien |
236 |
}
|
2808 |
mathias |
237 |
|
|
|
238 |
/**
|
|
|
239 |
* Compatibilité avec nginx - merci http://php.net/manual/fr/function.getallheaders.php
|
|
|
240 |
*/
|
|
|
241 |
if (! function_exists('apache_request_headers')) {
|
|
|
242 |
function apache_request_headers() {
|
|
|
243 |
$headers = '';
|
|
|
244 |
foreach ($_SERVER as $name => $value) {
|
|
|
245 |
if (substr($name, 0, 5) == 'HTTP_') {
|
|
|
246 |
$headers[str_replace(' ', '-', ucwords(strtolower(str_replace('_', ' ', substr($name, 5)))))] = $value;
|
|
|
247 |
}
|
|
|
248 |
}
|
|
|
249 |
return $headers;
|
|
|
250 |
}
|
|
|
251 |
}
|
3024 |
mathias |
252 |
?>
|