3 |
jpm |
1 |
<?php
|
|
|
2 |
// declare(encoding='UTF-8');
|
|
|
3 |
/**
|
|
|
4 |
* Classe permettant de fournir des informations sur les noms scientifiques.
|
|
|
5 |
* Si l'url finit par /noms on retourne une liste de noms latin et leurs identifiants (seulement les 100 premeiers noms par défaut).
|
|
|
6 |
* L'url peut contenir des paramètres optionnels passés après le ? : /noms?param1=val1¶m2=val2&...
|
|
|
7 |
*
|
|
|
8 |
* Les paramètres de requête disponibles sont : masque, masque.gen (nom de genre), masque.sp (épithète d'espèce), masque.ssp (épithète infra-spécifique),
|
|
|
9 |
* masque.au (auteur du nom), masque.an (année de publication du nom), masque.bib (réf biblio de la publi d'origine du nom), masque.ad (nomen addendum),
|
|
|
10 |
* masque.nn (identifiant du nom), recherche, rang, distinct, retour.format, nl.format, nl.structure, navigation.depart et navigation.limite.
|
|
|
11 |
* Les différentes requetes :
|
|
|
12 |
* - noms | noms/relations/#projet/#id_projet | noms/#id | noms/#id/#champ+#champ
|
|
|
13 |
* - noms/#id/relations | noms/#id/relations/synonymie | noms/#id/relations/homonymie | noms/#id/relations/flores
|
|
|
14 |
* - noms/stats/rangs | noms/stats/annees | noms/stats/initiales
|
|
|
15 |
*
|
|
|
16 |
* @package bdtfx
|
|
|
17 |
* @author Jennifer Dhé <jennifer.dhe@tela-botanica.org>
|
|
|
18 |
* @license GPL v3 <http://www.gnu.org/licenses/gpl.txt>
|
|
|
19 |
* @license CECILL v2 <http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt>
|
|
|
20 |
* @version $Id$
|
|
|
21 |
* @copyright 1999-2011 Tela Botanica (accueil@tela-botanica.org)
|
|
|
22 |
* @see http://www.tela-botanica.org/wikini/eflore/wakka.php?wiki=EfloreApi01Noms
|
|
|
23 |
*/
|
|
|
24 |
|
|
|
25 |
class Noms extends CommunNomsTaxons {
|
|
|
26 |
|
|
|
27 |
protected $format_reponse = 'noms'; // Permet de stocker la requete formulée
|
|
|
28 |
protected $service = 'noms';
|
|
|
29 |
protected $requete_champ = 'num_nom, nom_sci, num_nom_retenu';
|
|
|
30 |
protected $requete_condition = null;
|
|
|
31 |
protected $requete_group_by = '';
|
|
|
32 |
/** Permet de stocker les limite de la requete SQL (par défaut seul les 100 premiers résultats seront retournés).*/
|
|
|
33 |
protected $limite_requete = array('depart' => 0, 'limite' => 100);
|
|
|
34 |
protected $distinct = null; // Valeur du paramètre de requete distinct (=0|1)
|
|
|
35 |
|
|
|
36 |
public function consulter($ressources, $parametres) {
|
|
|
37 |
return parent::consulter($ressources, $parametres);
|
|
|
38 |
}
|
|
|
39 |
|
|
|
40 |
//+----------------FONCTION D'ANALYSE DES PARAMETRES---------------------------------------------------------+
|
|
|
41 |
|
|
|
42 |
public function traiterParametresSpecifiques() {
|
|
|
43 |
foreach ($this->parametres as $param => $val) {
|
|
|
44 |
switch ($param) {
|
|
|
45 |
case 'masque' :
|
|
|
46 |
$this->ajouterFiltreMasque('nom_sci', $val);
|
|
|
47 |
break;
|
|
|
48 |
case 'masque.sg' :
|
|
|
49 |
$this->ajouterFiltreMasque('nom_supra_generique', $val);
|
|
|
50 |
break;
|
|
|
51 |
case 'masque.gen' :
|
|
|
52 |
$this->ajouterFiltreMasque('genre', $val);
|
|
|
53 |
break;
|
|
|
54 |
case 'masque.sp' :
|
|
|
55 |
$this->ajouterFiltreMasque('epithete_sp', $val);
|
|
|
56 |
break;
|
|
|
57 |
case 'masque.ssp' :
|
|
|
58 |
$this->ajouterFiltreMasque('epithete_infra_sp',$val);
|
|
|
59 |
break;
|
|
|
60 |
case 'masque.au' :
|
|
|
61 |
$this->ajouterFiltreMasque('auteur', $val);
|
|
|
62 |
break;
|
|
|
63 |
case 'masque.an' :
|
|
|
64 |
$this->ajouterFiltreMasque('annee', $val);
|
|
|
65 |
break;
|
|
|
66 |
case 'masque.bib' :
|
|
|
67 |
$this->ajouterFiltreMasque('biblio_origine',$val);
|
|
|
68 |
break;
|
|
|
69 |
case 'masque.ad' :
|
|
|
70 |
$this->ajouterFiltreMasque('nom_addendum', $val);
|
|
|
71 |
break;
|
|
|
72 |
case 'masque.nn' :
|
|
|
73 |
$this->requete_condition []= 'num_nom IN ('.$val.')';
|
363 |
delphine |
74 |
$this->masque['num_nom'] = "num_nom=$val";
|
3 |
jpm |
75 |
break;
|
|
|
76 |
case 'masque.rg' :
|
363 |
delphine |
77 |
$this->ajouterFiltreMasque('rang', $val);
|
3 |
jpm |
78 |
break;
|
|
|
79 |
case 'retour.champs' :
|
|
|
80 |
$this->verifierParamChamps($param, $val);
|
|
|
81 |
break;
|
|
|
82 |
case 'distinct' :
|
363 |
delphine |
83 |
$this->distinct = $val;
|
3 |
jpm |
84 |
break;
|
|
|
85 |
}
|
|
|
86 |
$this->ajouterNomDistinct();
|
|
|
87 |
}
|
|
|
88 |
}
|
|
|
89 |
|
|
|
90 |
public function verifierParamChamps($param, $val) {
|
|
|
91 |
$this->recupererTableSignification('correspondance_champs,champs_api,champs_comp');
|
|
|
92 |
$champs_demandes = explode(',', $val);
|
|
|
93 |
$champs_verifies = array();
|
363 |
delphine |
94 |
$champs_api = array_flip($this->champs_api);
|
|
|
95 |
$champs_supp = array('nom_retenu_complet'=>'num_nom_retenu', 'basionyme_complet'=>'basionyme');
|
|
|
96 |
$champs_api = array_merge($champs_api, $champs_supp);
|
3 |
jpm |
97 |
foreach ($champs_demandes as $champ) {
|
|
|
98 |
if (array_key_exists($champ, $champs_api)) {
|
|
|
99 |
$champs_verifies[] = $champs_api[$champ];
|
|
|
100 |
}
|
|
|
101 |
}
|
|
|
102 |
if (count($champs_verifies) > 0) {
|
|
|
103 |
$this->requete_champ .= ', '.implode(',', $champs_verifies);
|
|
|
104 |
}
|
|
|
105 |
}
|
|
|
106 |
|
|
|
107 |
/** Permet de rajouter à la requete sql le parametre distinct. N'est utilisé qu'avec le format oss */
|
|
|
108 |
public function ajouterNomDistinct() {
|
|
|
109 |
if (isset($this->distinct)) {
|
|
|
110 |
if ($this->distinct == 1 && $this->parametres['retour.format'] == 'oss') {
|
|
|
111 |
if ($this->compo_nom == '') {
|
|
|
112 |
$this->requete_champ = ' DISTINCT nom_sci ';
|
|
|
113 |
} else {
|
|
|
114 |
$this->requete_champ = ' DISTINCT nom_sci, '.implode(', ',$this->compo_nom);
|
|
|
115 |
}
|
|
|
116 |
} elseif ($this->distinct == 1 && $this->parametres['retour.format'] != 'oss') {
|
|
|
117 |
$e = 'Erreur dans votre requête </br> L\'utilisation du paramètre distinct ne se fait que sous
|
|
|
118 |
le format oss';
|
|
|
119 |
$this->renvoyerErreur(RestServeur::HTTP_CODE_MAUVAISE_REQUETE, $e);
|
|
|
120 |
}
|
|
|
121 |
}
|
|
|
122 |
}
|
|
|
123 |
|
|
|
124 |
//-----------------FONCTION D'ANALYSE DES RESSOURCES--------------------------------------------------------------------
|
|
|
125 |
|
|
|
126 |
public function traiterRessourcesIdentifiant() {
|
|
|
127 |
//on initialise la condition de la requete sql et le format de réponse
|
|
|
128 |
$this->requete_condition = array(); //on vide la table dans le cas de plusieurs version
|
|
|
129 |
$this->requete_condition[] = 'num_nom = '.$this->getBdd()->proteger($this->ressources[0]);
|
|
|
130 |
$this->format_reponse = $this->service.'/id';
|
|
|
131 |
if (isset($this->ressources[1]) && !empty($this->ressources[1])) {
|
104 |
delphine |
132 |
if ($this->ressources[1] == 'relations') {
|
3 |
jpm |
133 |
$this->traiterRessourceIdRelations();
|
|
|
134 |
} else {
|
|
|
135 |
$e = 'Erreur dans votre requête </br> Ressources disponibles : <br/>
|
|
|
136 |
<li> noms/#id/relations </li> <li> noms/#id/#champ+#champ </li>
|
|
|
137 |
<li> noms/#id/relations/synonymie </li> <li> noms/#id/relations/flores </li>
|
|
|
138 |
<li> noms/#id/relations/homonymie </li>';
|
|
|
139 |
$this->renvoyerErreur(RestServeur::HTTP_CODE_MAUVAISE_REQUETE, $e);
|
|
|
140 |
}
|
|
|
141 |
} else { // requete de type noms/#id : rajout du nom_sci pour récupérer le format html par la fct mettreAuFormat()
|
|
|
142 |
$this->requete_champ = ' *, nom_sci ';
|
|
|
143 |
}
|
|
|
144 |
}
|
|
|
145 |
|
|
|
146 |
public function traiterRessourceRelations() {
|
|
|
147 |
$this->format_reponse .= '/relations';
|
|
|
148 |
$projet = $this->ressources[1];
|
|
|
149 |
$num_nom = $this->ressources[2];
|
|
|
150 |
if (strrpos($num_nom, 'nn.coste') !== false) {
|
|
|
151 |
list($p, $nn) = explode('=', $num_nom);
|
|
|
152 |
$num_nom = $nn;
|
|
|
153 |
}
|
|
|
154 |
$champ = "flore_$projet"."_num";
|
|
|
155 |
if (isset($this->ressources[3])) {
|
|
|
156 |
$type = $this->ressources[3];
|
|
|
157 |
if (!in_array($type, array('homonymie', 'synonymie', 'flores'))) {
|
|
|
158 |
$e = "Les types disponibles pour les noms sont homonymie, synonymie et flores";
|
|
|
159 |
$this->renvoyerErreur(RestServeur::HTTP_CODE_MAUVAISE_REQUETE, $e);
|
|
|
160 |
}
|
|
|
161 |
}
|
|
|
162 |
$this->requete_champ = ' num_nom ';
|
|
|
163 |
$this->requete_condition = array();
|
|
|
164 |
$this->requete_condition[] = "$champ = ".$this->getBdd()->proteger($num_nom);
|
|
|
165 |
}
|
|
|
166 |
|
|
|
167 |
public function traiterRessourceIdRelations() {
|
|
|
168 |
$this->format_reponse .= '/relations';
|
|
|
169 |
if (isset($this->ressources[2]) && !empty($this->ressources[2])) {
|
|
|
170 |
// requete de type noms/#id/relations/#relation
|
|
|
171 |
switch ($this->ressources[2]) {
|
|
|
172 |
case 'synonymie' :
|
|
|
173 |
$this->traiterRessourceIdSynonymie();
|
|
|
174 |
break;
|
|
|
175 |
case 'flores' :
|
|
|
176 |
$this->traiterRessourceIdFlores();
|
|
|
177 |
break;
|
|
|
178 |
case 'homonymie' :
|
|
|
179 |
$this->traiterRessourceIdHomonymie();
|
|
|
180 |
break;
|
|
|
181 |
default :
|
|
|
182 |
$e = 'Erreur dans votre requête </br> Ressources disponibles : <br/>
|
|
|
183 |
<li> noms/#id/relations </li> <li> noms/#id/relations/synonymie </li>
|
|
|
184 |
<li> noms/#id/relations/flores </li> <li> noms/#id/relations/homonymie </li>';
|
|
|
185 |
$this->renvoyerErreur(RestServeur::HTTP_CODE_MAUVAISE_REQUETE, $e);
|
|
|
186 |
break;
|
|
|
187 |
}
|
|
|
188 |
}
|
|
|
189 |
}
|
|
|
190 |
|
|
|
191 |
public function traiterRessourceIdSynonymie() {
|
|
|
192 |
// SELECT num_nom, nom_sci, num_nom_retenu, basionyme FROM bdtfx_v2_00 WHERE num_nom = X LIMIT 0,100;
|
|
|
193 |
$this->format_reponse .= '/synonymie';
|
|
|
194 |
if (strrpos($this->requete_champ, ', basionyme') === false) {
|
|
|
195 |
$this->requete_champ .= ', basionyme ';
|
|
|
196 |
}
|
|
|
197 |
$this->requete_condition[0] = 'num_nom_retenu = '.
|
|
|
198 |
'(SELECT num_nom_retenu FROM '.$this->table.' WHERE '.$this->requete_condition[0].')';
|
|
|
199 |
}
|
|
|
200 |
|
|
|
201 |
public function traiterRessourceIdHomonymie() {
|
|
|
202 |
// SELECT num_nom, nom_sci, num_nom_retenu FROM bdtfx_v2_00 WHERE nom_sci = (SELECT nom_sci FROM bdtfx_v2_00 WHERE num_nom = X);
|
|
|
203 |
$this->format_reponse .= '/homonymie';
|
|
|
204 |
$this->requete_condition[0] = 'nom_sci = (SELECT nom_sci FROM '.$this->table
|
|
|
205 |
.' WHERE '.$this->requete_condition[0].')';
|
|
|
206 |
}
|
|
|
207 |
|
|
|
208 |
public function traiterRessourceIdFlores() {
|
|
|
209 |
$champ_flores = '';
|
|
|
210 |
foreach ($this->champs_table as $champ) {
|
|
|
211 |
if (preg_match('/^flore_.*$/', $champ)) {
|
|
|
212 |
$champ_flores .= ', '.$champ;
|
|
|
213 |
}
|
|
|
214 |
}
|
|
|
215 |
$this->format_reponse .= '/flores';
|
|
|
216 |
$this->requete_champ = 'num_nom'.$champ_flores;
|
|
|
217 |
}
|
|
|
218 |
|
|
|
219 |
public function traiterRessourceStatsRangs() {
|
|
|
220 |
// SELECT count(*) as nombre, rang FROM bdtfx_v2_00 [WHERE rang = 290] GROUP BY rang ORDER BY rang;
|
|
|
221 |
$this->format_reponse .= '/rangs';
|
|
|
222 |
$this->requete_champ = 'count(*) as nombre, rang ';
|
|
|
223 |
$this->requete_group_by = ' GROUP BY rang ORDER BY rang ';
|
|
|
224 |
}
|
|
|
225 |
|
|
|
226 |
public function traiterRessourceStatsAnnees() {
|
|
|
227 |
// SELECT count(*) as nombre, annee FROM bdtfx_v2_00 GROUP BY annee ORDER BY annee;
|
|
|
228 |
$this->format_reponse .= '/annees';
|
|
|
229 |
$this->requete_champ = 'count(*) as nombre, annee ';
|
|
|
230 |
$this->requete_condition = null;
|
|
|
231 |
$this->requete_group_by = ' GROUP BY annee ORDER BY annee ';
|
|
|
232 |
}
|
|
|
233 |
|
|
|
234 |
public function traiterRessourceStatsInitiales() {
|
|
|
235 |
// SELECT count(left( nom_sci, 2 )) as nb, rang, left(nom_sci, 2) as lettre GROUP BY rang, left(nom_sci, 2);
|
|
|
236 |
$this->format_reponse .= '/initiales';
|
|
|
237 |
$this->requete_champ = 'count(left( nom_sci, 2 )) as nb, rang, left(nom_sci, 2) as lettre ';
|
|
|
238 |
$this->requete_group_by = ' GROUP BY rang, left(nom_sci, 2)';
|
|
|
239 |
}
|
|
|
240 |
|
|
|
241 |
|
|
|
242 |
|
|
|
243 |
//-----------------------------FONCTIONS DASSEMBLAGE DE LA REQUETE-----------------------------------------------------
|
|
|
244 |
|
|
|
245 |
public function assemblerLaRequete() {
|
|
|
246 |
if ( strrpos($this->format_reponse, 'noms/stats/') === false ) {
|
|
|
247 |
$this->mettreAuFormat(); //Ds CommunNomsTaxons.php
|
|
|
248 |
}
|
|
|
249 |
$requete = ' SELECT '.$this->requete_champ.
|
|
|
250 |
' FROM '.$this->table
|
|
|
251 |
.$this->retournerRequeteCondition()
|
|
|
252 |
.$this->requete_group_by
|
363 |
delphine |
253 |
.$this->formerRequeteLimite();
|
3 |
jpm |
254 |
return $requete;
|
|
|
255 |
|
|
|
256 |
}
|
|
|
257 |
|
|
|
258 |
public function formerRequeteLimite() {
|
|
|
259 |
if ($this->format_reponse != 'noms' && $this->format_reponse != 'noms/id/relations/synonymie'
|
|
|
260 |
&& $this->format_reponse != 'noms/id/relations/homonymie') {
|
|
|
261 |
$this->requete_limite = '';
|
|
|
262 |
} elseif (($depart = $this->limite_requete['depart']) > ($this->total_resultat = $this->recupererTotalResultat())) {
|
|
|
263 |
$this->limite_requete['depart'] =
|
|
|
264 |
(($this->total_resultat - $this->limite_requete['limite']) < 0) ? 0 : ($this->total_resultat - $this->limite_requete['limite']);
|
|
|
265 |
$this->requete_limite = ' LIMIT '.$this->limite_requete['depart'].', '.$this->limite_requete['limite'];
|
|
|
266 |
} else {
|
|
|
267 |
$this->requete_limite = ' LIMIT '.$this->limite_requete['depart'].', '.$this->limite_requete['limite'];
|
|
|
268 |
}
|
|
|
269 |
return $this->requete_limite;
|
|
|
270 |
}
|
|
|
271 |
|
|
|
272 |
public function retournerRequeteCondition() {
|
|
|
273 |
$condition = '';
|
|
|
274 |
if ($this->requete_condition) {
|
|
|
275 |
$condition = ' WHERE '.implode(' AND ', $this->requete_condition);
|
|
|
276 |
}
|
|
|
277 |
return $condition;
|
|
|
278 |
}
|
|
|
279 |
|
|
|
280 |
|
|
|
281 |
/** Recupere le nombre total de résultat d'une requete lancée. */
|
|
|
282 |
public function recupererTotalResultat() {
|
|
|
283 |
$total = null;
|
|
|
284 |
$requete = 'SELECT count(*) as nombre FROM '.$this->table.$this->retournerRequeteCondition().$this->requete_group_by;
|
|
|
285 |
$res = $this->getBdd()->recuperer($requete);
|
|
|
286 |
if ($res) {
|
|
|
287 |
$total = $res['nombre'];
|
|
|
288 |
} else {
|
|
|
289 |
$e = 'Fct recupererTotalResultat() : <br/>Données introuvables dans la base';
|
|
|
290 |
$this->renvoyerErreur(RestServeur::HTTP_CODE_RESSOURCE_INTROUVABLE, $e);
|
|
|
291 |
}
|
|
|
292 |
return $total;
|
|
|
293 |
}
|
|
|
294 |
|
|
|
295 |
|
|
|
296 |
//-------------------FONCTIONS POUR LE FORMATAGE EN JSON----------------------------------------------------------------
|
|
|
297 |
|
272 |
delphine |
298 |
public function retournerResultatFormate($resultat) {
|
3 |
jpm |
299 |
switch ($this->format_reponse) {
|
|
|
300 |
case 'noms/relations' :
|
|
|
301 |
$reponse = $this->formaterRelations($resultat[0]);
|
|
|
302 |
break;
|
|
|
303 |
case 'noms/id' : //ds CommunNomsTaxons
|
|
|
304 |
$reponse = $this->formaterId($resultat[0]);
|
|
|
305 |
break;
|
|
|
306 |
case 'noms/id/relations' :
|
|
|
307 |
$reponse = $this->formaterIdRelations($resultat[0]);
|
|
|
308 |
break;
|
|
|
309 |
case 'noms/id/relations/synonymie' :
|
|
|
310 |
$reponse = $this->formaterIdSynonymie($resultat);
|
|
|
311 |
break;
|
|
|
312 |
case 'noms/id/relations/homonymie' :
|
|
|
313 |
$reponse = $this->formaterIdHomonymie($resultat);
|
|
|
314 |
break;
|
|
|
315 |
case 'noms/id/relations/flores' : //ds CommunsNomsTaxons
|
|
|
316 |
$reponse = $this->formaterIdFlores($resultat[0]);
|
|
|
317 |
break;
|
|
|
318 |
case 'noms/stats/annees' : //ds CommunNomsTaxons
|
|
|
319 |
$reponse = $this->formaterStatsAnnee($resultat);
|
|
|
320 |
break;
|
|
|
321 |
case 'noms/stats/rangs' : //ds CommunNomsTaxons
|
|
|
322 |
$reponse = $this->formaterStatsRang($resultat);
|
|
|
323 |
break;
|
|
|
324 |
case 'noms/stats/initiales' : //ds CommunNomsTaxons
|
|
|
325 |
$reponse = $this->formaterStatsInitiales($resultat);
|
|
|
326 |
break;
|
|
|
327 |
case 'noms' :
|
|
|
328 |
$reponse = $this->formaterNoms($resultat);
|
|
|
329 |
break;
|
|
|
330 |
}
|
|
|
331 |
return $reponse;
|
|
|
332 |
}
|
|
|
333 |
|
|
|
334 |
//+---------------------concerne les resultats pour des requetes de type noms/id-----------------------------+
|
|
|
335 |
|
|
|
336 |
public function formaterRelations($resultat) {
|
|
|
337 |
$num_nom = $resultat['num_nom'];
|
|
|
338 |
if (isset($this->ressources[3])) {
|
|
|
339 |
$url = Config::get('url_service').$this->service."/$num_nom/relations";
|
|
|
340 |
} else {
|
|
|
341 |
$type = $this->ressources[3];
|
|
|
342 |
$url = Config::get('url_service')."/$this->service/$num_nom/relations/$type";
|
|
|
343 |
}
|
|
|
344 |
$res = $this->consulterHref($url);
|
|
|
345 |
return $res;
|
|
|
346 |
}
|
|
|
347 |
|
|
|
348 |
public function formaterIdRelations($resultat) {
|
|
|
349 |
$this->recupererTableSignification('correspondance_champs,champs_api,champs_comp');
|
|
|
350 |
$this->resultat_req = $resultat;
|
|
|
351 |
$retour_id_rel = array ('entete' => array()); //on initialise pr que l'entete apparaisse en premier lors de l'affichage
|
|
|
352 |
|
|
|
353 |
//on recupère le resultat de chaque relation (appel du WS correspondant)
|
272 |
delphine |
354 |
$flores = $this->ajouterRelations('flores');
|
3 |
jpm |
355 |
if (isset($flores)) $retour_id_rel['resultat']['flores'] = $flores;
|
272 |
delphine |
356 |
$homonymes = $this->ajouterRelations('homonymie');
|
3 |
jpm |
357 |
if (isset($homonymes)) $retour_id_rel['resultat']['homonymes'] = $homonymes;
|
272 |
delphine |
358 |
$synonymes = $this->ajouterRelations('synonymie');
|
3 |
jpm |
359 |
if (isset($synonymes)) $retour_id_rel['resultat']['synonymes'] = $synonymes;
|
|
|
360 |
|
|
|
361 |
//on renvoit null si il n'existe aucune relations (on efface l'entete en premier lieu)
|
|
|
362 |
if (!isset($retour_id_rel['resultat'])) {
|
|
|
363 |
$retour_id_rel = null;
|
|
|
364 |
} else { //on rajoute l'entete si des relations existent
|
|
|
365 |
$this->afficherDonnees('num_nom', $this->ressources[0]);
|
|
|
366 |
$retour_id_rel['entete'] = $this->table_retour;
|
|
|
367 |
$this->table_retour = array();
|
|
|
368 |
}
|
|
|
369 |
return $retour_id_rel;
|
|
|
370 |
}
|
|
|
371 |
|
|
|
372 |
/**
|
|
|
373 |
* Recupere les relations (type de la relation passée en paramètres :[type_relation] = synonymie, homonymie ou
|
|
|
374 |
* flores) par l'appel du web service [version]/noms/#id/relations/[type_relation]
|
|
|
375 |
*/
|
272 |
delphine |
376 |
public function ajouterRelations($relation) {
|
|
|
377 |
$version = str_replace(Config::get('bdd_table').'_', '', $this->table);
|
3 |
jpm |
378 |
$res = null;
|
|
|
379 |
$parametres_url = '';
|
|
|
380 |
if ($this->parametres != array()) $parametres_url = '?'.http_build_query($this->parametres, '', '&');
|
272 |
delphine |
381 |
$url = Config::get('url_service').'/'.$this->service.'/'
|
3 |
jpm |
382 |
.$this->ressources[0].'/relations/'
|
272 |
delphine |
383 |
.$relation.$parametres_url; Debug::printr($url);
|
3 |
jpm |
384 |
$relation = $this->consulterHref($url);
|
|
|
385 |
$res = $relation->resultat;
|
|
|
386 |
return $res;
|
|
|
387 |
}
|
|
|
388 |
|
|
|
389 |
|
|
|
390 |
public function formaterIdSynonymie($resultat) {
|
|
|
391 |
$this->recupererTableSignification('correspondance_champs,champs_api,champs_comp');
|
|
|
392 |
$retour_id_syn = array();
|
|
|
393 |
if ($resultat[0]['num_nom_retenu'] == '') {
|
|
|
394 |
$retour_id_syn[] = 'nom_retenu N.D.';
|
|
|
395 |
} elseif (count($resultat) != 1) {
|
|
|
396 |
//on remplit d'abord l'entete du resultat
|
|
|
397 |
$this->table_retour['id'] = $this->ressources[0];
|
|
|
398 |
$this->afficherEnteteResultat('/'.$this->service.'/'.$this->ressources[0].'/relations/synonymie');
|
|
|
399 |
$retour_id_syn['entete'] = $this->table_retour;
|
|
|
400 |
$this->table_retour = array();
|
|
|
401 |
foreach ($resultat as $tab) {
|
|
|
402 |
//pour chaque basionyme, on recupère le résultat : num_nom, nom_sci, basionyme et num_nom_retenu :
|
|
|
403 |
$this->resultat_req = $tab;
|
|
|
404 |
$num = $tab['num_nom'];
|
|
|
405 |
$this->afficherNomHrefRetenu($tab, $num);
|
|
|
406 |
$this->afficherDonnees('basionyme', $tab['basionyme']);
|
|
|
407 |
$retour_id_syn['resultat'][$num] = $this->table_retour;
|
|
|
408 |
$this->table_retour = array();
|
|
|
409 |
}
|
|
|
410 |
if (!isset($retour_id_syn['resultat']) && !in_array('nom_retenu N.D.', $retour_id_syn)) {
|
|
|
411 |
$retour_id_syn = null; //on initialise le resultat à null
|
|
|
412 |
}
|
|
|
413 |
}
|
|
|
414 |
return $retour_id_syn;
|
|
|
415 |
}
|
|
|
416 |
|
|
|
417 |
public function formaterIdHomonymie($resultat) {
|
|
|
418 |
$this->recupererTableSignification('correspondance_champs,champs_api,champs_comp');
|
272 |
delphine |
419 |
if (count($resultat) != 1) {
|
3 |
jpm |
420 |
$this->table_retour['id'] = $this->ressources[0];
|
|
|
421 |
$this->afficherEnteteResultat($resultat, '/'.$this->service.'/'.$this->ressources[0].'/relations/homonymie');
|
|
|
422 |
$retour_id_hom['entete'] = $this->table_retour;
|
|
|
423 |
$this->table_retour = array();
|
|
|
424 |
foreach ($resultat as $homonyme) {
|
|
|
425 |
$this->resultat_req = $homonyme;
|
|
|
426 |
$id = $homonyme['num_nom'];
|
|
|
427 |
$this->afficherDonnees('num_nom', $id);
|
|
|
428 |
if ($homonyme['num_nom_retenu'] != '') {
|
|
|
429 |
$retenu = ($id == $homonyme['num_nom_retenu']) ? 'true' : 'false';
|
|
|
430 |
$this->table_retour['retenu'] = $retenu;
|
|
|
431 |
}
|
|
|
432 |
$retour_id_hom['resultat'][$id] = $this->table_retour;
|
|
|
433 |
unset($retour_id_hom['resultat'][$id]['id']);
|
|
|
434 |
$this->table_retour = array();
|
|
|
435 |
}
|
533 |
gduche |
436 |
} else {
|
3 |
jpm |
437 |
$retour_id_hom = null;
|
|
|
438 |
}
|
|
|
439 |
return $retour_id_hom;
|
|
|
440 |
}
|
306 |
aurelien |
441 |
|
357 |
delphine |
442 |
public function obtenirSynonymesParNumNomAvecInfosFlore($num_nom, $version='1_02') {
|
3 |
jpm |
443 |
|
306 |
aurelien |
444 |
$champs_flore = 'flore_bonnier_num, flore_bonnier_rem,'.
|
|
|
445 |
'flore_cnrs_num, flore_cnrs_rem '.
|
|
|
446 |
'flore_fe_num, flore_fe_rem '.
|
|
|
447 |
'flore_coste_num, flore_coste_rem '.
|
|
|
448 |
'flore_fh_num, flore_fh_rem '.
|
|
|
449 |
'flore_fournier_num, flore_fournier_rem';
|
|
|
450 |
|
|
|
451 |
$requete = 'SELECT num_nom, nom_sci, '.$champs_flore.' '.
|
357 |
delphine |
452 |
'FROM '.$this->table.' '.
|
306 |
aurelien |
453 |
'WHERE num_nom_retenu = '.
|
|
|
454 |
'('.
|
357 |
delphine |
455 |
'SELECT num_nom_retenu FROM '.$this->table.' WHERE num_nom = "'.$num_nom.'"'.
|
306 |
aurelien |
456 |
')';
|
|
|
457 |
|
|
|
458 |
return $this->getBdd()->recupererTous($requete);
|
|
|
459 |
}
|
|
|
460 |
|
3 |
jpm |
461 |
public function formaterIdFlores($resultat) {
|
|
|
462 |
$this->recupererTableSignification('correspondance_champs,champs_api,champs_comp,noms_projets');
|
|
|
463 |
$this->resultat_req = $resultat;
|
|
|
464 |
$id = array_shift($resultat);
|
|
|
465 |
$reponse['entete']['id'] = $id;
|
306 |
aurelien |
466 |
$synonymes_flores = $this->obtenirSynonymesParNumNomAvecInfosFlore($this->ressources[0]);
|
|
|
467 |
if(is_array($synonymes_flores)) {
|
|
|
468 |
foreach ($synonymes_flores as $synonyme) {
|
|
|
469 |
$nom_sci = $synonyme['nom_sci'];
|
|
|
470 |
$num_nom = $synonyme['num_nom'];
|
|
|
471 |
unset($synonyme['nom_sci']);
|
|
|
472 |
unset($synonyme['num_nom']);
|
|
|
473 |
foreach ($synonyme as $flores => $valeur) {
|
|
|
474 |
if ($valeur != '' && $valeur != '0') {
|
|
|
475 |
$this->afficherInfosFlore($synonyme, $flores, $valeur, $nom_sci, $num_nom);
|
|
|
476 |
}
|
|
|
477 |
}
|
3 |
jpm |
478 |
}
|
|
|
479 |
}
|
306 |
aurelien |
480 |
|
3 |
jpm |
481 |
if ($this->table_retour != array()) {
|
|
|
482 |
$reponse['resultat'] = $this->table_retour;
|
|
|
483 |
$this->table_retour = array();
|
|
|
484 |
} else {
|
|
|
485 |
$reponse = null;
|
|
|
486 |
}
|
|
|
487 |
return $reponse;
|
|
|
488 |
}
|
306 |
aurelien |
489 |
|
|
|
490 |
public function getNomCompletFlore($flore) {
|
|
|
491 |
return Config::get($flore.'_texte');
|
|
|
492 |
}
|
3 |
jpm |
493 |
|
306 |
aurelien |
494 |
public function afficherInfosFlore(&$resultat, $flores, $valeur, $nom_sci, $num_nom) {
|
3 |
jpm |
495 |
$flore = substr($flores,0,strrpos($flores, '_'));
|
|
|
496 |
$projet = $this->noms_projets[$flore];
|
306 |
aurelien |
497 |
|
|
|
498 |
//TODO voir si l'on peut factoriser les affectations à la table retour
|
|
|
499 |
// et simplifier ce gros pavé
|
3 |
jpm |
500 |
if (strrpos($flores, 'num') !== false) {
|
|
|
501 |
if (preg_match('/^([0-9]+)(?:[.]syn[^a-z]*|(.*))?$/', $valeur, $match)) {
|
306 |
aurelien |
502 |
$this->table_retour[$num_nom][$flore]['id'] = $match[1];
|
3 |
jpm |
503 |
if ($projet == 'coste') {
|
306 |
aurelien |
504 |
$this->table_retour[$num_nom][$flore]['href'] = $this->ajouterHrefAutreProjet('noms', 'nn_coste:', $match[1], $projet);
|
3 |
jpm |
505 |
}
|
306 |
aurelien |
506 |
if (isset($match[2]) && $match[2] != '') $this->table_retour[$num_nom][$flore]['cle'] = $match[2];
|
|
|
507 |
$this->table_retour[$num_nom][$flore]['nom_flore'] = $this->getNomCompletFlore($flore);
|
|
|
508 |
$this->table_retour[$num_nom][$flore]['nom_sci'] = $nom_sci;
|
3 |
jpm |
509 |
}
|
|
|
510 |
if (isset($resultat[$flore.'_rem']) && !empty($resultat[$flore.'_rem'])) {
|
306 |
aurelien |
511 |
$this->table_retour[$num_nom][$flore]['remarque'] = $resultat[$flore.'_rem'];
|
|
|
512 |
$this->table_retour[$num_nom][$flore]['nom_flore'] = $this->getNomCompletFlore($flore);
|
|
|
513 |
$this->table_retour[$num_nom][$flore]['nom_sci'] = $nom_sci;
|
3 |
jpm |
514 |
unset($resultat[$flore.'_rem']);
|
|
|
515 |
}
|
|
|
516 |
} elseif (strrpos($flores,'belge') !== false) {
|
|
|
517 |
if (preg_match('/^([0-9]+) (R|S)?$/', $valeur, $match)) {
|
|
|
518 |
if (isset($match[2])) $type = ($match[2] == 'R') ? 'taxons' : 'synonyme';
|
306 |
aurelien |
519 |
$this->table_retour[$num_nom][$flore]['page'] = $match[1];
|
|
|
520 |
$this->table_retour[$num_nom][$flore]['type'] = $type;
|
|
|
521 |
$this->table_retour[$num_nom][$flore]['nom_flore'] = $this->getNomCompletFlore($flore);
|
|
|
522 |
$this->table_retour[$num_nom][$flore]['nom_sci'] = $nom_sci;
|
3 |
jpm |
523 |
}
|
|
|
524 |
}
|
306 |
aurelien |
525 |
}
|
3 |
jpm |
526 |
|
|
|
527 |
//+---------------------concerne les resultats pour des requetes de type /noms avec ou sans paramètres-------+
|
|
|
528 |
|
|
|
529 |
public function formaterNoms($resultat) {
|
|
|
530 |
if ($this->parametres['retour.format'] == 'oss') {
|
|
|
531 |
$reponse = $this->formaterEnOss($resultat); //Ds CommunNomsTaxons.php
|
|
|
532 |
} else {
|
|
|
533 |
$reponse = $this->formaterEnJsonMax($resultat);
|
|
|
534 |
}
|
|
|
535 |
return $reponse;
|
|
|
536 |
}
|
|
|
537 |
|
|
|
538 |
public function formaterEnJsonMax($resultat) {
|
|
|
539 |
$this->recupererTableSignification('correspondance_champs,champs_api,champs_comp');
|
|
|
540 |
$masque = $this->recupererMasquePrincipal();
|
|
|
541 |
if (isset($masque)) {
|
|
|
542 |
$resultat = $this->trierRechercheFloue($this->parametres[$masque[0]], $resultat, $masque[1]);
|
|
|
543 |
}
|
|
|
544 |
if (isset($this->masque)) {
|
99 |
delphine |
545 |
$this->table_retour['masque'] = implode('&', $this->masque);
|
3 |
jpm |
546 |
}
|
|
|
547 |
$this->afficherEnteteResultat('/'.$this->service); //communNomTaxons
|
|
|
548 |
$table_retour_json['entete'] = $this->table_retour;
|
|
|
549 |
//on remplit la table $table_retour_json['resultat']
|
|
|
550 |
$champs = null;
|
|
|
551 |
if (array_key_exists('retour.champs', $this->parametres)) {
|
|
|
552 |
$champs = explode(',', $this->parametres['retour.champs']);
|
|
|
553 |
}
|
|
|
554 |
$resultat_json = null;
|
|
|
555 |
foreach ($resultat as $tab) {
|
|
|
556 |
$this->table_retour = array();
|
|
|
557 |
$num = $tab['num_nom'];
|
93 |
delphine |
558 |
$this->afficherNomHrefRetenu($tab, $num); // ajoute le nom_sci, href et si le nom est retenu dans $this->table_retour
|
|
|
559 |
$retour = $this->table_retour;
|
|
|
560 |
$this->table_retour = array();
|
|
|
561 |
if ($champs != null) {
|
|
|
562 |
$reponse_id = $this->formaterId($tab);
|
|
|
563 |
$this->table_retour = array();
|
|
|
564 |
$this->ajouterChampsPersonnalises($champs, $reponse_id);
|
|
|
565 |
$retour = array_merge($retour, $this->table_retour);
|
|
|
566 |
}
|
|
|
567 |
$resultat_json[$num] = $retour;
|
3 |
jpm |
568 |
}
|
|
|
569 |
$table_retour_json['resultat'] = $resultat_json;
|
|
|
570 |
return $table_retour_json;
|
|
|
571 |
}
|
|
|
572 |
}
|
|
|
573 |
?>
|