Subversion Repositories eFlore/Applications.cel

Rev

Rev 798 | Rev 1436 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 798 Rev 1096
Line 29... Line 29...
29
 * @version	$Id$
29
 * @version	$Id$
30
 * @copyright	Copyright (c) 2010, Tela Botanica (accueil@tela-botanica.org)
30
 * @copyright	Copyright (c) 2010, Tela Botanica (accueil@tela-botanica.org)
31
 */
31
 */
32
class Carto extends WidgetCommun {
32
class Carto extends WidgetCommun {
33
	const DS = DIRECTORY_SEPARATOR;
33
	const DS = DIRECTORY_SEPARATOR;
-
 
34
	const SERVICE_CARTO_NOM = 'CelWidgetMap';
34
	const SERVICE_DEFAUT = 'carte-defaut';
35
	const SERVICE_CARTO_ACTION_DEFAUT = 'carte-defaut';
-
 
36
	
-
 
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)
Line 35... Line 44...
35
	
44
	
36
	/**
45
	/**
37
	 * Méthode appelée par défaut pour charger ce widget.
46
	 * Méthode appelée par défaut pour charger ce widget.
38
	 */
47
	 */
39
	public function executer() {
48
	public function executer() {
40
		$retour = null;
49
		$retour = null;
41
		extract($this->parametres);
-
 
42
 
-
 
43
		if (!isset($carte)) {
-
 
44
			$carte = self::SERVICE_DEFAUT;
-
 
45
		}
-
 
46
		
50
		$this->extraireParametres();
47
		$methode = $this->traiterNomMethodeExecuter($carte);
51
		$methode = $this->traiterNomMethodeExecuter($this->carte);
48
		if (method_exists($this, $methode)) {
52
		if (method_exists($this, $methode)) {
49
			$retour = $this->$methode();
53
			$retour = $this->$methode();
50
		} else {
54
		} else {
51
			$this->messages[] = "Ce type de service '$methode' n'est pas disponible.";
55
			$this->messages[] = "Ce type de service '$methode' n'est pas disponible.";
52
		}
-
 
53
 
56
		}
54
		if (is_null($retour)) {
57
		if (is_null($retour)) {
55
			$info = 'Un problème est survenu : '.print_r($this->messages, true);
58
			$info = 'Un problème est survenu : '.print_r($this->messages, true);
56
			$this->envoyer($info);
59
			$this->envoyer($info);
57
		} else {
60
		} else {
58
			$squelette = dirname(__FILE__).self::DS.'squelettes'.self::DS.$retour['squelette'].'.tpl.html';
61
			$squelette = dirname(__FILE__).self::DS.'squelettes'.self::DS.$retour['squelette'].'.tpl.html';
59
			$html = $this->traiterSquelettePhp($squelette, $retour['donnees']);
62
			$html = $this->traiterSquelettePhp($squelette, $retour['donnees']);
60
			$this->envoyer($html);
63
			$this->envoyer($html);
61
		}
64
		}
-
 
65
	}
-
 
66
	
-
 
67
	public function extraireParametres() {
-
 
68
		extract($this->parametres);
-
 
69
		$this->carte = (isset($carte) ? $carte : self::SERVICE_CARTO_ACTION_DEFAUT);
-
 
70
		$this->utilisateur = (isset($utilisateur) ? $utilisateur : '*');
-
 
71
		$this->projet = (isset($projet) ? $projet : '*');
-
 
72
		$this->tag = (isset($tag) ? $tag : '*');
-
 
73
		$this->dept = (isset($dept) ? $dept : '*');
-
 
74
		$this->commune = (isset($commune) ? $commune : '*');
-
 
75
		$this->num_taxon = (isset($num_taxon) ? $num_taxon : '*');
-
 
76
		$this->date = (isset($date) ? $date : '*');
-
 
77
		$this->taxon = (isset($taxon) ? $taxon : '*');
-
 
78
		$this->commentaire = (isset($commentaire) ? $commentaire : null);
-
 
79
		$this->station = (isset($station) ? $station : null);
-
 
80
		$this->format = (isset($format) ? $format : null);
-
 
81
		$this->start = (isset($start) ? $start : null);
-
 
82
		$this->limit = (isset($limit) ? $limit : null);
Line 62... Line 83...
62
	}
83
	}
63
 
84
 
64
	/**
85
	/**
65
	 * Carte par défaut
86
	 * Carte par défaut
66
	 */
87
	 */
67
	public function executerCarteDefaut() {
-
 
68
		$widget = null;
88
	public function executerCarteDefaut() {
69
		extract($this->parametres);
-
 
70
		$utilisateur = (isset($utilisateur) ? $utilisateur : '*');
-
 
71
		$projet = (isset($projet) ? $projet : '*');
-
 
72
		$dept = (isset($dept) ? $dept : '*');
-
 
73
		$num_taxon = (isset($num_taxon) ? $num_taxon : '*');
-
 
74
		
-
 
75
		// Création url données json
-
 
76
		$url_cel_carto = sprintf($this->config['chemins']['baseURLServicesCelTpl'], 'CelWidgetMap');
-
 
77
		$url_json = "$url_cel_carto/carte-defaut-json/$utilisateur/$projet/$dept/$num_taxon";
89
		$widget = null;
Line 78... Line 90...
78
		
90
		$url_stations = $this->contruireUrlServiceCarto('stations');
79
		$url_base = sprintf($this->config['chemins']['baseURLAbsoluDyn'], '');
91
		$url_base = sprintf($this->config['chemins']['baseURLAbsoluDyn'], '');
80
 
92
 
81
		// Création des infos du widget
93
		// Création des infos du widget
82
		$widget['donnees']['url_cel_carto'] = $url_cel_carto;
94
		$widget['donnees']['url_cel_carto'] = $this->contruireUrlServiceCarto();
83
		$widget['donnees']['url_json'] = $url_json;
95
		$widget['donnees']['url_stations'] = $url_stations;
84
		$widget['donnees']['url_base'] = $url_base;
96
		$widget['donnees']['url_base'] = $url_base;
85
		$widget['donnees']['jquery_version'] = '1.4.4';
97
		$widget['donnees']['utilisateur'] = $this->utilisateur;
86
		$widget['donnees']['utilisateur'] = $utilisateur;
98
		$widget['donnees']['projet'] = $this->projet;
87
		$widget['donnees']['projet'] = $projet;
99
		$widget['donnees']['tag'] = $this->tag;
88
		$widget['donnees']['dept'] = $dept;
100
		$widget['donnees']['dept'] = $this->dept;
89
		$widget['donnees']['num_taxon'] = $num_taxon;
101
		$widget['donnees']['commune'] = $this->commune;
90
		$widget['donnees']['taxons'] = $this->chargerTaxons();
102
		$widget['donnees']['num_taxon'] = $this->num_taxon;
91
		if ($num_taxon != '*') {
-
 
92
			$taxon_courrant = current($widget['donnees']['taxons']);
103
		$widget['donnees']['date'] = $this->date;
Line 93... Line -...
93
			$widget['donnees']['taxon_nom'] = $taxon_courrant['nom'];
-
 
94
		}
-
 
95
		$widget['squelette'] = 'carte_defaut';
104
		$widget['donnees']['taxon'] = $this->taxon;
96
		
-
 
97
		if (isset($dept)) {
-
 
98
			// si on veut afficher les limites départemmentales on va compter et chercher les noms de fichiers
-
 
99
			$fichiersKml = $this->chercherFichierKml($dept);
-
 
100
			foreach ($fichiersKml as $kml => $dossier){
-
 
Line 101... Line 105...
101
				$url_limites_communales = sprintf($this->config['carto']['limitesCommunaleUrlTpl'], $dossier, $kml);
105
		$widget['donnees']['commentaire'] = $this->commentaire;
102
				$widget['donnees']['url_limites_communales'][] = $url_limites_communales;
106
		$widget['donnees']['url_limites_communales'] = $this->obtenirUrlsLimitesCommunales();
Line 103... Line 107...
103
			}
107
		
104
		}
108
		$widget['squelette'] = 'carte_defaut';
105
		
109
		
106
		return $widget;
110
		return $widget;
107
	}
111
	}
108
	
-
 
109
	private function chargerTaxons() {
112
	
110
		extract($this->parametres);
113
	private function contruireUrlServiceCarto($action = null) {
111
		$utilisateur = (isset($utilisateur) ? $utilisateur : '*');
114
		// Création url données json
112
		$projet = (isset($projet) ? $projet : '*');
115
		$url = sprintf($this->config['chemins']['baseURLServicesCelTpl'], self::SERVICE_CARTO_NOM);
-
 
116
		if ($action) {
-
 
117
			$url .= "/$action";
113
		$dept = (isset($dept) ? $dept : '*');
118
			
114
		$num_taxon = (isset($num_taxon) ? $num_taxon : '*');
119
			$parametres_retenus = array();
-
 
120
			$parametres_a_tester = array('station', 'utilisateur', 'projet', 'tag', 'dept', 'commune', 
115
		
121
				'num_taxon', 'taxon', 'date', 'commentaire',   
116
		// Récupération des données au format Json
122
				'start', 'limit');
-
 
123
			foreach ($parametres_a_tester as $param) {
-
 
124
				if (isset($this->$param) && $this->$param != '*') {
117
		$service = "CelWidgetMap/taxons/$utilisateur/$projet/$dept/$num_taxon";
125
					$parametres_retenus[$param] = $this->$param;
-
 
126
				}
-
 
127
			}
-
 
128
			if (count($parametres_retenus) > 0) {
118
		$url = sprintf($this->config['chemins']['baseURLServicesCelTpl'], $service);
129
				$parametres_url = array();
119
		$json = $this->getDao()->consulter($url);
130
				foreach ($parametres_retenus as $cle => $valeur) {
120
		$donnees = json_decode($json);
131
					$parametres_url[] = $cle.'='.$valeur;
Line 121... Line 132...
121
		
132
				}
122
		// Post-traitement des données
133
				$url .= '?'.implode('&', $parametres_url);
123
		$taxons = $this->traiterTaxons($donnees);
-
 
124
		
134
			}
125
		return $taxons;
135
		}
126
	}
-
 
127
	
136
		return $url; 
128
	private function traiterTaxons($donnees) {
137
	}
129
		$taxons = array();
138
	
130
		if (is_array($donnees) && count($donnees) > 0) {
139
	private function obtenirUrlsLimitesCommunales() {
131
			foreach ($donnees as $donnee) {
140
		$urls = null;
132
				if (!isset($taxons[$donnee->num_taxon]) && ! $this->etreVide($donnee->nom_ret)) {
141
		if (isset($this->dept)) {
133
					$taxon = array();
142
			// si on veut afficher les limites départemmentales on va compter et chercher les noms de fichiers
134
					$taxon['nn'] = $donnee->num_nom_ret;
143
			$fichiersKml = $this->chercherFichierKml();
-
 
144
			if (count($fichiersKml) > 0) {
135
					$taxon['nt'] = $donnee->num_taxon;
145
				foreach ($fichiersKml as $kml => $dossier){
136
					$taxon['nom'] = $this->nettoyerTexte($donnee->nom_ret);
146
					$url_limites_communales = sprintf($this->config['carto']['limitesCommunaleUrlTpl'], $dossier, $kml);
Line 137... Line 147...
137
					$taxon['famille'] = $this->nettoyerTexte($donnee->famille);
147
					$urls[] = $url_limites_communales;
-
 
148
				}
138
					$taxons[$donnee->num_taxon] = $taxon;
149
			}
139
				}
150
		}
140
			}
151
		$urls = json_encode($urls);
141
		}
-
 
142
		return $taxons;
152
		return $urls;
143
	}
153
	}
144
	
154
	
145
	private function chercherFichierKml($dept){
155
	private function chercherFichierKml(){
146
		$chemins = explode(',', $this->config['carto']['communesKmzChemin']);
156
		$fichiers = array();
Line 169... Line 179...
169
		
179
		
170
		return $fichiers;
180
		return $fichiers;
Line 171... Line 181...
171
	}
181
	}
172
	
-
 
173
	/**
-
 
174
	 * Tableau des observations d'une station
-
 
175
	 */
-
 
176
	public function executerObservations() {
-
 
177
		$widget = null;
-
 
178
		extract($this->parametres);
-
 
179
		
-
 
180
		$observations = $this->chargerObservation($station);
-
 
181
				
-
 
182
		// Création des infos du widget
-
 
183
		if (isset($observations['commune'])) {
-
 
184
			$commune = $observations['commune'];
-
 
185
			unset($observations['commune']);
-
 
186
			$widget['donnees']['commune'] = $commune;
-
 
187
		}
-
 
188
		
-
 
189
		$obs_ids = null;
-
 
190
		if (isset($observations['ids'])) {
-
 
191
			$obs_ids = $observations['ids'];
-
 
192
			unset($observations['ids']);
-
 
193
		}
-
 
194
		$widget['squelette'] = $this->choisirFormatSortie(count($observations));
-
 
195
		
-
 
196
		if ($widget['squelette'] == 'obs_liste' && $obs_ids != null && count($obs_ids) > 0) {
-
 
197
			$widget['donnees']['images'] = $this->chargerImages($obs_ids);
-
 
198
		}
-
 
199
		
-
 
200
		$widget['donnees']['observations'] = $observations;
-
 
201
		$widget['donnees']['station_id'] = $station;
-
 
202
		
-
 
203
		return $widget;
-
 
204
	}
-
 
205
	
-
 
206
	private function chargerObservation($station) {
-
 
207
		extract($this->parametres);
-
 
208
		$utilisateur = (isset($utilisateur) ? $utilisateur : '*');
-
 
209
		$projet = (isset($projet) ? $projet : '*');
-
 
210
		$dept = (isset($dept) ? $dept : '*');
-
 
211
		$num_taxon = (isset($num_taxon) ? $num_taxon : '*');
-
 
212
		
-
 
213
		// Récupération des données au format Json
-
 
214
		$service = "CelWidgetMap/observations/$station/$utilisateur/$projet/$dept/$num_taxon";
-
 
215
		$url = sprintf($this->config['chemins']['baseURLServicesCelTpl'], $service);
-
 
216
		$json = $this->getDao()->consulter($url);
-
 
217
		$donnees = json_decode($json);
-
 
218
		
-
 
219
		// Post-traitement des données
-
 
220
		$observations = $this->traiterObservations($donnees);
-
 
221
		
-
 
222
		return $observations;
-
 
223
	}
-
 
224
	
-
 
225
	private function traiterObservations($donnees) {
-
 
226
		$observations = array();
-
 
227
		if (is_array($donnees) && count($donnees) > 0) {
-
 
228
			foreach ($donnees as $donnee) {
-
 
229
				$observation = array();
-
 
230
				$observation['id'] = $donnee->id;
-
 
231
				$observation['nn'] = $this->etreVide($donnee->num_nom_sel) ? null : $donnee->num_nom_sel;
-
 
232
				$observation['nom'] = $this->nettoyerTexte($donnee->nom_sel);
-
 
233
				$observation['date'] = $this->formaterDate($donnee->date_observation, '%d/%m/%Y');
-
 
234
				$observation['lieu'] = $this->traiterLieu($donnee);
-
 
235
				$observation['observateur'] = $this->tronquerCourriel($donnee->identifiant);
-
 
236
				
-
 
237
				$observations[] = $observation;
-
 
238
				$observations['commune'] = $this->nettoyerTexte($donnee->location);
-
 
239
				$observations['ids'][] = $donnee->id;
-
 
240
			}
-
 
241
		}
-
 
242
		return $observations;
-
 
243
	}
-
 
244
	
-
 
245
	private function traiterLieu($donnee) {
-
 
246
		$lieu = array();
-
 
247
		if (isset($donnee->lieudit) && ! empty($donnee->lieudit)) {
-
 
248
			$lieu[] = $donnee->lieudit;
-
 
249
		}
-
 
250
		if (isset($donnee->milieu) && ! empty($donnee->milieu)) {
-
 
251
			$lieu[] = $donnee->milieu;
-
 
252
		}
-
 
253
		return implode(', ', $lieu);
-
 
254
	}
-
 
255
	
-
 
256
	private function choisirFormatSortie($observations_nbre) {
-
 
257
		extract($this->parametres);
-
 
258
		$sortie = 'obs_tableau';
-
 
259
		if (isset($format) && $format != '*') {
-
 
260
			$sortie = ($format == 'tableau' ) ? 'obs_tableau' : 'obs_liste';
-
 
261
		} else {
-
 
262
			$sortie = ($observations_nbre > 4) ? 'obs_tableau' : 'obs_liste';
-
 
263
		}
-
 
264
		return $sortie;
-
 
265
	}
-
 
266
	
-
 
267
	private function chargerImages($obs_ids) {
-
 
268
		// Récupération des données au format Json
-
 
269
		$service = 'CelImage/liste-ids?obsId='.implode(',', $obs_ids);
-
 
270
		$url = sprintf($this->config['chemins']['baseURLServicesCelTpl'], $service);
-
 
271
		$json = $this->getDao()->consulter($url);
-
 
272
		$donnees = json_decode($json);
-
 
273
			
-
 
274
		// Post-traitement des données
-
 
275
		$images = $this->traiterImages($donnees);
-
 
276
		
-
 
277
		return $images;
-
 
278
	}
-
 
279
	
-
 
280
	private function traiterImages($donnees) {
-
 
281
		$images = array();
-
 
282
		//echo '<br/><pre>'.print_r($donnees,true).'</pre>';
-
 
283
		if (count($donnees) > 0) {
-
 
284
			foreach ($donnees as $id_obs => $id_images) {
-
 
285
				foreach ($id_images as $id_img) {
-
 
286
					$urls['id'] = $id_img;
-
 
287
					$urls['miniature'] = $this->getUrlImage($id_img, 'CXS');
-
 
288
					$urls['normale'] = $this->getUrlImage($id_img, 'XL');
-
 
289
					$images[$id_obs][] = $urls;
-
 
290
				} 
-
 
291
			}
-
 
292
		}
-
 
293
		return $images;
-
 
294
	}
-
 
295
	
182
	
296
	/**
183
	/**
297
	 * Afficher message d'avertissement.
184
	 * Afficher message d'avertissement.
298
	 */
185
	 */