Subversion Repositories eFlore/Applications.cel

Rev

Rev 1632 | Go to most recent revision | Details | 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');
35
require_once('lib/PHPExcel/Classes/PHPExcel.php');
36
 
37
class ExportXLS extends Cel  {
38
 
39
	function ExportXLS($config) {
40
		parent::__construct($config);
41
	}
42
 
43
	/*
44
	 * Process $_POST et $_GET
45
	 * TODO: changer JRest pour pouvoir disposer d'un nom de méthode plus représentatif que "updateXXX"
46
	 * en POST
47
	 */
48
	function updateElement($uid, $pairs) {
49
		$params = Array('uid' => $uid);
50
		// TODO: pas de range mais un utilisateur: possible
51
		if(!isset($_POST['range'])) {
52
			header('HTTP/1.0 204 No Content');
53
			exit;
54
		}
55
		elseif($_POST['range'] == '*') {
56
			$records = Array('*');
57
		}
58
		else {
59
			$records = self::rangeToList($_POST['range']);
60
		}
61
		$this->export($records, NULL, $params);
62
		exit;
63
	}
64
 
65
	/*
66
	 * $param: Tableau associatif, indexes supportés:
67
	 * 		   - widget: le nom du widget d'origine (utilisé pour les méta-données du tableur)
68
	 *
69
	 */
70
	function export(Array $records, String $fieldSets = NULL, Array $params = Array()) {
71
		$colonnes = self::fieldSetsToColumns($fieldSets);
72
		$columnSlugs = array_keys($colonnes);
73
		$chercheur_observations = new RechercheObservation($this->config);
74
 
75
		$objPHPExcel = new PHPExcel();
76
 
77
 
78
		// TODO: $params['part'] pour le multi-part
79
		$params['widget'] = isset($params['widget']) ? $params['widget'] : 'CEL';
80
		// TODO: controleUtilisateur()
81
		if( /* REMOVE*/ true || ! $params['uid'] || ! $this->controleUtilisateur($params['uid'])) {
82
			$params['uid'] = NULL;
83
		}
84
 
85
		$criteres = Array();
86
		if(count($records) == 1 && $records[0] == '*') {
87
			unset($criteres['raw']);
88
		}
89
		else {
90
			$criteres = Array('raw' =>
91
							  sprintf('id_observation IN (%s)', implode(',', $records)));
92
		}
93
 
94
		$criteres['debut'] = isset($_GET['debut']) ? intval($_GET['debut']) : 0;
95
		$criteres['limite'] = isset($_GET['limite']) ? intval($_GET['limite']) : 0;
96
		$observations = $chercheur_observations->rechercherObservations($params['uid'],
97
																		$criteres,
98
																		$criteres['debut'],
99
																		$criteres['limite']);
100
 
101
		// XXX: malheureusement l'instance de JRest n'est pas accessible ici
102
		if(!$observations) {
103
			header('HTTP/1.0 204 No Content');
104
			exit;
105
		}
106
 
107
		$objPHPExcel->getProperties()->setCreator($params['widget']) // ou $uid ?
108
			->setLastModifiedBy("XX") // TODO: $uid
109
			->setTitle("YY") // TODO
110
			->setSubject("ZZ") // TODO
111
			->setDescription("Export blah");
112
			//->setKeywords("office PHPExcel php")
113
			//->setCategory("Test result file")
114
 
115
		$objPHPExcel->getActiveSheet()->setTitle("Observations");
116
		$sheet = $objPHPExcel->setActiveSheetIndex(0);
117
		$colid = 0;
118
		foreach($colonnes as $colonne) {
119
			$sheet->setCellValueByColumnAndRow($colid, 1, $colonne['nom']);
120
			if($colonne['extra']) {
121
				$sheet->getStyleByColumnAndRow($colid, 1)->getBorders()->applyFromArray(
122
					array(
123
						'allborders' => array(
124
							'style' => PHPExcel_Style_Border::BORDER_DASHDOT,
125
							'color' => array('rgb' => PHPExcel_Style_Color::COLOR_BLUE)
126
						)
127
					)
128
				);
129
			}
130
			$colid++;
131
		}
132
 
133
		$objPHPExcel->getActiveSheet()->getDefaultColumnDimension()->setWidth(12);
134
 
135
		$row = 2;
136
		foreach ($observations as $obs) {
137
			$colid = 0;
138
			foreach($colonnes as $slug => $colonne) {
139
				$valeur = $obs[$slug];
140
 
141
				// pré-processeur des champs
142
				if(function_exists($colonne['function']))
143
					$valeur = $colonne['function']($valeur);
144
				elseif(method_exists(__CLASS__, $colonne['function']))
145
					$valeur = call_user_func(array(__CLASS__, $colonne['function']), $valeur);
146
				elseif($colonne['function']) {
147
					die("méthode {$colonne['function']} introuvable");
148
				}
149
 
150
				// // cette section devrait être vide:
151
				// // cas particuliers ingérable avec l'architecture actuelle:
152
				if(false && $slug == 'date_observation' && $valeur == "0000-00-00") { /* blah */ }
153
				// // fin de section "cas particuliers"
154
 
155
				$sheet->setCellValueByColumnAndRow($colid, $row, $valeur);
156
				$colid++;
157
			}
158
			$row++;
159
		}
160
 
161
		header("Content-Type: application/vnd.ms-excel");
162
		header("Content-Disposition: attachment; filename=\"liste.xls\"; charset=utf-8");
163
		header("Cache-Control: max-age=0");
164
		// Le format Excel2007 utilise un fichier temporaire
165
		$objWriter = PHPExcel_IOFactory::createWriter($objPHPExcel, 'Excel2007');
166
		// $objWriter = PHPExcel_IOFactory::createWriter($objPHPExcel, 'Excel5');
167
		$objWriter->save('php://output');
168
		exit;
169
	}
170
 
171
	/*
172
	 * @param $fieldSets: un range, eg: 1-5,8,32,58-101
173
	 * @return un tableau trié, eg: 1,2,3,4,5,8,32,58,...,101
174
	 */
175
	static function rangeToList($in = '') {
176
		$inSets = explode(',', $in);
177
		$outSets = array();
178
		foreach($inSets as $inSet) {
179
			list($start,$end) = explode('-', $inSet . '-' . $inSet);
180
			$outSets = array_merge($outSets,range($start,$end));
181
		}
182
		$outSets = array_unique($outSets);
183
		$outSets = array_filter($outSets, 'is_numeric');
184
		sort($outSets);
185
		return $outSets;
186
	}
187
 
188
	/*
189
	 * @param $fieldSets: un liste de noms de colonnes ou de sets de colonnes
190
	 *		séparés par des virgules
191
	 * 		eg: "espece" ou "champs-etendus", ...
192
	 *
193
	 * @return: un tableau associatif déjà ordonné
194
	 * 		clé: slug [machine-name] de la colonne (eg: "espece" ou "mot-clef")
195
	 * 		valeur: des données relative à cette colonne, cf GenColInfo
196
	 *
197
	 * @TODO: fonction commune à la génération en CSV
198
	 */
199
	static function fieldSetsToColumns($fieldSets = 'standard') {
200
		if(! $fieldSets) $fieldSets = 'standard';
201
		$fieldSets = array_flip(explode(',', $fieldSets));
202
		$colonnes = Array();
203
 
204
		if(isset($fieldSets['standard'])) {
205
		   $colonnes += Array(
206
			   'nom_sel'			=> self::GenColInfo('nom_sel', 'Espèce'),
207
			   'nom_sel_nn'			=> self::GenColInfo('nom_sel_nn', 'Numero nomenclatural'),
208
			   'nom_ret'			=> self::GenColInfo('nom_ret', 'Nom retenu'),
209
			   'nom_ret_nn'			=> self::GenColInfo('nom_ret_nn', 'Numero nomenclatural nom retenu'),
210
			   'nt'					=> self::GenColInfo('nt', 'Numero taxonomique'),
211
			   'famille'			=> self::GenColInfo('famille', 'Famille'),
212
			   'nom_referentiel'	=> self::GenColInfo('nom_referentiel', 'Referentiel taxonomique'),
213
			   'zone_geo'			=> self::GenColInfo('zone_geo', 'Commune'),
214
			   'ce_zone_geo'		=> self::GenColInfo('ce_zone_geo', 'Identifiant Commune', 0, 'convertirCodeZoneGeoVersDepartement'),
215
			   'date_observation'	=> self::GenColInfo('date_observation', 'Date', 0, 'formaterDate'),
216
			   'lieudit'			=> self::GenColInfo('lieudit', 'Lieu-dit'),
217
			   'station'			=> self::GenColInfo('station', 'Station'),
218
			   'milieu'				=> self::GenColInfo('milieu', 'Milieu'),
219
			   'commentaire'		=> self::GenColInfo('commentaire', 'Notes'),
220
			   'latitude'			=> self::GenColInfo('latitude', 'Latitude', 1),
221
			   'longitude'			=> self::GenColInfo('longitude', 'Longitude', 1),
222
			   'geodatum'			=> self::GenColInfo('geodatum', 'Referentiel Geographique', 1),
223
 
224
			   'ordre'				=> self::GenColInfo('ordre', 'Ordre', 1),
225
			   'id_observation'		=> self::GenColInfo('id_observation', 'Identifiant', 1),
226
 
227
			   'mots_cles_texte'	=> self::GenColInfo('mots_cles_texte', 'Mots Clés', 1),
228
			   'commentaire'		=> self::GenColInfo('commentaire', 'Commentaires', 1),
229
			   'date_creation'		=> self::GenColInfo('date_creation', 'Date Création', 1),
230
			   'date_modification'	=> self::GenColInfo('date_modification', 'Date Modification', 1),
231
			   'date_transmission'	=> self::GenColInfo('date_transmission', 'Date Transmission', 1),
232
			   'abondance'			=> self::GenColInfo('abondance', 'Abondance', 1),
233
			   'certitude'			=> self::GenColInfo('certitude', 'Certitude', 1),
234
			   'phenologie'			=> self::GenColInfo('phenologie', 'Phénologie', 1),
235
 
236
		   );
237
		}
238
 
239
		return $colonnes;
240
	}
241
 
242
	/*
243
	 * Wrapper générant un tableau associatif:
244
	 * @param $is_extra: défini si la colonne est extra (auquelle une bordure bleue entoure son nom dans la première ligne
245
	 * @param $function: un nom optionnel d'un fonction de préprocessing
246
	 * 		$function doit prendre comme argument la valeur et retourner la valeur transformée
247
	 */
248
	static function GenColInfo($slug, $nom, $is_extra = 0, $function = NULL) {
249
		return Array('slug' => $slug,
250
					 'nom' => $nom,
251
					 'extra' => $is_extra ? 1 : 0,
252
					 'function' => $function
253
		);
254
	}
255
 
256
	protected function formaterDate($date_heure_mysql, $format = NULL) {
257
		if (!$date_heure_mysql || $date_heure_mysql == "0000-00-00 00:00:00") return "00/00/0000";
258
		$timestamp = DateTime::createFromFormat("Y-m-d H:i:s", $date_heure_mysql);
259
		if(!$timestamp) return "00/00/0000";
260
		// TODO: les widget ne font malheureusement pas usage de l'heure dans le CEL
261
		$date_formatee = strftime('%A %d %B %Y', $timestamp->getTimestamp());
262
		if(!$date_formatee) return "00/00/0000";
263
		return $date_formatee;
264
	}
265
}