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 |
*
|
|
|
6 |
* @package Collection
|
|
|
7 |
* @category php 5.2
|
|
|
8 |
* @author Jean-Pascal MILCENT <jpm@tela-botanica.org>
|
|
|
9 |
* @copyright 2010 Tela-Botanica
|
|
|
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 120 2010-06-28 12:38:54Z jpm $
|
|
|
13 |
*
|
|
|
14 |
*/
|
|
|
15 |
class PersonneDao extends ColModele {
|
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";
|
|
|
31 |
$json = file_get_contents($url);
|
|
|
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 |
*/
|
|
|
46 |
public function getPersonneAPublication($id_personne) {
|
|
|
47 |
$url = $this->url_jrest.self::SERVICE_PERSONNE_A_PUBLICATION."/*/$id_personne/2361,2362,2363";
|
|
|
48 |
$json = file_get_contents($url);
|
|
|
49 |
$donnees = json_decode($json, true);
|
67 |
jpm |
50 |
return $donnees['publicationsAPersonne'];
|
55 |
jpm |
51 |
}
|
|
|
52 |
|
117 |
jpm |
53 |
/**
|
|
|
54 |
* Retourne l'ensemble des collections liées à une personne.
|
|
|
55 |
*
|
|
|
56 |
* @param integer l'id de la personne.
|
|
|
57 |
* @return array un tableau contenant les informations sur les collections liées à la personne.
|
|
|
58 |
*/
|
|
|
59 |
public function getPersonneACollection($id_personne) {
|
|
|
60 |
$url = $this->url_jrest.self::SERVICE_PERSONNE_A_COLLECTION."/*/*/$id_personne";
|
|
|
61 |
$url .= '?orderby='.urlencode("cc_nom ASC");
|
|
|
62 |
$json = file_get_contents($url);
|
|
|
63 |
$donnees = json_decode($json, true);
|
|
|
64 |
return $donnees['collectionsAPersonne'];
|
|
|
65 |
}
|
|
|
66 |
|
120 |
jpm |
67 |
/**
|
|
|
68 |
* Retourne l'ensemble des structures liées à une personne.
|
|
|
69 |
*
|
|
|
70 |
* @param integer l'id de la personne.
|
|
|
71 |
* @return array un tableau contenant les informations sur les structures liées à la personne.
|
|
|
72 |
*/
|
|
|
73 |
public function getPersonneAStructure($id_personne) {
|
|
|
74 |
$url = $this->url_jrest.self::SERVICE_PERSONNE_A_STRUCTURE."/*/*/$id_personne";
|
|
|
75 |
$url .= '?orderby='.urlencode("cs_nom ASC");
|
|
|
76 |
$json = file_get_contents($url);
|
|
|
77 |
$donnees = json_decode($json, true);
|
|
|
78 |
return $donnees['structuresAPersonne'];
|
|
|
79 |
}
|
|
|
80 |
|
15 |
jpm |
81 |
public function getPersonneNomComplet($id) {
|
55 |
jpm |
82 |
$nom_complet = '';
|
15 |
jpm |
83 |
$donnees = $this->getPersonne($id);
|
55 |
jpm |
84 |
if (isset($donnees['nbElements']) && $donnees['nbElements'] >= 1) {
|
|
|
85 |
$nom_complet = $donnees['personnes'][0]['cp_fmt_nom_complet'];
|
|
|
86 |
} else if (isset($donnees['cp_fmt_nom_complet'])) {
|
|
|
87 |
$nom_complet = $donnees['cp_fmt_nom_complet'];
|
|
|
88 |
}
|
15 |
jpm |
89 |
return $nom_complet;
|
|
|
90 |
}
|
93 |
jpm |
91 |
|
|
|
92 |
public function getPersonneCourriels($id) {
|
|
|
93 |
$courriels = '';
|
|
|
94 |
$donnees = $this->getPersonne($id);
|
|
|
95 |
if (isset($donnees['nbElements']) && $donnees['nbElements'] >= 1) {
|
|
|
96 |
$courriels = $donnees['personnes'][0]['cp_truk_courriel'];
|
|
|
97 |
} else if (isset($donnees['cp_truk_courriel'])) {
|
|
|
98 |
$courriels = $donnees['cp_truk_courriel'];
|
|
|
99 |
}
|
|
|
100 |
return $courriels;
|
|
|
101 |
}
|
15 |
jpm |
102 |
}
|
|
|
103 |
?>
|