1374 |
aurelien |
1 |
<?php
|
|
|
2 |
/**
|
|
|
3 |
* Service fournissant des informations concernant le CEL au format RSS1, RSS2 ou ATOM.
|
|
|
4 |
* Encodage en entrée : utf8
|
|
|
5 |
* Encodage en sortie : utf8
|
|
|
6 |
* Format du service :
|
|
|
7 |
* /CelWidgetExport/format
|
|
|
8 |
* /CelWidgetExport/csv
|
|
|
9 |
*
|
|
|
10 |
* Les paramêtres :
|
|
|
11 |
* - "start" indique le numéro du premier item à afficher
|
|
|
12 |
* - "limit" nombre d'items à afficher
|
|
|
13 |
*
|
|
|
14 |
* @author Aurélien Peronnet <aurelien@tela-botanica.org>
|
|
|
15 |
* @license GPL v3 <http://www.gnu.org/licenses/gpl.txt>
|
|
|
16 |
* @license CECILL v2 <http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt>
|
|
|
17 |
* @version $Id$
|
|
|
18 |
* @copyright 2012
|
|
|
19 |
*/
|
|
|
20 |
class CelWidgetExport extends Cel {
|
|
|
21 |
|
|
|
22 |
private $nom_fichier_export = 'cel_export.csv';
|
|
|
23 |
private $champs_a_exclure = array('ce_utilisateur' => 'ce_utilisateur',
|
|
|
24 |
'courriel_utilisateur' => 'courriel_utilisateur',
|
|
|
25 |
'transmission' => 'transmission');
|
|
|
26 |
private $correspondance_champs = array(
|
|
|
27 |
'id_observation' => 'Identifiant Observation',
|
|
|
28 |
'ordre' => 'Ordre Observation',
|
|
|
29 |
'prenom_utilisateur' => 'Prénom',
|
|
|
30 |
'nom_utilisateur' => 'Nom',
|
|
|
31 |
'nom_sel' => 'Nom Sélectionné',
|
|
|
32 |
'nom_sel_nn' => 'Numéro Nomenclatural Nom Selectionné',
|
|
|
33 |
'nom_ret' => 'Nom Retenu',
|
|
|
34 |
'nom_ret_nn' => 'Numéro Nomenclatural Nom Retenu',
|
|
|
35 |
'nt' => 'Numéro Taxonomique',
|
|
|
36 |
'famille' => 'Famille',
|
|
|
37 |
'nom_referentiel' => 'Référentiel Taxonomique',
|
|
|
38 |
'ce_zone_geo' => 'Code Insee',
|
|
|
39 |
'zone_geo' => 'Commune',
|
|
|
40 |
'lieudit' => 'Lieu-Dit',
|
|
|
41 |
'station' => 'Station',
|
|
|
42 |
'milieu' => 'Milieu',
|
|
|
43 |
'latitude' => 'Latitude',
|
|
|
44 |
'longitude' => 'Longitude',
|
|
|
45 |
'geodatum' => 'Référentiel Géographique',
|
|
|
46 |
'date_observation' => 'Date Observation',
|
|
|
47 |
'mots_cles_texte' => 'Mots Clés',
|
|
|
48 |
'commentaire' => 'Commentaires',
|
|
|
49 |
'date_creation' => 'Date Création',
|
|
|
50 |
'date_modification' => 'Date Modification',
|
|
|
51 |
'date_transmission' => 'Date Transmission'
|
|
|
52 |
);
|
1376 |
aurelien |
53 |
private $parametres_autorises = array(
|
|
|
54 |
'utilisateur' => 'courriel_utilisateur',
|
|
|
55 |
'commune' => 'zone_geo',
|
|
|
56 |
'dept' => 'departement',
|
|
|
57 |
'projet' => 'mots_cles',
|
1378 |
aurelien |
58 |
'num_tax' => 'nt',
|
|
|
59 |
'date_debut' => 'date_debut',
|
|
|
60 |
'date_fin' => 'date_fin'
|
1376 |
aurelien |
61 |
);
|
1374 |
aurelien |
62 |
|
|
|
63 |
/**
|
|
|
64 |
* Méthode appelée avec une requête de type GET.
|
|
|
65 |
*/
|
|
|
66 |
public function getElement($params = array()) {
|
|
|
67 |
|
1376 |
aurelien |
68 |
$criteres = $this->traiterParametres($_GET);
|
1374 |
aurelien |
69 |
// Seulement les observation publiques
|
|
|
70 |
$criteres['transmission'] = 1;
|
|
|
71 |
$chercheur_observations = new RechercheObservation($this->config);
|
|
|
72 |
|
|
|
73 |
$numero_page = isset($criteres['debut']) ? $criteres['debut'] : 1;
|
1378 |
aurelien |
74 |
$limite = isset($criteres['limite']) ? $criteres['limite'] : 10000;
|
1374 |
aurelien |
75 |
|
|
|
76 |
unset($criteres['limite']);
|
|
|
77 |
unset($criteres['debut']);
|
|
|
78 |
|
|
|
79 |
$observations = $chercheur_observations->rechercherObservations(null, $criteres, $numero_page, $limite);
|
|
|
80 |
$csv = $this->convertirEnCsv($observations);
|
|
|
81 |
$this->envoyerCsv($csv);
|
|
|
82 |
}
|
|
|
83 |
|
1376 |
aurelien |
84 |
protected function traiterParametres(Array $parametres) {
|
|
|
85 |
$parametres_traites = array();
|
|
|
86 |
foreach($parametres as $cle => $valeur) {
|
|
|
87 |
if(trim($valeur) != '' && isset($this->parametres_autorises[$cle])) {
|
|
|
88 |
$parametres_traites[$this->parametres_autorises[$cle]] = $valeur;
|
|
|
89 |
}
|
|
|
90 |
}
|
|
|
91 |
return $parametres_traites;
|
|
|
92 |
}
|
|
|
93 |
|
1374 |
aurelien |
94 |
private function envoyerCsv($csv) {
|
|
|
95 |
header('Content-Type: text/csv; charset=UTF-8');
|
|
|
96 |
header('Content-Disposition: attachment;filename='.$this->nom_fichier_export);
|
|
|
97 |
echo $csv;
|
1376 |
aurelien |
98 |
exit;
|
1374 |
aurelien |
99 |
}
|
|
|
100 |
|
|
|
101 |
private function convertirEnCsv($data)
|
|
|
102 |
{
|
|
|
103 |
$chemin_temp = "php://temp";
|
|
|
104 |
$outstream = fopen($chemin_temp, 'r+');
|
|
|
105 |
$intitule_champs = array();
|
|
|
106 |
foreach($data as $ligne) {
|
1378 |
aurelien |
107 |
//echo '<pre>'.print_r($ligne,true).'</pre>';
|
1374 |
aurelien |
108 |
$ligne = array_diff_key($ligne, $this->champs_a_exclure);
|
1378 |
aurelien |
109 |
//echo '<pre>'.print_r($ligne,true).'</pre>';
|
1374 |
aurelien |
110 |
if(empty($intitule_champs)) {
|
|
|
111 |
$intitule_champs = $this->creerEntetesChamps($ligne);
|
|
|
112 |
fputcsv($outstream, $intitule_champs, ',', '"');
|
|
|
113 |
}
|
|
|
114 |
fputcsv($outstream, $ligne, ',', '"');
|
|
|
115 |
}
|
|
|
116 |
rewind($outstream);
|
|
|
117 |
$csv = stream_get_contents($outstream);
|
|
|
118 |
fclose($outstream);
|
|
|
119 |
return $csv;
|
|
|
120 |
}
|
|
|
121 |
|
|
|
122 |
private function creerEntetesChamps($noms_colonnes) {
|
|
|
123 |
$champs_presents = array_intersect_key($this->correspondance_champs, $noms_colonnes);
|
|
|
124 |
return array_values($champs_presents);
|
|
|
125 |
}
|
|
|
126 |
}
|
|
|
127 |
?>
|