6 |
jpm |
1 |
<?php
|
|
|
2 |
/**
|
|
|
3 |
* Description :
|
|
|
4 |
* Classe NomsVernaculaires.php fournit une liste de noms vernaculaires et leur liaison à la bdtfx
|
109 |
jpm |
5 |
* Le but étant de fournir un ensemble minimal d'information comprenant :
|
|
|
6 |
* un identifiant (numérique ou alphanumérique sous forme de ChatMot si possible), un nom, une langue et
|
6 |
jpm |
7 |
* une relation avec un taxon de la bdtfx.
|
|
|
8 |
* Si l'url finit par /noms-vernaculaires on retourne une liste de noms (seulement les 100 premières par défaut).
|
|
|
9 |
* L'url peut contenir des paramètres optionnels passés après le ? : /observations?param1=val1¶m2=val2&...
|
109 |
jpm |
10 |
*
|
|
|
11 |
* Les paramètres de requête disponibles sont : masque, masque.code, masque.nom, masque.region , recherche,
|
6 |
jpm |
12 |
* distinct, retour.format, navigation.depart et navigation.limite.
|
109 |
jpm |
13 |
*
|
6 |
jpm |
14 |
* Encodage en entrée : utf8
|
|
|
15 |
* Encodage en sortie : utf8
|
|
|
16 |
* @package framework-v3
|
109 |
jpm |
17 |
* @author Delphine Cauquil <delphine@tela-botanica.org>
|
6 |
jpm |
18 |
* @author Jennifer Dhé <jennifer.dhe@tela-botanica.org>
|
|
|
19 |
* @license GPL v3 <http://www.gnu.org/licenses/gpl.txt>
|
|
|
20 |
* @license CECILL v2 <http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt>
|
|
|
21 |
* @version 1.0
|
|
|
22 |
* @copyright 1999-${year} Tela Botanica (accueil@tela-botanica.org)
|
|
|
23 |
*/
|
|
|
24 |
class NomsVernaculaires extends Commun {
|
|
|
25 |
protected $champ_infos = array(
|
|
|
26 |
'taxon' => array('service' => 'taxons', 'ressource' => 'nt:', 'projet' => 'bdtfx', 'nom' => 'nom_sci'),
|
|
|
27 |
'conseil_emploi' => array('service' => 'ontologies', 'ressource' => 'numStatut:', 'projet' => 'nvjfl', 'nom' => 'nom'),
|
|
|
28 |
'genre' => array('service' => 'ontologies', 'ressource' => 'genreNombre:', 'projet' => 'nvjfl', 'nom' => 'nom'));
|
109 |
jpm |
29 |
|
6 |
jpm |
30 |
protected $service = 'noms-vernaculaires';
|
109 |
jpm |
31 |
|
6 |
jpm |
32 |
/**
|
|
|
33 |
* Permet de stocker la requete formulée : /noms-vernaculaires | /noms-vernaculaires/#id |
|
|
|
34 |
* /noms-vernaculaires/#id/champ | /noms-vernaculaires/#id/relations
|
109 |
jpm |
35 |
* Est remplit au cours de l'analyse des ressources (traiterRessources()), par défaut, a la valeur du service.
|
6 |
jpm |
36 |
* Est utilisée principalement pr déterminer le format du tableau à retourner. */
|
109 |
jpm |
37 |
protected $format_reponse = 'noms-vernaculaires';
|
|
|
38 |
|
|
|
39 |
/** Variables constituant les parametres de la requete SQL (champ, condition, limit) remplie
|
6 |
jpm |
40 |
* selon ressources et paramètres */
|
|
|
41 |
protected $requete_champ = array(' * ');
|
|
|
42 |
protected $requete_condition = '';
|
|
|
43 |
protected $limite_requete = array(
|
109 |
jpm |
44 |
'depart' => 0,
|
6 |
jpm |
45 |
'limite' => 100
|
|
|
46 |
);
|
284 |
jpm |
47 |
|
|
|
48 |
protected $champ_tri = 'code_langue';
|
|
|
49 |
protected $direction_tri = 'asc';
|
109 |
jpm |
50 |
|
6 |
jpm |
51 |
/**
|
109 |
jpm |
52 |
* Precise la contenance plus ou moins précise du tableau à retourner :
|
|
|
53 |
* - min = les données présentes dans la table
|
6 |
jpm |
54 |
* - max = les données de la table + les informations complémentaires (pour les identifiants et les codes)
|
|
|
55 |
* - oss = la liste des nom_sci (uniquement pour noms et taxons) */
|
|
|
56 |
protected $retour_format = 'max';
|
109 |
jpm |
57 |
/** Valeur du paramètre de requete recherche :
|
|
|
58 |
* - stricte : le masque est passé tel quel à l'opérateur LIKE.
|
|
|
59 |
* - etendue : ajout automatique du signe % à la place des espaces et en fin de masque avec utilisation de LIKE.
|
6 |
jpm |
60 |
* - floue : recherche tolérante vis-à-vis d'approximations ou d'erreurs (fautes d'orthographe par exemple) */
|
|
|
61 |
protected $recherche;
|
284 |
jpm |
62 |
|
6 |
jpm |
63 |
/** Permet de stocker le tableau de résultat (non encodé en json) */
|
|
|
64 |
protected $table_retour = array();
|
|
|
65 |
/** Stocke le nombre total de résultats de la requete principale. Est calculée lors de l'assemblage de la requete */
|
|
|
66 |
protected $total_resultat;
|
109 |
jpm |
67 |
|
|
|
68 |
//+------------------------------------------------------------------------------------------------------+
|
6 |
jpm |
69 |
// créer une condition en fonction du paramétre
|
109 |
jpm |
70 |
public function traiterParametres() {
|
|
|
71 |
if (isset($this->parametres) && !empty($this->parametres)) {
|
|
|
72 |
|
|
|
73 |
if (isset($this->parametres['recherche']) && $this->parametres['recherche'] != '') {
|
|
|
74 |
$this->recherche = $this->parametres['recherche'];
|
6 |
jpm |
75 |
}
|
109 |
jpm |
76 |
foreach ($this->parametres as $param => $valeur) {
|
6 |
jpm |
77 |
switch ($param) {
|
109 |
jpm |
78 |
case 'masque' :
|
284 |
jpm |
79 |
$this->ajouterFiltreMasque('nom_vernaculaire', $valeur);
|
109 |
jpm |
80 |
break;
|
|
|
81 |
case 'masque.nt' :
|
284 |
jpm |
82 |
$this->ajouterFiltreMasque('num_taxon', $valeur);
|
109 |
jpm |
83 |
break;
|
|
|
84 |
case 'masque.nv' :
|
284 |
jpm |
85 |
$this->ajouterFiltreMasque('nom_vernaculaire', $valeur);
|
109 |
jpm |
86 |
break;
|
|
|
87 |
case 'masque.lg' :
|
284 |
jpm |
88 |
$this->ajouterFiltreMasque('code_langue', $valeur);
|
109 |
jpm |
89 |
break;
|
|
|
90 |
case 'masque.cce' :
|
284 |
jpm |
91 |
$this->ajouterFiltreMasque('num_statut', $valeur);
|
109 |
jpm |
92 |
break;
|
|
|
93 |
case 'retour.format' :
|
|
|
94 |
$this->retour_format = $valeur;
|
|
|
95 |
break;
|
|
|
96 |
case 'navigation.depart' :
|
|
|
97 |
$this->limite_requete['depart'] = $valeur;
|
|
|
98 |
break;
|
|
|
99 |
case 'navigation.limite' :
|
|
|
100 |
$this->limite_requete['limite'] = $valeur;
|
|
|
101 |
break;
|
|
|
102 |
case 'recherche' :
|
|
|
103 |
break;
|
152 |
delphine |
104 |
case 'version.projet' :
|
|
|
105 |
break;
|
109 |
jpm |
106 |
default :
|
|
|
107 |
$p = 'Erreur dans les paramètres de recherche de votre requête : '.
|
|
|
108 |
'</br> Le paramètre " '.$param.' " n\'existe pas.';
|
|
|
109 |
$this->renvoyerErreur(RestServeur::HTTP_CODE_MAUVAISE_REQUETE, $p);
|
6 |
jpm |
110 |
}
|
|
|
111 |
}
|
|
|
112 |
}
|
|
|
113 |
}
|
109 |
jpm |
114 |
|
284 |
jpm |
115 |
public function ajouterFiltreMasque($nom_champ, $valeur) {
|
6 |
jpm |
116 |
if ($nom_champ == 'num_taxon') { // si il s'agit d'un chiffre
|
|
|
117 |
$this->requete_condition[] = $nom_champ.' = '.$this->getBdd()->proteger($valeur);
|
|
|
118 |
} else {
|
|
|
119 |
if ($this->recherche == 'floue') {
|
|
|
120 |
$this->requete_condition[] = '(SOUNDEX('.$nom_champ.') = SOUNDEX(\''.$valeur.'\')'
|
|
|
121 |
.' OR SOUNDEX(REVERSE('.$nom_champ.')) = SOUNDEX(REVERSE(\''.$valeur.'\'))) ';
|
|
|
122 |
} else {
|
|
|
123 |
if ($this->recherche == 'etendue') {
|
180 |
delphine |
124 |
$valeur = '%'.str_replace(' ','% ', $valeur);
|
6 |
jpm |
125 |
$valeur .= '%';
|
|
|
126 |
}
|
|
|
127 |
$this->requete_condition[] = $nom_champ.' LIKE '.$this->getBdd()->proteger($valeur);
|
|
|
128 |
}
|
|
|
129 |
}
|
|
|
130 |
}
|
|
|
131 |
|
109 |
jpm |
132 |
//+------------------------------------------------------------------------------------------------------+
|
6 |
jpm |
133 |
// en fonction de la présence des ressources modifie requete_champ et requete_condition
|
109 |
jpm |
134 |
public function traiterRessources() {
|
|
|
135 |
if (isset($this->ressources) && !empty($this->ressources)) {
|
|
|
136 |
if (isset($this->ressources[0]) && !empty($this->ressources[0])) {
|
6 |
jpm |
137 |
$this->traiterRessourceId(); // ajoute condition id=#valeur
|
109 |
jpm |
138 |
if (isset($this->ressources[1]) && !empty($this->ressources[1])) {
|
160 |
delphine |
139 |
$this->traiterRessourceChamp(); //modifie requete_champ ou requete_condition
|
6 |
jpm |
140 |
}
|
|
|
141 |
}
|
|
|
142 |
} else { //rajoute distinct pour ne pas avoir plusieurs fois le même nom
|
|
|
143 |
$this->requete_champ = array('distinct(id)', 'nom_vernaculaire ');
|
|
|
144 |
}
|
|
|
145 |
}
|
109 |
jpm |
146 |
|
6 |
jpm |
147 |
//requete : /noms-vernaculaires/#id (ex : /noms-vernaculaires/7)
|
|
|
148 |
public function traiterRessourceId() {
|
109 |
jpm |
149 |
if (is_numeric($this->ressources[0])) {
|
|
|
150 |
$this->requete_condition[] = ' id = '.$this->getBdd()->proteger($this->ressources[0]);
|
6 |
jpm |
151 |
$this->format_reponse .= '/id';
|
160 |
delphine |
152 |
} elseif ($this->ressources[0] == 'attributions') {
|
|
|
153 |
$this->format_reponse .= '/attributions';
|
6 |
jpm |
154 |
} else {
|
109 |
jpm |
155 |
$r = 'Erreur dans les ressources de votre requête : </br> La ressource " '.$this->ressources[0].
|
6 |
jpm |
156 |
' " n\'existe pas.';
|
109 |
jpm |
157 |
$this->renvoyerErreur(RestServeur::HTTP_CODE_MAUVAISE_REQUETE, $r);
|
6 |
jpm |
158 |
}
|
|
|
159 |
}
|
109 |
jpm |
160 |
|
|
|
161 |
|
160 |
delphine |
162 |
public function traiterRessourceChamp() {
|
|
|
163 |
$this->format_reponse .= '/champ';
|
|
|
164 |
$this->analyserChamp();
|
6 |
jpm |
165 |
}
|
109 |
jpm |
166 |
|
6 |
jpm |
167 |
public function analyserChamp() {
|
|
|
168 |
$this->requete_champ = array();
|
|
|
169 |
$this->recupererTableConfig('champs_possibles');// s'il y a plusieurs champs correspondant au champ demandé ils sont séparé par des |
|
109 |
jpm |
170 |
$champs = explode(' ', $this->ressources[1]);
|
6 |
jpm |
171 |
foreach ($champs as $champ) {
|
|
|
172 |
preg_match('/^([^.]+)(\.([^.]+))?$/', $champ, $match);
|
|
|
173 |
if (isset($this->champs_possibles[$match[1]])) {
|
|
|
174 |
$this->requete_champ[] = str_replace('|', ', ', $this->champs_possibles[$match[1]]);
|
|
|
175 |
} elseif (isset($this->champs_possibles[$match[0]])) {
|
|
|
176 |
$this->requete_champ[] = str_replace('|', ', ', $this->champs_possibles[$match[0]]);
|
|
|
177 |
} else {
|
|
|
178 |
$champs_possibles = implode('</li><li>', array_keys($this->champs_possibles));
|
|
|
179 |
$c = 'Erreur dans votre requête : </br> Le champ "'.$champ_possibles.'" n\'existe pas. '.
|
|
|
180 |
'Les champs disponibles sont : <li>'.$champs_possibles.'</li> et leurs déclinaisons (ex. ".code").';
|
|
|
181 |
$this->renvoyerErreur(RestServeur::HTTP_CODE_MAUVAISE_REQUETE, $c);
|
|
|
182 |
}
|
|
|
183 |
}
|
|
|
184 |
}
|
109 |
jpm |
185 |
|
|
|
186 |
//+------------------------------------------------------------------------------------------------------+
|
6 |
jpm |
187 |
public function assemblerLaRequete() {
|
|
|
188 |
$requete = ' SELECT '.$this->formerRequeteChamp().
|
|
|
189 |
' FROM '.$this->table
|
|
|
190 |
.$this->formerRequeteCondition()
|
|
|
191 |
.$this->formerRequeteLimite();
|
|
|
192 |
return $requete;
|
|
|
193 |
}
|
109 |
jpm |
194 |
|
6 |
jpm |
195 |
public function formerRequeteChamp() {
|
|
|
196 |
if (in_array('*', $this->requete_champ)) {
|
|
|
197 |
$champ = ' * ';
|
|
|
198 |
} else {
|
|
|
199 |
$champ = implode(', ', $this->requete_champ);
|
|
|
200 |
}
|
|
|
201 |
return $champ;
|
|
|
202 |
}
|
109 |
jpm |
203 |
|
6 |
jpm |
204 |
public function formerRequeteCondition() {
|
|
|
205 |
$condition = '';
|
109 |
jpm |
206 |
if ($this->requete_condition != null) {
|
6 |
jpm |
207 |
$condition = ' WHERE '.implode(' AND ', $this->requete_condition);
|
109 |
jpm |
208 |
}
|
6 |
jpm |
209 |
return $condition;
|
|
|
210 |
}
|
109 |
jpm |
211 |
|
|
|
212 |
//ajout d'une limite seulement pour les listes (pas plus de 100 resultats retournés pr les requetes
|
6 |
jpm |
213 |
// suivantes : /noms-vernaculaires et /noms-vernaculaires/#id/relations)
|
|
|
214 |
public function formerRequeteLimite() {
|
|
|
215 |
if (in_array($this->format_reponse , array($this->service.'/id', $this->service.'/id/champs'))) {
|
109 |
jpm |
216 |
$this->requete_limite = '';
|
6 |
jpm |
217 |
} elseif (($depart = $this->limite_requete['depart']) > ($this->total_resultat = $this->recupererTotalResultat())) {
|
109 |
jpm |
218 |
$this->limite_requete['depart'] =
|
6 |
jpm |
219 |
(($this->total_resultat - $this->limite_requete['limite']) < 0) ? 0 : ($this->total_resultat - $this->limite_requete['limite']);
|
109 |
jpm |
220 |
$this->requete_limite = ' LIMIT '.$this->limite_requete['depart'].', '.$this->limite_requete['limite'];
|
6 |
jpm |
221 |
} else {
|
109 |
jpm |
222 |
$this->requete_limite = ' LIMIT '.$this->limite_requete['depart'].', '.$this->limite_requete['limite'];
|
6 |
jpm |
223 |
}
|
|
|
224 |
return $this->requete_limite;
|
|
|
225 |
}
|
109 |
jpm |
226 |
|
6 |
jpm |
227 |
//on récupère le nombre total de résultats de la requete (ex : le nombre d'id contenu dans la liste /noms-vernaculaires)
|
|
|
228 |
public function recupererTotalResultat() {
|
160 |
delphine |
229 |
$distinct = ($this->format_reponse == 'noms-vernaculaires/attributions') ? 'id' : 'distinct(id)';
|
|
|
230 |
$requete = 'SELECT count('.$distinct.') as nombre FROM '
|
6 |
jpm |
231 |
.$this->table
|
|
|
232 |
.$this->formerRequeteCondition();
|
|
|
233 |
$res = $this->getBdd()->recuperer($requete);
|
109 |
jpm |
234 |
|
6 |
jpm |
235 |
if ($res) {
|
|
|
236 |
$total = $res['nombre'];
|
|
|
237 |
} else {
|
160 |
delphine |
238 |
$t = 'Fonction recupererTotalResultat() : <br/>Données introuvables dans la base '.$requete;
|
6 |
jpm |
239 |
$this->renvoyerErreur(RestServeur::HTTP_CODE_RESSOURCE_INTROUVABLE, $t);
|
|
|
240 |
}
|
|
|
241 |
return $total;
|
|
|
242 |
}
|
109 |
jpm |
243 |
|
|
|
244 |
//+------------------------------------------------------------------------------------------------------+
|
|
|
245 |
// determine en fct du service appelé (/noms-vernaculaires | /noms-vernaculaires/#id | /noms-vernaculaires/#id/champ |
|
6 |
jpm |
246 |
// /noms-vernaculaires/#id/relations) le format du tableau à retourner.
|
|
|
247 |
public function retournerResultatFormate($resultat) {
|
|
|
248 |
$this->recupererTableConfig('correspondance_champs');
|
|
|
249 |
switch ($this->format_reponse) {
|
132 |
aurelien |
250 |
case 'noms-vernaculaires' :
|
|
|
251 |
$reponse = ($this->retour_format == 'oss') ? $this->formaterEnOss($resultat) : $this->formaterNomsVernaculaires($resultat); break;
|
160 |
delphine |
252 |
case 'noms-vernaculaires/attributions' : $reponse = $this->formaterNomsVernaculairesAttributions($resultat); break;
|
6 |
jpm |
253 |
case 'noms-vernaculaires/id' : $reponse = $this->formaterNomsVernaculairesId($resultat); break;
|
|
|
254 |
case 'noms-vernaculaires/id/champ' : $reponse = $this->formaterNomsVernaculairesIdChamp($resultat); break;
|
|
|
255 |
default : break;
|
|
|
256 |
}
|
|
|
257 |
return $reponse;
|
|
|
258 |
}
|
109 |
jpm |
259 |
|
6 |
jpm |
260 |
public function formaterNomsVernaculaires($resultat) {
|
|
|
261 |
//on remplit la table $table_retour_json['entete']
|
160 |
delphine |
262 |
$table_retour_json['entete']['masque'] = $this->recupererMasque();
|
6 |
jpm |
263 |
$table_retour_json['entete']['depart'] = $this->limite_requete['depart'];
|
|
|
264 |
$table_retour_json['entete']['limite'] = $this->limite_requete['limite'];
|
|
|
265 |
$table_retour_json['entete']['total'] = $this->total_resultat;
|
|
|
266 |
$url = $this->formulerUrl($this->total_resultat, '/noms-vernaculaires');
|
109 |
jpm |
267 |
if (isset($url['precedent']) && $url['precedent'] != '') { $table_retour_json['entete']['href.precedent'] = $url['precedent']; }
|
|
|
268 |
if (isset($url['suivant']) && $url['suivant'] != '') { $table_retour_json['entete']['href.suivant'] = $url['suivant']; }
|
160 |
delphine |
269 |
|
109 |
jpm |
270 |
//on remplit la table $table_retour_json['resultat']
|
152 |
delphine |
271 |
if (isset($this->parametres['masque.nv'])) {
|
|
|
272 |
$resultat = $this->trierRechercheFloue($this->parametres['masque.nv'], $resultat, 'nom_vernaculaire');
|
6 |
jpm |
273 |
}
|
152 |
delphine |
274 |
if (isset($this->parametres['masque'])) {
|
|
|
275 |
$resultat = $this->trierRechercheFloue($this->parametres['masque'], $resultat, 'nom_vernaculaire');
|
|
|
276 |
}
|
6 |
jpm |
277 |
foreach ($resultat as $tab) {
|
|
|
278 |
foreach ($tab as $key => $valeur) {
|
|
|
279 |
if ($valeur != '') {
|
|
|
280 |
switch ($key) {
|
|
|
281 |
case 'id' : $num = $valeur; break;
|
|
|
282 |
case 'nom_vernaculaire' : $this->table_retour['nom'] = $valeur; break;
|
|
|
283 |
default : break;
|
|
|
284 |
}
|
|
|
285 |
}
|
|
|
286 |
}
|
|
|
287 |
if ($this->retour_format == 'max') $this->table_retour['href'] = $this->ajouterHref('noms-vernaculaires', $num);
|
|
|
288 |
$resultat_json[$num] = $this->table_retour;
|
|
|
289 |
$this->table_retour = array();
|
|
|
290 |
}
|
109 |
jpm |
291 |
|
6 |
jpm |
292 |
$table_retour_json['resultat'] = $resultat_json;
|
|
|
293 |
return $table_retour_json;
|
|
|
294 |
}
|
132 |
aurelien |
295 |
|
160 |
delphine |
296 |
public function recupererMasque() {
|
|
|
297 |
$tab_masque = array();
|
|
|
298 |
foreach ($this->parametres as $param=>$valeur) {
|
|
|
299 |
if (strstr($param, 'masque') != false) {
|
|
|
300 |
$tab_masque[] = $param.'='.$valeur;
|
|
|
301 |
}
|
|
|
302 |
}
|
|
|
303 |
$masque = implode('&', $tab_masque);
|
|
|
304 |
return $masque;
|
|
|
305 |
}
|
|
|
306 |
|
132 |
aurelien |
307 |
public function formaterEnOss($resultat) {
|
|
|
308 |
$table_nom = array();
|
|
|
309 |
$oss = '';
|
|
|
310 |
foreach ($resultat as $tab) {
|
|
|
311 |
if (isset($tab['nom_vernaculaire']) ) {
|
|
|
312 |
if (!in_array($tab['nom_vernaculaire'], $table_nom)) {
|
|
|
313 |
$table_nom[] = $tab['nom_vernaculaire'];
|
|
|
314 |
$oss [] = $tab['nom_vernaculaire'];
|
|
|
315 |
}
|
|
|
316 |
}
|
|
|
317 |
}
|
|
|
318 |
if (isset($this->masque)) $masque = implode('&', $this->masque);
|
|
|
319 |
else $masque = 'Pas de masque';
|
|
|
320 |
$table_retour_oss = array($masque, $oss);
|
|
|
321 |
return $table_retour_oss;
|
|
|
322 |
}
|
160 |
delphine |
323 |
|
|
|
324 |
public function formaterNomsVernaculairesAttributions($resultat) {
|
|
|
325 |
//on remplie la table $table_retour_json['entete']
|
|
|
326 |
$table_retour_json['entete']['masque'] = $this->recupererMasque();
|
|
|
327 |
$table_retour_json['entete']['depart'] = $this->limite_requete['depart'];
|
|
|
328 |
$table_retour_json['entete']['limite'] = $this->limite_requete['limite'];
|
|
|
329 |
$table_retour_json['entete']['total'] = $this->total_resultat;
|
|
|
330 |
$url = $this->formulerUrl($this->total_resultat, '/noms-vernaculaires/attributions');
|
|
|
331 |
if (isset($url['precedent']) && $url['precedent'] != '') {
|
|
|
332 |
$table_retour_json['entete']['href.precedent'] = $url['precedent'];
|
|
|
333 |
}
|
|
|
334 |
if (isset($url['suivant']) && $url['suivant'] != '') {
|
|
|
335 |
$table_retour_json['entete']['href.suivant'] = $url['suivant'];
|
|
|
336 |
}
|
284 |
jpm |
337 |
|
|
|
338 |
foreach ($resultat as &$tab) {
|
160 |
delphine |
339 |
$resultat_json[$tab['num_nom_vernaculaire']]['id'] = $tab['id'];
|
|
|
340 |
$resultat_json[$tab['num_nom_vernaculaire']]['nom_vernaculaire'] = $tab['nom_vernaculaire'];
|
284 |
jpm |
341 |
$resultat_json[$tab['num_nom_vernaculaire']]['code_langue'] = $tab['code_langue'];
|
160 |
delphine |
342 |
$resultat_json[$tab['num_nom_vernaculaire']]['taxon.code'] = 'bdtfx.nt:'.$tab['num_taxon'];
|
|
|
343 |
if ($this->retour_format == 'max') {
|
|
|
344 |
$resultat_json[$tab['num_nom_vernaculaire']]['taxon'] = $tab['num_taxon'];
|
164 |
delphine |
345 |
$resultat_json[$tab['num_nom_vernaculaire']]['nom_retenu.code'] = $tab['num_taxon'];
|
284 |
jpm |
346 |
$this->taxons[] = $tab['num_taxon']; // utilisé pour chercher les noms latins plus bas
|
160 |
delphine |
347 |
$resultat_json[$tab['num_nom_vernaculaire']]['href'] = $this->ajouterHref('noms-vernaculaires', $tab['id']);
|
284 |
jpm |
348 |
$resultat_json[$tab['num_nom_vernaculaire']] = $this->ajouterChampsOntologieLigneResultat($tab);
|
160 |
delphine |
349 |
}
|
280 |
aurelien |
350 |
}
|
|
|
351 |
|
|
|
352 |
if ($this->retour_format == 'max') {
|
284 |
jpm |
353 |
// On est obligé de faire un deuxième boucle pour demander tous les taxons présents en une
|
|
|
354 |
// fois et les attribuer aux noms car c'est beaucoup plus rapide
|
|
|
355 |
$noms_sci = $this->recupererNomTaxons();
|
|
|
356 |
foreach ($resultat_json as &$tab) {
|
|
|
357 |
$tab = $this->ajouterTaxonsAttributionsLigneResultat($resultat_json[$tab['num_nom_vernaculaire']], $noms_sci);
|
|
|
358 |
}
|
160 |
delphine |
359 |
}
|
280 |
aurelien |
360 |
|
284 |
jpm |
361 |
uasort($resultat_json, array($this,'trierLigneTableau'));
|
160 |
delphine |
362 |
$table_retour_json['resultat'] = $resultat_json;
|
|
|
363 |
return $table_retour_json;
|
|
|
364 |
}
|
|
|
365 |
|
284 |
jpm |
366 |
public function ajouterChampsOntologieLigneResultat($ligne_resultat) {
|
|
|
367 |
|
|
|
368 |
$intitule = '';
|
|
|
369 |
foreach($this->champ_infos as $cle => $champs_supplementaires) {
|
|
|
370 |
extract($champs_supplementaires);
|
|
|
371 |
$valeur_recherche = '';
|
|
|
372 |
switch($cle) {
|
|
|
373 |
case 'taxon':
|
|
|
374 |
$valeur_recherche = $ligne_resultat['num_taxon'];
|
|
|
375 |
$intitule = 'taxon.code';
|
|
|
376 |
break;
|
|
|
377 |
case 'genre':
|
|
|
378 |
$valeur_recherche = $ligne_resultat['num_genre'];
|
|
|
379 |
$intitule = 'genre';
|
|
|
380 |
break;
|
|
|
381 |
case 'conseil_emploi':
|
|
|
382 |
$valeur_recherche = $ligne_resultat['num_statut'];
|
|
|
383 |
$intitule = 'conseil_emploi';
|
|
|
384 |
break;
|
277 |
aurelien |
385 |
}
|
284 |
jpm |
386 |
$code_valeur = '';
|
|
|
387 |
if(trim($valeur_recherche) != '') {
|
|
|
388 |
$url = $this->ajouterHrefAutreProjet($service, $ressource, $valeur_recherche, $projet);
|
|
|
389 |
$code_valeur = $this->chercherSignificationCode($url, $nom);
|
|
|
390 |
}
|
|
|
391 |
$ligne_resultat[$intitule] = $code_valeur;
|
277 |
aurelien |
392 |
}
|
284 |
jpm |
393 |
return $ligne_resultat;
|
277 |
aurelien |
394 |
}
|
|
|
395 |
|
284 |
jpm |
396 |
/**
|
|
|
397 |
* Fonction qui ajoute les attributions à une ligne de résultats
|
|
|
398 |
*
|
|
|
399 |
* @param array $ligne_tableau_resultat
|
|
|
400 |
* @param array $nom_sci
|
|
|
401 |
*/
|
|
|
402 |
public function ajouterTaxonsAttributionsLigneResultat(&$ligne_tableau_resultat, &$noms_sci) {
|
|
|
403 |
if (isset($nom_sci[$ligne_tableau_resultat['taxon.code']])) {
|
|
|
404 |
$ligne_tableau_resultat['nom_retenu.code'] = $nom_sci[$ligne_tableau_resultat['taxon']]['id'];
|
|
|
405 |
$ligne_tableau_resultat['taxon'] = $nom_sci[$ligne_tableau_resultat['taxon']]['nom_sci'];
|
|
|
406 |
}
|
|
|
407 |
return $ligne_tableau_resultat;
|
|
|
408 |
}
|
|
|
409 |
|
|
|
410 |
private function trierLigneTableau($a, $b) {
|
|
|
411 |
$retour = 0;
|
|
|
412 |
|
|
|
413 |
if ($a[$this->champ_tri] == $b[$this->champ_tri]) {
|
|
|
414 |
$retour = 0;
|
|
|
415 |
}
|
|
|
416 |
|
|
|
417 |
if($this->champ_tri == 'code_langue') {
|
|
|
418 |
if ($a[$this->champ_tri] == 'fra' && $b[$this->champ_tri] != 'fra') {
|
|
|
419 |
$retour = ($this->direction_tri == 'asc') ? -1 : 1;
|
|
|
420 |
} else if ($a[$this->champ_tri] != 'fra' && $b[$this->champ_tri] == 'fra') {
|
|
|
421 |
$retour = ($this->direction_tri == 'asc') ? 1 : -1;
|
|
|
422 |
} else {
|
|
|
423 |
$retour = $this->comparerChaineSelonDirectionTri($a[$this->champ_tri], $b[$this->champ_tri]);
|
|
|
424 |
}
|
|
|
425 |
} else {
|
|
|
426 |
$retour = $this->comparerChaineSelonDirectionTri($a[$this->champ_tri], $b[$this->champ_tri]);
|
|
|
427 |
}
|
|
|
428 |
return $retour;
|
|
|
429 |
}
|
|
|
430 |
|
|
|
431 |
private function comparerChaineSelonDirectionTri($a, $b) {
|
|
|
432 |
if($this->direction_tri == 'asc') {
|
|
|
433 |
return ($a < $b) ? -1 : 1;
|
|
|
434 |
} else {
|
|
|
435 |
return ($a > $b) ? -1 : 1;
|
|
|
436 |
}
|
|
|
437 |
}
|
|
|
438 |
|
6 |
jpm |
439 |
// formatage de la reponse /id ss la forme
|
|
|
440 |
// id, nom_vernaculaire, attributions
|
|
|
441 |
// langue
|
|
|
442 |
// num_nom (correspond à un taxon bdtfx)
|
|
|
443 |
public function formaterNomsVernaculairesId($resultat) {
|
|
|
444 |
foreach ($resultat as $taxon) { // pour chaque attribution à un taxon bdtfx
|
|
|
445 |
// on crée les variables qui serviront de clés et on les enléves du tableau
|
|
|
446 |
$num_nom = $taxon['num_nom_vernaculaire']; // unique pour un trinôme id, langue, taxon
|
|
|
447 |
unset($taxon['num_nom_vernaculaire']);
|
|
|
448 |
$langue = $taxon['code_langue'];
|
|
|
449 |
unset($taxon['code_langue']);
|
109 |
jpm |
450 |
|
6 |
jpm |
451 |
foreach ($this->correspondance_champs as $key => $correspondance) { // ordonne les infos pour affichage
|
|
|
452 |
if (isset($taxon[$key]) && $taxon[$key] != "") {
|
|
|
453 |
$this->afficherDonnees($correspondance, $taxon[$key], $langue, $num_nom);
|
|
|
454 |
}
|
|
|
455 |
}
|
|
|
456 |
foreach ($taxon as $key => $valeur) { // rajoute les champs non prévus dans l'api
|
|
|
457 |
if (!isset($this->correspondance_champs[$key]) && $valeur != "") {
|
|
|
458 |
$this->afficherDonnees($key, $valeur, $langue, $num_nom);
|
|
|
459 |
}
|
|
|
460 |
}
|
|
|
461 |
if ($this->retour_format == 'max') $this->chargerBiblio($num_nom, $langue);
|
|
|
462 |
}
|
|
|
463 |
if ($this->retour_format == 'max') $this->afficherTaxons(); // va chercher les noms de tous les taxons
|
|
|
464 |
unset($this->table_retour['href']);
|
|
|
465 |
return $this->table_retour;
|
|
|
466 |
}
|
109 |
jpm |
467 |
|
6 |
jpm |
468 |
public function afficherDonnees($champ, $valeur, $langue = '', $num_nom = '') {
|
|
|
469 |
if ($champ == 'id' || $champ == 'nom_vernaculaire') {
|
|
|
470 |
$this->table_retour[$champ] = $valeur;
|
|
|
471 |
} elseif (preg_match('/^(.*)\.code$/', $champ, $match)) {
|
|
|
472 |
switch ($match[1]) {
|
|
|
473 |
case 'taxon' : if ($this->retour_format == 'max') {$this->taxons[$num_nom] = $valeur;}
|
|
|
474 |
$this->afficherPointCode($match[1], $langue, $num_nom, $valeur); break;
|
109 |
jpm |
475 |
case 'langue' : //$this->afficherPointCode($match[1], 'iso-639-3', 'langues', $valeur);
|
6 |
jpm |
476 |
break;
|
|
|
477 |
case 'genre' : $this->afficherPointCode($match[1], $langue, $num_nom, $valeur); break;
|
|
|
478 |
case 'conseil_emploi' : $this->afficherPointCode($match[1], $langue, $num_nom, $valeur); break;
|
|
|
479 |
default : break;
|
|
|
480 |
}
|
109 |
jpm |
481 |
|
6 |
jpm |
482 |
} elseif ($langue != '') {
|
|
|
483 |
$this->table_retour['attributions'][$langue][$num_nom][$champ] = $valeur;
|
|
|
484 |
} else {
|
|
|
485 |
$this->table_retour[$champ] = $valeur;
|
|
|
486 |
}
|
|
|
487 |
}
|
109 |
jpm |
488 |
|
6 |
jpm |
489 |
public function afficherPointCode($nomChamp, $langue, $num_nom, $valeur) {
|
|
|
490 |
if (isset($this->champ_infos[$nomChamp])) {
|
|
|
491 |
extract($this->champ_infos[$nomChamp]);
|
|
|
492 |
}
|
109 |
jpm |
493 |
|
6 |
jpm |
494 |
if ($this->retour_format == 'max') {
|
|
|
495 |
$url = $this->ajouterHrefAutreProjet($service, $ressource, $valeur, $projet);
|
|
|
496 |
if ($service == 'taxons') {
|
|
|
497 |
$code_valeur = '';
|
164 |
delphine |
498 |
$this->table_retour['attributions'][$langue][$num_nom]['nom_retenu.code'] = $code_valeur;
|
109 |
jpm |
499 |
} else {
|
6 |
jpm |
500 |
$code_valeur = $this->chercherSignificationCode($url, $nom);
|
|
|
501 |
}
|
|
|
502 |
if ($projet != '') $projet .= '.';
|
|
|
503 |
$this->table_retour['attributions'][$langue][$num_nom][$nomChamp] = $code_valeur;
|
|
|
504 |
$this->table_retour['attributions'][$langue][$num_nom][$nomChamp.'.code'] = $projet.$ressource.$valeur;
|
|
|
505 |
$this->table_retour['attributions'][$langue][$num_nom][$nomChamp.'.href'] = $url;
|
|
|
506 |
} else {
|
|
|
507 |
if ($projet != '') $projet .= '.';
|
|
|
508 |
$this->table_retour['attributions'][$langue][$num_nom][$nomChamp.'.code'] = $projet.$ressource.$valeur;
|
|
|
509 |
}
|
|
|
510 |
}
|
109 |
jpm |
511 |
|
6 |
jpm |
512 |
public function chercherSignificationCode($url, $nom) {
|
|
|
513 |
if (isset($this->signification_code[$url])) {
|
|
|
514 |
$valeur = $this->signification_code[$url];
|
|
|
515 |
} else {
|
|
|
516 |
$res = $this->consulterHref($url);
|
|
|
517 |
$valeur = $res->$nom;
|
|
|
518 |
$this->signification_code[$url] = $valeur;
|
|
|
519 |
}
|
|
|
520 |
return $valeur;
|
|
|
521 |
}
|
109 |
jpm |
522 |
|
6 |
jpm |
523 |
public function afficherTaxons() {
|
160 |
delphine |
524 |
$resultat = $this->recupererNomTaxons();
|
6 |
jpm |
525 |
foreach ($this->table_retour['attributions'] as $code_langue=>$langue) {
|
|
|
526 |
foreach ($langue as $num_nom=>$taxon) {
|
|
|
527 |
$num_tax = ltrim($taxon['taxon.code'], 'bdtfx.nt:');
|
|
|
528 |
if (isset($resultat[$num_tax])) {
|
164 |
delphine |
529 |
$this->table_retour['attributions'][$code_langue][$num_nom]['nom_retenu.code'] = $resultat[$num_tax]['id'];
|
|
|
530 |
$this->table_retour['attributions'][$code_langue][$num_nom]['taxon'] = $resultat[$num_tax]['nom_sci'];
|
6 |
jpm |
531 |
}
|
|
|
532 |
}
|
|
|
533 |
}
|
|
|
534 |
}
|
160 |
delphine |
535 |
|
|
|
536 |
public function recupererNomTaxons() {
|
|
|
537 |
$url = Config::get('url_service_base').'bdtfx/taxons?navigation.limite=500&masque.nt='.
|
|
|
538 |
$this->getBdd()->proteger(implode(',', $this->taxons));
|
|
|
539 |
$res = $this->consulterHref($url);
|
|
|
540 |
foreach ($res->resultat as $id=>$taxon) {
|
164 |
delphine |
541 |
$resultat[$taxon->num_taxonomique]['id'] = 'bdtfx.nn:'.$id;
|
|
|
542 |
$resultat[$taxon->num_taxonomique]['nom_sci'] = $taxon->nom_sci;
|
160 |
delphine |
543 |
}
|
|
|
544 |
return $resultat;
|
|
|
545 |
}
|
6 |
jpm |
546 |
|
|
|
547 |
public function formaterNomsVernaculairesIdChamp($resultat) {
|
109 |
jpm |
548 |
$this->table_retour['id'] = $this->ressources[0];
|
|
|
549 |
$champs = explode(' ', $this->ressources[1]);
|
6 |
jpm |
550 |
if (in_array('attributions', $champs) != false) {
|
|
|
551 |
$this->formaterNomsVernaculairesId($resultat);
|
|
|
552 |
unset($this->table_retour['nom_vernaculaire']);
|
160 |
delphine |
553 |
} else {
|
6 |
jpm |
554 |
$champ_attributions = array('num_taxon', 'zone_usage', 'num_statut', 'num_genre', 'notes');
|
|
|
555 |
foreach ($resultat as $taxon) {
|
|
|
556 |
foreach ($taxon as $key=>$valeur) {
|
|
|
557 |
if ($key == 'code_langue' && in_array('langue', $champs) != false) {
|
|
|
558 |
$this->table_retour['attributions']['langue'][] = $valeur;
|
|
|
559 |
} elseif (in_array($key, $champ_attributions) != false) {
|
|
|
560 |
$this->afficherPoint($this->correspondance_champs[$key] , $valeur, $taxon['code_langue'], $taxon['num_nom_vernaculaire']);
|
|
|
561 |
} elseif (in_array($key, $champs) != false) {
|
|
|
562 |
$this->table_retour[$key] = $valeur;
|
|
|
563 |
}
|
|
|
564 |
}
|
|
|
565 |
if (in_array('biblio', $champs) != false) $this->chargerBiblio($taxon['num_nom_vernaculaire'], $taxon['code_langue']);
|
|
|
566 |
}
|
|
|
567 |
if (in_array('biblio', $champs) != false && array_search('biblio.num_ref', $this->table_retour) != false) $this->table_retour['biblio'] = null;
|
|
|
568 |
}
|
|
|
569 |
return $this->table_retour;
|
|
|
570 |
}
|
109 |
jpm |
571 |
|
6 |
jpm |
572 |
public function afficherPoint($champ, $valeur, $langue, $num_nom) {
|
|
|
573 |
preg_match('/^(.*)\.code$/', $champ, $match);
|
|
|
574 |
$champ = $match[1];
|
|
|
575 |
if (isset($this->champ_infos[$champ])) {
|
|
|
576 |
extract($this->champ_infos[$champ]);
|
|
|
577 |
$url = $this->ajouterHrefAutreProjet($service, $ressource, $valeur, $projet);
|
|
|
578 |
$projet .= '.';
|
|
|
579 |
}
|
109 |
jpm |
580 |
|
|
|
581 |
$champs = explode(' ', $this->ressources[1]);
|
6 |
jpm |
582 |
if (in_array($champ.'.*', $champs) !== false && isset($projet)) {
|
|
|
583 |
$this->table_retour['attributions'][$langue][$num_nom][$champ.'.code'] = $projet.$ressource.$valeur;
|
|
|
584 |
$this->table_retour['attributions'][$langue][$num_nom][$champ.'.href'] = $url;
|
109 |
jpm |
585 |
}
|
6 |
jpm |
586 |
if (in_array($champ.'.code', $champs) !== false && isset($projet)) {
|
|
|
587 |
$this->table_retour['attributions'][$langue][$num_nom][$champ.'.code'] = $projet.$ressource.$valeur;
|
109 |
jpm |
588 |
}
|
6 |
jpm |
589 |
if (in_array($champ.'.href', $champs) !== false && isset($projet)) {
|
|
|
590 |
$this->table_retour['attributions'][$langue][$num_nom][$champ.'.href'] = $url;
|
109 |
jpm |
591 |
}
|
6 |
jpm |
592 |
if (in_array($champ, $champs) !== false) {
|
|
|
593 |
if (isset($url)) {
|
|
|
594 |
$this->table_retour['attributions'][$langue][$num_nom][$champ] = $this->chercherSignificationCode($url, $nom);
|
|
|
595 |
} else {
|
|
|
596 |
$this->table_retour['attributions'][$langue][$champ] = $valeur;
|
|
|
597 |
}
|
109 |
jpm |
598 |
}
|
6 |
jpm |
599 |
}
|
|
|
600 |
|
|
|
601 |
public function afficherLangue($nomChamp, $projet, $service, $valeur, $ressource = '', $nom = 'nom') {
|
|
|
602 |
if ($this->retour_format == 'max') {
|
|
|
603 |
$this->table_retour['attributions'][$nomChamp] = $nom;
|
|
|
604 |
$this->table_retour['attributions'][$nomChamp.'.code'] = $projet.$ressource.$valeur;
|
|
|
605 |
$this->table_retour['attributions'][$nomChamp.'.href'] = $url;
|
|
|
606 |
} else {
|
|
|
607 |
$this->table_retour['attributions'][$nomChamp.'.code'] = $projet.$ressource.$valeur;
|
|
|
608 |
}
|
|
|
609 |
}
|
109 |
jpm |
610 |
|
6 |
jpm |
611 |
public function chargerBiblio($num_nom, $langue) {
|
|
|
612 |
list($table, $version) = explode('_v',$this->table);
|
|
|
613 |
$requete = "SELECT b.*, lb.notes FROM nvjfl_lien_biblio_v$version lb, nvjfl_biblio_v$version b ".
|
|
|
614 |
"WHERE b.num_ref = lb.num_ref AND lb.num_nom = '$num_nom' ;";
|
284 |
jpm |
615 |
$resultat = $this->getBdd()->recupererTous($requete);
|
109 |
jpm |
616 |
|
6 |
jpm |
617 |
if ($resultat == '') { //cas ou la requete comporte des erreurs
|
|
|
618 |
$r = 'La requête SQL formée comporte une erreur !!';
|
|
|
619 |
$this->renvoyerErreur(RestServeur::HTTP_CODE_RESSOURCE_INTROUVABLE, $r);
|
|
|
620 |
Debug::printr($requete);
|
|
|
621 |
} elseif ($resultat) {
|
|
|
622 |
foreach ($resultat as $res) {
|
|
|
623 |
foreach ($res as $cle => $valeur) {
|
|
|
624 |
if ($valeur !== "") {
|
|
|
625 |
$this->table_retour['attributions'][$langue][$num_nom]['biblio.'.$cle] = $valeur;
|
|
|
626 |
}
|
|
|
627 |
}
|
|
|
628 |
}
|
|
|
629 |
}
|
|
|
630 |
}
|
109 |
jpm |
631 |
|
6 |
jpm |
632 |
}
|
|
|
633 |
?>
|