Subversion Repositories eFlore/Applications.cel

Rev

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

Rev Author Line No. Line
1654 aurelien 1
<?php
1656 raphael 2
 
3
/**
4
* @category  PHP
5
* @package   jrest
6
* @author    Raphaël Droz <raphael@tela-botania.org>
7
* @copyright 2013 Tela-Botanica
8
* @license   http://www.cecill.info/licences/Licence_CeCILL_V2-fr.txt Licence CECILL
9
* @license GPL v3 <http://www.gnu.org/licenses/gpl.txt>
10
*/
11
 
12
define('SEPARATEUR_IMAGES', ",");
13
 
1654 aurelien 14
Class FormateurGroupeColonne {
1656 raphael 15
 
16
	static $cache = Array();
17
 
1654 aurelien 18
	/*
19
	* @param $fieldSets: un liste de noms de colonnes ou de sets de colonnes
20
	*		séparés par des virgules
21
	* 		eg: "espece" ou "champs-etendus", ...
22
	*
23
	* @return: un tableau associatif déjà ordonné
24
	* 		clé: abbrev [machine-name] de la colonne (eg: "espece" ou "mot-clef")
25
	* 		valeur: des données relative à cette colonne, cf GenColInfo
26
	*
27
	* @TODO: fonction commune à la génération en CSV
28
	*
29
	*/
30
	static function nomEnsembleVersListeColonnes($groupe_de_champs = 'standard') {
31
		if(! $groupe_de_champs) $groupe_de_champs = 'standard';
32
		$groupe_de_champs = array_flip(explode(',', $groupe_de_champs));
1656 raphael 33
		$colonnes = Array();
1654 aurelien 34
 
35
		if(isset($groupe_de_champs['standard'])) {
36
			$colonnes += Array(
37
				'nom_sel'			=> self::GenColInfo('nom_sel', 'Espèce'),
38
				'nom_sel_nn'		=> self::GenColInfo('nom_sel_nn', 'Numéro nomenclatural', 0, NULL, NULL, FALSE),
1656 raphael 39
				'nom_ret'			=> self::GenColInfo('nom_ret', 'Nom retenu', 0, NULL, NULL, FALSE),
40
				'nom_ret_nn'		=> self::GenColInfo('nom_ret_nn', 'Numéro nomenclatural nom retenu', 0, NULL, NULL, FALSE),
41
				'nt'				=> self::GenColInfo('nt', 'Numéro taxonomique', 0, NULL, NULL, FALSE),
42
				'famille'			=> self::GenColInfo('famille', 'Famille', 0, NULL, NULL, FALSE),
43
				'nom_referentiel'	=> self::GenColInfo('nom_referentiel', 'Referentiel taxonomique'),
44
				'zone_geo'			=> self::GenColInfo('zone_geo', 'Commune'),
1654 aurelien 45
				'ce_zone_geo'		=> self::GenColInfo('ce_zone_geo', 'Identifiant Commune', 0, 'convertirCodeZoneGeoVersDepartement'),
1656 raphael 46
				'date_observation'	=> self::GenColInfo('date_observation', 'Date', 0, 'formaterDate'),
47
				'lieudit'			=> self::GenColInfo('lieudit', 'Lieu-dit'),
48
				'station'			=> self::GenColInfo('station', 'Station'),
49
				'milieu'			=> self::GenColInfo('milieu', 'Milieu'),
50
				'commentaire'		=> self::GenColInfo('commentaire', 'Notes'),
51
				'latitude'			=> self::GenColInfo('latitude', 'Latitude', 1),
1654 aurelien 52
				'longitude'			=> self::GenColInfo('longitude', 'Longitude', 1),
53
				'geodatum'			=> self::GenColInfo('geodatum', 'Référentiel Géographique', 1, NULL, NULL, FALSE),
54
			);
55
		}
56
 
57
		if(isset($groupe_de_champs['avance'])) {
1656 raphael 58
			$colonnes += array(
59
			   // TODO: importable = FALSE car pas de merge de données importées
60
			   'ordre'				=> self::GenColInfo('ordre', 'Ordre', 1, NULL, NULL, FALSE),
61
			   'id_observation'		=> self::GenColInfo('id_observation', 'Identifiant', 1, NULL, NULL, FALSE),
62
 
63
			   'mots_cles_texte'	=> self::GenColInfo('mots_cles_texte', 'Mots Clés', 1),
64
			   'commentaire'		=> self::GenColInfo('commentaire', 'Commentaires', 1),
65
			   'date_creation'		=> self::GenColInfo('date_creation', 'Date Création', 1, NULL, NULL, FALSE),
66
			   'date_modification'	=> self::GenColInfo('date_modification', 'Date Modification', 1, NULL, NULL, FALSE),
67
 
68
			   // rappel transmission = 1, signifie simplement "public"
69
			   // des données importées peuvent être d'emblée "publiques"
70
			   // "importable" = TRUE
71
			   'transmission'		=> self::GenColInfo('transmission', 'Transmis', 1),
72
			   'date_transmission'	=> self::GenColInfo('date_transmission', 'Date Transmission', 1, NULL, NULL, FALSE),
73
			   'abondance'			=> self::GenColInfo('abondance', 'Abondance', 1),
74
			   'certitude'			=> self::GenColInfo('certitude', 'Certitude', 1),
75
			   'phenologie'			=> self::GenColInfo('phenologie', 'Phénologie', 1),
76
 
77
			   // XXX: getImages() dépend du contexte de Cel, et doit être appelée comme cas particulier
78
			   // cf ExportXLS::traiterLigneObservation()
1687 raphael 79
			   'images'				=> self::GenColInfo('images', 'Image(s)', 1, NULL, NULL /* cas particulier 'getImages' */, TRUE),
1685 raphael 80
 
81
			   /* 'nom_commun'			=> self::GenColInfo('nom_commun', 'Nom Commun', 1, NULL, 'getNomCommun', FALSE),
82
				  'nom-commun'			=> self::GenColInfo('nom-commun', 'Nom Commun', 1, NULL, 'getNomCommun_v2'),
83
				  'nom-commun'			=> self::GenColInfo('nom-commun', 'Nom Commun', 1, NULL, 'getNomCommun_v3'), */
1687 raphael 84
			   'nom-commun'			=> self::GenColInfo('nom-commun', 'Nom Commun', 1, NULL, NULL /* cas particu 'getNomCommun_v4' */),
1685 raphael 85
 
1654 aurelien 86
			);
87
		}
1656 raphael 88
 
1654 aurelien 89
		return $colonnes;
90
	}
91
 
1656 raphael 92
	public static function getIntitulesColonnes($colonnes) {
1671 aurelien 93
		return array_map(array('FormateurGroupeColonne', 'retournerNomItem'), $colonnes);
1654 aurelien 94
	}
95
 
1671 aurelien 96
	public static function retournerNomItem(&$item) {
97
		return $item['nom'];
98
	}
99
 
1656 raphael 100
	public static function getLigneObservation(&$obs, &$colonnes, $cel = false) {
1659 aurelien 101
 
1654 aurelien 102
		$ligne_formatee = array();
103
		foreach($colonnes as $abbrev => $colonne) {
104
			$valeur = null;
105
			if($colonne['extra'] == 2) continue;
106
 
107
			// valeur direct depuis cel_obs ?
108
			if(isset($obs[$abbrev])) $valeur = $obs[$abbrev];
109
 
110
			// pré-processeur de la champs
111
			if(function_exists($colonne['fonction'])) {
112
				$valeur = $colonne['fonction']($valeur);
113
			} elseif(method_exists(__CLASS__, $colonne['fonction'])) {
114
				$valeur = call_user_func(array(__CLASS__, $colonne['fonction']), $valeur);
115
			} elseif($colonne['fonction']) {
116
				die("méthode {$colonne['fonction']} introuvable");
117
			}
118
			// fonction pour obtenir des champs (étendus)
119
			elseif(function_exists($colonne['fonction_data'])) {
120
				$valeur = $colonne['fonction_data']($obs);
121
			}
1687 raphael 122
			elseif(method_exists(__CLASS__, $colonne['fonction_data'])) {
1654 aurelien 123
				$valeur = call_user_func(array(__CLASS__, $colonne['fonction_data']), $obs);
124
			}
125
 
126
			// // cette section devrait être vide:
127
			// // cas particuliers ingérable avec l'architecture actuelle:
128
			if(false && $abbrev == 'date_observation' && $valeur == "0000-00-00") {
129
				/* blah */
130
			}
1685 raphael 131
			// ici à cause du passage de $cel ($this), TODO: DB en Singleton !
1656 raphael 132
			if($abbrev == 'images') {
133
				$valeur = FormateurGroupeColonne::getImages($obs, $cel->id_utilisateur, $cel);
134
			}
1685 raphael 135
			if($abbrev == 'nom-commun') {
136
				$valeur = FormateurGroupeColonne::getNomCommun_v4($obs, $cel);
137
			}
1654 aurelien 138
 
139
			if($valeur == null) {
140
				$valeur = "";
141
			}
142
 
143
			// // fin de section "cas particuliers"
144
			$ligne_formatee[] = $valeur;
145
		}
146
		return $ligne_formatee;
147
	}
148
 
149
	/*
150
	* Wrapper générant un tableau associatif:
151
 
152
	* @param $abbrev (obligatoire): nom court de colonne, largement utilisé lors de l'import.
153
	*		  En effet chaque ligne importée est accessible à l'aide du `define` de $abbrev en majuscule, préfixé de "C_"
154
	*		  Exemple: $ligne[C_LONGITUDE] pour "longitude".
155
	*		  cf: ImportXLS::detectionEntete()
156
 
157
	* @param $nom (obligatoire): nom complet de colonne (utilisé pour la ligne d'en-tête)
158
 
159
	* @param $is_extra:
160
	* Si 0, la colonne est une colonne standard
161
	* Si 1, la colonne est extra [le plus souvent générée automatiquement]
162
	*		 (auquel cas une bordure bleue entoure son nom dans la ligne d'entête)
163
	* Si 2, la colonne n'est pas traité à l'export, mais une définition peut lui être donnée
164
	*		 qui pourra être utilisée à l'import, exemple: "image"
165
 
166
	* @param $fonction (optionnel): un nom d'un fonction de préprocessing
167
	* 		  $fonction doit prendre comme seul argument la valeur d'origine et retourner la valeur transformée
168
 
169
	* @param $fonction_data (optionnel): une *méthode* d'obtention de donnée
170
	* 		  $fonction_data doit prendre comme premier argument le tableau des champs de l'enregistrement existant
171
	*		  $fonction_data doit retourner une valeur
172
 
173
	* @param $importable (optionnel): défini si la colonne est traitée (ou absolument ignorée par PHPExcel) lors de
174
	*		  l'import.
175
 
176
	*/
177
	static function GenColInfo($abbrev, $nom, $is_extra = 0, $fonction = NULL, $fonction_data = NULL, $importable = TRUE) {
178
		return Array('abbrev' => $abbrev,
1656 raphael 179
					 'nom' => $nom,
180
					 'extra' => $is_extra ? 1 : 0,
181
					 'fonction' => $fonction,
182
					 'fonction_data' => $fonction_data,
183
					 'importable' => $importable
1654 aurelien 184
		);
185
	}
186
 
1656 raphael 187
	static function formaterDate($date_heure_mysql) {
1671 aurelien 188
		//return "";
1654 aurelien 189
		if (!$date_heure_mysql || $date_heure_mysql == "0000-00-00 00:00:00") return "00/00/0000";
1671 aurelien 190
		// malheureusement pas disponible en php < 5.3
191
		//$date_format = DateTime::createFromFormat("Y-m-d H:i:s", $date_heure_mysql);
192
		$val = explode(' ', $date_heure_mysql);
193
		$date = explode('-', $val[0]);
194
		$heure = explode(':', $val[1]);
195
		$timestamp = mktime((int) $heure[0], (int) $heure[1], (int) $heure[2], (int) $date[1], (int) $date[2], (int) $date[0]);
1654 aurelien 196
		if(!$timestamp) return "00/00/0000";
1656 raphael 197
		// TODO: les widgets ne font malheureusement pas usage de l'heure dans le CEL
198
		// TODO: si modification, ne pas oublier de modifier le format d'import correspondant
199
		//	dans ImportXLS (actuellement: "d/m/Y")
200
		$date_formatee = strftime('%d/%m/%Y', $timestamp);
1654 aurelien 201
		if(!$date_formatee) return "00/00/0000";
202
		return $date_formatee;
203
	}
204
 
1656 raphael 205
	static function getImages($obs, $id_utilisateur, $cel) {
206
		if(! $id_utilisateur) return NULL;
207
		$rec = $cel->requeter(
1654 aurelien 208
			sprintf("SELECT GROUP_CONCAT(nom_original SEPARATOR '%s') FROM cel_images i"
1656 raphael 209
					." LEFT JOIN cel_obs_images oi ON (i.id_image = oi.id_image)"
210
					." LEFT JOIN cel_obs o ON (oi.id_observation = o.id_observation)"
211
					." WHERE ce_utilisateur = %d",
212
					SEPARATEUR_IMAGES,
213
					$id_utilisateur));
214
		return $rec ? array_pop($rec) : NULL;
1654 aurelien 215
	}
216
 
217
	public static function convertirCodeZoneGeoVersDepartement($code_zone_geo) {
218
		$code_departement = '';
219
		if(self::estUnCodeInseeDepartement($code_zone_geo)) {
220
			$code_departement = substr(ltrim($code_zone_geo,'INSEE-C:'),0,2);
221
		}
222
 
223
		return $code_departement;
224
	}
225
 
226
	public static function estUnCodeInseeDepartement($code_a_tester) {
227
		return preg_match('/^INSEE-C:[0-9]{5}/',$code_a_tester);
228
	}
229
 
230
 
231
	// TODO: référentiel ne devrait pas être généré au moment d'un Config::get,
232
	// comme dans Config::get('nomsVernaRechercheLimiteeTpl')
233
	// Par exemple, la variable pour "nva" ?
234
	function getNomCommun($obs) {
235
		$langue = 'fra';
236
		list($referentiel) = explode(':', strtolower($obs['nom_referentiel']));
237
		if($referentiel == 'bdtfx') $referentiel = 'nvjfl';
238
		else return '';
239
 
240
		$cache_id = $referentiel . '-' . $obs['nt'] . '-' . $langue;
1657 raphael 241
		if(isset(self::$cache['getNomCommun'][$cache_id])) {
1656 raphael 242
			//debug: error_log("require url_service_nom_attribution: OK ! (pour \"{$obs['nom_ret']}\")");
1657 raphael 243
			return self::$cache['getNomCommun'][$cache_id];
1654 aurelien 244
		}
245
		// pas de cache:
246
		//debug: error_log("require url_service_nom_attribution pour \"{$obs['nom_ret']}\"");
247
 
248
		// pour bdtfx:
249
		// /service:eflore:0.1/nvjfl/noms-vernaculaires/attributions?masque.nt=X&masque.lg=fra&retour.champs=num_statut
250
		// /projet/services/modules/0.1/nvjfl/NomsVernaculaires.php
251
		$url = str_replace(Array('{referentiel}', '{valeur}', '{langue}'),
1656 raphael 252
						   Array($referentiel, $obs['nt'], $langue),
1657 raphael 253
						   self::$config['eflore']['url_service_nom_attribution']) . // TODO !
1656 raphael 254
			"&retour.champs=num_statut";
1654 aurelien 255
		$noms = @json_decode(file_get_contents($url));
256
		if(! $noms) return '';
1673 raphael 257
		$noms = array_filter((array)($noms->resultat), array($this, retournerNumStatutUn)); // XXX: php 5.3
1654 aurelien 258
		$nom = array_pop($noms)->nom_vernaculaire;
259
 
260
		// cache
1657 raphael 261
		self::$cache['getNomCommun'][$cache_id] = $nom;
1654 aurelien 262
		return $nom;
263
	}
264
 
1671 aurelien 265
	private function retournerNumStatutUn(&$item) {
266
		return ($item->num_statut == 1);
267
	}
1673 raphael 268
 
269
	private function retournerNumStatutUnArr(&$item) {
270
		return ($item['num_statut'] == 1);
271
	}
1671 aurelien 272
 
1656 raphael 273
	// si getNomCommun_v2 ou getNomCommun_v3 sont utilisés
274
	/* require_once('/home/raphael/eflore/framework/framework/Framework.php');
275
	Framework::setCheminAppli("/home/raphael/eflore/projets/services/index.php");
276
	Framework::setInfoAppli(Config::get('info'));
277
	require_once('/home/raphael/eflore/projets/services/modules/0.1/Projets.php');*/
1654 aurelien 278
 
279
	/* Tente de bootstraper le framework au plus court et d'initialiser une instance de
1656 raphael 280
	   NomsVernaculaires pour obtenir le nom commun */
1654 aurelien 281
	function getNomCommun_v2($obs) {
282
		static $service;
1656 raphael 283
		$service = new Projets();
1654 aurelien 284
 
285
		$langue = 'fra';
286
		list($referentiel) = explode(':', strtolower($obs['nom_referentiel']));
287
		if($referentiel == 'bdtfx') $referentiel = 'nvjfl';
288
		else return '';
289
 
290
		$cache_id = $referentiel . '-' . $obs['nt'] . '-' . $langue;
1657 raphael 291
		if(isset(self::$cache['getNomCommun'][$cache_id])) {
1656 raphael 292
			error_log("require NomsVernaculaires.php: OK ! (pour \"{$obs['nom_ret']}\")");
1657 raphael 293
			return self::$cache['getNomCommun'][$cache_id];
1654 aurelien 294
		}
295
		// pas de cache:
296
		error_log("require NomsVernaculaires.php pour \"{$obs['nom_ret']}\"");
297
 
1656 raphael 298
		$donnees = Array('masque.nt' => $obs['nt'],
299
						 'masque.lg' => $langue,
300
						 'retour.champs' => 'num_statut');
1654 aurelien 301
		$noms = $service->consulter(Array('nvjfl', 'noms-vernaculaires'), $donnees);
302
 
303
		if(! $noms) return '';
1673 raphael 304
		$noms = array_filter((array)($noms->resultat), array($this, retournerNumStatutUn)); // XXX: php 5.3
1654 aurelien 305
		$nom = array_pop($noms)->nom_vernaculaire;
306
 
1656 raphael 307
		// cache
1657 raphael 308
		self::$cache['getNomCommun'][$cache_id] = $nom;
1654 aurelien 309
		return $nom;
310
	}
311
 
312
 
313
	/* Effectue un bootstraping plus sage que ci-dessus, mais le gain d'efficacité
1656 raphael 314
	   n'est pas aussi retentissant qu'espéré */
1654 aurelien 315
	static $service;
316
	function getNomCommun_v3($obs) {
317
		if(! $this->service) $this->service = new Projets();
318
 
319
		$langue = 'fra';
320
		list($referentiel) = explode(':', strtolower($obs['nom_referentiel']));
321
		if($referentiel == 'bdtfx') $referentiel = 'nvjfl';
322
		else return '';
323
 
324
		$cache_id = $referentiel . '-' . $obs['nt'] . '-' . $langue;
1657 raphael 325
		if(isset(self::$cache['getNomCommun'][$cache_id])) {
1656 raphael 326
			error_log("require NomsVernaculaires.php: OK ! (pour \"{$obs['nom_ret']}\")");
1657 raphael 327
			return self::$cache['getNomCommun'][$cache_id];
1654 aurelien 328
		}
329
		// pas de cache:
1656 raphael 330
		error_log("require NomsVernaculaires.php pour \"{$obs['nom_ret']}\"");
1654 aurelien 331
 
332
		$donnees = Array('masque.nt' => $obs['nt'],
1656 raphael 333
						 'masque.lg' => $langue,
334
						 'retour.champs' => 'conseil_emploi');
335
		$this->service->initialiserRessourcesEtParametres(Array('nvjfl', 'noms-vernaculaires', 'attributions'), $donnees);
1654 aurelien 336
		try {
1656 raphael 337
			$noms = $this->service->traiterRessources();
338
		} catch(Exception $e) {
339
			return '';
1654 aurelien 340
		}
1656 raphael 341
		if(! $noms) return '';
1673 raphael 342
		$noms = array_filter($noms['resultat'], array($this, retournerNumStatutUnArr)); // XXX: php 5.3
1656 raphael 343
		$premier_nom = array_pop($noms);
1654 aurelien 344
		$nom = $premier_nom['nom_vernaculaire'];
345
 
346
		// cache
1657 raphael 347
		self::$cache['getNomCommun'][$cache_id] = $nom;
1654 aurelien 348
		return $nom;
349
	}
1685 raphael 350
 
351
	static function getNomCommun_v4($obs, $cel) {
1689 raphael 352
		static $is_table = false;
1685 raphael 353
		if(! $obs['nt']) return NULL;
1689 raphael 354
 
355
		if(!$is_table) {
356
			// une seule fois
357
			if(! $cel->executerRequete("SHOW TABLES LIKE 'cel_references'", Cel::SQL_RETOUR_LIGNE)) return NULL;
358
			$is_table = true;
359
		}
1685 raphael 360
		$langue = 'fra';
361
		list($referentiel) = explode(':', strtolower($obs['nom_referentiel']));
362
		$cache_id = $referentiel . '-' . $obs['nt'] . '-' . $langue;
363
 
364
		if(isset(self::$cache['getNomCommun'][$cache_id])) return self::$cache['getNomCommun'][$cache_id];
365
 
366
		// pas de cache:
367
		$donnees = Array('masque.nt' => $obs['nt'],
368
						 'masque.lg' => $langue,
369
						 'retour.champs' => 'conseil_emploi');
370
 
371
		$nom = $cel->executerRequete(sprintf("SELECT nom_commun FROM cel_references " .
372
											 "WHERE referentiel = '%s' AND num_taxon = %d LIMIT 1",
373
											 $referentiel,
374
											 $obs['nt']),
375
									 Cel::SQL_RETOUR_LIGNE);
376
 
377
		if(! $nom) return NULL;
378
		$nom = $nom["nom_commun"];
379
 
380
		// cache
381
		self::$cache['getNomCommun'][$cache_id] = $nom;
382
		return $nom;
383
	}
1654 aurelien 384
 
1685 raphael 385
 
1654 aurelien 386
}