1425 |
aurelien |
1 |
<?php
|
|
|
2 |
/**
|
|
|
3 |
* PHP Version 5
|
|
|
4 |
*
|
|
|
5 |
* @category PHP
|
|
|
6 |
* @package jrest
|
|
|
7 |
* @author David Delon <david@tela-botania.org>
|
|
|
8 |
* @author Aurélien Peronnet <aurelien@tela-botania.org>
|
|
|
9 |
* @copyright 2010 Tela-Botanica
|
|
|
10 |
* @license http://www.cecill.info/licences/Licence_CeCILL_V2-fr.txt Licence CECILL
|
|
|
11 |
* @version SVN: <svn_id>
|
|
|
12 |
* @link /doc/jrest/
|
|
|
13 |
*/
|
|
|
14 |
|
|
|
15 |
/**
|
|
|
16 |
*
|
|
|
17 |
* La classe appelle les web service d'eflore pour éviter que le code client
|
|
|
18 |
* ne soit dépendant de la version d'eflore
|
|
|
19 |
*/
|
|
|
20 |
class RechercheInfosTaxonBeta extends Cel {
|
|
|
21 |
|
1427 |
aurelien |
22 |
private $url_service_nom = null;
|
|
|
23 |
private $url_service_taxon = null;
|
|
|
24 |
private $url_service_chorologie = null;
|
|
|
25 |
|
1425 |
aurelien |
26 |
public function RechercheInfosTaxonBeta($config) {
|
|
|
27 |
parent::__construct($config);
|
1427 |
aurelien |
28 |
$this->url_service_nom = $config['eflore']['url_service_nom'];
|
|
|
29 |
$this->url_service_taxon = $config['eflore']['url_service_taxon'];
|
|
|
30 |
$this->url_service_chorologie_obs = $config['eflore']['url_service_chorologie_obs'];
|
1425 |
aurelien |
31 |
}
|
|
|
32 |
|
|
|
33 |
public function rechercherGenreEspeceSurPrefixe($genre = null, $espece = null) {
|
|
|
34 |
|
|
|
35 |
$liste_genre_espece = array();
|
|
|
36 |
$masque = urlencode(trim(trim($genre).' '.trim($espece,' *')));
|
1427 |
aurelien |
37 |
$requete = @file_get_contents($this->url_service_nom.'?masque='.$masque.'&recherche=etendue&retour.format=min&navigation.limite=50&ns.structure=au');
|
1425 |
aurelien |
38 |
|
|
|
39 |
if($requete != '') {
|
|
|
40 |
$requete = json_decode($requete);
|
|
|
41 |
if(is_object($requete) && isset($requete->resultat)) {
|
|
|
42 |
foreach ($requete->resultat as $id => $res) {
|
1427 |
aurelien |
43 |
$retenu = ($res->retenu == "true") ? '3' : '4';
|
1425 |
aurelien |
44 |
$liste_genre_espece[] = array($res->nom_sci_complet, $id, $retenu);
|
|
|
45 |
}
|
|
|
46 |
}
|
1427 |
aurelien |
47 |
usort($liste_genre_espece, array($this, 'comparerParRetenuPuisNom'));
|
1425 |
aurelien |
48 |
}
|
|
|
49 |
return $liste_genre_espece;
|
|
|
50 |
}
|
|
|
51 |
|
1427 |
aurelien |
52 |
function comparerParRetenuPuisNom($a, $b) {
|
|
|
53 |
if($a[2] == 3 && $b[2] != 3) {
|
|
|
54 |
return -1;
|
|
|
55 |
} elseif($a[2] != 3 && $b[2] == 3) {
|
|
|
56 |
return 1;
|
|
|
57 |
} else {
|
|
|
58 |
return strnatcmp($a[0], $b[0]);
|
|
|
59 |
}
|
1425 |
aurelien |
60 |
}
|
|
|
61 |
|
|
|
62 |
public function effectuerRequeteInfosComplementairesEtFormaterNom($numNom) {
|
|
|
63 |
|
|
|
64 |
$resultat_infos_complementaires = (array)$this->effectuerRequeteInfosComplementairesSurNumNom($numNom);
|
|
|
65 |
$retour_infos_complementaires = array();
|
|
|
66 |
if (isset($resultat_infos_complementaires['nom_retenu_complet']) && $resultat_infos_complementaires['nom_retenu_complet'] != '') {
|
|
|
67 |
$retour_infos_complementaires=array(($this->supprimerBiblio($resultat_infos_complementaires['nom_retenu_complet'])));
|
|
|
68 |
}
|
|
|
69 |
|
|
|
70 |
return $retour_infos_complementaires;
|
|
|
71 |
}
|
|
|
72 |
|
|
|
73 |
public function rechercherInformationsComplementairesSurNom($nom_saisi) {
|
|
|
74 |
|
|
|
75 |
$nameparser = new NameParser();
|
|
|
76 |
$nom_decoupe = $nameparser->parse($nom_saisi);
|
|
|
77 |
|
|
|
78 |
$masque = ((isset($nom_decoupe['genus']) && $nom_decoupe['genus']!= '') &&
|
|
|
79 |
(isset($nom_decoupe['species']) && $nom_decoupe['species']!= ''))
|
|
|
80 |
? $nom_decoupe['genus'].' '.$nom_decoupe['species'] : $nom_saisi;
|
|
|
81 |
|
|
|
82 |
$liste_genre_espece = array();
|
1427 |
aurelien |
83 |
$url = $this->url_service_nom.'?masque='.urlencode($nom_decoupe['genus'].' '.$nom_decoupe['species']).'&recherche=etendue&ns.format=txt&retour.champs=nom_retenu,nom_retenu.*,num_taxonomique,auteur&navigation.limite=1';
|
1426 |
aurelien |
84 |
|
1425 |
aurelien |
85 |
$resultat = @file_get_contents($url);
|
|
|
86 |
if($resultat != '') {
|
|
|
87 |
$resultat = json_decode($resultat);
|
|
|
88 |
if(is_object($resultat) && isset($resultat->resultat)) {
|
|
|
89 |
foreach ($resultat->resultat as $id => $res) {
|
|
|
90 |
$nom_complet = $res->{'nom_sci'}.' '.$res->auteur;
|
|
|
91 |
$liste_genre_espece[] = array($res->{'nom_retenu.id'},$nom_complet);
|
|
|
92 |
}
|
|
|
93 |
}
|
|
|
94 |
}
|
|
|
95 |
return $liste_genre_espece;
|
|
|
96 |
}
|
|
|
97 |
|
|
|
98 |
public function rechercherInformationsComplementairesSurNumNom($num_nom) {
|
|
|
99 |
$infos_formatees = array();
|
|
|
100 |
$infos = $this->effectuerRequeteInfosComplementairesSurNumNom($num_nom);
|
|
|
101 |
if(is_object($infos)) {
|
|
|
102 |
$infos_formatees = $this->formaterInfosComplementairesSurNumNom($infos);
|
|
|
103 |
}
|
|
|
104 |
return $infos_formatees;
|
|
|
105 |
}
|
|
|
106 |
|
|
|
107 |
public function effectuerRequeteInfosComplementairesSurNumNom($num_nom) {
|
|
|
108 |
$infos = array();
|
|
|
109 |
//TODO: retourner moins de champs grâce au paramètre retour.champs
|
1427 |
aurelien |
110 |
$url = $this->url_service_nom.'/'.$num_nom;
|
1425 |
aurelien |
111 |
$resultat = @file_get_contents($url);
|
|
|
112 |
if($resultat != '') {
|
|
|
113 |
$infos = json_decode($resultat);
|
|
|
114 |
}
|
|
|
115 |
return $infos;
|
|
|
116 |
}
|
|
|
117 |
|
|
|
118 |
private function formaterInfosComplementairesSurNumNom($infos) {
|
|
|
119 |
$infos = (array)$infos;
|
|
|
120 |
return $infos_formatees = array(
|
|
|
121 |
'Nom_Retenu' => $this->supprimerBiblio($infos['nom_retenu_complet']),
|
|
|
122 |
'Num_Nom_Retenu' => $infos['nom_retenu.id'],
|
|
|
123 |
'Num_Taxon' => $infos['num_taxonomique'],
|
|
|
124 |
'Famille' => $infos['famille']
|
|
|
125 |
);
|
|
|
126 |
}
|
|
|
127 |
|
|
|
128 |
private function supprimerBiblio($nom) {
|
|
|
129 |
return preg_replace('/ \[.*\]/','',$nom);
|
|
|
130 |
}
|
|
|
131 |
|
|
|
132 |
public function rechercherNumTaxSurNumNom($num_nom) {
|
|
|
133 |
|
|
|
134 |
$nt = null;
|
1427 |
aurelien |
135 |
$url = $this->url_service_nom."/".$num_nom.'?retour.champs=num_taxonomique';
|
1425 |
aurelien |
136 |
$resultat = @file_get_contents($url);
|
|
|
137 |
if($resultat != '') {
|
|
|
138 |
$infos = json_decode($resultat);
|
|
|
139 |
$nt = $infos->num_taxonomique;
|
|
|
140 |
}
|
|
|
141 |
|
|
|
142 |
return $nt;
|
|
|
143 |
}
|
|
|
144 |
|
|
|
145 |
public function taxonEstPresentDansDepartement($num_taxon,$code_departement) {
|
|
|
146 |
$presence_taxon = false;
|
1427 |
aurelien |
147 |
$url = $this->url_service_chorologie_obs.'?masque.departement='.$code_departement.'&masque.determination.nt='.$num_taxon.'&navigation.limite=1';
|
1425 |
aurelien |
148 |
$resultat = @file_get_contents($url);
|
|
|
149 |
if($resultat != '') {
|
|
|
150 |
$resultat = json_decode($resultat);
|
|
|
151 |
if(is_object($resultat) && isset($resultat->resultat) && count($resultat->resultat) > 0) {
|
|
|
152 |
$presence_taxon = true;
|
|
|
153 |
}
|
|
|
154 |
}
|
|
|
155 |
return $presence_taxon;
|
|
|
156 |
}
|
|
|
157 |
|
|
|
158 |
public function effectuerRequeteInfosComplementairesSurNumTax($numTax) {
|
|
|
159 |
|
1426 |
aurelien |
160 |
$infos = array();
|
|
|
161 |
//TODO: retourner moins de champs grâce au paramètre retour.champs
|
1427 |
aurelien |
162 |
$url = $this->url_service_taxon."/nt:".$numTax;
|
1426 |
aurelien |
163 |
$resultat = @file_get_contents($url);
|
|
|
164 |
if($resultat != '') {
|
|
|
165 |
$infos = json_decode($resultat);
|
|
|
166 |
}
|
|
|
167 |
|
|
|
168 |
return $infos;
|
1425 |
aurelien |
169 |
}
|
|
|
170 |
|
|
|
171 |
function rechercherInfosSurTexteCodeOuNumTax($identifiant_espece) {
|
|
|
172 |
// texte libre, nom scientifique,
|
|
|
173 |
// ou code nomenclatural (format BDNFFnn999999)
|
|
|
174 |
// ou code taxonomique (format BDNFFnt999999)
|
|
|
175 |
$identifiant_espece=trim($identifiant_espece);
|
|
|
176 |
$identifiant_espece=utf8_encode($identifiant_espece);
|
1426 |
aurelien |
177 |
|
1425 |
aurelien |
178 |
$retour = array();
|
|
|
179 |
|
|
|
180 |
preg_match('/BDNFFnn([0-9][0-9]*)/',$identifiant_espece, $elements);
|
|
|
181 |
if (isset($elements[1])) {
|
|
|
182 |
// Numero nomenclatural
|
|
|
183 |
$infos_taxon = $this->rechercherInformationsComplementairesSurNumNom($elements[1]);
|
1426 |
aurelien |
184 |
$retour = array("nom_sel" => $infos_taxon['Nom_Retenu'], "en_id_nom" => $elements[1]);
|
1425 |
aurelien |
185 |
} else {
|
|
|
186 |
// Numero taxonomique ou nom scientifique
|
|
|
187 |
preg_match('/BDNFFnt([0-9][0-9]*)/', $identifiant_espece, $elements);
|
|
|
188 |
if (isset($elements[1])) {
|
|
|
189 |
// Numero taxonomique
|
1426 |
aurelien |
190 |
$infos_taxon = (array)$this->effectuerRequeteInfosComplementairesSurNumTax($elements[1]);
|
|
|
191 |
if(isset($infos_taxon['nom_retenu.libelle']) && isset($infos_taxon['id'])) {
|
|
|
192 |
$nom = $infos_taxon['nom_retenu.libelle'];
|
|
|
193 |
$nom .= (isset($infos_taxon['auteur'])) ? ' '.$infos_taxon['auteur'] : '';
|
|
|
194 |
$retour = array("nom_sel" => $nom,
|
|
|
195 |
"en_id_nom" => $infos_taxon['id']);
|
|
|
196 |
}
|
1425 |
aurelien |
197 |
} else {
|
|
|
198 |
// Nom scientifique
|
1426 |
aurelien |
199 |
$id_nom = $this->rechercherInformationsComplementairesSurNom($identifiant_espece);
|
1425 |
aurelien |
200 |
// Recherche du nom associe
|
|
|
201 |
$retour = array("nom_sel" => $identifiant_espece);
|
1426 |
aurelien |
202 |
if(is_array($id_nom) && count($id_nom) > 0 && isset($id_nom[0][0])) {
|
|
|
203 |
$nn = $id_nom[0][0];
|
|
|
204 |
$infos_nom = (array)$this->effectuerRequeteInfosComplementairesSurNumNom($nn);
|
1425 |
aurelien |
205 |
if (is_array($infos_nom) && !empty($infos_nom)) {
|
1426 |
aurelien |
206 |
$retour = array("nom_sel" => $infos_nom['nom_sci'].' '.$infos_nom['auteur'], "en_id_nom" => $infos_nom['id']);
|
1425 |
aurelien |
207 |
}
|
|
|
208 |
}
|
|
|
209 |
}
|
|
|
210 |
}
|
|
|
211 |
|
|
|
212 |
return $retour;
|
|
|
213 |
}
|
|
|
214 |
}
|
|
|
215 |
?>
|