Subversion Repositories eFlore/Applications.cel

Rev

Rev 1671 | Rev 1685 | 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()
79
			   'images'				=> self::GenColInfo('images', 'Image(s)', 1, NULL, 'getImages', TRUE),
1654 aurelien 80
			);
81
		}
1656 raphael 82
 
83
		/* 'nom_commun'			=> self::GenColInfo('nom_commun', 'Nom Commun', 1, NULL, 'getNomCommun', FALSE),
84
		   'nom-commun'			=> self::GenColInfo('nom-commun', 'Nom Commun', 1, NULL, 'getNomCommun_v2'),
85
		   'nom-commun'			=> self::GenColInfo('nom-commun', 'Nom Commun', 1, NULL, 'getNomCommun_v3'), */
86
 
1654 aurelien 87
		return $colonnes;
88
	}
89
 
1656 raphael 90
	public static function getIntitulesColonnes($colonnes) {
1671 aurelien 91
		return array_map(array('FormateurGroupeColonne', 'retournerNomItem'), $colonnes);
1654 aurelien 92
	}
93
 
1671 aurelien 94
	public static function retournerNomItem(&$item) {
95
		return $item['nom'];
96
	}
97
 
1656 raphael 98
	public static function getLigneObservation(&$obs, &$colonnes, $cel = false) {
1659 aurelien 99
 
1654 aurelien 100
		$ligne_formatee = array();
101
		foreach($colonnes as $abbrev => $colonne) {
102
			$valeur = null;
103
			if($colonne['extra'] == 2) continue;
104
 
105
			// valeur direct depuis cel_obs ?
106
			if(isset($obs[$abbrev])) $valeur = $obs[$abbrev];
107
 
108
			// pré-processeur de la champs
109
			if(function_exists($colonne['fonction'])) {
110
				$valeur = $colonne['fonction']($valeur);
111
			} elseif(method_exists(__CLASS__, $colonne['fonction'])) {
112
				$valeur = call_user_func(array(__CLASS__, $colonne['fonction']), $valeur);
113
			} elseif($colonne['fonction']) {
114
				die("méthode {$colonne['fonction']} introuvable");
115
			}
116
			// fonction pour obtenir des champs (étendus)
117
			elseif(function_exists($colonne['fonction_data'])) {
118
				$valeur = $colonne['fonction_data']($obs);
119
			}
1659 aurelien 120
			elseif($abbrev != 'images' && method_exists(__CLASS__, $colonne['fonction_data'])) {
1654 aurelien 121
				$valeur = call_user_func(array(__CLASS__, $colonne['fonction_data']), $obs);
122
			}
123
 
124
			// // cette section devrait être vide:
125
			// // cas particuliers ingérable avec l'architecture actuelle:
126
			if(false && $abbrev == 'date_observation' && $valeur == "0000-00-00") {
127
				/* blah */
128
			}
1656 raphael 129
			if($abbrev == 'images') {
130
				$valeur = FormateurGroupeColonne::getImages($obs, $cel->id_utilisateur, $cel);
131
			}
1654 aurelien 132
 
133
			if($valeur == null) {
134
				$valeur = "";
135
			}
136
 
137
			// // fin de section "cas particuliers"
138
			$ligne_formatee[] = $valeur;
139
		}
140
		return $ligne_formatee;
141
	}
142
 
143
	/*
144
	* Wrapper générant un tableau associatif:
145
 
146
	* @param $abbrev (obligatoire): nom court de colonne, largement utilisé lors de l'import.
147
	*		  En effet chaque ligne importée est accessible à l'aide du `define` de $abbrev en majuscule, préfixé de "C_"
148
	*		  Exemple: $ligne[C_LONGITUDE] pour "longitude".
149
	*		  cf: ImportXLS::detectionEntete()
150
 
151
	* @param $nom (obligatoire): nom complet de colonne (utilisé pour la ligne d'en-tête)
152
 
153
	* @param $is_extra:
154
	* Si 0, la colonne est une colonne standard
155
	* Si 1, la colonne est extra [le plus souvent générée automatiquement]
156
	*		 (auquel cas une bordure bleue entoure son nom dans la ligne d'entête)
157
	* Si 2, la colonne n'est pas traité à l'export, mais une définition peut lui être donnée
158
	*		 qui pourra être utilisée à l'import, exemple: "image"
159
 
160
	* @param $fonction (optionnel): un nom d'un fonction de préprocessing
161
	* 		  $fonction doit prendre comme seul argument la valeur d'origine et retourner la valeur transformée
162
 
163
	* @param $fonction_data (optionnel): une *méthode* d'obtention de donnée
164
	* 		  $fonction_data doit prendre comme premier argument le tableau des champs de l'enregistrement existant
165
	*		  $fonction_data doit retourner une valeur
166
 
167
	* @param $importable (optionnel): défini si la colonne est traitée (ou absolument ignorée par PHPExcel) lors de
168
	*		  l'import.
169
 
170
	*/
171
	static function GenColInfo($abbrev, $nom, $is_extra = 0, $fonction = NULL, $fonction_data = NULL, $importable = TRUE) {
172
		return Array('abbrev' => $abbrev,
1656 raphael 173
					 'nom' => $nom,
174
					 'extra' => $is_extra ? 1 : 0,
175
					 'fonction' => $fonction,
176
					 'fonction_data' => $fonction_data,
177
					 'importable' => $importable
1654 aurelien 178
		);
179
	}
180
 
1656 raphael 181
	static function formaterDate($date_heure_mysql) {
1671 aurelien 182
		//return "";
1654 aurelien 183
		if (!$date_heure_mysql || $date_heure_mysql == "0000-00-00 00:00:00") return "00/00/0000";
1671 aurelien 184
		// malheureusement pas disponible en php < 5.3
185
		//$date_format = DateTime::createFromFormat("Y-m-d H:i:s", $date_heure_mysql);
186
		$val = explode(' ', $date_heure_mysql);
187
		$date = explode('-', $val[0]);
188
		$heure = explode(':', $val[1]);
189
		$timestamp = mktime((int) $heure[0], (int) $heure[1], (int) $heure[2], (int) $date[1], (int) $date[2], (int) $date[0]);
1654 aurelien 190
		if(!$timestamp) return "00/00/0000";
1656 raphael 191
		// TODO: les widgets ne font malheureusement pas usage de l'heure dans le CEL
192
		// TODO: si modification, ne pas oublier de modifier le format d'import correspondant
193
		//	dans ImportXLS (actuellement: "d/m/Y")
194
		$date_formatee = strftime('%d/%m/%Y', $timestamp);
1654 aurelien 195
		if(!$date_formatee) return "00/00/0000";
196
		return $date_formatee;
197
	}
198
 
1656 raphael 199
	static function getImages($obs, $id_utilisateur, $cel) {
200
		if(! $id_utilisateur) return NULL;
201
		$rec = $cel->requeter(
1654 aurelien 202
			sprintf("SELECT GROUP_CONCAT(nom_original SEPARATOR '%s') FROM cel_images i"
1656 raphael 203
					." LEFT JOIN cel_obs_images oi ON (i.id_image = oi.id_image)"
204
					." LEFT JOIN cel_obs o ON (oi.id_observation = o.id_observation)"
205
					." WHERE ce_utilisateur = %d",
206
					SEPARATEUR_IMAGES,
207
					$id_utilisateur));
208
		return $rec ? array_pop($rec) : NULL;
1654 aurelien 209
	}
210
 
211
	public static function convertirCodeZoneGeoVersDepartement($code_zone_geo) {
212
		$code_departement = '';
213
		if(self::estUnCodeInseeDepartement($code_zone_geo)) {
214
			$code_departement = substr(ltrim($code_zone_geo,'INSEE-C:'),0,2);
215
		}
216
 
217
		return $code_departement;
218
	}
219
 
220
	public static function estUnCodeInseeDepartement($code_a_tester) {
221
		return preg_match('/^INSEE-C:[0-9]{5}/',$code_a_tester);
222
	}
223
 
224
 
225
	// TODO: référentiel ne devrait pas être généré au moment d'un Config::get,
226
	// comme dans Config::get('nomsVernaRechercheLimiteeTpl')
227
	// Par exemple, la variable pour "nva" ?
228
	function getNomCommun($obs) {
229
		$langue = 'fra';
230
		list($referentiel) = explode(':', strtolower($obs['nom_referentiel']));
231
		if($referentiel == 'bdtfx') $referentiel = 'nvjfl';
232
		else return '';
233
 
234
		$cache_id = $referentiel . '-' . $obs['nt'] . '-' . $langue;
1657 raphael 235
		if(isset(self::$cache['getNomCommun'][$cache_id])) {
1656 raphael 236
			//debug: error_log("require url_service_nom_attribution: OK ! (pour \"{$obs['nom_ret']}\")");
1657 raphael 237
			return self::$cache['getNomCommun'][$cache_id];
1654 aurelien 238
		}
239
		// pas de cache:
240
		//debug: error_log("require url_service_nom_attribution pour \"{$obs['nom_ret']}\"");
241
 
242
		// pour bdtfx:
243
		// /service:eflore:0.1/nvjfl/noms-vernaculaires/attributions?masque.nt=X&masque.lg=fra&retour.champs=num_statut
244
		// /projet/services/modules/0.1/nvjfl/NomsVernaculaires.php
245
		$url = str_replace(Array('{referentiel}', '{valeur}', '{langue}'),
1656 raphael 246
						   Array($referentiel, $obs['nt'], $langue),
1657 raphael 247
						   self::$config['eflore']['url_service_nom_attribution']) . // TODO !
1656 raphael 248
			"&retour.champs=num_statut";
1654 aurelien 249
		$noms = @json_decode(file_get_contents($url));
250
		if(! $noms) return '';
1673 raphael 251
		$noms = array_filter((array)($noms->resultat), array($this, retournerNumStatutUn)); // XXX: php 5.3
1654 aurelien 252
		$nom = array_pop($noms)->nom_vernaculaire;
253
 
254
		// cache
1657 raphael 255
		self::$cache['getNomCommun'][$cache_id] = $nom;
1654 aurelien 256
		return $nom;
257
	}
258
 
1671 aurelien 259
	private function retournerNumStatutUn(&$item) {
260
		return ($item->num_statut == 1);
261
	}
1673 raphael 262
 
263
	private function retournerNumStatutUnArr(&$item) {
264
		return ($item['num_statut'] == 1);
265
	}
1671 aurelien 266
 
1656 raphael 267
	// si getNomCommun_v2 ou getNomCommun_v3 sont utilisés
268
	/* require_once('/home/raphael/eflore/framework/framework/Framework.php');
269
	Framework::setCheminAppli("/home/raphael/eflore/projets/services/index.php");
270
	Framework::setInfoAppli(Config::get('info'));
271
	require_once('/home/raphael/eflore/projets/services/modules/0.1/Projets.php');*/
1654 aurelien 272
 
273
	/* Tente de bootstraper le framework au plus court et d'initialiser une instance de
1656 raphael 274
	   NomsVernaculaires pour obtenir le nom commun */
1654 aurelien 275
	function getNomCommun_v2($obs) {
276
		static $service;
1656 raphael 277
		$service = new Projets();
1654 aurelien 278
 
279
		$langue = 'fra';
280
		list($referentiel) = explode(':', strtolower($obs['nom_referentiel']));
281
		if($referentiel == 'bdtfx') $referentiel = 'nvjfl';
282
		else return '';
283
 
284
		$cache_id = $referentiel . '-' . $obs['nt'] . '-' . $langue;
1657 raphael 285
		if(isset(self::$cache['getNomCommun'][$cache_id])) {
1656 raphael 286
			error_log("require NomsVernaculaires.php: OK ! (pour \"{$obs['nom_ret']}\")");
1657 raphael 287
			return self::$cache['getNomCommun'][$cache_id];
1654 aurelien 288
		}
289
		// pas de cache:
290
		error_log("require NomsVernaculaires.php pour \"{$obs['nom_ret']}\"");
291
 
1656 raphael 292
		$donnees = Array('masque.nt' => $obs['nt'],
293
						 'masque.lg' => $langue,
294
						 'retour.champs' => 'num_statut');
1654 aurelien 295
		$noms = $service->consulter(Array('nvjfl', 'noms-vernaculaires'), $donnees);
296
 
297
		if(! $noms) return '';
1673 raphael 298
		$noms = array_filter((array)($noms->resultat), array($this, retournerNumStatutUn)); // XXX: php 5.3
1654 aurelien 299
		$nom = array_pop($noms)->nom_vernaculaire;
300
 
1656 raphael 301
		// cache
1657 raphael 302
		self::$cache['getNomCommun'][$cache_id] = $nom;
1654 aurelien 303
		return $nom;
304
	}
305
 
306
 
307
	/* Effectue un bootstraping plus sage que ci-dessus, mais le gain d'efficacité
1656 raphael 308
	   n'est pas aussi retentissant qu'espéré */
1654 aurelien 309
	static $service;
310
	function getNomCommun_v3($obs) {
311
		if(! $this->service) $this->service = new Projets();
312
 
313
		$langue = 'fra';
314
		list($referentiel) = explode(':', strtolower($obs['nom_referentiel']));
315
		if($referentiel == 'bdtfx') $referentiel = 'nvjfl';
316
		else return '';
317
 
318
		$cache_id = $referentiel . '-' . $obs['nt'] . '-' . $langue;
1657 raphael 319
		if(isset(self::$cache['getNomCommun'][$cache_id])) {
1656 raphael 320
			error_log("require NomsVernaculaires.php: OK ! (pour \"{$obs['nom_ret']}\")");
1657 raphael 321
			return self::$cache['getNomCommun'][$cache_id];
1654 aurelien 322
		}
323
		// pas de cache:
1656 raphael 324
		error_log("require NomsVernaculaires.php pour \"{$obs['nom_ret']}\"");
1654 aurelien 325
 
326
		$donnees = Array('masque.nt' => $obs['nt'],
1656 raphael 327
						 'masque.lg' => $langue,
328
						 'retour.champs' => 'conseil_emploi');
329
		$this->service->initialiserRessourcesEtParametres(Array('nvjfl', 'noms-vernaculaires', 'attributions'), $donnees);
1654 aurelien 330
		try {
1656 raphael 331
			$noms = $this->service->traiterRessources();
332
		} catch(Exception $e) {
333
			return '';
1654 aurelien 334
		}
1656 raphael 335
		if(! $noms) return '';
1673 raphael 336
		$noms = array_filter($noms['resultat'], array($this, retournerNumStatutUnArr)); // XXX: php 5.3
1656 raphael 337
		$premier_nom = array_pop($noms);
1654 aurelien 338
		$nom = $premier_nom['nom_vernaculaire'];
339
 
340
		// cache
1657 raphael 341
		self::$cache['getNomCommun'][$cache_id] = $nom;
1654 aurelien 342
		return $nom;
343
	}
344
 
345
}