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');
|
1656 |
raphael |
39 |
require_once('lib/FormateurGroupeColonne.php');
|
1630 |
raphael |
40 |
|
|
|
41 |
class ExportXLS extends Cel {
|
|
|
42 |
|
1639 |
raphael |
43 |
private $id_utilisateur = NULL;
|
1644 |
aurelien |
44 |
private $parametres_defaut = array("range" => "*",
|
1656 |
raphael |
45 |
"format" => "CSV");
|
1645 |
aurelien |
46 |
|
|
|
47 |
private $filtres_autorises = array(
|
|
|
48 |
'id_utilisateur' => 'id_utilisateur',
|
|
|
49 |
'utilisateur' => 'courriel_utilisateur',
|
|
|
50 |
'commune' => 'zone_geo',
|
|
|
51 |
'dept' => 'departement',
|
|
|
52 |
'projet' => 'mots_cles',
|
|
|
53 |
'num_taxon' => 'nt',
|
|
|
54 |
'date_debut' => 'date_debut',
|
|
|
55 |
'date_fin' => 'date_fin',
|
|
|
56 |
'taxon' => 'taxon'
|
|
|
57 |
);
|
1633 |
raphael |
58 |
|
1630 |
raphael |
59 |
function ExportXLS($config) {
|
|
|
60 |
parent::__construct($config);
|
|
|
61 |
}
|
1644 |
aurelien |
62 |
|
|
|
63 |
function getRessource() {
|
|
|
64 |
return $this->getElement(array());
|
|
|
65 |
}
|
|
|
66 |
|
|
|
67 |
function getElement($uid) {
|
|
|
68 |
$parametres_format = $this->traiterParametresFormat($uid, $_GET);
|
|
|
69 |
$filtres = $this->traiterFiltres($_GET);
|
|
|
70 |
$this->export($parametres_format, $filtres);
|
|
|
71 |
exit;
|
|
|
72 |
}
|
|
|
73 |
|
|
|
74 |
function traiterParametresFormat($uid, $params) {
|
|
|
75 |
$parametres = $this->parametres_defaut;
|
|
|
76 |
if(isset($params['format'])) {
|
|
|
77 |
if($params['format'] == 'csv') $parametres['format'] = 'CSV';
|
|
|
78 |
if($params['format'] == 'xls') $parametres['format'] = 'Excel5';
|
|
|
79 |
if($params['format'] == 'xlsx') $parametres['format'] = 'Excel2007';
|
1658 |
raphael |
80 |
if($params['format'] == 'pdf') $parametres['format'] = 'pdf';
|
1630 |
raphael |
81 |
}
|
1644 |
aurelien |
82 |
// TODO: $params['part'] pour le multi-part
|
|
|
83 |
$parametres['widget'] = isset($params['widget']) ? $params['widget'] : 'CEL';
|
|
|
84 |
$parametres['debut'] = isset($params['debut']) ? intval($params['debut']) : 0;
|
|
|
85 |
$parametres['limite'] = isset($params['limite']) ? intval($params['limite']) : 0;
|
|
|
86 |
$parametres['id_utilisateur'] = $this->traiterIdUtilisateur($uid);
|
|
|
87 |
$parametres['groupe_champs'] = null;
|
|
|
88 |
|
|
|
89 |
return $parametres;
|
|
|
90 |
}
|
|
|
91 |
|
|
|
92 |
function traiterIdUtilisateur($uid) {
|
|
|
93 |
$id_utilisateur = null;
|
|
|
94 |
// TODO: controleUtilisateur()
|
|
|
95 |
if(isset($uid[0])) {
|
|
|
96 |
$id_utilisateur = intval($uid[0]);
|
1630 |
raphael |
97 |
}
|
1644 |
aurelien |
98 |
return $id_utilisateur;
|
|
|
99 |
}
|
|
|
100 |
|
|
|
101 |
function traiterFiltres($params) {
|
|
|
102 |
$obs_ids = $this->traiterObsIds($params);
|
|
|
103 |
$filtres = array();
|
|
|
104 |
if(!$obs_ids || count($obs_ids) == 1 && $obs_ids[0] == '*') {
|
|
|
105 |
unset($filtres['sql_brut']);
|
|
|
106 |
}
|
1630 |
raphael |
107 |
else {
|
1644 |
aurelien |
108 |
$filtres = Array('sql_brut' =>
|
|
|
109 |
sprintf('id_observation IN (%s)', implode(',', $obs_ids)));
|
1630 |
raphael |
110 |
}
|
1645 |
aurelien |
111 |
foreach($params as $cle => $valeur) {
|
|
|
112 |
if(trim($valeur) != '' && isset($this->filtres_autorises[$cle])) {
|
|
|
113 |
$filtres[$this->filtres_autorises[$cle]] = $valeur;
|
|
|
114 |
}
|
|
|
115 |
}
|
1644 |
aurelien |
116 |
return $filtres;
|
1630 |
raphael |
117 |
}
|
1644 |
aurelien |
118 |
|
|
|
119 |
|
|
|
120 |
function traiterObsIds($params) {
|
|
|
121 |
$obs_ids = Array('*');
|
|
|
122 |
if (isset($params['range']) && trim($params['range']) != '*') {
|
|
|
123 |
// trim() car: `POST http://url<<<"range=*"`
|
|
|
124 |
$obs_ids = self::rangeToList(trim($params['range']));
|
|
|
125 |
}
|
|
|
126 |
return $obs_ids;
|
|
|
127 |
}
|
1630 |
raphael |
128 |
|
|
|
129 |
/*
|
|
|
130 |
* $param: Tableau associatif, indexes supportés:
|
|
|
131 |
* - widget: le nom du widget d'origine (utilisé pour les méta-données du tableur)
|
|
|
132 |
*
|
|
|
133 |
*/
|
1644 |
aurelien |
134 |
function export(Array $parametres_format = Array(),Array $filtres = array()) {
|
1630 |
raphael |
135 |
$chercheur_observations = new RechercheObservation($this->config);
|
|
|
136 |
|
1632 |
raphael |
137 |
$observations = $chercheur_observations
|
1644 |
aurelien |
138 |
->rechercherObservations($parametres_format['id_utilisateur'], $filtres, $parametres_format['debut'], $parametres_format['limite'], TRUE)
|
1632 |
raphael |
139 |
->get();
|
|
|
140 |
// debug //echo ($chercheur_observations->requete_selection_observations);
|
1630 |
raphael |
141 |
// XXX: malheureusement l'instance de JRest n'est pas accessible ici
|
|
|
142 |
if(!$observations) {
|
|
|
143 |
header('HTTP/1.0 204 No Content');
|
|
|
144 |
exit;
|
|
|
145 |
}
|
1656 |
raphael |
146 |
|
1658 |
raphael |
147 |
if($parametres_format['format'] == 'pdf') {
|
1660 |
raphael |
148 |
if(count($observations) > 300) die('too much');
|
1658 |
raphael |
149 |
require_once('GenerateurPDF.php');
|
|
|
150 |
|
|
|
151 |
$pdf = new GenerateurPDF();
|
|
|
152 |
$pdf->export($observations);
|
|
|
153 |
//$pdf->export1($observations);
|
|
|
154 |
//$pdf->export2($observations);
|
|
|
155 |
$pdf->pdf->Output('etiquettes.pdf', 'I');
|
|
|
156 |
die;
|
|
|
157 |
}
|
|
|
158 |
|
1656 |
raphael |
159 |
$colonnes = FormateurGroupeColonne::nomEnsembleVersListeColonnes($parametres_format['groupe_champs']);
|
1644 |
aurelien |
160 |
// $colonne_abbrev = array_keys($colonnes);
|
|
|
161 |
$objPHPExcel = $this->gerenerFeuilleImportFormatee($parametres_format);
|
|
|
162 |
$feuille = $objPHPExcel->setActiveSheetIndex(0);
|
|
|
163 |
// attention formaterColonnesFeuille prend ses 2 premiers paramètres par référence
|
|
|
164 |
$this->formaterColonnesFeuille($feuille, $colonnes, $parametres_format);
|
|
|
165 |
$objPHPExcel->getActiveSheet()->getDefaultColumnDimension()->setWidth(12);
|
1630 |
raphael |
166 |
|
1644 |
aurelien |
167 |
$no_ligne = 2;
|
|
|
168 |
foreach ($observations as $obs) {
|
|
|
169 |
// attention traiterLigneObservation prend ses 3 premiers paramètres par référence
|
|
|
170 |
$this->traiterLigneObservation($obs, $colonnes, $feuille, $no_ligne);
|
|
|
171 |
$no_ligne++;
|
|
|
172 |
}
|
1630 |
raphael |
173 |
|
1644 |
aurelien |
174 |
$this->envoyerFeuille($objPHPExcel, $parametres_format);
|
|
|
175 |
}
|
|
|
176 |
|
|
|
177 |
private function envoyerFeuille($objPHPExcel, $parametres_format) {
|
|
|
178 |
header("Content-Type: application/vnd.ms-excel");
|
|
|
179 |
header("Content-Disposition: attachment; filename=\"liste.xls\"; charset=utf-8");
|
|
|
180 |
header("Cache-Control: max-age=0");
|
|
|
181 |
|
|
|
182 |
// csv|xls|xlsx => CSV|Excel5|Excel2007
|
|
|
183 |
// Note: le format Excel2007 utilise un fichier temporaire
|
|
|
184 |
$generateur = PHPExcel_IOFactory::createWriter($objPHPExcel, $parametres_format['format']);
|
|
|
185 |
$generateur->save('php://output');
|
|
|
186 |
exit;
|
|
|
187 |
}
|
|
|
188 |
|
|
|
189 |
private function traiterLigneObservation(&$obs, &$colonnes, &$feuille, $no_ligne) {
|
|
|
190 |
$no_colonne = 0;
|
|
|
191 |
foreach($colonnes as $abbrev => $colonne) {
|
|
|
192 |
$valeur = null;
|
|
|
193 |
if($colonne['extra'] == 2) continue;
|
|
|
194 |
|
|
|
195 |
// valeur direct depuis cel_obs ?
|
|
|
196 |
if(isset($obs[$abbrev])) $valeur = $obs[$abbrev];
|
|
|
197 |
|
|
|
198 |
// pré-processeur de la champs
|
|
|
199 |
if(function_exists($colonne['fonction'])) {
|
|
|
200 |
$valeur = $colonne['fonction']($valeur);
|
1656 |
raphael |
201 |
} elseif(method_exists('FormateurGroupeColonne', $colonne['fonction'])) {
|
|
|
202 |
$valeur = call_user_func(array('FormateurGroupeColonne', $colonne['fonction']), $valeur);
|
1644 |
aurelien |
203 |
} elseif(method_exists(__CLASS__, $colonne['fonction'])) {
|
|
|
204 |
$valeur = call_user_func(array(__CLASS__, $colonne['fonction']), $valeur);
|
|
|
205 |
} elseif($colonne['fonction']) {
|
|
|
206 |
die("méthode {$colonne['fonction']} introuvable");
|
|
|
207 |
}
|
|
|
208 |
// fonction pour obtenir des champs (étendus)
|
|
|
209 |
elseif(function_exists($colonne['fonction_data'])) {
|
|
|
210 |
$valeur = $colonne['fonction_data']($obs);
|
|
|
211 |
}
|
|
|
212 |
elseif(method_exists(__CLASS__, $colonne['fonction_data'])) {
|
|
|
213 |
$valeur = call_user_func(array(__CLASS__, $colonne['fonction_data']), $obs);
|
|
|
214 |
}
|
|
|
215 |
|
|
|
216 |
// // cette section devrait être vide:
|
|
|
217 |
// // cas particuliers ingérable avec l'architecture actuelle:
|
|
|
218 |
if(false && $abbrev == 'date_observation' && $valeur == "0000-00-00") {
|
|
|
219 |
/* blah */
|
|
|
220 |
}
|
1656 |
raphael |
221 |
if($abbrev == 'images') {
|
|
|
222 |
$valeur = FormateurGroupeColonne::getImages($obs, $this->id_utilisateur, $this);
|
|
|
223 |
}
|
|
|
224 |
|
1644 |
aurelien |
225 |
// // fin de section "cas particuliers"
|
|
|
226 |
$feuille->setCellValueByColumnAndRow($no_colonne, $no_ligne, $valeur);
|
|
|
227 |
$no_colonne++;
|
|
|
228 |
}
|
|
|
229 |
}
|
|
|
230 |
|
|
|
231 |
private function gerenerFeuilleImportFormatee($parametres_format) {
|
|
|
232 |
$objPHPExcel = new PHPExcel();
|
|
|
233 |
|
|
|
234 |
$objPHPExcel->getProperties()->setCreator($parametres_format['widget']) // ou $uid ?
|
|
|
235 |
->setLastModifiedBy("XX") // TODO: $uid
|
|
|
236 |
->setTitle("Export des observation du carnet en ligne") // TODO
|
|
|
237 |
->setSubject("Export") // TODO
|
|
|
238 |
->setDescription("Export");
|
|
|
239 |
//->setKeywords("office PHPExcel php")
|
|
|
240 |
//->setCategory("Test result file")
|
|
|
241 |
|
1630 |
raphael |
242 |
$objPHPExcel->getActiveSheet()->setTitle("Observations");
|
1644 |
aurelien |
243 |
return $objPHPExcel;
|
|
|
244 |
}
|
|
|
245 |
|
|
|
246 |
private function formaterColonnesFeuille(&$feuille, &$colonnes, $parametres_format) {
|
1630 |
raphael |
247 |
$colid = 0;
|
|
|
248 |
foreach($colonnes as $colonne) {
|
1639 |
raphael |
249 |
if($colonne['extra'] == 2) continue;
|
1644 |
aurelien |
250 |
|
1638 |
raphael |
251 |
$feuille->setCellValueByColumnAndRow($colid, 1, $colonne['nom']);
|
1639 |
raphael |
252 |
if($colonne['extra'] == 1) {
|
1638 |
raphael |
253 |
$feuille->getStyleByColumnAndRow($colid, 1)->getBorders()->applyFromArray(
|
1630 |
raphael |
254 |
array(
|
|
|
255 |
'allborders' => array(
|
|
|
256 |
'style' => PHPExcel_Style_Border::BORDER_DASHDOT,
|
|
|
257 |
'color' => array('rgb' => PHPExcel_Style_Color::COLOR_BLUE)
|
|
|
258 |
)
|
|
|
259 |
)
|
|
|
260 |
);
|
|
|
261 |
}
|
1642 |
raphael |
262 |
if(! $colonne['importable']) {
|
|
|
263 |
$feuille->getStyleByColumnAndRow($colid, 1)->getFill()->applyFromArray(
|
|
|
264 |
array(
|
|
|
265 |
'type' => PHPExcel_Style_Fill::FILL_SOLID,
|
|
|
266 |
'color' => array('rgb' => PHPExcel_Style_Color::COLOR_YELLOW)
|
|
|
267 |
)
|
|
|
268 |
);
|
|
|
269 |
}
|
1644 |
aurelien |
270 |
|
1630 |
raphael |
271 |
$colid++;
|
|
|
272 |
}
|
|
|
273 |
}
|
|
|
274 |
|
|
|
275 |
/*
|
|
|
276 |
* @param $fieldSets: un range, eg: 1-5,8,32,58-101
|
|
|
277 |
* @return un tableau trié, eg: 1,2,3,4,5,8,32,58,...,101
|
1638 |
raphael |
278 |
* http://stackoverflow.com/questions/7698664/converting-a-range-or-partial-array-in-the-form-3-6-or-3-6-12-into-an-arra
|
1630 |
raphael |
279 |
*/
|
|
|
280 |
static function rangeToList($in = '') {
|
|
|
281 |
$inSets = explode(',', $in);
|
|
|
282 |
$outSets = array();
|
1632 |
raphael |
283 |
|
1630 |
raphael |
284 |
foreach($inSets as $inSet) {
|
|
|
285 |
list($start,$end) = explode('-', $inSet . '-' . $inSet);
|
1634 |
raphael |
286 |
// ignore les ranges trop importants
|
|
|
287 |
if($start > 10000000 || $end > 10000000 || abs($start-$end) > 10000) continue;
|
1630 |
raphael |
288 |
$outSets = array_merge($outSets,range($start,$end));
|
|
|
289 |
}
|
|
|
290 |
$outSets = array_unique($outSets);
|
|
|
291 |
$outSets = array_filter($outSets, 'is_numeric');
|
|
|
292 |
sort($outSets);
|
|
|
293 |
return $outSets;
|
|
|
294 |
}
|
1656 |
raphael |
295 |
}
|