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 |
|
1639 |
raphael |
40 |
define('SEPARATEUR_IMAGES', ",");
|
|
|
41 |
|
1633 |
raphael |
42 |
// si getNomCommun_v2 ou getNomCommun_v3 sont utilisés
|
|
|
43 |
/*require_once('/home/raphael/eflore/framework/framework/Framework.php');
|
|
|
44 |
Framework::setCheminAppli("/home/raphael/eflore/projets/services/index.php");
|
|
|
45 |
Framework::setInfoAppli(Config::get('info'));
|
|
|
46 |
require_once('/home/raphael/eflore/projets/services/modules/0.1/Projets.php');*/
|
|
|
47 |
|
1630 |
raphael |
48 |
class ExportXLS extends Cel {
|
|
|
49 |
|
1633 |
raphael |
50 |
private $cache = Array();
|
1639 |
raphael |
51 |
private $id_utilisateur = NULL;
|
1644 |
aurelien |
52 |
private $parametres_defaut = array("range" => "*",
|
|
|
53 |
"format" => "CSV");
|
1645 |
aurelien |
54 |
|
|
|
55 |
private $filtres_autorises = array(
|
|
|
56 |
'id_utilisateur' => 'id_utilisateur',
|
|
|
57 |
'utilisateur' => 'courriel_utilisateur',
|
|
|
58 |
'commune' => 'zone_geo',
|
|
|
59 |
'dept' => 'departement',
|
|
|
60 |
'projet' => 'mots_cles',
|
|
|
61 |
'num_taxon' => 'nt',
|
|
|
62 |
'date_debut' => 'date_debut',
|
|
|
63 |
'date_fin' => 'date_fin',
|
|
|
64 |
'taxon' => 'taxon'
|
|
|
65 |
);
|
1633 |
raphael |
66 |
|
1630 |
raphael |
67 |
function ExportXLS($config) {
|
|
|
68 |
parent::__construct($config);
|
|
|
69 |
}
|
1644 |
aurelien |
70 |
|
|
|
71 |
function getRessource() {
|
|
|
72 |
return $this->getElement(array());
|
|
|
73 |
}
|
|
|
74 |
|
|
|
75 |
function getElement($uid) {
|
|
|
76 |
$parametres_format = $this->traiterParametresFormat($uid, $_GET);
|
|
|
77 |
$filtres = $this->traiterFiltres($_GET);
|
|
|
78 |
$this->export($parametres_format, $filtres);
|
|
|
79 |
exit;
|
|
|
80 |
}
|
|
|
81 |
|
|
|
82 |
function traiterParametresFormat($uid, $params) {
|
|
|
83 |
$parametres = $this->parametres_defaut;
|
|
|
84 |
if(isset($params['format'])) {
|
|
|
85 |
if($params['format'] == 'csv') $parametres['format'] = 'CSV';
|
|
|
86 |
if($params['format'] == 'xls') $parametres['format'] = 'Excel5';
|
|
|
87 |
if($params['format'] == 'xlsx') $parametres['format'] = 'Excel2007';
|
1630 |
raphael |
88 |
}
|
1644 |
aurelien |
89 |
// TODO: $params['part'] pour le multi-part
|
|
|
90 |
$parametres['widget'] = isset($params['widget']) ? $params['widget'] : 'CEL';
|
|
|
91 |
$parametres['debut'] = isset($params['debut']) ? intval($params['debut']) : 0;
|
|
|
92 |
$parametres['limite'] = isset($params['limite']) ? intval($params['limite']) : 0;
|
|
|
93 |
$parametres['id_utilisateur'] = $this->traiterIdUtilisateur($uid);
|
|
|
94 |
$parametres['groupe_champs'] = null;
|
|
|
95 |
|
|
|
96 |
return $parametres;
|
|
|
97 |
}
|
|
|
98 |
|
|
|
99 |
function traiterIdUtilisateur($uid) {
|
|
|
100 |
$id_utilisateur = null;
|
|
|
101 |
// TODO: controleUtilisateur()
|
|
|
102 |
if(isset($uid[0])) {
|
|
|
103 |
$id_utilisateur = intval($uid[0]);
|
1630 |
raphael |
104 |
}
|
1644 |
aurelien |
105 |
return $id_utilisateur;
|
|
|
106 |
}
|
|
|
107 |
|
|
|
108 |
function traiterFiltres($params) {
|
|
|
109 |
$obs_ids = $this->traiterObsIds($params);
|
|
|
110 |
$filtres = array();
|
|
|
111 |
if(!$obs_ids || count($obs_ids) == 1 && $obs_ids[0] == '*') {
|
|
|
112 |
unset($filtres['sql_brut']);
|
|
|
113 |
}
|
1630 |
raphael |
114 |
else {
|
1644 |
aurelien |
115 |
$filtres = Array('sql_brut' =>
|
|
|
116 |
sprintf('id_observation IN (%s)', implode(',', $obs_ids)));
|
1630 |
raphael |
117 |
}
|
1645 |
aurelien |
118 |
foreach($params as $cle => $valeur) {
|
|
|
119 |
if(trim($valeur) != '' && isset($this->filtres_autorises[$cle])) {
|
|
|
120 |
$filtres[$this->filtres_autorises[$cle]] = $valeur;
|
|
|
121 |
}
|
|
|
122 |
}
|
1644 |
aurelien |
123 |
return $filtres;
|
1630 |
raphael |
124 |
}
|
1644 |
aurelien |
125 |
|
|
|
126 |
|
|
|
127 |
function traiterObsIds($params) {
|
|
|
128 |
$obs_ids = Array('*');
|
|
|
129 |
if (isset($params['range']) && trim($params['range']) != '*') {
|
|
|
130 |
// trim() car: `POST http://url<<<"range=*"`
|
|
|
131 |
$obs_ids = self::rangeToList(trim($params['range']));
|
|
|
132 |
}
|
|
|
133 |
return $obs_ids;
|
|
|
134 |
}
|
1630 |
raphael |
135 |
|
|
|
136 |
/*
|
|
|
137 |
* $param: Tableau associatif, indexes supportés:
|
|
|
138 |
* - widget: le nom du widget d'origine (utilisé pour les méta-données du tableur)
|
|
|
139 |
*
|
|
|
140 |
*/
|
1644 |
aurelien |
141 |
function export(Array $parametres_format = Array(),Array $filtres = array()) {
|
1630 |
raphael |
142 |
$chercheur_observations = new RechercheObservation($this->config);
|
|
|
143 |
|
1632 |
raphael |
144 |
$observations = $chercheur_observations
|
1644 |
aurelien |
145 |
->rechercherObservations($parametres_format['id_utilisateur'], $filtres, $parametres_format['debut'], $parametres_format['limite'], TRUE)
|
1632 |
raphael |
146 |
->get();
|
|
|
147 |
// debug //echo ($chercheur_observations->requete_selection_observations);
|
1630 |
raphael |
148 |
// XXX: malheureusement l'instance de JRest n'est pas accessible ici
|
|
|
149 |
if(!$observations) {
|
|
|
150 |
header('HTTP/1.0 204 No Content');
|
|
|
151 |
exit;
|
|
|
152 |
}
|
1644 |
aurelien |
153 |
|
|
|
154 |
$colonnes = self::nomEnsembleVersListeColonnes($parametres_format['groupe_champs']);
|
|
|
155 |
// $colonne_abbrev = array_keys($colonnes);
|
|
|
156 |
$objPHPExcel = $this->gerenerFeuilleImportFormatee($parametres_format);
|
|
|
157 |
$feuille = $objPHPExcel->setActiveSheetIndex(0);
|
|
|
158 |
// attention formaterColonnesFeuille prend ses 2 premiers paramètres par référence
|
|
|
159 |
$this->formaterColonnesFeuille($feuille, $colonnes, $parametres_format);
|
|
|
160 |
$objPHPExcel->getActiveSheet()->getDefaultColumnDimension()->setWidth(12);
|
1630 |
raphael |
161 |
|
1644 |
aurelien |
162 |
$no_ligne = 2;
|
|
|
163 |
foreach ($observations as $obs) {
|
|
|
164 |
// attention traiterLigneObservation prend ses 3 premiers paramètres par référence
|
|
|
165 |
$this->traiterLigneObservation($obs, $colonnes, $feuille, $no_ligne);
|
|
|
166 |
$no_ligne++;
|
|
|
167 |
}
|
1630 |
raphael |
168 |
|
1644 |
aurelien |
169 |
$this->envoyerFeuille($objPHPExcel, $parametres_format);
|
|
|
170 |
}
|
|
|
171 |
|
|
|
172 |
private function envoyerFeuille($objPHPExcel, $parametres_format) {
|
|
|
173 |
header("Content-Type: application/vnd.ms-excel");
|
|
|
174 |
header("Content-Disposition: attachment; filename=\"liste.xls\"; charset=utf-8");
|
|
|
175 |
header("Cache-Control: max-age=0");
|
|
|
176 |
|
|
|
177 |
// csv|xls|xlsx => CSV|Excel5|Excel2007
|
|
|
178 |
// Note: le format Excel2007 utilise un fichier temporaire
|
|
|
179 |
$generateur = PHPExcel_IOFactory::createWriter($objPHPExcel, $parametres_format['format']);
|
|
|
180 |
$generateur->save('php://output');
|
|
|
181 |
exit;
|
|
|
182 |
}
|
|
|
183 |
|
|
|
184 |
private function traiterLigneObservation(&$obs, &$colonnes, &$feuille, $no_ligne) {
|
|
|
185 |
$no_colonne = 0;
|
|
|
186 |
foreach($colonnes as $abbrev => $colonne) {
|
|
|
187 |
$valeur = null;
|
|
|
188 |
if($colonne['extra'] == 2) continue;
|
|
|
189 |
|
|
|
190 |
// valeur direct depuis cel_obs ?
|
|
|
191 |
if(isset($obs[$abbrev])) $valeur = $obs[$abbrev];
|
|
|
192 |
|
|
|
193 |
// pré-processeur de la champs
|
|
|
194 |
if(function_exists($colonne['fonction'])) {
|
|
|
195 |
$valeur = $colonne['fonction']($valeur);
|
|
|
196 |
} elseif(method_exists(__CLASS__, $colonne['fonction'])) {
|
|
|
197 |
$valeur = call_user_func(array(__CLASS__, $colonne['fonction']), $valeur);
|
|
|
198 |
} elseif($colonne['fonction']) {
|
|
|
199 |
die("méthode {$colonne['fonction']} introuvable");
|
|
|
200 |
}
|
|
|
201 |
// fonction pour obtenir des champs (étendus)
|
|
|
202 |
elseif(function_exists($colonne['fonction_data'])) {
|
|
|
203 |
$valeur = $colonne['fonction_data']($obs);
|
|
|
204 |
}
|
|
|
205 |
elseif(method_exists(__CLASS__, $colonne['fonction_data'])) {
|
|
|
206 |
$valeur = call_user_func(array(__CLASS__, $colonne['fonction_data']), $obs);
|
|
|
207 |
}
|
|
|
208 |
|
|
|
209 |
// // cette section devrait être vide:
|
|
|
210 |
// // cas particuliers ingérable avec l'architecture actuelle:
|
|
|
211 |
if(false && $abbrev == 'date_observation' && $valeur == "0000-00-00") {
|
|
|
212 |
/* blah */
|
|
|
213 |
}
|
|
|
214 |
// // fin de section "cas particuliers"
|
|
|
215 |
$feuille->setCellValueByColumnAndRow($no_colonne, $no_ligne, $valeur);
|
|
|
216 |
$no_colonne++;
|
|
|
217 |
}
|
|
|
218 |
}
|
|
|
219 |
|
|
|
220 |
private function gerenerFeuilleImportFormatee($parametres_format) {
|
|
|
221 |
$objPHPExcel = new PHPExcel();
|
|
|
222 |
|
|
|
223 |
$objPHPExcel->getProperties()->setCreator($parametres_format['widget']) // ou $uid ?
|
|
|
224 |
->setLastModifiedBy("XX") // TODO: $uid
|
|
|
225 |
->setTitle("Export des observation du carnet en ligne") // TODO
|
|
|
226 |
->setSubject("Export") // TODO
|
|
|
227 |
->setDescription("Export");
|
|
|
228 |
//->setKeywords("office PHPExcel php")
|
|
|
229 |
//->setCategory("Test result file")
|
|
|
230 |
|
1630 |
raphael |
231 |
$objPHPExcel->getActiveSheet()->setTitle("Observations");
|
1644 |
aurelien |
232 |
return $objPHPExcel;
|
|
|
233 |
}
|
|
|
234 |
|
|
|
235 |
private function formaterColonnesFeuille(&$feuille, &$colonnes, $parametres_format) {
|
1630 |
raphael |
236 |
$colid = 0;
|
|
|
237 |
foreach($colonnes as $colonne) {
|
1639 |
raphael |
238 |
if($colonne['extra'] == 2) continue;
|
1644 |
aurelien |
239 |
|
1638 |
raphael |
240 |
$feuille->setCellValueByColumnAndRow($colid, 1, $colonne['nom']);
|
1639 |
raphael |
241 |
if($colonne['extra'] == 1) {
|
1638 |
raphael |
242 |
$feuille->getStyleByColumnAndRow($colid, 1)->getBorders()->applyFromArray(
|
1630 |
raphael |
243 |
array(
|
|
|
244 |
'allborders' => array(
|
|
|
245 |
'style' => PHPExcel_Style_Border::BORDER_DASHDOT,
|
|
|
246 |
'color' => array('rgb' => PHPExcel_Style_Color::COLOR_BLUE)
|
|
|
247 |
)
|
|
|
248 |
)
|
|
|
249 |
);
|
|
|
250 |
}
|
1642 |
raphael |
251 |
if(! $colonne['importable']) {
|
|
|
252 |
$feuille->getStyleByColumnAndRow($colid, 1)->getFill()->applyFromArray(
|
|
|
253 |
array(
|
|
|
254 |
'type' => PHPExcel_Style_Fill::FILL_SOLID,
|
|
|
255 |
'color' => array('rgb' => PHPExcel_Style_Color::COLOR_YELLOW)
|
|
|
256 |
)
|
|
|
257 |
);
|
|
|
258 |
}
|
1644 |
aurelien |
259 |
|
1630 |
raphael |
260 |
$colid++;
|
|
|
261 |
}
|
|
|
262 |
}
|
|
|
263 |
|
|
|
264 |
/*
|
|
|
265 |
* @param $fieldSets: un range, eg: 1-5,8,32,58-101
|
|
|
266 |
* @return un tableau trié, eg: 1,2,3,4,5,8,32,58,...,101
|
1638 |
raphael |
267 |
* 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 |
268 |
*/
|
|
|
269 |
static function rangeToList($in = '') {
|
|
|
270 |
$inSets = explode(',', $in);
|
|
|
271 |
$outSets = array();
|
1632 |
raphael |
272 |
|
1630 |
raphael |
273 |
foreach($inSets as $inSet) {
|
|
|
274 |
list($start,$end) = explode('-', $inSet . '-' . $inSet);
|
1634 |
raphael |
275 |
// ignore les ranges trop importants
|
|
|
276 |
if($start > 10000000 || $end > 10000000 || abs($start-$end) > 10000) continue;
|
1630 |
raphael |
277 |
$outSets = array_merge($outSets,range($start,$end));
|
|
|
278 |
}
|
|
|
279 |
$outSets = array_unique($outSets);
|
|
|
280 |
$outSets = array_filter($outSets, 'is_numeric');
|
|
|
281 |
sort($outSets);
|
|
|
282 |
return $outSets;
|
|
|
283 |
}
|
|
|
284 |
|
|
|
285 |
/*
|
|
|
286 |
* @param $fieldSets: un liste de noms de colonnes ou de sets de colonnes
|
|
|
287 |
* séparés par des virgules
|
|
|
288 |
* eg: "espece" ou "champs-etendus", ...
|
|
|
289 |
*
|
|
|
290 |
* @return: un tableau associatif déjà ordonné
|
1638 |
raphael |
291 |
* clé: abbrev [machine-name] de la colonne (eg: "espece" ou "mot-clef")
|
1630 |
raphael |
292 |
* valeur: des données relative à cette colonne, cf GenColInfo
|
|
|
293 |
*
|
|
|
294 |
* @TODO: fonction commune à la génération en CSV
|
1638 |
raphael |
295 |
*
|
1630 |
raphael |
296 |
*/
|
1644 |
aurelien |
297 |
static function nomEnsembleVersListeColonnes($groupe_de_champs = 'standard') {
|
1638 |
raphael |
298 |
if(! $groupe_de_champs) $groupe_de_champs = 'standard';
|
|
|
299 |
$groupe_de_champs = array_flip(explode(',', $groupe_de_champs));
|
1630 |
raphael |
300 |
$colonnes = Array();
|
|
|
301 |
|
1638 |
raphael |
302 |
if(isset($groupe_de_champs['standard'])) {
|
1630 |
raphael |
303 |
$colonnes += Array(
|
|
|
304 |
'nom_sel' => self::GenColInfo('nom_sel', 'Espèce'),
|
1642 |
raphael |
305 |
'nom_sel_nn' => self::GenColInfo('nom_sel_nn', 'Numéro nomenclatural', 0, NULL, NULL, FALSE),
|
|
|
306 |
'nom_ret' => self::GenColInfo('nom_ret', 'Nom retenu', 0, NULL, NULL, FALSE),
|
|
|
307 |
'nom_ret_nn' => self::GenColInfo('nom_ret_nn', 'Numéro nomenclatural nom retenu', 0, NULL, NULL, FALSE),
|
|
|
308 |
'nt' => self::GenColInfo('nt', 'Numéro taxonomique', 0, NULL, NULL, FALSE),
|
|
|
309 |
'famille' => self::GenColInfo('famille', 'Famille', 0, NULL, NULL, FALSE),
|
1630 |
raphael |
310 |
'nom_referentiel' => self::GenColInfo('nom_referentiel', 'Referentiel taxonomique'),
|
|
|
311 |
'zone_geo' => self::GenColInfo('zone_geo', 'Commune'),
|
|
|
312 |
'ce_zone_geo' => self::GenColInfo('ce_zone_geo', 'Identifiant Commune', 0, 'convertirCodeZoneGeoVersDepartement'),
|
|
|
313 |
'date_observation' => self::GenColInfo('date_observation', 'Date', 0, 'formaterDate'),
|
|
|
314 |
'lieudit' => self::GenColInfo('lieudit', 'Lieu-dit'),
|
|
|
315 |
'station' => self::GenColInfo('station', 'Station'),
|
|
|
316 |
'milieu' => self::GenColInfo('milieu', 'Milieu'),
|
|
|
317 |
'commentaire' => self::GenColInfo('commentaire', 'Notes'),
|
|
|
318 |
'latitude' => self::GenColInfo('latitude', 'Latitude', 1),
|
|
|
319 |
'longitude' => self::GenColInfo('longitude', 'Longitude', 1),
|
1642 |
raphael |
320 |
'geodatum' => self::GenColInfo('geodatum', 'Référentiel Géographique', 1, NULL, NULL, FALSE),
|
1630 |
raphael |
321 |
|
1635 |
raphael |
322 |
// TODO: importable = FALSE car pas de merge de données importées
|
|
|
323 |
'ordre' => self::GenColInfo('ordre', 'Ordre', 1, NULL, NULL, FALSE),
|
|
|
324 |
'id_observation' => self::GenColInfo('id_observation', 'Identifiant', 1, NULL, NULL, FALSE),
|
1630 |
raphael |
325 |
|
|
|
326 |
'mots_cles_texte' => self::GenColInfo('mots_cles_texte', 'Mots Clés', 1),
|
|
|
327 |
'commentaire' => self::GenColInfo('commentaire', 'Commentaires', 1),
|
1642 |
raphael |
328 |
'date_creation' => self::GenColInfo('date_creation', 'Date Création', 1, NULL, NULL, FALSE),
|
|
|
329 |
'date_modification' => self::GenColInfo('date_modification', 'Date Modification', 1, NULL, NULL, FALSE),
|
1639 |
raphael |
330 |
|
|
|
331 |
// rappel transmission = 1, signifie simplement "public"
|
|
|
332 |
// des données importées peuvent être d'emblée "publiques"
|
|
|
333 |
// "importable" = TRUE
|
|
|
334 |
'transmission' => self::GenColInfo('transmission', 'Transmis', 1),
|
1642 |
raphael |
335 |
'date_transmission' => self::GenColInfo('date_transmission', 'Date Transmission', 1, NULL, NULL, FALSE),
|
|
|
336 |
'abondance' => self::GenColInfo('abondance', 'Abondance', 1),
|
|
|
337 |
'certitude' => self::GenColInfo('certitude', 'Certitude', 1),
|
|
|
338 |
'phenologie' => self::GenColInfo('phenologie', 'Phénologie', 1),
|
1632 |
raphael |
339 |
|
1639 |
raphael |
340 |
'nom_commun' => self::GenColInfo('nom_commun', 'Nom Commun', 1, NULL, 'getNomCommun', FALSE),
|
|
|
341 |
//'nom-commun' => self::GenColInfo('nom-commun', 'Nom Commun', 1, NULL, 'getNomCommun_v2'),
|
|
|
342 |
//'nom-commun' => self::GenColInfo('nom-commun', 'Nom Commun', 1, NULL, 'getNomCommun_v3'),
|
|
|
343 |
|
1642 |
raphael |
344 |
'images' => self::GenColInfo('images', 'Image(s)', 1, NULL, 'getImages', TRUE),
|
1630 |
raphael |
345 |
);
|
|
|
346 |
}
|
|
|
347 |
|
|
|
348 |
return $colonnes;
|
|
|
349 |
}
|
|
|
350 |
|
|
|
351 |
/*
|
|
|
352 |
* Wrapper générant un tableau associatif:
|
1639 |
raphael |
353 |
|
|
|
354 |
* @param $abbrev (obligatoire): nom court de colonne, largement utilisé lors de l'import.
|
|
|
355 |
* En effet chaque ligne importée est accessible à l'aide du `define` de $abbrev en majuscule, préfixé de "C_"
|
|
|
356 |
* Exemple: $ligne[C_LONGITUDE] pour "longitude".
|
|
|
357 |
* cf: ImportXLS::detectionEntete()
|
|
|
358 |
|
|
|
359 |
* @param $nom (obligatoire): nom complet de colonne (utilisé pour la ligne d'en-tête)
|
|
|
360 |
|
|
|
361 |
* @param $is_extra:
|
|
|
362 |
* Si 0, la colonne est une colonne standard
|
|
|
363 |
* Si 1, la colonne est extra [le plus souvent générée automatiquement]
|
|
|
364 |
* (auquel cas une bordure bleue entoure son nom dans la ligne d'entête)
|
|
|
365 |
* Si 2, la colonne n'est pas traité à l'export, mais une définition peut lui être donnée
|
|
|
366 |
* qui pourra être utilisée à l'import, exemple: "image"
|
|
|
367 |
|
1632 |
raphael |
368 |
* @param $fonction (optionnel): un nom d'un fonction de préprocessing
|
|
|
369 |
* $fonction doit prendre comme seul argument la valeur d'origine et retourner la valeur transformée
|
1639 |
raphael |
370 |
|
1632 |
raphael |
371 |
* @param $fonction_data (optionnel): une *méthode* d'obtention de donnée
|
1639 |
raphael |
372 |
* $fonction_data doit prendre comme premier argument le tableau des champs de l'enregistrement existant
|
1632 |
raphael |
373 |
* $fonction_data doit retourner une valeur
|
|
|
374 |
|
1639 |
raphael |
375 |
* @param $importable (optionnel): défini si la colonne est traitée (ou absolument ignorée par PHPExcel) lors de
|
|
|
376 |
* l'import.
|
|
|
377 |
|
1630 |
raphael |
378 |
*/
|
1638 |
raphael |
379 |
static function GenColInfo($abbrev, $nom, $is_extra = 0, $fonction = NULL, $fonction_data = NULL, $importable = TRUE) {
|
|
|
380 |
return Array('abbrev' => $abbrev,
|
1630 |
raphael |
381 |
'nom' => $nom,
|
|
|
382 |
'extra' => $is_extra ? 1 : 0,
|
1632 |
raphael |
383 |
'fonction' => $fonction,
|
1635 |
raphael |
384 |
'fonction_data' => $fonction_data,
|
|
|
385 |
'importable' => $importable
|
1630 |
raphael |
386 |
);
|
|
|
387 |
}
|
|
|
388 |
|
|
|
389 |
protected function formaterDate($date_heure_mysql, $format = NULL) {
|
|
|
390 |
if (!$date_heure_mysql || $date_heure_mysql == "0000-00-00 00:00:00") return "00/00/0000";
|
1644 |
aurelien |
391 |
$date_format = DateTime::createFromFormat("Y-m-d H:i:s", $date_heure_mysql);
|
|
|
392 |
$timestamp = @$date_format->getTimestamp();
|
1630 |
raphael |
393 |
if(!$timestamp) return "00/00/0000";
|
1644 |
aurelien |
394 |
// TODO: les widgets ne font malheureusement pas usage de l'heure dans le CEL
|
1639 |
raphael |
395 |
// TODO: si modification, ne pas oublier de modifier le format d'import correspondant
|
|
|
396 |
// dans ImportXLS (actuellement: "d/m/Y")
|
|
|
397 |
$date_formatee = strftime('%d/%m/%Y', $timestamp);
|
1630 |
raphael |
398 |
if(!$date_formatee) return "00/00/0000";
|
|
|
399 |
return $date_formatee;
|
|
|
400 |
}
|
1633 |
raphael |
401 |
|
|
|
402 |
|
1639 |
raphael |
403 |
// TODO: mettre en static + param "id_utilisateur"
|
|
|
404 |
function getImages($obs) {
|
|
|
405 |
if(! $this->id_utilisateur) return NULL;
|
|
|
406 |
|
|
|
407 |
$rec = $this->requeter(
|
|
|
408 |
sprintf("SELECT GROUP_CONCAT(nom_original SEPARATOR '%s') FROM cel_images i"
|
|
|
409 |
. " LEFT JOIN cel_obs_images oi ON (i.id_image = oi.id_image)"
|
|
|
410 |
. " LEFT JOIN cel_obs o ON (oi.id_observation = o.id_observation)"
|
|
|
411 |
. " WHERE ce_utilisateur = %d",
|
|
|
412 |
|
|
|
413 |
SEPARATEUR_IMAGES,
|
|
|
414 |
$this->id_utilisateur));
|
|
|
415 |
return $rec ? array_pop($rec) : NULL;
|
|
|
416 |
|
|
|
417 |
}
|
|
|
418 |
|
|
|
419 |
|
1633 |
raphael |
420 |
// TODO: référentiel ne devrait pas être généré au moment d'un Config::get,
|
|
|
421 |
// comme dans Config::get('nomsVernaRechercheLimiteeTpl')
|
|
|
422 |
// Par exemple, la variable pour "nva" ?
|
|
|
423 |
function getNomCommun($obs) {
|
|
|
424 |
$langue = 'fra';
|
|
|
425 |
list($referentiel) = explode(':', strtolower($obs['nom_referentiel']));
|
|
|
426 |
if($referentiel == 'bdtfx') $referentiel = 'nvjfl';
|
|
|
427 |
else return '';
|
|
|
428 |
|
|
|
429 |
$cache_id = $referentiel . '-' . $obs['nt'] . '-' . $langue;
|
|
|
430 |
if(isset($this->cache['getNomCommun'][$cache_id])) {
|
|
|
431 |
//debug: error_log("require url_service_nom_attribution: OK ! (pour \"{$obs['nom_ret']}\")");
|
|
|
432 |
return $this->cache['getNomCommun'][$cache_id];
|
|
|
433 |
}
|
|
|
434 |
// pas de cache:
|
|
|
435 |
//debug: error_log("require url_service_nom_attribution pour \"{$obs['nom_ret']}\"");
|
|
|
436 |
|
|
|
437 |
// pour bdtfx:
|
|
|
438 |
// /service:eflore:0.1/nvjfl/noms-vernaculaires/attributions?masque.nt=X&masque.lg=fra&retour.champs=num_statut
|
|
|
439 |
// /projet/services/modules/0.1/nvjfl/NomsVernaculaires.php
|
|
|
440 |
$url = str_replace(Array('{referentiel}', '{valeur}', '{langue}'),
|
|
|
441 |
Array($referentiel, $obs['nt'], $langue),
|
|
|
442 |
$this->config['eflore']['url_service_nom_attribution']) .
|
|
|
443 |
"&retour.champs=num_statut";
|
|
|
444 |
$noms = @json_decode(file_get_contents($url));
|
|
|
445 |
if(! $noms) return '';
|
|
|
446 |
$noms = array_filter((array)($noms->resultat), function($item) { return ($item->num_statut == 1); });
|
|
|
447 |
$nom = array_pop($noms)->nom_vernaculaire;
|
|
|
448 |
|
|
|
449 |
// cache
|
|
|
450 |
$this->cache['getNomCommun'][$cache_id] = $nom;
|
|
|
451 |
return $nom;
|
|
|
452 |
}
|
|
|
453 |
|
|
|
454 |
|
|
|
455 |
/* Tente de bootstraper le framework au plus court et d'initialiser une instance de
|
|
|
456 |
NomsVernaculaires pour obtenir le nom commun */
|
|
|
457 |
function getNomCommun_v2($obs) {
|
|
|
458 |
static $service;
|
|
|
459 |
$service = new Projets();
|
|
|
460 |
|
|
|
461 |
$langue = 'fra';
|
|
|
462 |
list($referentiel) = explode(':', strtolower($obs['nom_referentiel']));
|
|
|
463 |
if($referentiel == 'bdtfx') $referentiel = 'nvjfl';
|
|
|
464 |
else return '';
|
|
|
465 |
|
|
|
466 |
$cache_id = $referentiel . '-' . $obs['nt'] . '-' . $langue;
|
|
|
467 |
if(isset($this->cache['getNomCommun'][$cache_id])) {
|
|
|
468 |
error_log("require NomsVernaculaires.php: OK ! (pour \"{$obs['nom_ret']}\")");
|
|
|
469 |
return $this->cache['getNomCommun'][$cache_id];
|
|
|
470 |
}
|
|
|
471 |
// pas de cache:
|
|
|
472 |
error_log("require NomsVernaculaires.php pour \"{$obs['nom_ret']}\"");
|
|
|
473 |
|
1638 |
raphael |
474 |
$donnees = Array('masque.nt' => $obs['nt'],
|
1633 |
raphael |
475 |
'masque.lg' => $langue,
|
|
|
476 |
'retour.champs' => 'num_statut');
|
1638 |
raphael |
477 |
$noms = $service->consulter(Array('nvjfl', 'noms-vernaculaires'), $donnees);
|
1633 |
raphael |
478 |
|
|
|
479 |
if(! $noms) return '';
|
|
|
480 |
$noms = array_filter((array)($noms->resultat), function($item) { return ($item->num_statut == 1); });
|
|
|
481 |
$nom = array_pop($noms)->nom_vernaculaire;
|
|
|
482 |
|
|
|
483 |
// cache
|
|
|
484 |
$this->cache['getNomCommun'][$cache_id] = $nom;
|
|
|
485 |
return $nom;
|
|
|
486 |
}
|
|
|
487 |
|
|
|
488 |
|
|
|
489 |
/* Effectue un bootstraping plus sage que ci-dessus, mais le gain d'efficacité
|
|
|
490 |
n'est pas aussi retentissant qu'espéré */
|
|
|
491 |
static $service;
|
|
|
492 |
function getNomCommun_v3($obs) {
|
|
|
493 |
if(! $this->service) $this->service = new Projets();
|
|
|
494 |
|
|
|
495 |
$langue = 'fra';
|
|
|
496 |
list($referentiel) = explode(':', strtolower($obs['nom_referentiel']));
|
|
|
497 |
if($referentiel == 'bdtfx') $referentiel = 'nvjfl';
|
|
|
498 |
else return '';
|
|
|
499 |
|
|
|
500 |
$cache_id = $referentiel . '-' . $obs['nt'] . '-' . $langue;
|
|
|
501 |
if(isset($this->cache['getNomCommun'][$cache_id])) {
|
|
|
502 |
error_log("require NomsVernaculaires.php: OK ! (pour \"{$obs['nom_ret']}\")");
|
|
|
503 |
return $this->cache['getNomCommun'][$cache_id];
|
|
|
504 |
}
|
|
|
505 |
// pas de cache:
|
|
|
506 |
error_log("require NomsVernaculaires.php pour \"{$obs['nom_ret']}\"");
|
|
|
507 |
|
1638 |
raphael |
508 |
$donnees = Array('masque.nt' => $obs['nt'],
|
1633 |
raphael |
509 |
'masque.lg' => $langue,
|
|
|
510 |
'retour.champs' => 'conseil_emploi');
|
1638 |
raphael |
511 |
$this->service->initialiserRessourcesEtParametres(Array('nvjfl', 'noms-vernaculaires', 'attributions'), $donnees);
|
1633 |
raphael |
512 |
try {
|
|
|
513 |
$noms = $this->service->traiterRessources();
|
|
|
514 |
} catch(Exception $e) { return ''; }
|
|
|
515 |
if(! $noms) return '';
|
|
|
516 |
$noms = array_filter($noms['resultat'], function($item) { return ($item['num_statut'] == 1); });
|
1644 |
aurelien |
517 |
$premier_nom = array_pop($noms);
|
|
|
518 |
$nom = $premier_nom['nom_vernaculaire'];
|
1633 |
raphael |
519 |
|
|
|
520 |
// cache
|
|
|
521 |
$this->cache['getNomCommun'][$cache_id] = $nom;
|
|
|
522 |
return $nom;
|
|
|
523 |
}
|
|
|
524 |
|
|
|
525 |
}
|