Subversion Repositories eFlore/Applications.cel

Rev

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

Rev Author Line No. Line
1630 raphael 1
<?php
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
/**
13
 * Service d'export de données d'observation du CEL au format XLS
14
 *
15
 * Format du service :
16
 * POST /ExportXLS
17
 * POST /ExportXLS/<Utilisateur>
18
 * TODO: GET /ExportXLS/<Utilisateur> [ sans "range" ? ]
19
 *
20
 * Les données POST acceptées sont:
21
 * range (obligatoire): un range d'id_observation sous la forme d'entier ou d'intervalles d'entiers
22
 *						séparés par des virgules ou bien '*' (pour toutes)
23
 * TODO: limit
24
 * TODO: départ
25
 * TODO: sets (ou colonnes, ou extended)
26
 * TODO: + les critères supportés par fabriquerSousRequeteRecherche()
27
 *
28
 * Si <Utilisateur> est fourni, celui-ci doit être authentifié
29
 * TODO: export des données public et non-sensible d'un utilisateur
30
 *
31
 * Si <Utilisateur> est fourni, le observations seront le résultat de l'intersection des 2 contraintes
32
 *
33
 */
34
set_include_path(get_include_path() . PATH_SEPARATOR . dirname(dirname(realpath(__FILE__))) . '/lib');
1634 raphael 35
// TERM
36
ini_set('html_errors', 0);
37
ini_set('xdebug.cli_color', 2);
38
require_once('lib/PHPExcel/Classes/PHPExcel.php');
1630 raphael 39
 
1633 raphael 40
// si getNomCommun_v2 ou getNomCommun_v3 sont utilisés
41
/*require_once('/home/raphael/eflore/framework/framework/Framework.php');
42
Framework::setCheminAppli("/home/raphael/eflore/projets/services/index.php");
43
Framework::setInfoAppli(Config::get('info'));
44
require_once('/home/raphael/eflore/projets/services/modules/0.1/Projets.php');*/
45
 
1630 raphael 46
class ExportXLS extends Cel  {
47
 
1633 raphael 48
	private $cache = Array();
49
 
1630 raphael 50
	function ExportXLS($config) {
51
		parent::__construct($config);
52
	}
53
 
54
	/*
55
	 * Process $_POST et $_GET
56
	 * TODO: changer JRest pour pouvoir disposer d'un nom de méthode plus représentatif que "updateXXX"
57
	 * en POST
58
	 */
59
	function updateElement($uid, $pairs) {
1632 raphael 60
		$params = Array('uid' => $uid[0]);
1630 raphael 61
		// TODO: pas de range mais un utilisateur: possible
62
		if(!isset($_POST['range'])) {
63
			header('HTTP/1.0 204 No Content');
64
			exit;
65
		}
1632 raphael 66
		// trim() car: `POST http://url<<<"range=*"`
67
		elseif(trim($_POST['range']) == '*') {
1630 raphael 68
			$records = Array('*');
69
		}
70
		else {
1632 raphael 71
			$records = self::rangeToList(trim($_POST['range']));
1630 raphael 72
		}
73
		$this->export($records, NULL, $params);
74
		exit;
75
	}
76
 
77
	/*
78
	 * $param: Tableau associatif, indexes supportés:
79
	 * 		   - widget: le nom du widget d'origine (utilisé pour les méta-données du tableur)
80
	 *
81
	 */
82
	function export(Array $records, String $fieldSets = NULL, Array $params = Array()) {
83
		$colonnes = self::fieldSetsToColumns($fieldSets);
84
		$columnSlugs = array_keys($colonnes);
85
		$chercheur_observations = new RechercheObservation($this->config);
86
 
87
		$objPHPExcel = new PHPExcel();
88
 
89
		// TODO: $params['part'] pour le multi-part
90
		$params['widget'] = isset($params['widget']) ? $params['widget'] : 'CEL';
91
		// TODO: controleUtilisateur()
1632 raphael 92
		if(! $params['uid']) { // || ! $this->controleUtilisateur($params['uid'])) {
1630 raphael 93
			$params['uid'] = NULL;
94
		}
95
 
96
		$criteres = Array();
1632 raphael 97
		if(! $records || count($records) == 1 && $records[0] == '*') {
1630 raphael 98
			unset($criteres['raw']);
99
		}
100
		else {
101
			$criteres = Array('raw' =>
102
							  sprintf('id_observation IN (%s)', implode(',', $records)));
103
		}
104
 
105
		$criteres['debut'] = isset($_GET['debut']) ? intval($_GET['debut']) : 0;
106
		$criteres['limite'] = isset($_GET['limite']) ? intval($_GET['limite']) : 0;
1632 raphael 107
		$observations = $chercheur_observations
1634 raphael 108
			->rechercherObservations($params['uid'], $criteres, $criteres['debut'], $criteres['limite'], TRUE)
1632 raphael 109
			->get();
110
 
111
		// debug //echo ($chercheur_observations->requete_selection_observations);
1630 raphael 112
		// XXX: malheureusement l'instance de JRest n'est pas accessible ici
113
		if(!$observations) {
114
			header('HTTP/1.0 204 No Content');
115
			exit;
116
		}
117
 
118
		$objPHPExcel->getProperties()->setCreator($params['widget']) // ou $uid ?
119
			->setLastModifiedBy("XX") // TODO: $uid
120
			->setTitle("YY") // TODO
121
			->setSubject("ZZ") // TODO
122
			->setDescription("Export blah");
123
			//->setKeywords("office PHPExcel php")
124
			//->setCategory("Test result file")
125
 
126
		$objPHPExcel->getActiveSheet()->setTitle("Observations");
127
		$sheet = $objPHPExcel->setActiveSheetIndex(0);
128
		$colid = 0;
129
		foreach($colonnes as $colonne) {
130
			$sheet->setCellValueByColumnAndRow($colid, 1, $colonne['nom']);
131
			if($colonne['extra']) {
132
				$sheet->getStyleByColumnAndRow($colid, 1)->getBorders()->applyFromArray(
133
					array(
134
						'allborders' => array(
135
							'style' => PHPExcel_Style_Border::BORDER_DASHDOT,
136
							'color' => array('rgb' => PHPExcel_Style_Color::COLOR_BLUE)
137
						)
138
					)
139
				);
140
			}
141
			$colid++;
142
		}
143
 
144
		$objPHPExcel->getActiveSheet()->getDefaultColumnDimension()->setWidth(12);
145
 
146
		$row = 2;
147
		foreach ($observations as $obs) {
148
			$colid = 0;
149
			foreach($colonnes as $slug => $colonne) {
1632 raphael 150
				// valeur direct depuis cel_obs ?
151
				if(isset($obs[$slug])) $valeur = $obs[$slug];
1630 raphael 152
 
1632 raphael 153
				// pré-processeur de la champs
154
				if(function_exists($colonne['fonction'])) {
155
					$valeur = $colonne['fonction']($valeur);
156
				} elseif(method_exists(__CLASS__, $colonne['fonction'])) {
157
					$valeur = call_user_func(array(__CLASS__, $colonne['fonction']), $valeur);
158
				} elseif($colonne['fonction']) {
159
					die("méthode {$colonne['fonction']} introuvable");
1630 raphael 160
				}
1632 raphael 161
				// fonction pour obtenir des champs (étendus)
162
				elseif(function_exists($colonne['fonction_data'])) {
163
					$valeur = $colonne['fonction_data']($obs);
164
				}
165
				elseif(method_exists(__CLASS__, $colonne['fonction_data'])) {
166
					$valeur = call_user_func(array(__CLASS__, $colonne['fonction_data']), $obs);
167
				}
1630 raphael 168
 
1632 raphael 169
 
1630 raphael 170
				// // cette section devrait être vide:
171
				// // cas particuliers ingérable avec l'architecture actuelle:
172
				if(false && $slug == 'date_observation' && $valeur == "0000-00-00") { /* blah */ }
173
				// // fin de section "cas particuliers"
174
 
175
				$sheet->setCellValueByColumnAndRow($colid, $row, $valeur);
176
				$colid++;
177
			}
178
			$row++;
179
		}
180
 
181
		header("Content-Type: application/vnd.ms-excel");
182
		header("Content-Disposition: attachment; filename=\"liste.xls\"; charset=utf-8");
183
		header("Cache-Control: max-age=0");
184
		// Le format Excel2007 utilise un fichier temporaire
185
		$objWriter = PHPExcel_IOFactory::createWriter($objPHPExcel, 'Excel2007');
186
		// $objWriter = PHPExcel_IOFactory::createWriter($objPHPExcel, 'Excel5');
187
		$objWriter->save('php://output');
188
		exit;
189
	}
190
 
191
	/*
192
	 * @param $fieldSets: un range, eg: 1-5,8,32,58-101
193
	 * @return un tableau trié, eg: 1,2,3,4,5,8,32,58,...,101
194
	 */
195
	static function rangeToList($in = '') {
196
		$inSets = explode(',', $in);
197
		$outSets = array();
1632 raphael 198
 
1630 raphael 199
		foreach($inSets as $inSet) {
200
			list($start,$end) = explode('-', $inSet . '-' . $inSet);
1634 raphael 201
			// ignore les ranges trop importants
202
			if($start > 10000000 || $end > 10000000 || abs($start-$end) > 10000) continue;
1630 raphael 203
			$outSets = array_merge($outSets,range($start,$end));
204
		}
205
		$outSets = array_unique($outSets);
206
		$outSets = array_filter($outSets, 'is_numeric');
207
		sort($outSets);
208
		return $outSets;
209
	}
210
 
211
	/*
212
	 * @param $fieldSets: un liste de noms de colonnes ou de sets de colonnes
213
	 *		séparés par des virgules
214
	 * 		eg: "espece" ou "champs-etendus", ...
215
	 *
216
	 * @return: un tableau associatif déjà ordonné
217
	 * 		clé: slug [machine-name] de la colonne (eg: "espece" ou "mot-clef")
218
	 * 		valeur: des données relative à cette colonne, cf GenColInfo
219
	 *
220
	 * @TODO: fonction commune à la génération en CSV
221
	 */
222
	static function fieldSetsToColumns($fieldSets = 'standard') {
223
		if(! $fieldSets) $fieldSets = 'standard';
224
		$fieldSets = array_flip(explode(',', $fieldSets));
225
		$colonnes = Array();
226
 
227
		if(isset($fieldSets['standard'])) {
228
		   $colonnes += Array(
229
			   'nom_sel'			=> self::GenColInfo('nom_sel', 'Espèce'),
1632 raphael 230
			   'nom_sel_nn'			=> self::GenColInfo('nom_sel_nn', 'Numéro nomenclatural'),
1630 raphael 231
			   'nom_ret'			=> self::GenColInfo('nom_ret', 'Nom retenu'),
1632 raphael 232
			   'nom_ret_nn'			=> self::GenColInfo('nom_ret_nn', 'Numéro nomenclatural nom retenu'),
233
			   'nt'					=> self::GenColInfo('nt', 'Numéro taxonomique'),
1630 raphael 234
			   'famille'			=> self::GenColInfo('famille', 'Famille'),
235
			   'nom_referentiel'	=> self::GenColInfo('nom_referentiel', 'Referentiel taxonomique'),
236
			   'zone_geo'			=> self::GenColInfo('zone_geo', 'Commune'),
237
			   'ce_zone_geo'		=> self::GenColInfo('ce_zone_geo', 'Identifiant Commune', 0, 'convertirCodeZoneGeoVersDepartement'),
238
			   'date_observation'	=> self::GenColInfo('date_observation', 'Date', 0, 'formaterDate'),
239
			   'lieudit'			=> self::GenColInfo('lieudit', 'Lieu-dit'),
240
			   'station'			=> self::GenColInfo('station', 'Station'),
241
			   'milieu'				=> self::GenColInfo('milieu', 'Milieu'),
242
			   'commentaire'		=> self::GenColInfo('commentaire', 'Notes'),
243
			   'latitude'			=> self::GenColInfo('latitude', 'Latitude', 1),
244
			   'longitude'			=> self::GenColInfo('longitude', 'Longitude', 1),
1632 raphael 245
			   'geodatum'			=> self::GenColInfo('geodatum', 'Référentiel Géographique', 1),
1630 raphael 246
 
247
			   'ordre'				=> self::GenColInfo('ordre', 'Ordre', 1),
248
			   'id_observation'		=> self::GenColInfo('id_observation', 'Identifiant', 1),
249
 
250
			   'mots_cles_texte'	=> self::GenColInfo('mots_cles_texte', 'Mots Clés', 1),
251
			   'commentaire'		=> self::GenColInfo('commentaire', 'Commentaires', 1),
252
			   'date_creation'		=> self::GenColInfo('date_creation', 'Date Création', 1),
253
			   'date_modification'	=> self::GenColInfo('date_modification', 'Date Modification', 1),
254
			   'date_transmission'	=> self::GenColInfo('date_transmission', 'Date Transmission', 1),
255
			   'abondance'			=> self::GenColInfo('abondance', 'Abondance', 1),
256
			   'certitude'			=> self::GenColInfo('certitude', 'Certitude', 1),
257
			   'phenologie'			=> self::GenColInfo('phenologie', 'Phénologie', 1),
1632 raphael 258
 
1633 raphael 259
			   'nom-commun'			=> self::GenColInfo('nom-commun', 'Nom Commun', 1, NULL, 'getNomCommun')
1632 raphael 260
			   //'nom-commun'			=> self::GenColInfo('nom-commun', 'Nom Commun', 1, NULL, 'getNomCommun_v2')
261
			   //'nom-commun'			=> self::GenColInfo('nom-commun', 'Nom Commun', 1, NULL, 'getNomCommun_v3')
1630 raphael 262
		   );
263
		}
264
 
265
		return $colonnes;
266
	}
267
 
268
	/*
269
	 * Wrapper générant un tableau associatif:
270
	 * @param $is_extra: défini si la colonne est extra (auquelle une bordure bleue entoure son nom dans la première ligne
1632 raphael 271
	 * @param $fonction (optionnel): un nom d'un fonction de préprocessing
272
	 * 		  $fonction doit prendre comme seul argument la valeur d'origine et retourner la valeur transformée
273
	 * @param $fonction_data (optionnel): une *méthode* d'obtention de donnée
274
	 * 		  $fonction_data doit prendre comme premier argument les champs de l'enregistrement existant
275
	 *		  $fonction_data doit retourner une valeur
276
 
1630 raphael 277
	 */
1632 raphael 278
	static function GenColInfo($slug, $nom, $is_extra = 0, $fonction = NULL, $fonction_data = NULL) {
1630 raphael 279
		return Array('slug' => $slug,
280
					 'nom' => $nom,
281
					 'extra' => $is_extra ? 1 : 0,
1632 raphael 282
					 'fonction' => $fonction,
283
					 'fonction_data' => $fonction_data
1630 raphael 284
		);
285
	}
286
 
287
	protected function formaterDate($date_heure_mysql, $format = NULL) {
288
		if (!$date_heure_mysql || $date_heure_mysql == "0000-00-00 00:00:00") return "00/00/0000";
1632 raphael 289
		$timestamp = DateTime::createFromFormat("Y-m-d H:i:s", $date_heure_mysql)->getTimestamp();
1630 raphael 290
		if(!$timestamp) return "00/00/0000";
291
		// TODO: les widget ne font malheureusement pas usage de l'heure dans le CEL
1632 raphael 292
		$date_formatee = strftime('%A %d %B %Y', $timestamp);
1630 raphael 293
		if(!$date_formatee) return "00/00/0000";
294
		return $date_formatee;
295
	}
1633 raphael 296
 
297
 
298
	// TODO: référentiel ne devrait pas être généré au moment d'un Config::get,
299
	// comme dans Config::get('nomsVernaRechercheLimiteeTpl')
300
	// Par exemple, la variable pour "nva" ?
301
	function getNomCommun($obs) {
302
		$langue = 'fra';
303
		list($referentiel) = explode(':', strtolower($obs['nom_referentiel']));
304
		if($referentiel == 'bdtfx') $referentiel = 'nvjfl';
305
		else return '';
306
 
307
		$cache_id = $referentiel . '-' . $obs['nt'] . '-' . $langue;
308
		if(isset($this->cache['getNomCommun'][$cache_id])) {
309
			//debug: error_log("require url_service_nom_attribution: OK ! (pour \"{$obs['nom_ret']}\")");
310
			return $this->cache['getNomCommun'][$cache_id];
311
		}
312
		// pas de cache:
313
		//debug: error_log("require url_service_nom_attribution pour \"{$obs['nom_ret']}\"");
314
 
315
		// pour bdtfx:
316
		// /service:eflore:0.1/nvjfl/noms-vernaculaires/attributions?masque.nt=X&masque.lg=fra&retour.champs=num_statut
317
		// /projet/services/modules/0.1/nvjfl/NomsVernaculaires.php
318
		$url = str_replace(Array('{referentiel}', '{valeur}', '{langue}'),
319
						   Array($referentiel, $obs['nt'], $langue),
320
						   $this->config['eflore']['url_service_nom_attribution']) .
321
			"&retour.champs=num_statut";
322
		$noms = @json_decode(file_get_contents($url));
323
		if(! $noms) return '';
324
		$noms = array_filter((array)($noms->resultat), function($item) { return ($item->num_statut == 1); });
325
		$nom = array_pop($noms)->nom_vernaculaire;
326
 
327
		// cache
328
		$this->cache['getNomCommun'][$cache_id] = $nom;
329
		return $nom;
330
	}
331
 
332
 
333
	/* Tente de bootstraper le framework au plus court et d'initialiser une instance de
334
	   NomsVernaculaires pour obtenir le nom commun */
335
	function getNomCommun_v2($obs) {
336
		static $service;
337
		$service = new Projets();
338
 
339
		$langue = 'fra';
340
		list($referentiel) = explode(':', strtolower($obs['nom_referentiel']));
341
		if($referentiel == 'bdtfx') $referentiel = 'nvjfl';
342
		else return '';
343
 
344
		$cache_id = $referentiel . '-' . $obs['nt'] . '-' . $langue;
345
		if(isset($this->cache['getNomCommun'][$cache_id])) {
346
			error_log("require NomsVernaculaires.php: OK ! (pour \"{$obs['nom_ret']}\")");
347
			return $this->cache['getNomCommun'][$cache_id];
348
		}
349
		// pas de cache:
350
		error_log("require NomsVernaculaires.php pour \"{$obs['nom_ret']}\"");
351
 
352
		$data = Array('masque.nt' => $obs['nt'],
353
							 'masque.lg' => $langue,
354
							 'retour.champs' => 'num_statut');
355
		$noms = $service->consulter(Array('nvjfl', 'noms-vernaculaires'), $data);
356
 
357
		if(! $noms) return '';
358
		$noms = array_filter((array)($noms->resultat), function($item) { return ($item->num_statut == 1); });
359
		$nom = array_pop($noms)->nom_vernaculaire;
360
 
361
		// cache
362
		$this->cache['getNomCommun'][$cache_id] = $nom;
363
		return $nom;
364
	}
365
 
366
 
367
	/* Effectue un bootstraping plus sage que ci-dessus, mais le gain d'efficacité
368
	   n'est pas aussi retentissant qu'espéré */
369
	static $service;
370
	function getNomCommun_v3($obs) {
371
		if(! $this->service) $this->service = new Projets();
372
 
373
		$langue = 'fra';
374
		list($referentiel) = explode(':', strtolower($obs['nom_referentiel']));
375
		if($referentiel == 'bdtfx') $referentiel = 'nvjfl';
376
		else return '';
377
 
378
		$cache_id = $referentiel . '-' . $obs['nt'] . '-' . $langue;
379
		if(isset($this->cache['getNomCommun'][$cache_id])) {
380
			error_log("require NomsVernaculaires.php: OK ! (pour \"{$obs['nom_ret']}\")");
381
			return $this->cache['getNomCommun'][$cache_id];
382
		}
383
		// pas de cache:
384
		error_log("require NomsVernaculaires.php pour \"{$obs['nom_ret']}\"");
385
 
386
		$data = Array('masque.nt' => $obs['nt'],
387
					  'masque.lg' => $langue,
388
					  'retour.champs' => 'conseil_emploi');
389
		$this->service->initialiserRessourcesEtParametres(Array('nvjfl', 'noms-vernaculaires', 'attributions'), $data);
390
		try {
391
			$noms = $this->service->traiterRessources();
392
		} catch(Exception $e) { return ''; }
393
		if(! $noms) return '';
394
		$noms = array_filter($noms['resultat'], function($item) { return ($item['num_statut'] == 1); });
395
		$nom = array_pop($noms)['nom_vernaculaire'];
396
 
397
		// cache
398
		$this->cache['getNomCommun'][$cache_id] = $nom;
399
		return $nom;
400
	}
401
 
402
}