Subversion Repositories eFlore/Applications.cel

Rev

Rev 2848 | Rev 2869 | Go to most recent revision | Only display areas with differences | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 2848 Rev 2851
1
<?php
1
<?php
2
/**
2
/**
3
 * Widget fournissant des interfaces de saisie simplifiée pour différent projets
3
 * Widget fournissant des interfaces de saisie simplifiée pour différent projets
4
 *
4
 *
5
 * Cas d'utilisation et documentation :
5
 * Cas d'utilisation et documentation :
6
 * @link http://www.tela-botanica.org/wikini/AideCarnetEnLigne/wakka.php?wiki=AideCELWidgetSaisie
6
 * @link http://www.tela-botanica.org/wikini/AideCarnetEnLigne/wakka.php?wiki=AideCELWidgetSaisie
7
 *
7
 *
8
 * Paramètres :
8
 * Paramètres :
9
 * - projet [par défaut : defaut] : indique le mot-clé à associer aux obs saisies; si un widget de saisie personnalisé
9
 * - projet [par défaut : defaut] : indique le mot-clé à associer aux obs saisies; si un widget de saisie personnalisé
10
 * 		portant ce nom existe, il sera chargé
10
 * 		portant ce nom existe, il sera chargé
11
 * - mission [par défaut : vide] : permet de charger un "sous-widget", dans le cas où un widget personnalisé
11
 * - mission [par défaut : vide] : permet de charger un "sous-widget", dans le cas où un widget personnalisé
12
 * 		est associé au projet, et ce widget accepte des sous-widgets (ex: "missions-flore")
12
 * 		est associé au projet, et ce widget accepte des sous-widgets (ex: "missions-flore")
13
 *
13
 *
14
 * @author Mathias CHOUET <mathias@tela-botanica.org>
14
 * @author Mathias CHOUET <mathias@tela-botanica.org>
15
 * @author Jean-Pascal MILCENT <jpm@tela-botanica.org>
15
 * @author Jean-Pascal MILCENT <jpm@tela-botanica.org>
16
 * @author Aurelien PERONNET <aurelien@tela-botanica.org>
16
 * @author Aurelien PERONNET <aurelien@tela-botanica.org>
17
 * @license GPL v3 <http://www.gnu.org/licenses/gpl.txt>
17
 * @license GPL v3 <http://www.gnu.org/licenses/gpl.txt>
18
 * @license CECILL v2 <http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt>
18
 * @license CECILL v2 <http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt>
19
 * @copyright 1999-2015 Tela Botanica <accueil@tela-botanica.org>
19
 * @copyright 1999-2015 Tela Botanica <accueil@tela-botanica.org>
20
 */
20
 */
21
class Saisie extends WidgetCommun {
21
class Saisie extends WidgetCommun {
22
 
22
 
23
	const DS = DIRECTORY_SEPARATOR;
23
	const DS = DIRECTORY_SEPARATOR;
24
	const PROJET_DEFAUT = 'defaut';
24
	const PROJET_DEFAUT = 'defaut';
25
	const WS_SAISIE = 'CelWidgetSaisie';
25
	const WS_SAISIE = 'CelWidgetSaisie';
26
	const WS_UPLOAD = 'CelWidgetUploadImageTemp';
26
	const WS_UPLOAD = 'CelWidgetUploadImageTemp';
27
	const WS_OBS = 'CelObs';
27
	const WS_OBS = 'CelObs';
28
	const WS_NOM = 'noms';
28
	const WS_NOM = 'noms';
29
	const EFLORE_API_VERSION = '0.1';
29
	const EFLORE_API_VERSION = '0.1';
30
	const REFERENTIEL_DEFAUT = 'bdtfx';
30
	const REFERENTIEL_DEFAUT = 'bdtfx';
31
 
31
 
32
	/** référentiel utilisé pour al complétion des noms scientifiques */
32
	/** référentiel utilisé pour al complétion des noms scientifiques */
33
	protected $ns_referentiel;
33
	protected $ns_referentiel;
34
	/** mot-clé associé aux saisies, et template personnalisé si appliquable */
34
	/** mot-clé associé aux saisies, et template personnalisé si appliquable */
35
	protected $projet = null;
35
	protected $projet = null;
36
	protected $configProjet = null;
36
	protected $configProjet = null;
37
	protected $configMission = null;
37
	protected $configMission = null;
38
	protected $mission = null;
38
	protected $mission = null;
39
	/** langue (traduction), charge un template de la forme "defaut_en.tpl.html" */
39
	/** langue (traduction), charge un template de la forme "defaut_en.tpl.html" */
40
	protected $langue = null;
40
	protected $langue = null;
41
 
41
 
42
	/**
42
	/**
43
	 * Amorçage du widget
43
	 * Amorçage du widget
44
	 */
44
	 */
45
	public function executer() {
45
	public function executer() {
46
		// paramètres par défaut
46
		// paramètres par défaut
47
		$this->ns_referentiel = self::REFERENTIEL_DEFAUT;
47
		$this->ns_referentiel = self::REFERENTIEL_DEFAUT;
48
		$this->projet = self::PROJET_DEFAUT;
48
		$this->projet = self::PROJET_DEFAUT;
49
 
49
 
50
		// définition du projet / mission
50
		// définition du projet / mission
51
		if (isset($this->parametres['projet']) && trim($this->parametres['projet']) != "") {
51
		if (isset($this->parametres['projet']) && trim($this->parametres['projet']) != "") {
52
			$projets = explode(',', $this->parametres['projet']);
52
			$projets = explode(',', $this->parametres['projet']);
53
			$this->projet = strtolower($projets[0]);
53
			$this->projet = strtolower($projets[0]);
54
		}
54
		}
55
		$this->chargerConfigProjet();
55
		$this->chargerConfigProjet();
56
 
56
 
57
		// exécution du service (le widget entier ou une sous-partie, par ex "Taxons")
57
		// exécution du service (le widget entier ou une sous-partie, par ex "Taxons")
58
		$retour = null;
58
		$retour = null;
59
		$service = isset($this->parametres['service']) ? $this->parametres['service'] : 'widget';
59
		$service = isset($this->parametres['service']) ? $this->parametres['service'] : 'widget';
60
		$methode = $this->traiterNomMethodeExecuter($service);
60
		$methode = $this->traiterNomMethodeExecuter($service);
61
		if (method_exists($this, $methode)) {
61
		if (method_exists($this, $methode)) {
62
			$retour = $this->$methode();
62
			$retour = $this->$methode();
63
		} else {
63
		} else {
64
			$this->messages[] = "Le service '$methode' n'est pas disponible.";
64
			$this->messages[] = "Le service '$methode' n'est pas disponible.";
65
		}
65
		}
66
 
66
 
67
		// définition de la langue, en mode souple
67
		// définition de la langue, en mode souple
68
		if (isset($this->parametres['lang'])) {
68
		if (isset($this->parametres['lang'])) {
69
			$this->langue = $this->parametres['lang'];
69
			$this->langue = $this->parametres['lang'];
70
		}
70
		}
71
 
71
 
72
		// injection des données dans le squelette
72
		// injection des données dans le squelette
73
		$contenu = null;
73
		$contenu = null;
74
		$mime = null;
74
		$mime = null;
75
		if (is_array($retour) && array_key_exists('squelette', $retour)) {
75
		if (is_array($retour) && array_key_exists('squelette', $retour)) {
76
			$ext = (isset($retour['squelette_ext'])) ? $retour['squelette_ext'] : '.tpl.html';
76
			$ext = (isset($retour['squelette_ext'])) ? $retour['squelette_ext'] : '.tpl.html';
77
			// Suffixe de template pour la langue - fr par défaut @TODO configurer ça un jour
77
			// Suffixe de template pour la langue - fr par défaut @TODO configurer ça un jour
78
			$suffixeLangue = "";
78
			$suffixeLangue = "";
79
			if ($this->langue != null && $this->langue != "fr") {
79
			if ($this->langue != null && $this->langue != "fr") {
80
				$suffixeLangue = "_" . $this->langue;
80
				$suffixeLangue = "_" . $this->langue;
81
			}
81
			}
82
			// Template par défaut ou spécifique
82
			// Template par défaut ou spécifique
83
			if ($this->projetASquelette()) {
83
			if ($this->projetASquelette()) {
84
				$squelette = dirname(__FILE__).self::DS.'squelettes'.self::DS.$this->projet.self::DS.$retour['squelette'].$suffixeLangue.$ext;
84
				$squelette = dirname(__FILE__).self::DS.'squelettes'.self::DS.$this->projet.self::DS.$retour['squelette'].$suffixeLangue.$ext;
85
			} else {
85
			} else {
86
				$squelette = dirname(__FILE__).self::DS.'squelettes'.self::DS.'defaut'.self::DS.'defaut'.$suffixeLangue.$ext;
86
				$squelette = dirname(__FILE__).self::DS.'squelettes'.self::DS.'defaut'.self::DS.'defaut'.$suffixeLangue.$ext;
87
			}
87
			}
88
			$contenu = $this->traiterSquelettePhp($squelette, $retour['donnees']);
88
			$contenu = $this->traiterSquelettePhp($squelette, $retour['donnees']);
89
			$mime = isset($retour['mime']) ? $retour['mime'] : null;
89
			$mime = isset($retour['mime']) ? $retour['mime'] : null;
90
		} else {
90
		} else {
91
			if (count($this->messages) == 0) {
91
			if (count($this->messages) == 0) {
92
				$this->messages[] = "La méthode du sous-service ne renvoie pas les données dans le bon format";
92
				$this->messages[] = "La méthode du sous-service ne renvoie pas les données dans le bon format";
93
			}
93
			}
94
			$contenu = 'Un problème est survenu : ' . print_r($this->messages, true);
94
			$contenu = 'Un problème est survenu : ' . print_r($this->messages, true);
95
		}
95
		}
96
 
96
 
97
		// envoi de la page
97
		// envoi de la page
98
		$this->envoyer($contenu, $mime);
98
		$this->envoyer($contenu, $mime);
99
	}
99
	}
100
 
100
 
101
	/**
101
	/**
102
	 * Charge le fichier de configuration associé au projet : configurations/nomduprojet.ini
102
	 * Charge le fichier de configuration associé au projet : configurations/nomduprojet.ini
103
	 * Si une mission est définie, charge séparément la section de la configuration concernant
103
	 * Si une mission est définie, charge séparément la section de la configuration concernant
104
	 * cette mission : [nommission]
104
	 * cette mission : [nommission]
105
	 */
105
	 */
106
	protected function chargerConfigProjet() {
106
	protected function chargerConfigProjet() {
107
		$fichier_config = dirname(__FILE__).self::DS.'configurations'.self::DS.$this->projet.'.ini';
107
		$fichier_config = dirname(__FILE__).self::DS.'configurations'.self::DS.$this->projet.'.ini';
108
		if (file_exists($fichier_config)) {
108
		if (file_exists($fichier_config)) {
109
			if ($this->configProjet = parse_ini_file($fichier_config, true)) {
109
			if ($this->configProjet = parse_ini_file($fichier_config, true)) {
110
				if (isset($_GET['mission'])) {
110
				if (isset($_GET['mission'])) {
111
					$this->mission = strtolower(trim($_GET['mission']));
111
					$this->mission = strtolower(trim($_GET['mission']));
112
					if (isset($this->configProjet[$this->mission])) {
112
					if (isset($this->configProjet[$this->mission])) {
113
						$this->configMission = $this->configProjet[$this->mission];
113
						$this->configMission = $this->configProjet[$this->mission];
114
					}
114
					}
115
				}
115
				}
116
			} else {
116
			} else {
117
				$this->messages[] = "Le fichier de configuration '$fichier_config' n'a pu être chargé.";
117
				$this->messages[] = "Le fichier de configuration '$fichier_config' n'a pu être chargé.";
118
			}
118
			}
119
		} else {
119
		} else {
120
			$this->debug[] = "Le fichier de configuration '$fichier_config' n'existe pas.";
120
			$this->debug[] = "Le fichier de configuration '$fichier_config' n'existe pas.";
121
		}
121
		}
122
	}
122
	}
123
 
123
 
124
	/**
124
	/**
125
	 * Retourne true si le dossier du projet courant existe, false sinon
125
	 * Retourne true si le dossier du projet courant existe, false sinon
126
	 * @return boolean
126
	 * @return boolean
127
	 */
127
	 */
128
	protected function projetASquelette() {
128
	protected function projetASquelette() {
129
		return file_exists(dirname(__FILE__).self::DS.'squelettes'.self::DS.$this->projet);
129
		return file_exists(dirname(__FILE__).self::DS.'squelettes'.self::DS.$this->projet);
130
	}
130
	}
131
 
131
 
132
	/**
132
	/**
133
	 * Exécution du widget complet 
133
	 * Exécution du widget complet 
134
	 * @return Ambigous <string, unknown, multitype:string unknown >
134
	 * @return Ambigous <string, unknown, multitype:string unknown >
135
	 */
135
	 */
136
	public function executerWidget() {
136
	public function executerWidget() {
137
		$referentiel_impose = false;
-
 
138
		if (isset($_GET['referentiel']) && $_GET['referentiel'] != '' && $_GET['referentiel'] != "autre") {
-
 
139
			$this->ns_referentiel = $_GET['referentiel'];
-
 
140
			$referentiel_impose = true;
-
 
141
		}
-
 
142
 
-
 
143
		$widget['squelette'] = $this->projet;
137
		$widget['squelette'] = $this->projet;
144
		$widget['donnees'] = array();
138
		$widget['donnees'] = array();
145
		$widget['donnees']['url_base'] = sprintf($this->config['chemins']['baseURLAbsoluDyn'], '');
139
		$widget['donnees']['url_base'] = sprintf($this->config['chemins']['baseURLAbsoluDyn'], '');
146
		$widget['donnees']['url_ws_saisie'] = sprintf($this->config['chemins']['baseURLServicesCelTpl'], self::WS_SAISIE);
140
		$widget['donnees']['url_ws_saisie'] = sprintf($this->config['chemins']['baseURLServicesCelTpl'], self::WS_SAISIE);
147
		$widget['donnees']['url_ws_obs'] = sprintf($this->config['chemins']['baseURLServicesCelTpl'], self::WS_OBS);
141
		$widget['donnees']['url_ws_obs'] = sprintf($this->config['chemins']['baseURLServicesCelTpl'], self::WS_OBS);
148
		$widget['donnees']['url_ws_upload'] = sprintf($this->config['chemins']['baseURLServicesCelTpl'], self::WS_UPLOAD);
142
		$widget['donnees']['url_ws_upload'] = sprintf($this->config['chemins']['baseURLServicesCelTpl'], self::WS_UPLOAD);
149
		$widget['donnees']['url_ws_annuaire'] = sprintf($this->config['chemins']['baseURLServicesAnnuaireTpl'], 'utilisateur/identite-par-courriel/');
143
		$widget['donnees']['url_ws_annuaire'] = sprintf($this->config['chemins']['baseURLServicesAnnuaireTpl'], 'utilisateur/identite-par-courriel/');
150
		$widget['donnees']['url_remarques'] = $this->config['chemins']['widgetRemarquesUrl'];
144
		$widget['donnees']['url_remarques'] = $this->config['chemins']['widgetRemarquesUrl'];
151
 
145
 
152
		$widget['donnees']['logo'] = isset($_GET['logo']) ? $_GET['logo'] : 'defaut';
146
		$widget['donnees']['logo'] = $this->getLogoPage();
153
		$widget['donnees']['titre'] = $this->getTitrePage();
147
		$widget['donnees']['titre'] = $this->getTitrePage();
154
		$widget['donnees']['nom_mission'] = $this->getNomMissionFlore();
148
		$widget['donnees']['nom_mission'] = $this->getNomMissionFlore();
155
 
149
 
156
		$widget['donnees']['referentiel_impose'] = $referentiel_impose;
150
		$widget['donnees']['referentiel_impose'] = $this->getReferentielImpose();
157
		$widget['donnees']['espece_imposee'] = false;
151
		$widget['donnees']['espece_imposee'] = false;
158
		$widget['donnees']['nn_espece_defaut'] = '';
152
		$widget['donnees']['nn_espece_defaut'] = '';
159
		$widget['donnees']['nom_sci_espece_defaut'] = '';
153
		$widget['donnees']['nom_sci_espece_defaut'] = '';
160
		$widget['donnees']['infos_espece'] = '{}';
154
		$widget['donnees']['infos_espece'] = '{}';
161
 
155
 
162
		$widget['donnees']['prod'] = ($this->config['parametres']['modeServeur'] == "prod");
156
		$widget['donnees']['prod'] = ($this->config['parametres']['modeServeur'] == "prod");
163
		
157
		
164
		$projetsAutorises = $this->transformerEnTableau($this->config['projets']['autorises']);
158
		$projetsAutorises = $this->transformerEnTableau($this->config['projets']['autorises']);
165
 
159
 
166
		$urlWsNsTpl = $this->config['chemins']['baseURLServicesEfloreTpl'];
160
		$urlWsNsTpl = $this->config['chemins']['baseURLServicesEfloreTpl'];
167
		$urlWsNs = sprintf($urlWsNsTpl, self::EFLORE_API_VERSION, $this->ns_referentiel, self::WS_NOM);
161
		$urlWsNs = sprintf($urlWsNsTpl, self::EFLORE_API_VERSION, $this->ns_referentiel, self::WS_NOM);
168
		$urlWsNsSansRef = sprintf($urlWsNsTpl, self::EFLORE_API_VERSION, '{referentiel}', self::WS_NOM);
162
		$urlWsNsSansRef = sprintf($urlWsNsTpl, self::EFLORE_API_VERSION, '{referentiel}', self::WS_NOM);
169
		$widget['donnees']['url_ws_autocompletion_ns'] = $urlWsNs;
163
		$widget['donnees']['url_ws_autocompletion_ns'] = $urlWsNs;
170
		$widget['donnees']['url_ws_autocompletion_ns_tpl'] = $urlWsNsSansRef;
164
		$widget['donnees']['url_ws_autocompletion_ns_tpl'] = $urlWsNsSansRef;
171
		$widget['donnees']['ns_referentiel'] = $this->ns_referentiel;
165
		$widget['donnees']['ns_referentiel'] = $this->ns_referentiel;
172
		
166
		
173
		$widget['donnees']['url_ws_trace_rue_tpl'] = $this->config['chemins']['serviceTraceRueUrl'];
167
		$widget['donnees']['url_ws_trace_rue_tpl'] = $this->config['chemins']['serviceTraceRueUrl'];
174
		
168
		
175
		if ($this->especeEstImposee()) {
169
		if ($this->especeEstImposee()) {
176
			$nnEspeceImposee = $this->getNnEspeceImposee();
170
			$nnEspeceImposee = $this->getNnEspeceImposee();
177
			$nom = $this->chargerInfosTaxon($nnEspeceImposee);
171
			$nom = $this->chargerInfosTaxon($nnEspeceImposee);
178
			$widget['donnees']['espece_imposee'] = true;
172
			$widget['donnees']['espece_imposee'] = true;
179
			$widget['donnees']['nn_espece_defaut'] = $nnEspeceImposee;
173
			$widget['donnees']['nn_espece_defaut'] = $nnEspeceImposee;
180
			$widget['donnees']['nom_sci_espece_defaut'] = $nom['nom_complet'];
174
			$widget['donnees']['nom_sci_espece_defaut'] = $nom['nom_complet'];
181
			$widget['donnees']['infos_espece'] = $this->array2js($nom, true);
175
			$widget['donnees']['infos_espece'] = $this->array2js($nom, true);
182
		}
176
		}
183
 
177
 
184
		$projetsAListeDeNoms = $this->transformerEnTableau($this->config['projets']['liste_noms']);
178
		$projetsAListeDeNoms = $this->transformerEnTableau($this->config['projets']['liste_noms']);
185
		if (in_array($this->projet, $projetsAListeDeNoms)) {
179
		if (in_array($this->projet, $projetsAListeDeNoms)) {
186
			$projetsAListeDeNomsSciEtVerna = $this->transformerEnTableau($this->config['projets']['liste_noms_sci_et_verna']);
180
			$projetsAListeDeNomsSciEtVerna = $this->transformerEnTableau($this->config['projets']['liste_noms_sci_et_verna']);
187
			if (in_array($this->projet, $projetsAListeDeNomsSciEtVerna)) {
181
			if (in_array($this->projet, $projetsAListeDeNomsSciEtVerna)) {
188
				$widget['donnees']['taxons'] = $this->recupererListeNoms();
182
				$widget['donnees']['taxons'] = $this->recupererListeNoms();
189
			} else {
183
			} else {
190
				$widget['donnees']['taxons'] = $this->recupererListeNomsSci();
184
				$widget['donnees']['taxons'] = $this->recupererListeNomsSci();
191
			}
185
			}
192
		}
186
		}
193
 
187
 
194
		// Chargement de la liste des milieux issues du fichier .ini du projet
188
		// Chargement de la liste des milieux issues du fichier .ini du projet
195
		$projetsAListeDeMilieux = $this->transformerEnTableau($this->config['projets']['liste_milieux']);
189
		$projetsAListeDeMilieux = $this->transformerEnTableau($this->config['projets']['liste_milieux']);
196
		if (in_array($this->projet, $projetsAListeDeMilieux)) {
190
		if (in_array($this->projet, $projetsAListeDeMilieux)) {
197
			$widget['donnees']['milieux'] = $this->parserMilieux();
191
			$widget['donnees']['milieux'] = $this->parserMilieux();
198
		}
192
		}
199
 
193
 
200
		return $widget;
194
		return $widget;
201
	}
195
	}
202
 
196
 
203
	protected function getTitrePage() {
197
	protected function getTitrePage() {
204
		$titre = 'defaut';
198
		$titre = 'defaut';
205
		if (isset($this->configProjet['titre_page'])) {
199
		if (isset($this->configProjet['titre_page'])) {
206
			$titre = $this->configProjet['titre_page'];
200
			$titre = $this->configProjet['titre_page'];
207
		}
201
		}
208
		if (isset($this->configMission['titre_page'])) {
202
		if (isset($this->configMission['titre_page'])) {
209
			$titre = $this->configMission['titre_page'];
203
			$titre = $this->configMission['titre_page'];
210
		}
204
		}
211
		if (isset($_GET['titre'])) {
205
		if (isset($_GET['titre'])) {
212
			$titre = $_GET['titre'];
206
			$titre = $_GET['titre'];
213
		}
207
		}
214
		if ($titre === 0) {
208
		if ($titre === 0) { // wtf ?
215
			$titre = '';
209
			$titre = '';
216
		}
210
		}
217
		return $titre;
211
		return $titre;
218
	}
212
	}
-
 
213
 
-
 
214
	protected function getLogoPage() {
-
 
215
		$logo = 'defaut';
-
 
216
		if (isset($this->configProjet['logo_page'])) {
-
 
217
			$logo = $this->configProjet['logo_page'];
-
 
218
		}
-
 
219
		if (isset($this->configMission['logo_page'])) {
-
 
220
			$logo = $this->configMission['logo_page'];
-
 
221
		}
-
 
222
		if (isset($_GET['logo'])) {
-
 
223
			$logo = $_GET['logo'];
-
 
224
		}
-
 
225
		return $logo;
-
 
226
	}
-
 
227
 
-
 
228
	protected function getReferentielImpose() {
-
 
229
		$referentiel_impose = false;
-
 
230
		if (isset($this->configProjet['referentiel'])) {
-
 
231
			$this->ns_referentiel = $this->configProjet['referentiel'];
-
 
232
			$referentiel_impose = true;
-
 
233
		}
-
 
234
		if (!empty($_GET['referentiel']) && $_GET['referentiel'] != "autre") {
-
 
235
			$this->ns_referentiel = $_GET['referentiel'];
-
 
236
			$referentiel_impose = true;
-
 
237
		}
-
 
238
		return $referentiel_impose;
-
 
239
	}
219
 
240
 
220
	/**
241
	/**
221
	 * Un nom un peu plus sympatoche à afficher que juste le mot-clef associé; s'il
242
	 * Un nom un peu plus sympatoche à afficher que juste le mot-clef associé; s'il
222
	 * n'est pas défini dans la config, on prend le mot-clef tout de même
243
	 * n'est pas défini dans la config, on prend le mot-clef tout de même
223
	 */
244
	 */
224
	protected function getNomMissionFlore() {
245
	protected function getNomMissionFlore() {
225
		$nom = $this->mission;
246
		$nom = $this->mission;
226
		if (isset($this->configMission['nom_mission'])) {
247
		if (isset($this->configMission['nom_mission'])) {
227
			$nom = $this->configMission['nom_mission'];
248
			$nom = $this->configMission['nom_mission'];
228
		}
249
		}
229
		return $nom;
250
		return $nom;
230
	}
251
	}
231
 
252
 
232
	/**
253
	/**
233
	 * Remplit un fichier JS avec une variable contenant une liste restreinte de taxons,
254
	 * Remplit un fichier JS avec une variable contenant une liste restreinte de taxons,
234
	 * pour certains projets
255
	 * pour certains projets
235
	 * @return string
256
	 * @return string
236
	 */
257
	 */
237
	public function executerTaxons() {
258
	public function executerTaxons() {
238
		$widget['squelette'] = $this->projet.'_taxons';
259
		$widget['squelette'] = $this->projet.'_taxons';
239
		$widget['squelette_ext'] = '.tpl.js';
260
		$widget['squelette_ext'] = '.tpl.js';
240
		$widget['donnees'] = array();
261
		$widget['donnees'] = array();
241
		$nomsAAfficher = $this->recupererListeNomsSci();
262
		$nomsAAfficher = $this->recupererListeNomsSci();
242
		$taxons_tries = array();
263
		$taxons_tries = array();
243
		foreach ($nomsAAfficher as $taxon) {
264
		foreach ($nomsAAfficher as $taxon) {
244
			$taxons_tries[$taxon['num_nom_sel']] = $taxon;
265
			$taxons_tries[$taxon['num_nom_sel']] = $taxon;
245
		}
266
		}
246
		$widget['donnees']['taxons'] = json_encode($taxons_tries);
267
		$widget['donnees']['taxons'] = json_encode($taxons_tries);
247
		return $widget;
268
		return $widget;
248
	}
269
	}
249
 
270
 
250
	/**
271
	/**
251
	 * Trie par nom français les taxons lus dans le fichier tsv
272
	 * Trie par nom français les taxons lus dans le fichier tsv
252
	 */
273
	 */
253
	protected function recupererListeNomsSci() {
274
	protected function recupererListeNomsSci() {
254
		$taxons = $this->recupererListeTaxon();
275
		$taxons = $this->recupererListeTaxon();
255
		if (is_array($taxons)) {
276
		if (is_array($taxons)) {
256
			$taxons = self::trierTableauMd($taxons, array('nom_fr' => SORT_ASC));
277
			$taxons = self::trierTableauMd($taxons, array('nom_fr' => SORT_ASC));
257
		}
278
		}
258
		return $taxons;
279
		return $taxons;
259
	}
280
	}
260
 
281
 
261
	/**
282
	/**
262
	 * @TODO documenter
283
	 * @TODO documenter
263
	 * @return array
284
	 * @return array
264
	 */
285
	 */
265
	protected function recupererListeNoms() {
286
	protected function recupererListeNoms() {
266
		$taxons = $this->recupererListeTaxon();
287
		$taxons = $this->recupererListeTaxon();
267
		$nomsAAfficher = array();
288
		$nomsAAfficher = array();
268
		$nomsSpeciaux = array();
289
		$nomsSpeciaux = array();
269
		if (is_array($taxons)) {
290
		if (is_array($taxons)) {
270
			foreach ($taxons as $taxon) {
291
			foreach ($taxons as $taxon) {
271
				$nomSciTitle = $taxon['nom_ret'].
292
				$nomSciTitle = $taxon['nom_ret'].
272
					($taxon['nom_fr'] != '' ? ' - '.$taxon['nom_fr'] : '' ).
293
					($taxon['nom_fr'] != '' ? ' - '.$taxon['nom_fr'] : '' ).
273
					($taxon['nom_fr_autre'] != '' ? ' - '.$taxon['nom_fr_autre'] : '' );
294
					($taxon['nom_fr_autre'] != '' ? ' - '.$taxon['nom_fr_autre'] : '' );
274
				$nomFrTitle = $taxon['nom_sel'].
295
				$nomFrTitle = $taxon['nom_sel'].
275
					($taxon['nom_ret'] != $taxon['nom_sel']? ' - '.$taxon['nom_ret'] : '' ).
296
					($taxon['nom_ret'] != $taxon['nom_sel']? ' - '.$taxon['nom_ret'] : '' ).
276
					($taxon['nom_fr_autre'] != '' ? ' - '.$taxon['nom_fr_autre'] : '' );
297
					($taxon['nom_fr_autre'] != '' ? ' - '.$taxon['nom_fr_autre'] : '' );
277
 
298
 
278
				if ($taxon['groupe'] == 'special') {
299
				if ($taxon['groupe'] == 'special') {
279
					$nomsSpeciaux[] = array(
300
					$nomsSpeciaux[] = array(
280
						'num_nom' => $taxon['num_nom_sel'],
301
						'num_nom' => $taxon['num_nom_sel'],
281
						'nom_a_afficher' => $taxon['nom_fr'],
302
						'nom_a_afficher' => $taxon['nom_fr'],
282
						'nom_a_sauver' => $taxon['nom_sel'],
303
						'nom_a_sauver' => $taxon['nom_sel'],
283
						'nom_title' => $nomSciTitle,
304
						'nom_title' => $nomSciTitle,
284
						'nom_type' => 'nom-special');
305
						'nom_type' => 'nom-special');
285
				} else {
306
				} else {
286
					$nomsAAfficher[] = array(
307
					$nomsAAfficher[] = array(
287
						'num_nom' => $taxon['num_nom_sel'],
308
						'num_nom' => $taxon['num_nom_sel'],
288
						'nom_a_afficher' => $taxon['nom_sel'],
309
						'nom_a_afficher' => $taxon['nom_sel'],
289
						'nom_a_sauver' => $taxon['nom_sel'],
310
						'nom_a_sauver' => $taxon['nom_sel'],
290
						'nom_title' => $nomSciTitle,
311
						'nom_title' => $nomSciTitle,
291
						'nom_type' => 'nom-sci');
312
						'nom_type' => 'nom-sci');
292
					$nomsAAfficher[] = array(
313
					$nomsAAfficher[] = array(
293
						'num_nom' => $taxon['num_nom_sel'],
314
						'num_nom' => $taxon['num_nom_sel'],
294
						'nom_a_afficher' => $taxon['nom_fr'],
315
						'nom_a_afficher' => $taxon['nom_fr'],
295
						'nom_a_sauver' => $taxon['nom_fr'],
316
						'nom_a_sauver' => $taxon['nom_fr'],
296
						'nom_title' => $nomFrTitle,
317
						'nom_title' => $nomFrTitle,
297
						'nom_type' => 'nom-fr');
318
						'nom_type' => 'nom-fr');
298
				}
319
				}
299
			}
320
			}
300
			$nomsAAfficher = self::trierTableauMd($nomsAAfficher, array('nom_a_afficher' => SORT_ASC));
321
			$nomsAAfficher = self::trierTableauMd($nomsAAfficher, array('nom_a_afficher' => SORT_ASC));
301
			$nomsSpeciaux = self::trierTableauMd($nomsSpeciaux, array('nom_a_afficher' => SORT_ASC));
322
			$nomsSpeciaux = self::trierTableauMd($nomsSpeciaux, array('nom_a_afficher' => SORT_ASC));
302
		}
323
		}
303
		return array('speciaux' => $nomsSpeciaux, 'sci-et-fr' => $nomsAAfficher);
324
		return array('speciaux' => $nomsSpeciaux, 'sci-et-fr' => $nomsAAfficher);
304
	}
325
	}
305
 
326
 
306
	/**
327
	/**
307
	 * Lit une liste de taxons depuis un fichier tsv fourni
328
	 * Lit une liste de taxons depuis un fichier tsv fourni
308
	 */
329
	 */
309
	protected function recupererListeTaxon() {
330
	protected function recupererListeTaxon() {
310
		$taxons = array();
331
		$taxons = array();
311
		$fichier_tsv = dirname(__FILE__).self::DS.'configurations'.self::DS.$this->projet.'_taxons.tsv';
332
		$fichier_tsv = dirname(__FILE__).self::DS.'configurations'.self::DS.$this->projet.'_taxons.tsv';
312
		if (file_exists($fichier_tsv) && is_readable($fichier_tsv)) {
333
		if (file_exists($fichier_tsv) && is_readable($fichier_tsv)) {
313
			$taxons = $this->decomposerFichierTsv($fichier_tsv);
334
			$taxons = $this->decomposerFichierTsv($fichier_tsv);
314
		} else {
335
		} else {
315
			$this->debug[] = "Impossible d'ouvrir le fichier '$fichier_tsv'.";
336
			$this->debug[] = "Impossible d'ouvrir le fichier '$fichier_tsv'.";
316
		}
337
		}
317
		return $taxons;
338
		return $taxons;
318
	}
339
	}
319
 
340
 
320
	/**
341
	/**
321
	 * Découpe un fihcier tsv
342
	 * Découpe un fihcier tsv
322
	 */
343
	 */
323
	protected function decomposerFichierTsv($fichier, $delimiter = "\t"){
344
	protected function decomposerFichierTsv($fichier, $delimiter = "\t"){
324
		$header = null;
345
		$header = null;
325
		$data = array();
346
		$data = array();
326
		if (($handle = fopen($fichier, 'r')) !== FALSE) {
347
		if (($handle = fopen($fichier, 'r')) !== FALSE) {
327
			while (($row = fgetcsv($handle, 1000, $delimiter)) !== FALSE) {
348
			while (($row = fgetcsv($handle, 1000, $delimiter)) !== FALSE) {
328
				if (!$header) {
349
				if (!$header) {
329
					$header = $row;
350
					$header = $row;
330
				} else {
351
				} else {
331
					$data[] = array_combine($header, $row);
352
					$data[] = array_combine($header, $row);
332
				}
353
				}
333
			}
354
			}
334
			fclose($handle);
355
			fclose($handle);
335
		}
356
		}
336
		return $data;
357
		return $data;
337
	}
358
	}
338
 
359
 
339
	/**
360
	/**
340
	 * Récupère la liste des milieux depuis la section [milieux] de la configuration
361
	 * Récupère la liste des milieux depuis la section [milieux] de la configuration
341
	 * du projet, si elle existe
362
	 * du projet, si elle existe
342
	 * @return array
363
	 * @return array
343
	 */
364
	 */
344
	protected function parserMilieux() {
365
	protected function parserMilieux() {
345
		$infosMilieux = array();
366
		$infosMilieux = array();
346
		if (isset($this->configProjet['milieux'])) {
367
		if (isset($this->configProjet['milieux'])) {
347
			$milieux = explode('|', $this->configProjet['milieux']);
368
			$milieux = explode('|', $this->configProjet['milieux']);
348
			foreach ($milieux as $milieu) {
369
			foreach ($milieux as $milieu) {
349
				$milieu = trim($milieu);
370
				$milieu = trim($milieu);
350
				$details = explode(';', $milieu);
371
				$details = explode(';', $milieu);
351
				if (isset($details[1])) {
372
				if (isset($details[1])) {
352
					$infosMilieux[$details[0]] = $details[1];
373
					$infosMilieux[$details[0]] = $details[1];
353
				} else {
374
				} else {
354
					$infosMilieux[$details[0]] = '';
375
					$infosMilieux[$details[0]] = '';
355
				}
376
				}
356
			}
377
			}
357
			ksort($infosMilieux);
378
			ksort($infosMilieux);
358
		}
379
		}
359
		return $infosMilieux;
380
		return $infosMilieux;
360
	}
381
	}
361
 
382
 
362
	/**
383
	/**
363
	 * Retourne true si le widget est restreint à une espèce, false sinon
384
	 * Retourne true si le widget est restreint à une espèce, false sinon
364
	 * @return boolean
385
	 * @return boolean
365
	 */
386
	 */
366
	protected function especeEstImposee() {
387
	protected function especeEstImposee() {
367
		return ((isset($_GET['num_nom']) && $_GET['num_nom'] != '')
388
		return ((isset($_GET['num_nom']) && $_GET['num_nom'] != '')
368
			|| isset($this->configProjet['sp_imposee']) || isset($this->configMission['sp_imposee']));
389
			|| isset($this->configProjet['sp_imposee']) || isset($this->configMission['sp_imposee']));
369
	}
390
	}
370
 
391
 
371
	/**
392
	/**
372
	 * Retourne le numéro nomenclatural (nn) de l'espèce imposée si tel est
393
	 * Retourne le numéro nomenclatural (nn) de l'espèce imposée si tel est
373
	 * le cas, null sinon
394
	 * le cas, null sinon
374
	 * @return string
395
	 * @return string
375
	 */
396
	 */
376
	protected function getNnEspeceImposee() {
397
	protected function getNnEspeceImposee() {
377
		$nn = null;
398
		$nn = null;
378
		if (isset($_GET['num_nom']) && is_numeric($_GET['num_nom'])) {
399
		if (isset($_GET['num_nom']) && is_numeric($_GET['num_nom'])) {
379
			$nn = $_GET['num_nom'];
400
			$nn = $_GET['num_nom'];
380
		} else if (isset($this->configProjet['sp_imposee'])) {
401
		} else if (isset($this->configProjet['sp_imposee'])) {
381
			$nn = $this->configProjet['sp_imposee'];
402
			$nn = $this->configProjet['sp_imposee'];
382
		} else if (isset($this->configMission['sp_imposee'])) {
403
		} else if (isset($this->configMission['sp_imposee'])) {
383
			$nn = $this->configMission['sp_imposee'];
404
			$nn = $this->configMission['sp_imposee'];
384
		}
405
		}
385
		return $nn;
406
		return $nn;
386
	}
407
	}
387
 
408
 
388
	/**
409
	/**
389
	 * Consulte un webservice pour obtenir des informations sur le taxon dont le
410
	 * Consulte un webservice pour obtenir des informations sur le taxon dont le
390
	 * numéro nomenclatural est $num_nom (ce sont donc plutôt des infos sur le nom
411
	 * numéro nomenclatural est $num_nom (ce sont donc plutôt des infos sur le nom
391
	 * et non le taxon?)
412
	 * et non le taxon?)
392
	 * @param string|int $num_nom
413
	 * @param string|int $num_nom
393
	 * @return array
414
	 * @return array
394
	 */
415
	 */
395
	protected function chargerInfosTaxon($num_nom) {
416
	protected function chargerInfosTaxon($num_nom) {
396
		$url_service_infos = sprintf($this->config['chemins']['infosTaxonUrl'], $this->ns_referentiel, $num_nom);
417
		$url_service_infos = sprintf($this->config['chemins']['infosTaxonUrl'], $this->ns_referentiel, $num_nom);
397
		$infos = json_decode(file_get_contents($url_service_infos));
418
		$infos = json_decode(file_get_contents($url_service_infos));
398
		// trop de champs injectés dans les infos espèces peuvent
419
		// trop de champs injectés dans les infos espèces peuvent
399
		// faire planter javascript
420
		// faire planter javascript
400
		$champs_a_garder = array('id', 'nom_sci','nom_sci_complet', 'nom_complet',
421
		$champs_a_garder = array('id', 'nom_sci','nom_sci_complet', 'nom_complet',
401
			'famille','nom_retenu.id', 'nom_retenu_complet', 'num_taxonomique');
422
			'famille','nom_retenu.id', 'nom_retenu_complet', 'num_taxonomique');
402
		$resultat = array();
423
		$resultat = array();
403
		if (isset($infos) && !empty($infos)) {
424
		if (isset($infos) && !empty($infos)) {
404
			$infos = (array)$infos;
425
			$infos = (array)$infos;
405
			if (isset($infos['nom_sci']) && $infos['nom_sci'] != '') {
426
			if (isset($infos['nom_sci']) && $infos['nom_sci'] != '') {
406
				$resultat = array_intersect_key($infos, array_flip($champs_a_garder));
427
				$resultat = array_intersect_key($infos, array_flip($champs_a_garder));
407
				$resultat['retenu'] = ($infos['id'] == $infos['nom_retenu.id']) ? "true" : "false";
428
				$resultat['retenu'] = ($infos['id'] == $infos['nom_retenu.id']) ? "true" : "false";
408
			}
429
			}
409
		}
430
		}
410
		return $resultat;
431
		return $resultat;
411
	}
432
	}
412
 
433
 
413
	/**
434
	/**
414
	 * Convertit un tableau PHP en Javascript - @WTF pourquoi ne pas faire un json_encode ?
435
	 * Convertit un tableau PHP en Javascript - @WTF pourquoi ne pas faire un json_encode ?
415
	 * @param array $array
436
	 * @param array $array
416
	 * @param boolean $show_keys
437
	 * @param boolean $show_keys
417
	 * @return une portion de JSON représentant le tableau
438
	 * @return une portion de JSON représentant le tableau
418
	 */
439
	 */
419
	protected function array2js($array,$show_keys) {
440
	protected function array2js($array,$show_keys) {
420
		$tableauJs = '{}';
441
		$tableauJs = '{}';
421
		if (!empty($array)) {
442
		if (!empty($array)) {
422
			$total = count($array) - 1;
443
			$total = count($array) - 1;
423
			$i = 0;
444
			$i = 0;
424
			$dimensions = array();
445
			$dimensions = array();
425
			foreach ($array as $key => $value) {
446
			foreach ($array as $key => $value) {
426
				if (is_array($value)) {
447
				if (is_array($value)) {
427
					$dimensions[$i] = array2js($value,$show_keys);
448
					$dimensions[$i] = array2js($value,$show_keys);
428
					if ($show_keys) {
449
					if ($show_keys) {
429
						$dimensions[$i] = '"'.$key.'":'.$dimensions[$i];
450
						$dimensions[$i] = '"'.$key.'":'.$dimensions[$i];
430
					}
451
					}
431
				} else {
452
				} else {
432
					$dimensions[$i] = '"'.addslashes($value).'"';
453
					$dimensions[$i] = '"'.addslashes($value).'"';
433
					if ($show_keys) {
454
					if ($show_keys) {
434
						$dimensions[$i] = '"'.$key.'":'.$dimensions[$i];
455
						$dimensions[$i] = '"'.$key.'":'.$dimensions[$i];
435
					}
456
					}
436
				}
457
				}
437
				if ($i == 0) {
458
				if ($i == 0) {
438
					$dimensions[$i] = '{'.$dimensions[$i];
459
					$dimensions[$i] = '{'.$dimensions[$i];
439
				}
460
				}
440
				if ($i == $total) {
461
				if ($i == $total) {
441
					$dimensions[$i].= '}';
462
					$dimensions[$i].= '}';
442
				}
463
				}
443
				$i++;
464
				$i++;
444
			}
465
			}
445
			$tableauJs = implode(',', $dimensions);
466
			$tableauJs = implode(',', $dimensions);
446
		}
467
		}
447
		return $tableauJs;
468
		return $tableauJs;
448
	}
469
	}
449
}
470
}