139 |
jpm |
1 |
<?php
|
|
|
2 |
class Utilisateurs {
|
|
|
3 |
const TPL_URL_WS_ANNUAIRE = 'http://www.tela-botanica.org/service:annuaire:utilisateur/identite-par-courriel/%s';
|
|
|
4 |
|
|
|
5 |
private $courriels = array();
|
|
|
6 |
private $clientRest = null;
|
|
|
7 |
|
|
|
8 |
/**
|
|
|
9 |
* Prend en paramêtre un tableau de courriels.
|
|
|
10 |
*
|
|
|
11 |
* @param array $courriels un tableau de courriels pour lesquels il faut rechercher les infos d'identité
|
|
|
12 |
*/
|
|
|
13 |
public function __construct(Array $courriels = array(), RestClient $clientRest = null) {
|
|
|
14 |
$this->courriels = $courriels;
|
|
|
15 |
$this->clientRest = is_null($clientRest) ? new RestClient() : $clientRest;
|
|
|
16 |
}
|
|
|
17 |
|
|
|
18 |
public function setCourriels($courriels) {
|
|
|
19 |
$this->courriels = $courriels;
|
|
|
20 |
}
|
|
|
21 |
|
|
|
22 |
/**
|
|
|
23 |
* Retourne, avoir interrogé un service de l'annuaire, les intitulés correspondant aux
|
|
|
24 |
* courriels des utilisateurs.
|
|
|
25 |
*
|
|
|
26 |
* @return mixed tableau avec en clé le courriel et en valeur l'intitulé de la personne à
|
|
|
27 |
* afficher, false en cas d'erreur ou de résultat vide.
|
|
|
28 |
*/
|
|
|
29 |
public function getIntitules() {
|
|
|
30 |
$intitules = false;
|
|
|
31 |
if ($identites = $this->getIdentites()) {
|
|
|
32 |
$intitules = array();
|
|
|
33 |
foreach ($identites as $courriel => $infos) {
|
|
|
34 |
$intitules[$courriel] = $infos['intitule'];
|
|
|
35 |
}
|
|
|
36 |
}
|
|
|
37 |
return $intitules;
|
|
|
38 |
}
|
|
|
39 |
|
|
|
40 |
private function getIdentites() {
|
|
|
41 |
$utilisateursInfos = $this->consulterServiceAnnuaire();
|
|
|
42 |
$identites = $this->extraireIdentites($utilisateursInfos);
|
|
|
43 |
return $identites;
|
|
|
44 |
}
|
|
|
45 |
|
|
|
46 |
private function consulterServiceAnnuaire() {
|
|
|
47 |
$url = sprintf(self::TPL_URL_WS_ANNUAIRE, implode(',', $this->courriels));
|
|
|
48 |
$json = $this->clientRest->consulter($url);
|
|
|
49 |
$utilisateurs = json_decode($json, true);
|
|
|
50 |
return $utilisateurs;
|
|
|
51 |
}
|
|
|
52 |
|
|
|
53 |
private function extraireIdentites($utilisateursInfos) {
|
|
|
54 |
$identites = array();
|
|
|
55 |
foreach ($this->courriels as $courriel) {
|
|
|
56 |
$info = array('id' => null, 'intitule' => '');
|
|
|
57 |
if (isset($utilisateursInfos[$courriel])) {
|
|
|
58 |
$info['intitule'] = $utilisateursInfos[$courriel]['intitule'];
|
|
|
59 |
$info['id'] = $utilisateursInfos[$courriel]['id'];
|
|
|
60 |
} else {
|
|
|
61 |
$info['intitule'] = $this->tronquerCourriel($courriel);
|
|
|
62 |
}
|
|
|
63 |
$identites[$courriel] = $info;
|
|
|
64 |
}
|
|
|
65 |
return $identites;
|
|
|
66 |
}
|
|
|
67 |
|
|
|
68 |
private function tronquerCourriel($courriel) {
|
|
|
69 |
$courriel = str_replace(substr($courriel, strpos($courriel, '@')), '@...', $courriel);
|
|
|
70 |
return $courriel;
|
|
|
71 |
}
|
|
|
72 |
}
|
|
|
73 |
?>
|