Subversion Repositories eFlore/Applications.cel

Rev

Rev 2367 | Rev 2408 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
712 jpm 1
<?php
2
// declare(encoding='UTF-8');
3
/**
4
 * Widget fournissant des interfaces de saisies simplifiée pour différent projets.
5
 * Encodage en entrée : utf8
6
 * Encodage en sortie : utf8
7
 *
8
 * Cas d'utilisation et documentation :
9
 * @link http://www.tela-botanica.org/wikini/eflore/wakka.php?wiki=AideCELWidgetSaisie
10
 *
11
 * Paramètres :
12
 * ===> projet = chaine  [par défaut : Biodiversite34]
13
 * Indique quel projet nous voulons charger
14
 *
15
 * @author		Jean-Pascal MILCENT <jpm@tela-botanica.org>
16
 * @license		GPL v3 <http://www.gnu.org/licenses/gpl.txt>
17
 * @license		CECILL v2 <http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt>
18
 * @version		$Id$
19
 * @copyright	Copyright (c) 2010, Tela Botanica (accueil@tela-botanica.org)
20
 */
21
class Saisie extends WidgetCommun {
1050 jpm 22
 
712 jpm 23
	const DS = DIRECTORY_SEPARATOR;
1345 aurelien 24
	const PROJET_DEFAUT = 'defaut';
1580 jpm 25
	const WS_SAISIE = 'CelWidgetSaisie';
1888 mathias 26
	const WS_UPLOAD = 'CelWidgetUploadImageTemp';
1580 jpm 27
	const WS_OBS = 'CelObs';
28
	const WS_NOM = 'noms';
29
	private $NS_PROJET_VERSION = '1.01';
30
	const EFLORE_API_VERSION = '0.1';
31
	private $NS_PROJET = 'bdtfx';
1050 jpm 32
 
1476 aurelien 33
	private $projetsVersions = array();
719 jpm 34
	private $projet = null;
35
	private $configProjet = null;
1050 jpm 36
 
712 jpm 37
	/**
38
	 * Méthode appelée par défaut pour charger ce widget.
39
	 */
40
	public function executer() {
41
		$retour = null;
42
		extract($this->parametres);
43
 
1345 aurelien 44
		$this->projet = isset($projet) ? $projet : self::PROJET_DEFAUT;
719 jpm 45
		$this->chargerConfigProjet();
1476 aurelien 46
		$this->chargerProjetsVersion();
1050 jpm 47
 
1345 aurelien 48
		$service = isset($service) ? $service : 'widget';
719 jpm 49
		$methode = $this->traiterNomMethodeExecuter($service);
712 jpm 50
		if (method_exists($this, $methode)) {
51
			$retour = $this->$methode();
52
		} else {
53
			$this->messages[] = "Ce type de service '$methode' n'est pas disponible.";
54
		}
55
 
1050 jpm 56
		$contenu = null;
57
		$mime = null;
58
		if (is_array($retour) && array_key_exists('squelette', $retour)) {
719 jpm 59
			$ext = (isset($retour['squelette_ext'])) ? $retour['squelette_ext'] : '.tpl.html';
2406 jpm 60
			if ($this->projetASquelette()) {
1475 aurelien 61
				$squelette = dirname(__FILE__).self::DS.'squelettes'.self::DS.$this->projet.self::DS.$retour['squelette'].$ext;
62
			} else {
63
				$squelette = dirname(__FILE__).self::DS.'squelettes'.self::DS.'defaut'.self::DS.'defaut'.$ext;
64
			}
712 jpm 65
			$contenu = $this->traiterSquelettePhp($squelette, $retour['donnees']);
1050 jpm 66
			$mime = isset($retour['mime']) ? $retour['mime'] : null;
67
		} else {
68
			if (count($this->messages) == 0) {
69
				$this->messages[] = "La méthode du sous-service ne renvoie pas les données dans le bon format.";
70
			}
71
			$contenu = 'Un problème est survenu : '.print_r($this->messages, true);
712 jpm 72
		}
1050 jpm 73
 
74
		$this->envoyer($contenu, $mime);
712 jpm 75
	}
1050 jpm 76
 
719 jpm 77
	private function chargerConfigProjet() {
78
		$fichier_config = dirname(__FILE__).self::DS.'configurations'.self::DS.$this->projet.'.ini';
79
		if (file_exists($fichier_config)) {
1526 jpm 80
			if (!$this->configProjet = parse_ini_file($fichier_config)) {
719 jpm 81
				$this->messages[] = "Le fichier ini '$fichier_config' du projet n'a pu être chargé.";
1050 jpm 82
			}
719 jpm 83
		} else {
1345 aurelien 84
			$this->debug[] = "Le fichier ini '$fichier_config' du projet n'existe pas.";
719 jpm 85
		}
86
	}
1526 jpm 87
 
1476 aurelien 88
	private function chargerProjetsVersion() {
1526 jpm 89
		if (isset($this->configProjet)) {
90
			foreach ($this->configProjet as $config => $valeur) {
91
				if(strstr($config,'.version')) {
92
					$this->projetsVersions[str_replace('.version', '', $config)] = $valeur;
93
				}
1476 aurelien 94
			}
95
		}
96
	}
1050 jpm 97
 
1345 aurelien 98
	public function executerWidget() {
1476 aurelien 99
		$referentiel_impose = false;
2343 aurelien 100
		if (isset($_GET['referentiel']) && $_GET['referentiel'] != '' && $_GET['referentiel'] != "autre") {
1476 aurelien 101
			$this->NS_PROJET = isset($_GET['referentiel']) && $_GET['referentiel'] != '' ? $_GET['referentiel'] : $this->NS_PROJET;
102
			$this->NS_PROJET_VERSION = $this->projetsVersions[$this->NS_PROJET];
103
			$referentiel_impose = true;
104
		}
1526 jpm 105
 
1050 jpm 106
		$widget['squelette'] = $this->projet;
107
		$widget['donnees'] = array();
108
		$widget['donnees']['url_base'] = sprintf($this->config['chemins']['baseURLAbsoluDyn'], '');
109
		$widget['donnees']['url_ws_saisie'] = sprintf($this->config['chemins']['baseURLServicesCelTpl'], self::WS_SAISIE);
1580 jpm 110
		$widget['donnees']['url_ws_obs'] = sprintf($this->config['chemins']['baseURLServicesCelTpl'], self::WS_OBS);
1888 mathias 111
		$widget['donnees']['url_ws_upload'] = sprintf($this->config['chemins']['baseURLServicesCelTpl'], self::WS_UPLOAD);
1536 jpm 112
		$widget['donnees']['url_ws_annuaire'] = sprintf($this->config['chemins']['baseURLServicesAnnuaireTpl'], 'utilisateur/identite-par-courriel/');
2082 mathias 113
		$widget['donnees']['url_remarques'] = $this->config['chemins']['widgetRemarquesUrl'];
1526 jpm 114
 
1516 aurelien 115
		$widget['donnees']['logo'] = isset($_GET['logo']) ? $_GET['logo'] : 'defaut';
116
		$widget['donnees']['titre'] = isset($_GET['titre']) ? $_GET['titre'] : 'defaut';
117
		$widget['donnees']['titre'] = ($widget['donnees']['titre'] == '0') ? '' : $widget['donnees']['titre'];
1526 jpm 118
 
2406 jpm 119
		$projetsAutorises = $this->transformerEnTableau($this->config['projets']['autorises']);
120
		if (in_array($this->projet, $projetsAutorises)) {
1345 aurelien 121
			$urlWsNsTpl = $this->config['chemins']['baseURLServicesEfloreTpl'];
1476 aurelien 122
			$urlWsNs = sprintf($urlWsNsTpl, self::EFLORE_API_VERSION, $this->NS_PROJET, self::WS_NOM);
2328 jpm 123
			$urlWsNsSansRef = sprintf($urlWsNsTpl, self::EFLORE_API_VERSION, '{referentiel}', self::WS_NOM);
1345 aurelien 124
			$widget['donnees']['url_ws_autocompletion_ns'] = $urlWsNs;
1476 aurelien 125
			$widget['donnees']['url_ws_autocompletion_ns_tpl'] = $urlWsNsSansRef;
126
			$widget['donnees']['ns_referentiel'] = $this->NS_PROJET.':'.$this->NS_PROJET_VERSION;
127
			$widget['donnees']['ns_projet'] = $this->NS_PROJET;
128
			$widget['donnees']['ns_version'] = $this->NS_PROJET_VERSION;
129
			$widget['donnees']['referentiel_impose'] = $referentiel_impose;
130
			$widget['donnees']['projets_versions'] = $this->projetsVersions;
1526 jpm 131
			$widget['donnees']['espece_imposee'] = false;
132
			$widget['donnees']['nn_espece_defaut'] = '';
133
			$widget['donnees']['nom_sci_espece_defaut'] = '';
1536 jpm 134
			$widget['donnees']['infos_espece'] = '{}';
1526 jpm 135
 
136
			if ($this->especeEstImposee()) {
2328 jpm 137
				$nnEspeceImposee = $this->getNnEspeceImposee();
138
				$nom = $this->executerChargementInfosTaxon($nnEspeceImposee);
1418 aurelien 139
				$widget['donnees']['espece_imposee'] = true;
2328 jpm 140
				$widget['donnees']['nn_espece_defaut'] = $nnEspeceImposee;
1419 aurelien 141
				$widget['donnees']['nom_sci_espece_defaut'] = $nom['nom_sci'];
142
				$widget['donnees']['infos_espece'] = $this->array2js($nom, true);
1418 aurelien 143
			}
1536 jpm 144
		}
2406 jpm 145
 
146
		$projetsAListeDeNoms = $this->transformerEnTableau($this->config['projets']['liste_noms']);
147
		if (in_array($this->projet, $projetsAListeDeNoms)) {
148
			$projetsAListeDeNomsSciEtVerna = $this->transformerEnTableau($this->config['projets']['liste_noms_sci_et_verna']);
149
			if (in_array($this->projet, $projetsAListeDeNomsSciEtVerna)) {
1613 jpm 150
				$widget['donnees']['taxons'] = $this->recupererListeNoms();
151
			} else {
152
				$widget['donnees']['taxons'] = $this->recupererListeNomsSci();
2328 jpm 153
			}
2406 jpm 154
		}
155
 
156
		// Chargement de la liste des milieux issues du fichier .ini du projet
157
		$projetsAListeDeMilieux = $this->transformerEnTableau($this->config['projets']['liste_milieux']);
158
		if (in_array($this->projet, $projetsAListeDeMilieux)) {
1345 aurelien 159
			$widget['donnees']['milieux'] = $this->parserMilieux();
719 jpm 160
		}
2406 jpm 161
 
162
		return $widget;
719 jpm 163
	}
1526 jpm 164
 
1475 aurelien 165
	private function projetASquelette() {
1526 jpm 166
		// fonction très simple qui ne teste que si le dossier du projet courant
1475 aurelien 167
		// existe, mais elle suffit pour le moment.
168
		return file_exists(dirname(__FILE__).self::DS.'squelettes'.self::DS.$this->projet);
169
	}
1050 jpm 170
 
2328 jpm 171
	public function executerTaxons() {
172
		$widget['squelette'] = $this->projet.'_taxons';
173
		$widget['squelette_ext'] = '.tpl.js';
1613 jpm 174
		$widget['donnees'] = array();
1629 jpm 175
		$nomsAAfficher = $this->recupererListeNomsSci();
176
		$taxons_tries = array();
1691 raphael 177
		foreach ($nomsAAfficher as $taxon) {
1629 jpm 178
			$taxons_tries[$taxon['num_nom_sel']] = $taxon;
2328 jpm 179
		}
180
		$widget['donnees']['taxons'] = json_encode($taxons_tries);
181
		return $widget;
182
	}
1613 jpm 183
 
184
	private function recupererListeNomsSci() {
185
		$taxons = $this->recupererListeTaxon();
186
		if (is_array($taxons)) {
187
			$taxons = self::trierTableauMd($taxons, array('nom_fr' => SORT_ASC));
188
		}
1629 jpm 189
		return $taxons;
1613 jpm 190
	}
191
 
192
	private function recupererListeNoms() {
193
		$taxons = $this->recupererListeTaxon();
194
		$nomsAAfficher = array();
195
		$nomsSpeciaux = array();
196
		if (is_array($taxons)) {
197
			foreach ($taxons as $taxon) {
198
				$nomSciTitle = $taxon['nom_ret'].
199
					($taxon['nom_fr'] != '' ? ' - '.$taxon['nom_fr'] : '' ).
200
					($taxon['nom_fr_autre'] != '' ? ' - '.$taxon['nom_fr_autre'] : '' );
201
				$nomFrTitle = $taxon['nom_sel'].
202
					($taxon['nom_ret'] != $taxon['nom_sel']? ' - '.$taxon['nom_ret'] : '' ).
203
					($taxon['nom_fr_autre'] != '' ? ' - '.$taxon['nom_fr_autre'] : '' );
204
 
205
				if ($taxon['groupe'] == 'special') {
206
					$nomsSpeciaux[] = array(
207
						'num_nom' => $taxon['num_nom_sel'],
208
						'nom_a_afficher' => $taxon['nom_fr'],
209
						'nom_a_sauver' => $taxon['nom_sel'],
210
						'nom_title' => $nomSciTitle,
211
						'nom_type' => 'nom-special');
212
				} else {
213
					$nomsAAfficher[] = array(
214
						'num_nom' => $taxon['num_nom_sel'],
215
						'nom_a_afficher' => $taxon['nom_sel'],
216
						'nom_a_sauver' => $taxon['nom_sel'],
217
						'nom_title' => $nomSciTitle,
218
						'nom_type' => 'nom-sci');
219
					$nomsAAfficher[] = array(
220
						'num_nom' => $taxon['num_nom_sel'],
221
						'nom_a_afficher' => $taxon['nom_fr'],
222
						'nom_a_sauver' => $taxon['nom_fr'],
223
						'nom_title' => $nomFrTitle,
224
						'nom_type' => 'nom-fr');
225
				}
226
			}
227
			$nomsAAfficher = self::trierTableauMd($nomsAAfficher, array('nom_a_afficher' => SORT_ASC));
228
			$nomsSpeciaux = self::trierTableauMd($nomsSpeciaux, array('nom_a_afficher' => SORT_ASC));
229
		}
230
		return array('speciaux' => $nomsSpeciaux, 'sci-et-fr' => $nomsAAfficher);
231
	}
2328 jpm 232
 
233
	private function recupererListeTaxon() {
234
		$taxons = null;
235
		$fichier_tsv = dirname(__FILE__).self::DS.'configurations'.self::DS.$this->projet.'_taxons.tsv';
236
		if (file_exists($fichier_tsv) && is_readable($fichier_tsv)) {
712 jpm 237
			$taxons = $this->decomposerFichierTsv($fichier_tsv);
2328 jpm 238
		} else {
239
			$this->debug[] = "Impossible d'ouvrir le fichier '$fichier_tsv'.";
240
		}
241
		return $taxons;
712 jpm 242
	}
1050 jpm 243
 
2328 jpm 244
	private function decomposerFichierTsv($fichier, $delimiter = "\t"){
245
		$header = null;
246
		$data = array();
247
		if (($handle = fopen($fichier, 'r')) !== FALSE) {
248
			while (($row = fgetcsv($handle, 1000, $delimiter)) !== FALSE) {
249
				if (!$header) {
250
					$header = $row;
251
				} else {
252
					$data[] = array_combine($header, $row);
253
				}
254
			}
255
			fclose($handle);
256
		}
257
		return $data;
258
	}
259
 
1345 aurelien 260
	private function parserMilieux() {
1050 jpm 261
		$infosMilieux = array();
1536 jpm 262
		if (isset($this->configProjet['milieux'])) {
263
			$milieux = explode('|', $this->configProjet['milieux']);
264
			foreach ($milieux as $milieu) {
2328 jpm 265
				$milieu = trim($milieu);
1536 jpm 266
				$details = explode(';', $milieu);
267
				if (isset($details[1])) {
268
					$infosMilieux[$details[0]] = $details[1];
269
				} else {
270
					$infosMilieux[$details[0]] = '';
271
				}
1050 jpm 272
			}
1536 jpm 273
			ksort($infosMilieux);
1050 jpm 274
		}
275
		return $infosMilieux;
276
	}
1526 jpm 277
 
1418 aurelien 278
	private function especeEstImposee() {
2328 jpm 279
		return (isset($_GET['num_nom']) && $_GET['num_nom'] != ''
280
			|| isset($this->configProjet['sp_imposee']));
1418 aurelien 281
	}
1526 jpm 282
 
2328 jpm 283
	private function getNnEspeceImposee() {
284
		$nn = null;
285
		if (isset($_GET['num_nom']) && is_numeric($_GET['num_nom'])) {
286
			$nn = $_GET['num_nom'];
287
		} else if (isset($this->configProjet['sp_imposee'])) {
288
			$nn = $this->configProjet['sp_imposee'];
289
		}
290
		return $nn;
291
	}
292
 
1418 aurelien 293
	private function executerChargementInfosTaxon($num_nom) {
1476 aurelien 294
		$url_service_infos = sprintf($this->config['chemins']['infosTaxonUrl'], $this->NS_PROJET, $num_nom);
1418 aurelien 295
		$infos = json_decode(file_get_contents($url_service_infos));
1909 raphael 296
		// trop de champs injectés dans les infos espèces peut
297
		// faire planter javascript
1916 jpm 298
		$champs_a_garder = array('id', 'nom_sci','nom_sci_complet',
2367 jpm 299
			'famille','nom_retenu.id', 'nom_retenu.libelle', 'num_taxonomique');
1419 aurelien 300
		$resultat = array();
1539 jpm 301
		if (isset($infos) && !empty($infos)) {
1419 aurelien 302
			$infos = (array)$infos;
2367 jpm 303
			if (isset($infos['nom_sci']) && $infos['nom_sci'] != '') {
1909 raphael 304
				$resultat = array_intersect_key($infos, array_flip($champs_a_garder));
305
				$resultat['retenu'] = ($infos['id'] == $infos['nom_retenu.id']) ? "true" : "false";
1916 jpm 306
			}
1419 aurelien 307
		}
1418 aurelien 308
		return $resultat;
309
	}
1050 jpm 310
 
1526 jpm 311
	private function array2js($array,$show_keys) {
1536 jpm 312
		$tableauJs = '{}';
313
		if (!empty($array)) {
314
			$total = count($array) - 1;
315
			$i = 0;
316
			$dimensions = array();
317
			foreach ($array as $key => $value) {
318
				if (is_array($value)) {
319
					$dimensions[$i] = array2js($value,$show_keys);
320
					if ($show_keys) {
321
						$dimensions[$i] = '"'.$key.'":'.$dimensions[$i];
322
					}
323
				} else {
324
					$dimensions[$i] = '"'.addslashes($value).'"';
325
					if ($show_keys) {
326
						$dimensions[$i] = '"'.$key.'":'.$dimensions[$i];
327
					}
1526 jpm 328
				}
1536 jpm 329
				if ($i == 0) {
330
					$dimensions[$i] = '{'.$dimensions[$i];
1526 jpm 331
				}
1536 jpm 332
				if ($i == $total) {
333
					$dimensions[$i].= '}';
334
				}
335
				$i++;
1526 jpm 336
			}
1536 jpm 337
			$tableauJs = implode(',', $dimensions);
1526 jpm 338
		}
1536 jpm 339
		return $tableauJs;
1526 jpm 340
	}
2360 jpm 341
}