19,13 → 19,13 |
public function setCourriels($courriels) { |
$this->courriels = $courriels; |
} |
/** |
* Lance l'interrogation du service de l'annuaire. |
* |
* @return null. |
*/ |
/** |
* Lance l'interrogation du service de l'annuaire. |
* |
* @return null. |
*/ |
public function chargerIdentites() { |
$this->identites = $this->getIdentites($this->courriels); |
$this->identites = $this->getIdentites(); |
} |
|
/** |
36,61 → 36,70 |
* afficher, false en cas d'erreur ou de résultat vide. |
*/ |
public function getIntitules() { |
$intitules = false; |
$this->chargerIdentites(); |
if (! $this->identites) return false; |
|
$intitules = array(); |
foreach ($this->identites as $courriel => $infos) { |
$intitules[$courriel] = $infos['intitule']; |
if ($this->identites) { |
$intitules = array(); |
foreach ($this->identites as $courriel => $infos) { |
$intitules[$courriel] = $infos['intitule']; |
} |
} |
return $intitules; |
} |
|
/** |
* Retourne un intitulé en fonction d'un courriel. |
* |
* @return String l'intitulé de l'utilisateur ou une chaine vide en cas de problème. |
*/ |
public function getIntitule($courriel) { |
if ($this->contenirCourriel($courriel)) { |
return $this->identites[$courriel]['intitule']; |
} |
return ''; |
/** |
* Retourne un intitulé en fonction d'un courriel. |
* |
* @return String l'intitulé de l'utilisateur ou une chaine vide en cas de problème. |
*/ |
public function getIntitule($courriel) { |
$intitule = ''; |
if ($this->contenirCourriel($courriel)) { |
$intitule = $this->identites[$courriel]['intitule']; |
} |
return $intitule; |
} |
|
/** |
* Retourne l'identifiant de l'utilisateur en fonction d'un courriel. |
* |
* @return String l'id de l'utilisateur ou une chaine vide en cas de problème. |
*/ |
public function getId($courriel) { |
if ($this->contenirCourriel($courriel)) { |
return $this->identites[$courriel]['id']; |
} |
return ''; |
/** |
* Retourne l'identifiant de l'utilisateur en fonction d'un courriel. |
* |
* @return String l'id de l'utilisateur ou une chaine vide en cas de problème. |
*/ |
public function getId($courriel) { |
$id = ''; |
if ($this->contenirCourriel($courriel)) { |
$id = $this->identites[$courriel]['id']; |
} |
return $id; |
} |
|
private function contenirCourriel($courriel) { |
return ($this->identites && isset($this->identites[$courriel])) ? true : false; |
$ok = ($this->identites && isset($this->identites[$courriel])) ? true : false; |
return $ok; |
} |
|
private function getIdentites($courriels) { |
// consulterServiceAnnuaire |
$utilisateursInfos = json_decode($this->clientRest->consulter(sprintf(self::TPL_URL_WS_ANNUAIRE, |
implode(',', $courriels))), |
true); |
return self::extraireIdentites($utilisateursInfos, $this->courriels); |
private function getIdentites() { |
$utilisateursInfos = $this->consulterServiceAnnuaire(); |
$identites = $this->extraireIdentites($utilisateursInfos); |
return $identites; |
} |
|
static function extraireIdentites($utilisateursInfos, $courriels) { |
private function consulterServiceAnnuaire() { |
$url = sprintf(self::TPL_URL_WS_ANNUAIRE, implode(',', $this->courriels)); |
$json = $this->clientRest->consulter($url); |
$utilisateurs = json_decode($json, true); |
return $utilisateurs; |
} |
|
private function extraireIdentites($utilisateursInfos) { |
$identites = array(); |
foreach ($courriels as $courriel) { |
foreach ($this->courriels as $courriel) { |
$info = array('id' => null, 'intitule' => ''); |
if (isset($utilisateursInfos[$courriel])) { |
$info['intitule'] = $utilisateursInfos[$courriel]['intitule']; |
$info['id'] = $utilisateursInfos[$courriel]['id']; |
} else { |
$info['intitule'] = self::tronquerCourriel($courriel); |
$info['intitule'] = $this->tronquerCourriel($courriel); |
} |
$identites[$courriel] = $info; |
} |
97,8 → 106,9 |
return $identites; |
} |
|
static function tronquerCourriel($courriel) { |
return str_replace(substr($courriel, strpos($courriel, '@')), '@...', $courriel); |
private function tronquerCourriel($courriel) { |
$courriel = str_replace(substr($courriel, strpos($courriel, '@')), '@...', $courriel); |
return $courriel; |
} |
} |
?> |