15 |
jpm |
1 |
<?php
|
|
|
2 |
// declare(encoding='UTF-8');
|
|
|
3 |
/**
|
|
|
4 |
* Modèle d'accès à la base de données des Collections pour le module Personnes.
|
|
|
5 |
*
|
152 |
jpm |
6 |
* @package Collection
|
15 |
jpm |
7 |
* @category php 5.2
|
|
|
8 |
* @author Jean-Pascal MILCENT <jpm@tela-botanica.org>
|
|
|
9 |
* @copyright 2010 Tela-Botanica
|
152 |
jpm |
10 |
* @license http://www.cecill.info/licences/Licence_CeCILL_V2-fr.txt Licence CECILL
|
|
|
11 |
* @license http://www.gnu.org/licenses/gpl.html Licence GNU-GPL
|
|
|
12 |
* @version SVN: $Id: PersonneDao.php 152 2010-09-06 16:19:12Z jpm $
|
15 |
jpm |
13 |
*
|
|
|
14 |
*/
|
152 |
jpm |
15 |
class PersonneDao extends Dao {
|
19 |
jpm |
16 |
const SERVICE_PERSONNE = 'CoelPersonne';
|
55 |
jpm |
17 |
const SERVICE_PERSONNE_A_PUBLICATION = 'CoelPublicationAPersonne';
|
117 |
jpm |
18 |
const SERVICE_PERSONNE_A_COLLECTION = 'CoelCollectionAPersonne';
|
120 |
jpm |
19 |
const SERVICE_PERSONNE_A_STRUCTURE = 'CoelStructureAPersonne';
|
15 |
jpm |
20 |
|
|
|
21 |
/**
|
|
|
22 |
* Retourne l'ensemble des information d'une personne.
|
|
|
23 |
*
|
|
|
24 |
* @param integer l'id de la personne.
|
|
|
25 |
* @return array un tableau contenant les informations sur la personne.
|
|
|
26 |
*/
|
|
|
27 |
public function getPersonne($id) {
|
62 |
jpm |
28 |
$donnees = array();
|
|
|
29 |
if (is_numeric($id)) {
|
|
|
30 |
$url = $this->url_jrest.self::SERVICE_PERSONNE."/$id";
|
152 |
jpm |
31 |
$json = $this->envoyerRequeteConsultation($url);
|
62 |
jpm |
32 |
$donnees = json_decode($json, true);
|
|
|
33 |
if ($donnees['nbElements'] == 1) {
|
|
|
34 |
$donnees = $donnees['personnes'][0];
|
|
|
35 |
}
|
55 |
jpm |
36 |
}
|
15 |
jpm |
37 |
return $donnees;
|
|
|
38 |
}
|
|
|
39 |
|
55 |
jpm |
40 |
/**
|
|
|
41 |
* Retourne l'ensemble des publications liées à une personne.
|
|
|
42 |
*
|
|
|
43 |
* @param integer l'id de la personne.
|
|
|
44 |
* @return array un tableau contenant les informations sur les publications liées à la personne.
|
|
|
45 |
*/
|
152 |
jpm |
46 |
public function getPublicationsLiees($id_personne) {
|
|
|
47 |
$donnees = $this->getPersonneAPublication($id_personne);
|
|
|
48 |
return $donnees['publicationsAPersonne'];
|
|
|
49 |
}
|
|
|
50 |
|
|
|
51 |
/**
|
|
|
52 |
* Retourne le nombre des publications liées à une personne.
|
|
|
53 |
*
|
|
|
54 |
* @param integer l'id de la personne.
|
|
|
55 |
* @return integer le nombre de publications liées à la personne.
|
|
|
56 |
*/
|
|
|
57 |
public function getNbrePublicationsLiees($id_personne) {
|
|
|
58 |
$donnees = $this->getPersonneAPublication($id_personne);
|
|
|
59 |
return $donnees['nbElements'];
|
|
|
60 |
}
|
|
|
61 |
|
|
|
62 |
private function getPersonneAPublication($id_personne) {
|
55 |
jpm |
63 |
$url = $this->url_jrest.self::SERVICE_PERSONNE_A_PUBLICATION."/*/$id_personne/2361,2362,2363";
|
152 |
jpm |
64 |
$json = $this->envoyerRequeteConsultation($url);
|
55 |
jpm |
65 |
$donnees = json_decode($json, true);
|
152 |
jpm |
66 |
return $donnees;
|
55 |
jpm |
67 |
}
|
|
|
68 |
|
117 |
jpm |
69 |
/**
|
|
|
70 |
* Retourne l'ensemble des collections liées à une personne.
|
|
|
71 |
*
|
|
|
72 |
* @param integer l'id de la personne.
|
|
|
73 |
* @return array un tableau contenant les informations sur les collections liées à la personne.
|
|
|
74 |
*/
|
|
|
75 |
public function getPersonneACollection($id_personne) {
|
|
|
76 |
$url = $this->url_jrest.self::SERVICE_PERSONNE_A_COLLECTION."/*/*/$id_personne";
|
152 |
jpm |
77 |
$this->addOrdre('cc_nom', self::ORDRE_ASCENDANT);
|
|
|
78 |
$json = $this->envoyerRequeteConsultation($url);
|
117 |
jpm |
79 |
$donnees = json_decode($json, true);
|
|
|
80 |
return $donnees['collectionsAPersonne'];
|
|
|
81 |
}
|
|
|
82 |
|
120 |
jpm |
83 |
/**
|
|
|
84 |
* Retourne l'ensemble des structures liées à une personne.
|
|
|
85 |
*
|
|
|
86 |
* @param integer l'id de la personne.
|
|
|
87 |
* @return array un tableau contenant les informations sur les structures liées à la personne.
|
|
|
88 |
*/
|
|
|
89 |
public function getPersonneAStructure($id_personne) {
|
|
|
90 |
$url = $this->url_jrest.self::SERVICE_PERSONNE_A_STRUCTURE."/*/*/$id_personne";
|
152 |
jpm |
91 |
$this->addOrdre('cs_nom', self::ORDRE_ASCENDANT);
|
|
|
92 |
$json = $this->envoyerRequeteConsultation($url);
|
120 |
jpm |
93 |
$donnees = json_decode($json, true);
|
|
|
94 |
return $donnees['structuresAPersonne'];
|
|
|
95 |
}
|
|
|
96 |
|
15 |
jpm |
97 |
public function getPersonneNomComplet($id) {
|
55 |
jpm |
98 |
$nom_complet = '';
|
15 |
jpm |
99 |
$donnees = $this->getPersonne($id);
|
55 |
jpm |
100 |
if (isset($donnees['nbElements']) && $donnees['nbElements'] >= 1) {
|
|
|
101 |
$nom_complet = $donnees['personnes'][0]['cp_fmt_nom_complet'];
|
|
|
102 |
} else if (isset($donnees['cp_fmt_nom_complet'])) {
|
|
|
103 |
$nom_complet = $donnees['cp_fmt_nom_complet'];
|
|
|
104 |
}
|
15 |
jpm |
105 |
return $nom_complet;
|
|
|
106 |
}
|
93 |
jpm |
107 |
|
|
|
108 |
public function getPersonneCourriels($id) {
|
|
|
109 |
$courriels = '';
|
|
|
110 |
$donnees = $this->getPersonne($id);
|
|
|
111 |
if (isset($donnees['nbElements']) && $donnees['nbElements'] >= 1) {
|
|
|
112 |
$courriels = $donnees['personnes'][0]['cp_truk_courriel'];
|
|
|
113 |
} else if (isset($donnees['cp_truk_courriel'])) {
|
|
|
114 |
$courriels = $donnees['cp_truk_courriel'];
|
|
|
115 |
}
|
|
|
116 |
return $courriels;
|
|
|
117 |
}
|
15 |
jpm |
118 |
}
|
|
|
119 |
?>
|