Subversion Repositories eFlore/Applications.cel

Rev

Rev 1754 | Rev 1759 | 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
define('SEPARATEUR_IMAGES', ",");
12
 
1654 aurelien 13
Class FormateurGroupeColonne {
1656 raphael 14
 
1702 raphael 15
	// cache pour les données des fonctions
1656 raphael 16
	static $cache = Array();
17
 
1702 raphael 18
	// test sur la table cel_references, mis à TRUE si la table existe
19
	static $is_table = false;
20
 
1714 raphael 21
	// les groupes de champs utilisables
22
	static $fieldGroups = array(
23
		'standard',
24
		'avance',
25
		'etendu',
26
		'baseflor'
27
	);
28
 
1702 raphael 29
	// les données baseflor à récupérer: colonnes présentes dans cel_references
30
	// et intitulés associés
31
	static $baseflor_col = array(
32
		"ve_lumiere" => "Lumière",
33
		"ve_temperature" => "Température",
34
		"ve_continentalite" => "Continentalité",
35
		"ve_humidite_atmos" => "Humidité Atmosphérique",
36
		"ve_humidite_edaph" => "Humidité",
37
		"ve_reaction_sol" => "Réaction (pH)",
38
		"ve_nutriments_sol" => "Nutriments",
39
		"ve_salinite" => "Salinité",
40
		"ve_texture_sol" => "Texture" ,
41
		"ve_mat_org_sol" => "Matière Organique",
42
		"catminat_code" => "Code Catminat",
43
		"syntaxon" => "Syntaxon",
44
	);
45
 
1741 raphael 46
	// TODO: dirty, ordre des champs étendus... souhaité pour florilèges:
47
	static $ordre_champ_etendus_Florileges = array(
48
		"personneStructure",
49
		"personneService",
50
		"personneFonction",
51
		"adresse",
52
		"latitudeDebutRue",
53
		"longitudeDebutRue",
54
		"latitudeFinRue",
55
		"longitudeFinRue",
56
		"typoUrbaine",
57
		"revetementSol",
58
		"presenceZoneVegetalise",
59
		"hauteurBatimentAvoisinant",
60
		"intensiteGestion",
61
		"periodiciteTraitementPhyto",
62
		"dateArretTraitementPhyto",
63
		"itineraireGestion",
64
		"dateDerniereIntervention",
65
		"hauteurPlante",
66
		"resistanceTraitementPhyto",
67
		"vitesseCroissance",
68
		"perceptionTechnicien",
69
		"perceptionRiverainMauvaise",
70
	);
71
 
1714 raphael 72
	static function colGroupsValidation($groupe_de_champs = 'standard,avance') {
73
		if(! $groupe_de_champs) return FALSE;
74
		if(is_string($groupe_de_champs)) {
75
			$groupe_de_champs = array_flip(explode(',', $groupe_de_champs));
76
		}
77
		elseif(is_array($groupe_de_champs)) {
78
			$groupe_de_champs = array_flip($groupe_de_champs);
79
		}
80
		else {
81
			return NULL;
82
		}
83
		$groupe_de_champs = array_intersect_key(array_flip(self::$fieldGroups),
84
												$groupe_de_champs);
85
		if(!$groupe_de_champs) return FALSE;
86
		// toujours ajouter standard
87
		$groupe_de_champs['standard'] = TRUE;
88
		return implode(',', array_keys($groupe_de_champs));
89
	}
90
 
1654 aurelien 91
	/*
92
	* @param $fieldSets: un liste de noms de colonnes ou de sets de colonnes
93
	*		séparés par des virgules
94
	* 		eg: "espece" ou "champs-etendus", ...
95
	*
96
	* @return: un tableau associatif déjà ordonné
97
	* 		clé: abbrev [machine-name] de la colonne (eg: "espece" ou "mot-clef")
98
	* 		valeur: des données relative à cette colonne, cf GenColInfo
99
	*
1757 raphael 100
	* Si la colonne n'utilise pas de fonction de récupération particulière
101
	* (ie: si le champ exportés [ou importé] correspond exactement au champ dans la base de donnée)
102
	* Alors 'abbrev' doit avoir la même valeur que le nom de la colonne dans la table mysql `cel_obs`.
1654 aurelien 103
	*
104
	*/
105
	static function nomEnsembleVersListeColonnes($groupe_de_champs = 'standard') {
106
		if(! $groupe_de_champs) $groupe_de_champs = 'standard';
1711 raphael 107
		if(is_string($groupe_de_champs)) {
108
			$groupe_de_champs = array_flip(explode(',', $groupe_de_champs));
109
		}
110
		elseif(is_array($groupe_de_champs)) {
111
			$groupe_de_champs = array_flip($groupe_de_champs);
112
		}
113
		else {
114
			return NULL;
115
		}
1714 raphael 116
		$groupe_de_champs = array_intersect_key(array_flip(self::$fieldGroups),
1711 raphael 117
												$groupe_de_champs);
118
		if(!$groupe_de_champs) return NULL;
119
 
1656 raphael 120
		$colonnes = Array();
1654 aurelien 121
 
122
		if(isset($groupe_de_champs['standard'])) {
123
			$colonnes += Array(
1757 raphael 124
				'nom_sel'			=> self::GenColInfo(Array('abbrev' => 'nom_sel',
125
															  'nom' => 'Espèce')),
126
				'nom_sel_nn'		=> self::GenColInfo(Array('abbrev' => 'nom_sel_nn',
127
															  'nom' => 'Numéro nomenclatural',
128
															  'importable' => FALSE)),
129
				'nom_ret'			=> self::GenColInfo(Array('abbrev' => 'nom_ret',
130
															  'nom' => 'Nom retenu',
131
															  'importable' => FALSE)),
132
				'nom_ret_nn'		=> self::GenColInfo(Array('abbrev' => 'nom_ret_nn',
133
															  'nom' => 'Numéro nomenclatural nom retenu',
134
															  'importable' => FALSE)),
135
				'nt'				=> self::GenColInfo(Array('abbrev' => 'nt',
136
															  'nom' => 'Numéro taxonomique',
137
															  'importable' => FALSE)),
138
				'famille'			=> self::GenColInfo(Array('abbrev' => 'famille',
139
															  'nom' => 'Famille',
140
															  'importable' => FALSE)),
141
				'nom_referentiel'	=> self::GenColInfo(Array('abbrev' => 'nom_referentiel',
142
															  'nom' => 'Referentiel taxonomique')),
143
				'zone_geo'			=> self::GenColInfo(Array('abbrev' => 'zone_geo',
144
															  'nom' => 'Commune')),
145
				'ce_zone_geo'		=> self::GenColInfo(Array('abbrev' => 'ce_zone_geo',
146
															  'nom' => 'Identifiant Commune',
147
															  'fonction' => 'convertirCodeZoneGeoVersDepartement')),
148
				'date_observation'	=> self::GenColInfo(Array('abbrev' => 'date_observation',
149
															  'nom' => 'Date',
150
															  'fonction' => 'formaterDate')),
151
				'lieudit'			=> self::GenColInfo(Array('abbrev' => 'lieudit',
152
															  'nom' => 'Lieu-dit')),
153
				'station'			=> self::GenColInfo(Array('abbrev' => 'station',
154
															  'nom' => 'Station')),
155
				'milieu'			=> self::GenColInfo(Array('abbrev' => 'milieu',
156
															  'nom' => 'Milieu')),
157
				'commentaire'		=> self::GenColInfo(Array('abbrev' => 'commentaire',
158
															  'nom' => 'Notes')),
159
				'latitude'			=> self::GenColInfo(Array('abbrev' => 'latitude',
160
															  'nom' => 'Latitude',
161
															  'extra' => 1,
162
															  'fonction' => 'trim0')),
163
				'longitude'			=> self::GenColInfo(Array('abbrev' => 'longitude',
164
															  'nom' => 'Longitude',
165
															  'extra' => 1,
166
															  'fonction' => 'trim0')),
167
				'altitude'			=> self::GenColInfo(Array('abbrev' => 'altitude',
168
															  'nom' => 'Altitude',
169
															  'extra' => 1,
170
															  'fonction' => 'trim0')),
171
				'geodatum'			=> self::GenColInfo(Array('abbrev' => 'geodatum',
172
															  'nom' => 'Référentiel Géographique',
173
															  'extra' => 1,
174
															  'importable' => FALSE)),
1654 aurelien 175
			);
176
		}
177
 
178
		if(isset($groupe_de_champs['avance'])) {
1656 raphael 179
			$colonnes += array(
1757 raphael 180
				// TODO: importable = FALSE car pas de merge de données importées
181
				'ordre'				=> self::GenColInfo(Array('abbrev' => 'ordre',
182
															  'nom' => 'Ordre',
183
															  'extra' => 1,
184
															  'importable' => FALSE)),
185
				'id_observation'	=> self::GenColInfo(Array('abbrev' => 'id_observation',
186
															  'nom' => 'Identifiant',
187
															  'extra' => 1,
188
															  'importable' => FALSE)),
1656 raphael 189
 
1757 raphael 190
				'mots_cles_texte'	=> self::GenColInfo(Array('abbrev' => 'mots_cles_texte',
191
															  'nom' => 'Mots Clés',
192
															  'extra' => 1)),
193
				'date_creation'		=> self::GenColInfo(Array('abbrev' => 'date_creation',
194
															  'nom' => 'Date Création',
195
															  'extra' => 1,
196
															  'importable' => FALSE)),
197
				'date_modification'	=> self::GenColInfo(Array('abbrev' => 'date_modification',
198
															  'nom' => 'Date Modification',
199
															  'extra' => 1,
200
															  'importable' => FALSE)),
1656 raphael 201
 
1757 raphael 202
				// rappel transmission = 1, signifie simplement "public"
203
				// des données importées peuvent être d'emblée "publiques"
204
				// "importable" = TRUE
205
				'transmission'		=> self::GenColInfo(Array('abbrev' => 'transmission',
206
															  'nom' => 'Transmis',
207
															  'extra' => 1,
208
															  'fonction' => 'boolOuiNon')),
209
				'date_transmission'	=> self::GenColInfo(Array('abbrev' => 'date_transmission',
210
															  'nom' => 'Date Transmission',
211
															  'extra' => 1,
212
															  'importable' => FALSE)),
213
				'abondance'			=> self::GenColInfo(Array('abbrev' => 'abondance',
214
															  'nom' => 'Abondance',
215
															  'extra' => 1)),
216
				'certitude'			=> self::GenColInfo(Array('abbrev' => 'certitude',
217
															  'nom' => 'Certitude',
218
															  'extra' => 1)),
219
				'phenologie'		=> self::GenColInfo(Array('abbrev' => 'phenologie',
220
															  'nom' => 'Phénologie',
221
															  'extra' => 1)),
222
 
223
				// XXX: getImages() dépend du contexte de Cel, et doit être appelée comme cas particulier
224
				// cf ExportXLS::traiterLigneObservation()
225
				'images'			=> self::GenColInfo(Array('abbrev' => 'images',
226
															  'nom' => 'Image(s)',
227
															  'extra' => 1,
228
															  'fonction_data' => NULL /* cas particulier 'getImages' */,
229
															  'importable' => TRUE,
230
															  //'preload' => array(__CLASS__, 'getImages_preload')//TODO
231
				)),
1656 raphael 232
 
1757 raphael 233
				/* 'nom_commun'			=> self::GenColInfo(Array('abbrev' => 'nom_commun',
234
				   'nom' => 'Nom Commun',
235
				   'extra' => 1,
236
				   'fonction_data' => 'getNomCommun',
237
				   'importable' => FALSE),
1685 raphael 238
 
1757 raphael 239
				   'nom-commun'			=> self::GenColInfo(Array('abbrev' => 'nom-commun',
240
				   'nom' => 'Nom Commun',
241
				   'extra' => 1,
242
				   'fonction_data' => 'getNomCommun_v2'),
243
 
244
				   'nom-commun'			=> self::GenColInfo(Array('abbrev' => 'nom-commun',
245
				   'nom' => 'Nom Commun',
246
				   'extra' => 1,
247
				   'fonction_data' => 'getNomCommun_v3'),
248
				   'importable' => FALSE), */
249
				'nom-commun'		=> self::GenColInfo(Array('abbrev' => 'nom-commun',
250
															  'nom' => 'Nom Commun',
251
															  'extra' => 1,
252
															  'fonction_data' => NULL /* cas particu 'getNomCommun_v4' */,
253
															  'preload' => array(__CLASS__, 'getNomCommun_preload')))
1702 raphael 254
			);
255
		}
1685 raphael 256
 
1702 raphael 257
		if(isset($groupe_de_champs['baseflor'])) {
258
			$colonnes += array(
259
				// champ dynamique
1757 raphael 260
				'baseflor'			=> self::GenColInfo(Array('abbrev' => 'baseflor',
261
															  'nom' => '',
262
															  'extra' => 1,
263
															  'importable' => FALSE,
264
															  'preload' => array(__CLASS__, 'baseflor_preload'),
265
															  'dyna' => array(__CLASS__, 'baseflor_ligne'))),
1654 aurelien 266
			);
1702 raphael 267
		}
1656 raphael 268
 
1714 raphael 269
		if(isset($groupe_de_champs['etendu'])) {
270
			$colonnes += array(
271
				// champ dynamique
1757 raphael 272
				'etendu'			=> self::GenColInfo(Array('abbrev' => 'etendu',
273
															  'nom' => '',
274
															  'extra' => 1,
275
															  'importable' => FALSE,
276
															  'preload' => array(__CLASS__, 'champsEtendus_preload'),
277
															  'dyna' => array(__CLASS__, 'champsEtendus_ligne'))),
1714 raphael 278
			);
279
		}
1654 aurelien 280
		return $colonnes;
281
	}
1694 raphael 282
 
283
	static function preload($colonnes, $cel, $ids) {
284
		$result = array();
285
		foreach($colonnes as $abbrev => $colonne) {
286
			if(!$colonne['preload']) continue;
1702 raphael 287
			$result[$abbrev] = call_user_func($colonne['preload'], $cel, $ids);
1694 raphael 288
		}
289
		return $result;
290
	}
1654 aurelien 291
 
1656 raphael 292
	public static function getIntitulesColonnes($colonnes) {
1702 raphael 293
		// array_filter pour supprimer les colonnes "dynamique" n'ayant pas défini $nom (cf GenColInfo())
294
		return array_filter(array_map(array('FormateurGroupeColonne', 'retournerNomItem'), $colonnes));
1654 aurelien 295
	}
296
 
1671 aurelien 297
	public static function retournerNomItem(&$item) {
298
		return $item['nom'];
299
	}
1694 raphael 300
 
1656 raphael 301
	public static function getLigneObservation(&$obs, &$colonnes, $cel = false) {
1757 raphael 302
 
1654 aurelien 303
		$ligne_formatee = array();
304
		foreach($colonnes as $abbrev => $colonne) {
305
			$valeur = null;
1702 raphael 306
			if($colonne['extra'] == 2 || ! is_null($colonne['dyna'])) continue;
1654 aurelien 307
 
308
			// valeur direct depuis cel_obs ?
309
			if(isset($obs[$abbrev])) $valeur = $obs[$abbrev];
310
 
311
			// pré-processeur de la champs
312
			if(function_exists($colonne['fonction'])) {
313
				$valeur = $colonne['fonction']($valeur);
314
			} elseif(method_exists(__CLASS__, $colonne['fonction'])) {
315
				$valeur = call_user_func(array(__CLASS__, $colonne['fonction']), $valeur);
316
			} elseif($colonne['fonction']) {
317
				die("méthode {$colonne['fonction']} introuvable");
318
			}
319
			// fonction pour obtenir des champs (étendus)
320
			elseif(function_exists($colonne['fonction_data'])) {
321
				$valeur = $colonne['fonction_data']($obs);
322
			}
1687 raphael 323
			elseif(method_exists(__CLASS__, $colonne['fonction_data'])) {
1654 aurelien 324
				$valeur = call_user_func(array(__CLASS__, $colonne['fonction_data']), $obs);
325
			}
326
 
327
			// // cette section devrait être vide:
328
			// // cas particuliers ingérable avec l'architecture actuelle:
329
			if(false && $abbrev == 'date_observation' && $valeur == "0000-00-00") {
330
				/* blah */
331
			}
1685 raphael 332
			// ici à cause du passage de $cel ($this), TODO: DB en Singleton !
1656 raphael 333
			if($abbrev == 'images') {
334
				$valeur = FormateurGroupeColonne::getImages($obs, $cel->id_utilisateur, $cel);
335
			}
1685 raphael 336
			if($abbrev == 'nom-commun') {
337
				$valeur = FormateurGroupeColonne::getNomCommun_v4($obs, $cel);
338
			}
1654 aurelien 339
 
340
			if($valeur == null) {
341
				$valeur = "";
342
			}
343
 
344
			// // fin de section "cas particuliers"
345
			$ligne_formatee[] = $valeur;
346
		}
1694 raphael 347
 
1702 raphael 348
		// uniquement les champŝ dynamiques
349
		foreach($colonnes as $abbrev => $colonne) {
350
			$valeur = null;
351
			if(is_null($colonne['dyna'])) continue;
1706 raphael 352
			// XXX: PHP-5.3
353
			call_user_func_array($colonne['dyna'],
354
								 array($cel, $obs, &$ligne_formatee));
1702 raphael 355
		}
1694 raphael 356
 
1654 aurelien 357
		return $ligne_formatee;
358
	}
359
 
360
	/*
361
	* Wrapper générant un tableau associatif:
1694 raphael 362
	* Ne pas changer les valeurs par défaut du prototype sans réflexion sur l'implication pour nomEnsembleVersListeColonnes()
1654 aurelien 363
 
364
	* @param $abbrev (obligatoire): nom court de colonne, largement utilisé lors de l'import.
365
	*		  En effet chaque ligne importée est accessible à l'aide du `define` de $abbrev en majuscule, préfixé de "C_"
366
	*		  Exemple: $ligne[C_LONGITUDE] pour "longitude".
367
	*		  cf: ImportXLS::detectionEntete()
368
 
369
	* @param $nom (obligatoire): nom complet de colonne (utilisé pour la ligne d'en-tête)
1702 raphael 370
	*		  Les définition de champs dynamique (correspondant à de multiples colonnes) doivent laisser cette valeur
371
	*		  vide afin de ne pas créer une colonne supplémentaire erronée.
1654 aurelien 372
 
373
	* @param $is_extra:
374
	* Si 0, la colonne est une colonne standard
375
	* Si 1, la colonne est extra [le plus souvent générée automatiquement]
376
	*		 (auquel cas une bordure bleue entoure son nom dans la ligne d'entête)
377
	* Si 2, la colonne n'est pas traité à l'export, mais une définition peut lui être donnée
378
	*		 qui pourra être utilisée à l'import, exemple: "image"
379
 
380
	* @param $fonction (optionnel): un nom d'un fonction de préprocessing
381
	* 		  $fonction doit prendre comme seul argument la valeur d'origine et retourner la valeur transformée
382
 
383
	* @param $fonction_data (optionnel): une *méthode* d'obtention de donnée
384
	* 		  $fonction_data doit prendre comme premier argument le tableau des champs de l'enregistrement existant
385
	*		  $fonction_data doit retourner une valeur
386
 
387
	* @param $importable (optionnel): défini si la colonne est traitée (ou absolument ignorée par PHPExcel) lors de
388
	*		  l'import.
1694 raphael 389
 
390
	* @param $preload (optionnel): défini une fonction de préchargement massif de donnée potentiellement utilisable par $fonction_data.
391
	*		  Utile, notamment, dans le cadre de l'export
1702 raphael 392
 
393
	* @param $fonction_dynamique (optionnel): défini une fonction ajoutant un nombre arbitraire de colonnes à une ligne donnée
394
	*		  Utile, notamment, dans le cadre de l'export des champs étendus ou des données baseflor
395
	*		  La fonction doit TOUJOURS alterer la ligne en lui ajoutant une nombre CONSTANT d'éléments (NULL ou non)
396
	*		  La fonction doit prendre comme arguments ($cel, $obs, &$ligne_formatee)
1654 aurelien 397
	*/
1757 raphael 398
	static function GenColInfo($args) {
399
		$default = Array('abbrev' => NULL,
400
						 'nom' => NULL,
401
						 'extra' => 0,
402
						 'fonction' => NULL,
403
						 'fonction_data' => NULL,
404
						 'importable' => TRUE,
405
						 'preload' => NULL,
406
						 'dyna' => NULL);
407
		$ret = array_intersect_key($args, $default);
408
		return array_merge($default, $ret);
1654 aurelien 409
	}
410
 
1656 raphael 411
	static function formaterDate($date_heure_mysql) {
1671 aurelien 412
		//return "";
1707 raphael 413
		if (!$date_heure_mysql || $date_heure_mysql == "0000-00-00 00:00:00") return NULL;
1671 aurelien 414
		// malheureusement pas disponible en php < 5.3
415
		//$date_format = DateTime::createFromFormat("Y-m-d H:i:s", $date_heure_mysql);
416
		$val = explode(' ', $date_heure_mysql);
417
		$date = explode('-', $val[0]);
418
		$heure = explode(':', $val[1]);
419
		$timestamp = mktime((int) $heure[0], (int) $heure[1], (int) $heure[2], (int) $date[1], (int) $date[2], (int) $date[0]);
1707 raphael 420
		if(!$timestamp) return NULL;
1656 raphael 421
		// TODO: les widgets ne font malheureusement pas usage de l'heure dans le CEL
422
		// TODO: si modification, ne pas oublier de modifier le format d'import correspondant
1698 raphael 423
		//	dans ImportXLS, traiterDateObs() (actuellement: "Y/m/d" car utilisation de strtotime() qui ne lit pas tout)
424
		// $date_formatee = strftime('%d/%m/%Y', $timestamp);
425
		$date_formatee = strftime('%Y/%m/%d', $timestamp);
1654 aurelien 426
		if(!$date_formatee) return "00/00/0000";
427
		return $date_formatee;
428
	}
1757 raphael 429
 
1656 raphael 430
	static function getImages($obs, $id_utilisateur, $cel) {
431
		if(! $id_utilisateur) return NULL;
432
		$rec = $cel->requeter(
1757 raphael 433
			sprintf("SELECT GROUP_CONCAT(nom_original SEPARATOR '%s') AS i FROM cel_images i"
1656 raphael 434
					." LEFT JOIN cel_obs_images oi ON (i.id_image = oi.id_image)"
435
					." LEFT JOIN cel_obs o ON (oi.id_observation = o.id_observation)"
1757 raphael 436
					." WHERE o.ce_utilisateur = %d AND o.id_observation = %d LIMIT 1",
1656 raphael 437
					SEPARATEUR_IMAGES,
1757 raphael 438
					$id_utilisateur,
439
					$obs['id_observation']));
440
		return $rec ? $rec[0]['i'] : NULL;
1654 aurelien 441
	}
442
 
443
	public static function convertirCodeZoneGeoVersDepartement($code_zone_geo) {
444
		$code_departement = '';
445
		if(self::estUnCodeInseeDepartement($code_zone_geo)) {
446
			$code_departement = substr(ltrim($code_zone_geo,'INSEE-C:'),0,2);
447
		}
448
 
449
		return $code_departement;
450
	}
1757 raphael 451
 
452
	public static function trim0($lonlat) {
453
		return trim(trim($lonlat, "0"), ".");
454
	}
455
 
456
	public static function boolOuiNon($transmission) {
457
		return $transmission ? 'oui' : '';
458
	}
1654 aurelien 459
 
460
	public static function estUnCodeInseeDepartement($code_a_tester) {
461
		return preg_match('/^INSEE-C:[0-9]{5}/',$code_a_tester);
462
	}
463
 
464
 
465
	// TODO: référentiel ne devrait pas être généré au moment d'un Config::get,
466
	// comme dans Config::get('nomsVernaRechercheLimiteeTpl')
467
	// Par exemple, la variable pour "nva" ?
468
	function getNomCommun($obs) {
469
		$langue = 'fra';
470
		list($referentiel) = explode(':', strtolower($obs['nom_referentiel']));
471
		if($referentiel == 'bdtfx') $referentiel = 'nvjfl';
472
		else return '';
473
 
474
		$cache_id = $referentiel . '-' . $obs['nt'] . '-' . $langue;
1657 raphael 475
		if(isset(self::$cache['getNomCommun'][$cache_id])) {
1656 raphael 476
			//debug: error_log("require url_service_nom_attribution: OK ! (pour \"{$obs['nom_ret']}\")");
1657 raphael 477
			return self::$cache['getNomCommun'][$cache_id];
1654 aurelien 478
		}
479
		// pas de cache:
480
		//debug: error_log("require url_service_nom_attribution pour \"{$obs['nom_ret']}\"");
481
 
482
		// pour bdtfx:
483
		// /service:eflore:0.1/nvjfl/noms-vernaculaires/attributions?masque.nt=X&masque.lg=fra&retour.champs=num_statut
484
		// /projet/services/modules/0.1/nvjfl/NomsVernaculaires.php
485
		$url = str_replace(Array('{referentiel}', '{valeur}', '{langue}'),
1656 raphael 486
						   Array($referentiel, $obs['nt'], $langue),
1657 raphael 487
						   self::$config['eflore']['url_service_nom_attribution']) . // TODO !
1656 raphael 488
			"&retour.champs=num_statut";
1654 aurelien 489
		$noms = @json_decode(file_get_contents($url));
490
		if(! $noms) return '';
1673 raphael 491
		$noms = array_filter((array)($noms->resultat), array($this, retournerNumStatutUn)); // XXX: php 5.3
1654 aurelien 492
		$nom = array_pop($noms)->nom_vernaculaire;
493
 
494
		// cache
1657 raphael 495
		self::$cache['getNomCommun'][$cache_id] = $nom;
1654 aurelien 496
		return $nom;
497
	}
498
 
1671 aurelien 499
	private function retournerNumStatutUn(&$item) {
500
		return ($item->num_statut == 1);
501
	}
1673 raphael 502
 
503
	private function retournerNumStatutUnArr(&$item) {
504
		return ($item['num_statut'] == 1);
505
	}
1671 aurelien 506
 
1656 raphael 507
	// si getNomCommun_v2 ou getNomCommun_v3 sont utilisés
508
	/* require_once('/home/raphael/eflore/framework/framework/Framework.php');
509
	Framework::setCheminAppli("/home/raphael/eflore/projets/services/index.php");
510
	Framework::setInfoAppli(Config::get('info'));
511
	require_once('/home/raphael/eflore/projets/services/modules/0.1/Projets.php');*/
1654 aurelien 512
 
513
	/* Tente de bootstraper le framework au plus court et d'initialiser une instance de
1656 raphael 514
	   NomsVernaculaires pour obtenir le nom commun */
1654 aurelien 515
	function getNomCommun_v2($obs) {
516
		static $service;
1656 raphael 517
		$service = new Projets();
1654 aurelien 518
 
519
		$langue = 'fra';
520
		list($referentiel) = explode(':', strtolower($obs['nom_referentiel']));
521
		if($referentiel == 'bdtfx') $referentiel = 'nvjfl';
522
		else return '';
523
 
524
		$cache_id = $referentiel . '-' . $obs['nt'] . '-' . $langue;
1657 raphael 525
		if(isset(self::$cache['getNomCommun'][$cache_id])) {
1656 raphael 526
			error_log("require NomsVernaculaires.php: OK ! (pour \"{$obs['nom_ret']}\")");
1657 raphael 527
			return self::$cache['getNomCommun'][$cache_id];
1654 aurelien 528
		}
529
		// pas de cache:
530
		error_log("require NomsVernaculaires.php pour \"{$obs['nom_ret']}\"");
531
 
1656 raphael 532
		$donnees = Array('masque.nt' => $obs['nt'],
533
						 'masque.lg' => $langue,
534
						 'retour.champs' => 'num_statut');
1654 aurelien 535
		$noms = $service->consulter(Array('nvjfl', 'noms-vernaculaires'), $donnees);
536
 
537
		if(! $noms) return '';
1673 raphael 538
		$noms = array_filter((array)($noms->resultat), array($this, retournerNumStatutUn)); // XXX: php 5.3
1654 aurelien 539
		$nom = array_pop($noms)->nom_vernaculaire;
540
 
1656 raphael 541
		// cache
1657 raphael 542
		self::$cache['getNomCommun'][$cache_id] = $nom;
1654 aurelien 543
		return $nom;
544
	}
545
 
546
 
547
	/* Effectue un bootstraping plus sage que ci-dessus, mais le gain d'efficacité
1656 raphael 548
	   n'est pas aussi retentissant qu'espéré */
1654 aurelien 549
	static $service;
550
	function getNomCommun_v3($obs) {
551
		if(! $this->service) $this->service = new Projets();
552
 
553
		$langue = 'fra';
554
		list($referentiel) = explode(':', strtolower($obs['nom_referentiel']));
555
		if($referentiel == 'bdtfx') $referentiel = 'nvjfl';
556
		else return '';
557
 
558
		$cache_id = $referentiel . '-' . $obs['nt'] . '-' . $langue;
1657 raphael 559
		if(isset(self::$cache['getNomCommun'][$cache_id])) {
1656 raphael 560
			error_log("require NomsVernaculaires.php: OK ! (pour \"{$obs['nom_ret']}\")");
1657 raphael 561
			return self::$cache['getNomCommun'][$cache_id];
1654 aurelien 562
		}
563
		// pas de cache:
1656 raphael 564
		error_log("require NomsVernaculaires.php pour \"{$obs['nom_ret']}\"");
1654 aurelien 565
 
566
		$donnees = Array('masque.nt' => $obs['nt'],
1656 raphael 567
						 'masque.lg' => $langue,
568
						 'retour.champs' => 'conseil_emploi');
569
		$this->service->initialiserRessourcesEtParametres(Array('nvjfl', 'noms-vernaculaires', 'attributions'), $donnees);
1654 aurelien 570
		try {
1656 raphael 571
			$noms = $this->service->traiterRessources();
572
		} catch(Exception $e) {
573
			return '';
1654 aurelien 574
		}
1656 raphael 575
		if(! $noms) return '';
1673 raphael 576
		$noms = array_filter($noms['resultat'], array($this, retournerNumStatutUnArr)); // XXX: php 5.3
1656 raphael 577
		$premier_nom = array_pop($noms);
1654 aurelien 578
		$nom = $premier_nom['nom_vernaculaire'];
579
 
580
		// cache
1657 raphael 581
		self::$cache['getNomCommun'][$cache_id] = $nom;
1654 aurelien 582
		return $nom;
583
	}
1685 raphael 584
 
1694 raphael 585
	/* Cette fonction initialise le cache des noms communs en 1 fois, sur la liste des observations à exporter.
1702 raphael 586
	   Ainsi, les appels successifs à getNomCommun_v4() ne sont pas couteux (pas de requête SQL) */
1694 raphael 587
	static function getNomCommun_preload($cel, $obsids) {
588
		if(!$obsids) return;
1702 raphael 589
		if(!self::referenceTableExiste($cel)) return NULL;
1694 raphael 590
 
591
		// CREATE INDEX i_nom_referentiel ON cel_obs (nom_referentiel(5));
592
		$req = sprintf("SELECT r.referentiel, r.num_taxon, r.nom_commun FROM cel_references r" .
593
					   " INNER JOIN cel_obs c ON (r.referentiel = substring_index(c.nom_referentiel, ':', 1) and r.num_taxon = c.nt)" .
594
					   " WHERE c.id_observation IN (%s)",
595
					   implode(',', $obsids));
596
		$res = $cel->requeter($req);
597
		foreach($res as $v) {
598
			self::$cache['getNomCommun'][$v['referentiel'] . '-' . $v['num_taxon'] . '-' . 'fra'] = $v['nom_commun'];
599
		}
600
		return NULL;
601
	}
1702 raphael 602
 
603
	static function referenceTableExiste($cel) {
604
		if(!self::$is_table) {
605
			// une seule fois
606
			if(! $cel->executerRequete("SHOW TABLES LIKE 'cel_references'", Cel::SQL_RETOUR_LIGNE)) return FALSE;
607
			self::$is_table = TRUE;
608
		}
609
		return TRUE;
610
	}
1694 raphael 611
 
1685 raphael 612
	static function getNomCommun_v4($obs, $cel) {
613
		if(! $obs['nt']) return NULL;
1702 raphael 614
		if(! self::referenceTableExiste($cel)) return NULL;
1689 raphael 615
 
1685 raphael 616
		$langue = 'fra';
617
		list($referentiel) = explode(':', strtolower($obs['nom_referentiel']));
618
		$cache_id = $referentiel . '-' . $obs['nt'] . '-' . $langue;
619
 
1757 raphael 620
		// cache:
621
		if(isset($cache['getNomCommun'])) {
622
			if(isset(self::$cache['getNomCommun'][$cache_id])) return self::$cache['getNomCommun'][$cache_id];
623
			// XXX: problème de valeurs NULL ?
624
			if(array_key_exists($cache_id, self::$cache['getNomCommun'])) return self::$cache['getNomCommun'][$cache_id];
625
		}
1685 raphael 626
 
627
		// pas de cache:
628
		$nom = $cel->executerRequete(sprintf("SELECT nom_commun FROM cel_references " .
629
											 "WHERE referentiel = '%s' AND num_taxon = %d LIMIT 1",
630
											 $referentiel,
631
											 $obs['nt']),
632
									 Cel::SQL_RETOUR_LIGNE);
633
 
634
		if(! $nom) return NULL;
635
		$nom = $nom["nom_commun"];
636
 
637
		// cache
638
		self::$cache['getNomCommun'][$cache_id] = $nom;
639
		return $nom;
640
	}
1702 raphael 641
 
642
 
643
	/* Cette fonction initialise le cache des données baseflor en 1 fois, sur la liste des observations à exporter.
644
	   Ainsi, les appels successifs à baseflor_ligne() ne sont pas couteux (pas de requête SQL) */
645
	static function baseflor_preload($cel, $obsids) {
646
		if(!$obsids) return;
647
		if(!self::referenceTableExiste($cel)) return NULL;
648
 
649
		$req = sprintf("SELECT referentiel, num_nom_retenu, %s FROM cel_references r" .
650
					   " INNER JOIN cel_obs c ON (r.num_nom_retenu = c.nom_ret_nn)" .
651
					   " WHERE c.id_observation IN (%s)",
652
					   //" AND catminat_code IS NOT NULL", // TODO: suppression des NULL ici signifie que le cache sera partiel...
653
					   implode(',', array_keys(self::$baseflor_col)),
654
					   implode(',', $obsids));
655
		$res = $cel->requeter($req);
1706 raphael 656
		if(!$res) return NULL;
1702 raphael 657
 
658
		foreach($res as $v) {
659
			$data = $v;
660
			unset($data['referentiel']); // non nécessaire
661
			unset($data['num_nom_retenu']); // non nécessaire
662
			self::$cache['getBaseflor'][$v['referentiel'] . '-' . $v['num_nom_retenu']] = $data;
663
		}
664
 
665
		return NULL;
666
	}
1654 aurelien 667
 
1685 raphael 668
 
1702 raphael 669
	static function baseflor_ligne($cel, $obs, &$ligne) {
670
		if(! $obs['nom_ret_nn']) {
1706 raphael 671
			$ligne = array_merge($ligne, array_fill(0, count(self::$baseflor_col), NULL));
1702 raphael 672
			return;
673
		}
674
 
675
		if(! self::referenceTableExiste($cel)) {
1706 raphael 676
			$ligne = array_merge($ligne, array_fill(0, count(self::$baseflor_col), NULL));
1702 raphael 677
			return;
678
		}
679
 
680
		list($referentiel) = explode(':', strtolower($obs['nom_referentiel']));
681
		$cache_id = $referentiel . '-' . $obs['nom_ret_nn'];
682
 
683
		// XXX: problème de valeurs NULL pour utiliser simplement isset() ?
684
		// @ car getBaseflor[] n'est peut-être pas encore initialisé
685
		if(@array_key_exists($cache_id, self::$cache['getBaseflor'])) {
686
			$ligne = array_merge($ligne, self::$cache['getBaseflor'][$cache_id]);
687
			return;
688
		}
689
 
690
		// pas de cache:
691
		$data = $cel->executerRequete(sprintf("SELECT %s FROM cel_references " .
692
											 "WHERE referentiel = '%s' AND num_nom_retenu = %d LIMIT 1",
693
											 implode(', ', array_keys(self::$baseflor_col)),
694
											 $referentiel,
695
											 $obs['nom_ret_nn']),
696
									 Cel::SQL_RETOUR_LIGNE);
697
 
698
		if(! $data) {
1706 raphael 699
			$ligne = array_merge($ligne, array_fill(0, count(self::$baseflor_col), NULL));
1702 raphael 700
			return;
701
		}
702
 
703
		// cache
704
		self::$cache['getBaseflor'][$cache_id] = $data;
705
		$ligne = array_merge($ligne, $data);
706
	}
1715 raphael 707
 
708
	static function champsEtendus_preload($cel, $obsids) {
709
		$gestion_champs_etendus = new GestionChampsEtendus($cel->config, 'obs');
1718 raphael 710
		$colonnes_champs_supp_par_obs = $gestion_champs_etendus->consulterClesParLots($obsids);
1741 raphael 711
		// ces deux lignes réordonnent l'ordre des colonnes des champs étendus en fonction de l'ordre (très spécifique)
712
		// de self::$ordre_champ_etendus_Florileges, les champs non-mentionnés sont ajoutés à la fin.
713
		$colonnes_champs_supp_par_obs = self::sortArrayByArray(array_flip($colonnes_champs_supp_par_obs),
714
															   self::$ordre_champ_etendus_Florileges);
715
		$colonnes_champs_supp_par_obs = array_keys($colonnes_champs_supp_par_obs);
716
 
1718 raphael 717
		// si le SELECT des clefs ne retourne rien, une autre requêtes est inutile
718
		// TODO: optimize, 1 seule requête
719
		if(!$colonnes_champs_supp_par_obs) return Array('header' => array(), 'data' => array());
720
 
1715 raphael 721
		$champs_supp_par_obs = $gestion_champs_etendus->consulterParLots($obsids);
1741 raphael 722
 
1715 raphael 723
		self::$cache['champsEtendus']['header'] = $colonnes_champs_supp_par_obs;
724
		foreach($champs_supp_par_obs as &$v) {
725
			$v = self::champsEtendus_aplatir($v);
726
		}
727
		self::$cache['champsEtendus']['data'] = $champs_supp_par_obs;
728
		// ce return est temporaire,
729
		// le temps que toutes les fonctions bougent ici et utilise plutôt le cache statique
1716 raphael 730
		// encore utilisé pour les entêtes (self::$cache['champsEtendus']['header'])
1715 raphael 731
		return self::$cache['champsEtendus'];
732
	}
733
 
734
	// XXX: PHP-5.3, fonction anonyme + array_map
735
	static function champsEtendus_aplatir($ligne_champs_etendus) {
736
		$champs_etendus_fmt = array();
737
		if(!$ligne_champs_etendus) return $champs_etendus_fmt;
738
		foreach($ligne_champs_etendus as $champ) {
739
			$champs_etendus_fmt[$champ->cle] = $champ->valeur;
740
		}
741
		return $champs_etendus_fmt;
742
	}
1716 raphael 743
 
744
	static function champsEtendus_ligne($cel, $obs, &$ligne) {
745
		// si header n'est pas défini, aucune observation ne possède de champ étendu
746
		// et nous n'ajoutons ni colonnes, ni valeurs.
747
		if(! isset(self::$cache['champsEtendus']['header'])) return;
1736 raphael 748
		$ligne_etendue_aplatie = @self::$cache['champsEtendus']['data'][$obs['id_observation']];
1716 raphael 749
 
750
		$ligne_supp = array_fill(0, count(self::$cache['champsEtendus']['header']), '');
751
		$ligne_etendue_fmt = array();
752
 
753
		// si, cependant cette seule observation n'a pas de champs étendus,
754
		// nous devons rajouter des blancs (notamment dans le cas ou d'autres
755
		// champs viennent à être ajoutés en aval à l'avenir
756
		// cf: $fonction_dynamique dans FormateurGroupeColonne::GenColInfo()
757
		if(! $ligne_etendue_aplatie) {
758
			$ligne = array_merge($ligne, $ligne_supp);
759
			return;
760
		}
761
 
762
		foreach(self::$cache['champsEtendus']['header'] as $colonne) {
763
			if(!isset($ligne_etendue_aplatie[$colonne])) {
764
				$ligne_etendue_fmt[$colonne] = '';
765
			} else {
766
				$ligne_etendue_fmt[$colonne] = $ligne_etendue_aplatie[$colonne];
767
			}
768
		}
769
 
770
		// XXX/ array_merge() ?
771
		$ligne += $ligne_etendue_fmt;
772
	}
1741 raphael 773
 
774
	/* HELPERS */
775
 
776
	// http://stackoverflow.com/questions/348410/sort-an-array-based-on-another-array
777
	// XXX; redéfinition, utilisé aussi par ExportXLS
778
	static function sortArrayByArray($array, $orderArray) {
779
		$ordered = array();
780
		foreach($orderArray as $key) {
781
			if(array_key_exists($key, $array)) {
782
				$ordered[$key] = $array[$key];
783
				unset($array[$key]);
784
			}
785
		}
786
		return $ordered + $array;
787
	}
788
 
1715 raphael 789
}