424 |
jpm |
1 |
<?php
|
575 |
jpm |
2 |
// declare(encoding='UTF-8');
|
424 |
jpm |
3 |
/**
|
|
|
4 |
* Service fournissant une carte dynamique des obsertions publiques du CEL.
|
|
|
5 |
* Encodage en entrée : utf8
|
|
|
6 |
* Encodage en sortie : utf8
|
|
|
7 |
*
|
575 |
jpm |
8 |
* Cas d'utilisation et documentation :
|
|
|
9 |
* @link http://www.tela-botanica.org/wikini/eflore/wakka.php?wiki=AideCELWidgetCarto
|
424 |
jpm |
10 |
*
|
575 |
jpm |
11 |
* Paramètres :
|
|
|
12 |
* ===> utilisateur = identifiant
|
|
|
13 |
* Affiche seulement les observations d'un utilisateur donné. L'identifiant correspond au courriel de
|
|
|
14 |
* l'utilisateur avec lequel il s'est inscrit sur Tela Botanica.
|
|
|
15 |
* ===> dept = code_du_département
|
|
|
16 |
* Affiche seulement les observations pour le département français métropolitain indiqué. Les codes de département utilisables
|
|
|
17 |
* sont : 01 à 19, 2A, 2B et 21 à 95.
|
|
|
18 |
* ===> projet = mot-clé
|
|
|
19 |
* Affiche seulement les observations pour le projet d'observations indiqué. Dans l'interface du CEL, vous pouvez taguer vos
|
|
|
20 |
* observations avec un mot-clé de projet. Si vous voulez regrouper des observations de plusieurs utilisateurs, communiquez un
|
|
|
21 |
* mot-clé de projet à vos amis et visualisez les informations ainsi regroupées.
|
|
|
22 |
* ===> num_taxon = num_taxon
|
|
|
23 |
* Affiche seulement les observations pour la plante indiquée. Le num_taxon correspond au numéro taxonomique de la plante.
|
|
|
24 |
* Ce numéro est disponible dans les fiches d'eFlore. Par exemple, pour "Poa bulbosa L." le numéro taxonomique vaut 7080.
|
|
|
25 |
*
|
|
|
26 |
* @author Jean-Pascal MILCENT <jpm@tela-botanica.org>
|
|
|
27 |
* @license GPL v3 <http://www.gnu.org/licenses/gpl.txt>
|
|
|
28 |
* @license CECILL v2 <http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt>
|
|
|
29 |
* @version $Id$
|
|
|
30 |
* @copyright Copyright (c) 2010, Tela Botanica (accueil@tela-botanica.org)
|
424 |
jpm |
31 |
*/
|
|
|
32 |
class Carto extends WidgetCommun {
|
464 |
delphine |
33 |
const DS = DIRECTORY_SEPARATOR;
|
836 |
jpm |
34 |
const SERVICE_CARTO_NOM = 'CelWidgetMap';
|
|
|
35 |
const SERVICE_CARTO_ACTION_DEFAUT = 'carte-defaut';
|
424 |
jpm |
36 |
|
836 |
jpm |
37 |
private $carte = null;
|
|
|
38 |
private $utilisateur = null;
|
|
|
39 |
private $projet = null;
|
|
|
40 |
private $dept = null;
|
|
|
41 |
private $num_taxon = null;
|
|
|
42 |
private $station = null;
|
|
|
43 |
private $format = null;// Format des obs pour les stations (tableau/liste)
|
|
|
44 |
|
424 |
jpm |
45 |
/**
|
575 |
jpm |
46 |
* Méthode appelée par défaut pour charger ce widget.
|
424 |
jpm |
47 |
*/
|
|
|
48 |
public function executer() {
|
|
|
49 |
$retour = null;
|
836 |
jpm |
50 |
$this->extraireParametres();
|
424 |
jpm |
51 |
|
836 |
jpm |
52 |
$methode = $this->traiterNomMethodeExecuter($this->carte);
|
471 |
jpm |
53 |
if (method_exists($this, $methode)) {
|
|
|
54 |
$retour = $this->$methode();
|
424 |
jpm |
55 |
} else {
|
471 |
jpm |
56 |
$this->messages[] = "Ce type de service '$methode' n'est pas disponible.";
|
424 |
jpm |
57 |
}
|
|
|
58 |
|
|
|
59 |
if (is_null($retour)) {
|
|
|
60 |
$info = 'Un problème est survenu : '.print_r($this->messages, true);
|
|
|
61 |
$this->envoyer($info);
|
|
|
62 |
} else {
|
543 |
jpm |
63 |
$squelette = dirname(__FILE__).self::DS.'squelettes'.self::DS.$retour['squelette'].'.tpl.html';
|
424 |
jpm |
64 |
$html = $this->traiterSquelettePhp($squelette, $retour['donnees']);
|
|
|
65 |
$this->envoyer($html);
|
|
|
66 |
}
|
|
|
67 |
}
|
836 |
jpm |
68 |
|
|
|
69 |
public function extraireParametres() {
|
|
|
70 |
extract($this->parametres);
|
|
|
71 |
$this->carte = (isset($carte) ? $carte : self::SERVICE_CARTO_ACTION_DEFAUT);
|
|
|
72 |
$this->utilisateur = (isset($utilisateur) ? $utilisateur : '*');
|
|
|
73 |
$this->projet = (isset($projet) ? $projet : '*');
|
|
|
74 |
$this->dept = (isset($dept) ? $dept : '*');
|
|
|
75 |
$this->num_taxon = (isset($num_taxon) ? $num_taxon : '*');
|
|
|
76 |
$this->station = (isset($station) ? $station : null);
|
|
|
77 |
$this->format = (isset($format) ? $format : null);
|
|
|
78 |
}
|
424 |
jpm |
79 |
|
|
|
80 |
/**
|
|
|
81 |
* Carte par défaut
|
|
|
82 |
*/
|
|
|
83 |
public function executerCarteDefaut() {
|
|
|
84 |
$widget = null;
|
836 |
jpm |
85 |
$url_json = $this->contruireUrlServiceCarto('carte-defaut-json');
|
424 |
jpm |
86 |
$url_base = sprintf($this->config['chemins']['baseURLAbsoluDyn'], '');
|
|
|
87 |
|
|
|
88 |
// Création des infos du widget
|
836 |
jpm |
89 |
$widget['donnees']['url_cel_carto'] = $this->contruireUrlServiceCarto();
|
424 |
jpm |
90 |
$widget['donnees']['url_json'] = $url_json;
|
|
|
91 |
$widget['donnees']['url_base'] = $url_base;
|
836 |
jpm |
92 |
$widget['donnees']['utilisateur'] = $this->utilisateur;
|
|
|
93 |
$widget['donnees']['projet'] = $this->projet;
|
|
|
94 |
$widget['donnees']['dept'] = $this->dept;
|
|
|
95 |
$widget['donnees']['num_taxon'] = $this->num_taxon;
|
490 |
jpm |
96 |
$widget['donnees']['taxons'] = $this->chargerTaxons();
|
836 |
jpm |
97 |
if ($this->num_taxon != '*') {
|
559 |
jpm |
98 |
$taxon_courrant = current($widget['donnees']['taxons']);
|
|
|
99 |
$widget['donnees']['taxon_nom'] = $taxon_courrant['nom'];
|
|
|
100 |
}
|
424 |
jpm |
101 |
$widget['squelette'] = 'carte_defaut';
|
464 |
delphine |
102 |
|
836 |
jpm |
103 |
if (isset($this->dept)) {
|
464 |
delphine |
104 |
// si on veut afficher les limites départemmentales on va compter et chercher les noms de fichiers
|
836 |
jpm |
105 |
$fichiersKml = $this->chercherFichierKml();
|
|
|
106 |
$urls = null;
|
599 |
jpm |
107 |
foreach ($fichiersKml as $kml => $dossier){
|
574 |
jpm |
108 |
$url_limites_communales = sprintf($this->config['carto']['limitesCommunaleUrlTpl'], $dossier, $kml);
|
836 |
jpm |
109 |
$urls[] = $url_limites_communales;
|
464 |
delphine |
110 |
}
|
836 |
jpm |
111 |
$widget['donnees']['url_limites_communales'] = json_encode($urls);
|
464 |
delphine |
112 |
}
|
465 |
delphine |
113 |
|
424 |
jpm |
114 |
return $widget;
|
|
|
115 |
}
|
464 |
delphine |
116 |
|
836 |
jpm |
117 |
private function contruireUrlServiceCarto($action = null) {
|
|
|
118 |
// Création url données json
|
|
|
119 |
$url = sprintf($this->config['chemins']['baseURLServicesCelTpl'], self::SERVICE_CARTO_NOM);
|
|
|
120 |
if ($action) {
|
|
|
121 |
$url .= "/$action";
|
|
|
122 |
|
|
|
123 |
$parametres_retenus = array();
|
|
|
124 |
$parametres_a_tester = array('station', 'utilisateur', 'projet', 'dept', 'num_taxon');
|
|
|
125 |
foreach ($parametres_a_tester as $param) {
|
|
|
126 |
if ($this->$param != null && $this->$param != '*') {
|
|
|
127 |
$parametres_retenus[$param] = $this->$param;
|
|
|
128 |
}
|
|
|
129 |
}
|
|
|
130 |
if (count($parametres_retenus) > 0) {
|
|
|
131 |
$parametres_url = array();
|
|
|
132 |
foreach ($parametres_retenus as $cle => $valeur) {
|
|
|
133 |
$parametres_url[] = $cle.'='.$valeur;
|
|
|
134 |
}
|
|
|
135 |
$url .= '?'.implode('&', $parametres_url);
|
|
|
136 |
}
|
|
|
137 |
}
|
|
|
138 |
$this->debug[] = $url;
|
|
|
139 |
// Prendre en compte param "station"
|
|
|
140 |
return $url;
|
|
|
141 |
}
|
|
|
142 |
|
490 |
jpm |
143 |
private function chargerTaxons() {
|
|
|
144 |
// Récupération des données au format Json
|
836 |
jpm |
145 |
$url = $this->contruireUrlServiceCarto('taxons');
|
698 |
jpm |
146 |
$json = $this->getDao()->consulter($url);
|
490 |
jpm |
147 |
$donnees = json_decode($json);
|
|
|
148 |
|
|
|
149 |
// Post-traitement des données
|
|
|
150 |
$taxons = $this->traiterTaxons($donnees);
|
|
|
151 |
|
|
|
152 |
return $taxons;
|
|
|
153 |
}
|
|
|
154 |
|
|
|
155 |
private function traiterTaxons($donnees) {
|
|
|
156 |
$taxons = array();
|
|
|
157 |
if (is_array($donnees) && count($donnees) > 0) {
|
|
|
158 |
foreach ($donnees as $donnee) {
|
534 |
jpm |
159 |
if (!isset($taxons[$donnee->num_taxon]) && ! $this->etreVide($donnee->nom_ret)) {
|
490 |
jpm |
160 |
$taxon = array();
|
|
|
161 |
$taxon['nn'] = $donnee->num_nom_ret;
|
|
|
162 |
$taxon['nt'] = $donnee->num_taxon;
|
|
|
163 |
$taxon['nom'] = $this->nettoyerTexte($donnee->nom_ret);
|
|
|
164 |
$taxon['famille'] = $this->nettoyerTexte($donnee->famille);
|
|
|
165 |
$taxons[$donnee->num_taxon] = $taxon;
|
|
|
166 |
}
|
|
|
167 |
}
|
|
|
168 |
}
|
|
|
169 |
return $taxons;
|
|
|
170 |
}
|
|
|
171 |
|
836 |
jpm |
172 |
private function chercherFichierKml(){
|
574 |
jpm |
173 |
$chemins = explode(',', $this->config['carto']['communesKmzChemin']);
|
836 |
jpm |
174 |
$departements = explode(',', $this->dept);// plrs code de départements peuvent être demandés séparés par des virgules
|
599 |
jpm |
175 |
$departements_trouves = array();
|
|
|
176 |
$fichiers = array();
|
574 |
jpm |
177 |
foreach ($chemins as $dossier_chemin) {
|
|
|
178 |
if ($dossier_ressource = opendir($dossier_chemin)) {
|
|
|
179 |
while ($element = readdir($dossier_ressource)) {
|
|
|
180 |
if ($element != '.' && $element != '..') {
|
599 |
jpm |
181 |
foreach ($departements as $departement) {
|
|
|
182 |
$nom_dossier = basename($dossier_chemin);
|
|
|
183 |
if (!isset($departements_trouves[$departement]) || $departements_trouves[$departement] == $nom_dossier) {
|
|
|
184 |
$dept_protege = preg_quote($departement);
|
|
|
185 |
if (!is_dir($dossier_chemin.'/'.$element) && preg_match("/^$dept_protege(?:_[0-9]+|)\.km[lz]$/", $element)) {
|
|
|
186 |
$fichiers[$element] = $nom_dossier;
|
|
|
187 |
$departements_trouves[$departement] = $nom_dossier;
|
|
|
188 |
}
|
|
|
189 |
}
|
574 |
jpm |
190 |
}
|
543 |
jpm |
191 |
}
|
464 |
delphine |
192 |
}
|
574 |
jpm |
193 |
closedir($dossier_ressource);
|
464 |
delphine |
194 |
}
|
|
|
195 |
}
|
599 |
jpm |
196 |
|
574 |
jpm |
197 |
return $fichiers;
|
471 |
jpm |
198 |
}
|
|
|
199 |
|
|
|
200 |
/**
|
|
|
201 |
* Tableau des observations d'une station
|
|
|
202 |
*/
|
|
|
203 |
public function executerObservations() {
|
|
|
204 |
$widget = null;
|
836 |
jpm |
205 |
$observations = $this->chargerObservation();
|
475 |
jpm |
206 |
|
471 |
jpm |
207 |
// Création des infos du widget
|
475 |
jpm |
208 |
if (isset($observations['commune'])) {
|
|
|
209 |
$commune = $observations['commune'];
|
|
|
210 |
unset($observations['commune']);
|
|
|
211 |
$widget['donnees']['commune'] = $commune;
|
|
|
212 |
}
|
547 |
jpm |
213 |
|
|
|
214 |
$obs_ids = null;
|
|
|
215 |
if (isset($observations['ids'])) {
|
|
|
216 |
$obs_ids = $observations['ids'];
|
|
|
217 |
unset($observations['ids']);
|
|
|
218 |
}
|
|
|
219 |
$widget['squelette'] = $this->choisirFormatSortie(count($observations));
|
|
|
220 |
|
|
|
221 |
if ($widget['squelette'] == 'obs_liste' && $obs_ids != null && count($obs_ids) > 0) {
|
|
|
222 |
$widget['donnees']['images'] = $this->chargerImages($obs_ids);
|
|
|
223 |
}
|
|
|
224 |
|
471 |
jpm |
225 |
$widget['donnees']['observations'] = $observations;
|
836 |
jpm |
226 |
$widget['donnees']['station_id'] = $this->station;
|
471 |
jpm |
227 |
|
|
|
228 |
return $widget;
|
464 |
delphine |
229 |
}
|
471 |
jpm |
230 |
|
836 |
jpm |
231 |
private function chargerObservation() {
|
471 |
jpm |
232 |
// Récupération des données au format Json
|
836 |
jpm |
233 |
$url = $this->contruireUrlServiceCarto('observations');
|
698 |
jpm |
234 |
$json = $this->getDao()->consulter($url);
|
471 |
jpm |
235 |
$donnees = json_decode($json);
|
|
|
236 |
|
|
|
237 |
// Post-traitement des données
|
|
|
238 |
$observations = $this->traiterObservations($donnees);
|
|
|
239 |
|
|
|
240 |
return $observations;
|
|
|
241 |
}
|
|
|
242 |
|
|
|
243 |
private function traiterObservations($donnees) {
|
|
|
244 |
$observations = array();
|
|
|
245 |
if (is_array($donnees) && count($donnees) > 0) {
|
|
|
246 |
foreach ($donnees as $donnee) {
|
|
|
247 |
$observation = array();
|
547 |
jpm |
248 |
$observation['id'] = $donnee->id;
|
507 |
jpm |
249 |
$observation['nn'] = $this->etreVide($donnee->num_nom_sel) ? null : $donnee->num_nom_sel;
|
471 |
jpm |
250 |
$observation['nom'] = $this->nettoyerTexte($donnee->nom_sel);
|
545 |
jpm |
251 |
$observation['date'] = $this->formaterDate($donnee->date_observation, '%d/%m/%Y');
|
471 |
jpm |
252 |
$observation['lieu'] = $this->traiterLieu($donnee);
|
|
|
253 |
$observation['observateur'] = $this->tronquerCourriel($donnee->identifiant);
|
|
|
254 |
|
|
|
255 |
$observations[] = $observation;
|
|
|
256 |
$observations['commune'] = $this->nettoyerTexte($donnee->location);
|
547 |
jpm |
257 |
$observations['ids'][] = $donnee->id;
|
471 |
jpm |
258 |
}
|
|
|
259 |
}
|
|
|
260 |
return $observations;
|
|
|
261 |
}
|
|
|
262 |
|
|
|
263 |
private function traiterLieu($donnee) {
|
|
|
264 |
$lieu = array();
|
|
|
265 |
if (isset($donnee->lieudit) && ! empty($donnee->lieudit)) {
|
|
|
266 |
$lieu[] = $donnee->lieudit;
|
|
|
267 |
}
|
|
|
268 |
if (isset($donnee->milieu) && ! empty($donnee->milieu)) {
|
|
|
269 |
$lieu[] = $donnee->milieu;
|
|
|
270 |
}
|
|
|
271 |
return implode(', ', $lieu);
|
|
|
272 |
}
|
|
|
273 |
|
|
|
274 |
private function choisirFormatSortie($observations_nbre) {
|
|
|
275 |
$sortie = 'obs_tableau';
|
836 |
jpm |
276 |
if (isset($this->format) && $this->format != '*') {
|
|
|
277 |
$sortie = ($this->format == 'tableau' ) ? 'obs_tableau' : 'obs_liste';
|
471 |
jpm |
278 |
} else {
|
|
|
279 |
$sortie = ($observations_nbre > 4) ? 'obs_tableau' : 'obs_liste';
|
|
|
280 |
}
|
|
|
281 |
return $sortie;
|
|
|
282 |
}
|
|
|
283 |
|
547 |
jpm |
284 |
private function chargerImages($obs_ids) {
|
|
|
285 |
// Récupération des données au format Json
|
|
|
286 |
$service = 'CelImage/liste-ids?obsId='.implode(',', $obs_ids);
|
|
|
287 |
$url = sprintf($this->config['chemins']['baseURLServicesCelTpl'], $service);
|
836 |
jpm |
288 |
$this->debug[] = $url;
|
698 |
jpm |
289 |
$json = $this->getDao()->consulter($url);
|
547 |
jpm |
290 |
$donnees = json_decode($json);
|
|
|
291 |
|
|
|
292 |
// Post-traitement des données
|
|
|
293 |
$images = $this->traiterImages($donnees);
|
|
|
294 |
|
|
|
295 |
return $images;
|
|
|
296 |
}
|
|
|
297 |
|
|
|
298 |
private function traiterImages($donnees) {
|
|
|
299 |
$images = array();
|
|
|
300 |
//echo '<br/><pre>'.print_r($donnees,true).'</pre>';
|
|
|
301 |
if (count($donnees) > 0) {
|
|
|
302 |
foreach ($donnees as $id_obs => $id_images) {
|
|
|
303 |
foreach ($id_images as $id_img) {
|
|
|
304 |
$urls['id'] = $id_img;
|
629 |
jpm |
305 |
$urls['miniature'] = $this->getUrlImage($id_img, 'CXS');
|
|
|
306 |
$urls['normale'] = $this->getUrlImage($id_img, 'XL');
|
547 |
jpm |
307 |
$images[$id_obs][] = $urls;
|
|
|
308 |
}
|
|
|
309 |
}
|
|
|
310 |
}
|
|
|
311 |
return $images;
|
|
|
312 |
}
|
|
|
313 |
|
501 |
jpm |
314 |
/**
|
|
|
315 |
* Afficher message d'avertissement.
|
|
|
316 |
*/
|
|
|
317 |
public function executerAvertissement() {
|
|
|
318 |
$widget = null;
|
|
|
319 |
|
|
|
320 |
// Création des infos du widget
|
|
|
321 |
$widget['donnees']['url_base'] = sprintf($this->config['chemins']['baseURLAbsoluDyn'], '');
|
|
|
322 |
$widget['squelette'] = 'avertissement';
|
|
|
323 |
|
|
|
324 |
return $widget;
|
|
|
325 |
}
|
424 |
jpm |
326 |
}
|