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
|
1586 |
jpm |
13 |
* Affiche seulement les observations d'un utilisateur donné. L'identifiant correspond au courriel de
|
575 |
jpm |
14 |
* l'utilisateur avec lequel il s'est inscrit sur Tela Botanica.
|
|
|
15 |
* ===> dept = code_du_département
|
1586 |
jpm |
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.
|
575 |
jpm |
18 |
* ===> projet = mot-clé
|
1586 |
jpm |
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
|
575 |
jpm |
21 |
* mot-clé de projet à vos amis et visualisez les informations ainsi regroupées.
|
|
|
22 |
* ===> num_taxon = num_taxon
|
1586 |
jpm |
23 |
* Affiche seulement les observations pour la plante indiquée. Le num_taxon correspond au numéro taxonomique de la plante.
|
575 |
jpm |
24 |
* Ce numéro est disponible dans les fiches d'eFlore. Par exemple, pour "Poa bulbosa L." le numéro taxonomique vaut 7080.
|
1586 |
jpm |
25 |
*
|
575 |
jpm |
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 |
*/
|
1091 |
aurelien |
32 |
class Cartopoint extends WidgetCommun {
|
464 |
delphine |
33 |
const DS = DIRECTORY_SEPARATOR;
|
1091 |
aurelien |
34 |
const SERVICE_CARTO_NOM = 'CelWidgetMapPoint';
|
836 |
jpm |
35 |
const SERVICE_CARTO_ACTION_DEFAUT = 'carte-defaut';
|
1586 |
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)
|
1438 |
aurelien |
44 |
private $photos = null; // Seulement les obs avec photos ou bien toutes
|
|
|
45 |
private $titre = null; // Indication s'il faut le titre par défaut, personnalisé ou bien sans titre
|
|
|
46 |
private $logo = null; // url du logo à ajouter si nécessaire
|
|
|
47 |
private $url_site = null; // url du site auquel le logo est lié
|
1448 |
aurelien |
48 |
private $image = null; // url d'une image à ajouter dans l'interface
|
1494 |
aurelien |
49 |
private $nbjours = null; // nombre de jour à partir de la date courate pour lesquels on affiche les points
|
2291 |
mathias |
50 |
private $annee = null; // filtre par année
|
2681 |
aurelien |
51 |
private $referentiel = null;
|
|
|
52 |
private $groupe_zones_geo = null; // Groupe de zones géographiques personnalisé
|
3038 |
mathias |
53 |
/** langue (traduction), charge un template de la forme "defaut_en.tpl.html" */
|
|
|
54 |
protected $langue = null;
|
1586 |
jpm |
55 |
|
424 |
jpm |
56 |
/**
|
575 |
jpm |
57 |
* Méthode appelée par défaut pour charger ce widget.
|
424 |
jpm |
58 |
*/
|
|
|
59 |
public function executer() {
|
|
|
60 |
$retour = null;
|
836 |
jpm |
61 |
$this->extraireParametres();
|
|
|
62 |
$methode = $this->traiterNomMethodeExecuter($this->carte);
|
471 |
jpm |
63 |
if (method_exists($this, $methode)) {
|
|
|
64 |
$retour = $this->$methode();
|
424 |
jpm |
65 |
} else {
|
471 |
jpm |
66 |
$this->messages[] = "Ce type de service '$methode' n'est pas disponible.";
|
424 |
jpm |
67 |
}
|
|
|
68 |
if (is_null($retour)) {
|
|
|
69 |
$info = 'Un problème est survenu : '.print_r($this->messages, true);
|
|
|
70 |
$this->envoyer($info);
|
|
|
71 |
} else {
|
3038 |
mathias |
72 |
// Suffixe de template pour la langue - fr par défaut @TODO configurer ça un jour
|
|
|
73 |
$suffixeLangue = "";
|
|
|
74 |
if ($this->langue != null && $this->langue != "fr") {
|
|
|
75 |
$suffixeLangue = "_" . $this->langue;
|
|
|
76 |
}
|
|
|
77 |
$squelette = dirname(__FILE__).self::DS.'squelettes'.self::DS.$retour['squelette'].$suffixeLangue.'.tpl.html';
|
424 |
jpm |
78 |
$html = $this->traiterSquelettePhp($squelette, $retour['donnees']);
|
|
|
79 |
$this->envoyer($html);
|
|
|
80 |
}
|
|
|
81 |
}
|
1586 |
jpm |
82 |
|
836 |
jpm |
83 |
public function extraireParametres() {
|
|
|
84 |
extract($this->parametres);
|
|
|
85 |
$this->carte = (isset($carte) ? $carte : self::SERVICE_CARTO_ACTION_DEFAUT);
|
|
|
86 |
$this->utilisateur = (isset($utilisateur) ? $utilisateur : '*');
|
|
|
87 |
$this->projet = (isset($projet) ? $projet : '*');
|
939 |
jpm |
88 |
$this->tag = (isset($tag) ? $tag : '*');
|
1475 |
aurelien |
89 |
$this->tag = (isset($motcle) ? $motcle : $this->tag);
|
836 |
jpm |
90 |
$this->dept = (isset($dept) ? $dept : '*');
|
837 |
jpm |
91 |
$this->commune = (isset($commune) ? $commune : '*');
|
2561 |
aurelien |
92 |
$this->pays = (isset($pays) ? $pays : '*');
|
836 |
jpm |
93 |
$this->num_taxon = (isset($num_taxon) ? $num_taxon : '*');
|
939 |
jpm |
94 |
$this->date = (isset($date) ? $date : '*');
|
|
|
95 |
$this->taxon = (isset($taxon) ? $taxon : '*');
|
940 |
jpm |
96 |
$this->commentaire = (isset($commentaire) ? $commentaire : null);
|
836 |
jpm |
97 |
$this->station = (isset($station) ? $station : null);
|
|
|
98 |
$this->format = (isset($format) ? $format : null);
|
1438 |
aurelien |
99 |
$this->photos = (isset($photos) ? $photos : null);
|
|
|
100 |
$this->titre = (isset($titre) ? urldecode($titre) : null);
|
|
|
101 |
$this->logo = (isset($logo) ? urldecode($logo) : null);
|
|
|
102 |
$this->url_site = (isset($url_site) ? urldecode($url_site) : null);
|
1448 |
aurelien |
103 |
$this->image = (isset($image) ? urldecode($image) : null);
|
1494 |
aurelien |
104 |
$this->nbjours = (isset($nbjours) ? urldecode($nbjours) : null);
|
2291 |
mathias |
105 |
$this->annee = (isset($annee) ? urldecode($annee) : null);
|
1494 |
aurelien |
106 |
$this->referentiel = (isset($referentiel) ? urldecode($referentiel) : null);
|
2681 |
aurelien |
107 |
$this->groupe_zones_geo = (isset($groupe_zones_geo) ? urldecode($groupe_zones_geo) : null);
|
841 |
jpm |
108 |
$this->start = (isset($start) ? $start : null);
|
|
|
109 |
$this->limit = (isset($limit) ? $limit : null);
|
3038 |
mathias |
110 |
// définition de la langue, en mode souple
|
|
|
111 |
if (isset($this->parametres['lang'])) {
|
|
|
112 |
$this->langue = $this->parametres['lang'];
|
|
|
113 |
}
|
836 |
jpm |
114 |
}
|
424 |
jpm |
115 |
|
|
|
116 |
/**
|
|
|
117 |
* Carte par défaut
|
|
|
118 |
*/
|
|
|
119 |
public function executerCarteDefaut() {
|
|
|
120 |
$widget = null;
|
939 |
jpm |
121 |
$url_stations = $this->contruireUrlServiceCarto('stations');
|
424 |
jpm |
122 |
$url_base = sprintf($this->config['chemins']['baseURLAbsoluDyn'], '');
|
|
|
123 |
|
|
|
124 |
// Création des infos du widget
|
836 |
jpm |
125 |
$widget['donnees']['url_cel_carto'] = $this->contruireUrlServiceCarto();
|
939 |
jpm |
126 |
$widget['donnees']['url_stations'] = $url_stations;
|
424 |
jpm |
127 |
$widget['donnees']['url_base'] = $url_base;
|
836 |
jpm |
128 |
$widget['donnees']['utilisateur'] = $this->utilisateur;
|
|
|
129 |
$widget['donnees']['projet'] = $this->projet;
|
939 |
jpm |
130 |
$widget['donnees']['tag'] = $this->tag;
|
836 |
jpm |
131 |
$widget['donnees']['dept'] = $this->dept;
|
837 |
jpm |
132 |
$widget['donnees']['commune'] = $this->commune;
|
2561 |
aurelien |
133 |
$widget['donnees']['pays'] = $this->pays;
|
836 |
jpm |
134 |
$widget['donnees']['num_taxon'] = $this->num_taxon;
|
939 |
jpm |
135 |
$widget['donnees']['date'] = $this->date;
|
|
|
136 |
$widget['donnees']['taxon'] = $this->taxon;
|
940 |
jpm |
137 |
$widget['donnees']['commentaire'] = $this->commentaire;
|
1438 |
aurelien |
138 |
$widget['donnees']['photos'] = $this->photos;
|
|
|
139 |
$widget['donnees']['titre'] = $this->titre;
|
|
|
140 |
$widget['donnees']['logo'] = $this->logo;
|
|
|
141 |
$widget['donnees']['url_site'] = $this->url_site;
|
1448 |
aurelien |
142 |
$widget['donnees']['image'] = $this->image;
|
1494 |
aurelien |
143 |
$widget['donnees']['nbjours'] = $this->nbjours;
|
2291 |
mathias |
144 |
$widget['donnees']['annee'] = $this->annee;
|
1494 |
aurelien |
145 |
$widget['donnees']['referentiel'] = $this->referentiel;
|
2681 |
aurelien |
146 |
$widget['donnees']['groupe_zones_geo'] = $this->groupe_zones_geo;
|
939 |
jpm |
147 |
$widget['donnees']['url_limites_communales'] = $this->obtenirUrlsLimitesCommunales();
|
1091 |
aurelien |
148 |
$widget['donnees']['communeImageUrl'] = $this->config['carto']['communeImageUrl'];
|
|
|
149 |
$widget['donnees']['pointImageUrl'] = $this->config['carto']['pointImageUrl'];
|
|
|
150 |
$widget['donnees']['groupeImageUrlTpl'] = $this->config['carto']['groupeImageUrlTpl'];
|
1586 |
jpm |
151 |
$widget['donnees']['url_widget_saisie'] = $this->config['urls']['widgetSaisie'];
|
2848 |
mathias |
152 |
$widget['donnees']['prod'] = ($this->config['parametres']['modeServeur'] == "prod");
|
3037 |
mathias |
153 |
$widget['donnees']['cleGoogleMaps'] = $this->config['api']['cleGoogleMaps'];
|
1586 |
jpm |
154 |
|
424 |
jpm |
155 |
$widget['squelette'] = 'carte_defaut';
|
1586 |
jpm |
156 |
|
424 |
jpm |
157 |
return $widget;
|
|
|
158 |
}
|
1586 |
jpm |
159 |
|
836 |
jpm |
160 |
private function contruireUrlServiceCarto($action = null) {
|
|
|
161 |
// Création url données json
|
|
|
162 |
$url = sprintf($this->config['chemins']['baseURLServicesCelTpl'], self::SERVICE_CARTO_NOM);
|
|
|
163 |
if ($action) {
|
|
|
164 |
$url .= "/$action";
|
1586 |
jpm |
165 |
|
836 |
jpm |
166 |
$parametres_retenus = array();
|
1586 |
jpm |
167 |
$parametres_a_tester = array('station', 'utilisateur', 'projet', 'tag', 'dept', 'commune',
|
2681 |
aurelien |
168 |
'num_taxon', 'taxon', 'date', 'commentaire', 'nbjours', 'referentiel','pays', 'groupe_zones_geo',
|
939 |
jpm |
169 |
'start', 'limit');
|
836 |
jpm |
170 |
foreach ($parametres_a_tester as $param) {
|
841 |
jpm |
171 |
if (isset($this->$param) && $this->$param != '*') {
|
836 |
jpm |
172 |
$parametres_retenus[$param] = $this->$param;
|
|
|
173 |
}
|
|
|
174 |
}
|
|
|
175 |
if (count($parametres_retenus) > 0) {
|
|
|
176 |
$parametres_url = array();
|
|
|
177 |
foreach ($parametres_retenus as $cle => $valeur) {
|
|
|
178 |
$parametres_url[] = $cle.'='.$valeur;
|
|
|
179 |
}
|
|
|
180 |
$url .= '?'.implode('&', $parametres_url);
|
|
|
181 |
}
|
|
|
182 |
}
|
1586 |
jpm |
183 |
return $url;
|
836 |
jpm |
184 |
}
|
1586 |
jpm |
185 |
|
939 |
jpm |
186 |
private function obtenirUrlsLimitesCommunales() {
|
|
|
187 |
$urls = null;
|
|
|
188 |
if (isset($this->dept)) {
|
1096 |
aurelien |
189 |
// si on veut afficher les limites départementales on va compter et chercher les noms de fichiers
|
939 |
jpm |
190 |
$fichiersKml = $this->chercherFichierKml();
|
|
|
191 |
if (count($fichiersKml) > 0) {
|
|
|
192 |
foreach ($fichiersKml as $kml => $dossier){
|
|
|
193 |
$url_limites_communales = sprintf($this->config['carto']['limitesCommunaleUrlTpl'], $dossier, $kml);
|
|
|
194 |
$urls[] = $url_limites_communales;
|
490 |
jpm |
195 |
}
|
|
|
196 |
}
|
|
|
197 |
}
|
939 |
jpm |
198 |
$urls = json_encode($urls);
|
|
|
199 |
return $urls;
|
490 |
jpm |
200 |
}
|
1586 |
jpm |
201 |
|
836 |
jpm |
202 |
private function chercherFichierKml(){
|
939 |
jpm |
203 |
$fichiers = array();
|
1586 |
jpm |
204 |
if (isset($this->config['carto']['communesKmzChemin'])) {
|
|
|
205 |
$chemins = explode(',', $this->config['carto']['communesKmzChemin']);
|
|
|
206 |
$departements = explode(',', $this->dept);// plrs code de départements peuvent être demandés séparés par des virgules
|
|
|
207 |
$departements_trouves = array();
|
|
|
208 |
foreach ($chemins as $dossier_chemin) {
|
|
|
209 |
if ($dossier_ressource = opendir($dossier_chemin)) {
|
|
|
210 |
while ($element = readdir($dossier_ressource)) {
|
|
|
211 |
if ($element != '.' && $element != '..') {
|
|
|
212 |
foreach ($departements as $departement) {
|
|
|
213 |
$nom_dossier = basename($dossier_chemin);
|
|
|
214 |
if (!isset($departements_trouves[$departement]) || $departements_trouves[$departement] == $nom_dossier) {
|
|
|
215 |
$dept_protege = preg_quote($departement);
|
|
|
216 |
if (!is_dir($dossier_chemin.'/'.$element) && preg_match("/^$dept_protege(?:_[0-9]+|)\.km[lz]$/", $element)) {
|
|
|
217 |
$fichiers[$element] = $nom_dossier;
|
|
|
218 |
$departements_trouves[$departement] = $nom_dossier;
|
|
|
219 |
}
|
599 |
jpm |
220 |
}
|
|
|
221 |
}
|
574 |
jpm |
222 |
}
|
543 |
jpm |
223 |
}
|
1586 |
jpm |
224 |
closedir($dossier_ressource);
|
464 |
delphine |
225 |
}
|
|
|
226 |
}
|
1586 |
jpm |
227 |
} else {
|
|
|
228 |
$this->messages[] = 'Veuillez configurer le paramètres carto.communesKmzChemin.';
|
464 |
delphine |
229 |
}
|
574 |
jpm |
230 |
return $fichiers;
|
471 |
jpm |
231 |
}
|
1586 |
jpm |
232 |
|
471 |
jpm |
233 |
/**
|
501 |
jpm |
234 |
* Afficher message d'avertissement.
|
|
|
235 |
*/
|
|
|
236 |
public function executerAvertissement() {
|
|
|
237 |
$widget = null;
|
|
|
238 |
|
|
|
239 |
// Création des infos du widget
|
1452 |
aurelien |
240 |
$widget['donnees']['contenu_aide'] = $this->chargerAideWiki();
|
501 |
jpm |
241 |
$widget['donnees']['url_base'] = sprintf($this->config['chemins']['baseURLAbsoluDyn'], '');
|
|
|
242 |
$widget['squelette'] = 'avertissement';
|
1586 |
jpm |
243 |
|
501 |
jpm |
244 |
return $widget;
|
|
|
245 |
}
|
1586 |
jpm |
246 |
|
1452 |
aurelien |
247 |
/**
|
|
|
248 |
* Charge le contenu du wikini demandé
|
|
|
249 |
*/
|
|
|
250 |
function chargerAideWiki() {
|
2007 |
mathias |
251 |
$url = str_replace('{page}','AideCarto',$this->config['carto']['aideWikiniUrlCartoPoint']);
|
1452 |
aurelien |
252 |
$infos_aide = file_get_contents($url);
|
1586 |
jpm |
253 |
|
1452 |
aurelien |
254 |
$aide = '';
|
1586 |
jpm |
255 |
|
1452 |
aurelien |
256 |
if($infos_aide != null && $infos_aide != '') {
|
|
|
257 |
$infos_aide = json_decode($infos_aide);
|
|
|
258 |
$infos_aide = (is_a($infos_aide, 'StdClass') && $infos_aide->texte != null) ? $infos_aide->texte : '';
|
|
|
259 |
}
|
1586 |
jpm |
260 |
|
1452 |
aurelien |
261 |
return $infos_aide;
|
|
|
262 |
}
|
1091 |
aurelien |
263 |
}
|
|
|
264 |
?>
|