1530 |
jpm |
1 |
<?php
|
|
|
2 |
|
|
|
3 |
/**
|
|
|
4 |
* Service exportant des informations concernant COEL au format CSV.
|
|
|
5 |
* Encodage en entrée : utf8
|
|
|
6 |
* Encodage en sortie : utf8
|
1586 |
jpm |
7 |
*
|
1530 |
jpm |
8 |
* @author Jean-Pascal MILCENT <jpm@tela-botanica.org>
|
|
|
9 |
* @license GPL v3 <http://www.gnu.org/licenses/gpl.txt>
|
|
|
10 |
* @license CECILL v2 <http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt>
|
|
|
11 |
* @version $Id$
|
|
|
12 |
* @copyright 2010
|
|
|
13 |
*/
|
|
|
14 |
class CoelExport extends Coel {
|
1586 |
jpm |
15 |
|
1530 |
jpm |
16 |
const META_LISTE_STOCK_PARAMS = 1020;// Liste des paramètres de contrôle environnemental d'un local
|
1537 |
jpm |
17 |
const META_LISTES_EXPERTISE_COLLECTION = '1040,1041,1043,1045,1046,1049,1050,1053,1057,1081';// Liste des métadonnées pour les informations des des collections
|
1586 |
jpm |
18 |
|
1530 |
jpm |
19 |
private $format = null;
|
|
|
20 |
private $service = null;
|
|
|
21 |
private $squelette = null;
|
|
|
22 |
private $squelette_dossier = null;
|
1586 |
jpm |
23 |
|
1530 |
jpm |
24 |
/**
|
|
|
25 |
* Méthode appelée avec une requête de type GET.
|
|
|
26 |
*/
|
|
|
27 |
public function getElement($params = array()) {
|
|
|
28 |
// Initialisation des variables
|
|
|
29 |
$info = array();
|
|
|
30 |
$contenu = '';
|
1586 |
jpm |
31 |
|
1530 |
jpm |
32 |
// Pré traitement des paramêtres
|
|
|
33 |
$pour_bdd = false;
|
1765 |
aurelien |
34 |
$this->parametres = $this->traiterParametresUrl(array('service', 'format'), $params, $pour_bdd);
|
1586 |
jpm |
35 |
|
1530 |
jpm |
36 |
// Chargement du bon type de service demandé
|
|
|
37 |
if (isset($this->parametres['service'])) {
|
|
|
38 |
$this->service = strtolower($this->parametres['service']);
|
1586 |
jpm |
39 |
|
1530 |
jpm |
40 |
$methode = $this->getNomMethodeService();
|
|
|
41 |
if (method_exists($this, $methode)) {
|
|
|
42 |
if (isset($this->parametres['format']) && preg_match('/^(?:csv|txt)$/i', $this->parametres['format'])) {
|
|
|
43 |
// Mise en minuscule de l'indication du format
|
|
|
44 |
$this->format = strtolower($this->parametres['format']);
|
|
|
45 |
// Définition du fichier squelette demandé
|
|
|
46 |
$this->definirSquelette();
|
|
|
47 |
} else {
|
|
|
48 |
$this->format = '';
|
|
|
49 |
$this->messages[] = "Le service COEL Export nécessite d'indiquer en second paramètre le format : csv, txt.";
|
|
|
50 |
}
|
|
|
51 |
// Récupération du contenu à renvoyer
|
|
|
52 |
$contenu = $this->$methode();
|
|
|
53 |
} else {
|
|
|
54 |
$this->messages[] = "Le type d'information demandé '$this->service' n'est pas disponible.";
|
|
|
55 |
}
|
|
|
56 |
} else {
|
|
|
57 |
$this->messages[] = "Le service COEL Syndication nécessite d'indiquer en premier paramètre le type d'information demandé.";
|
|
|
58 |
}
|
1586 |
jpm |
59 |
|
1530 |
jpm |
60 |
// Envoie sur la sortie standard
|
|
|
61 |
$encodage = 'utf-8';
|
|
|
62 |
$mime = $this->getTypeMime();
|
|
|
63 |
$formatage_json = $this->getFormatageJson();
|
|
|
64 |
$this->envoyer($contenu, $mime, $encodage, $formatage_json);
|
|
|
65 |
}
|
1586 |
jpm |
66 |
|
1530 |
jpm |
67 |
private function definirSquelette() {
|
|
|
68 |
$this->squelette_dossier = dirname(__FILE__).DIRECTORY_SEPARATOR.'squelettes'.DIRECTORY_SEPARATOR;
|
|
|
69 |
$ext = $this->getExtensionFichierSquelette();
|
|
|
70 |
$this->squelette = $this->squelette_dossier.'export_'.$this->service.'.tpl.'.$ext;
|
|
|
71 |
}
|
1586 |
jpm |
72 |
|
1530 |
jpm |
73 |
private function getExtensionFichierSquelette() {
|
|
|
74 |
$ext = '';
|
|
|
75 |
switch ($this->format) {
|
|
|
76 |
case 'csv' :
|
|
|
77 |
case 'txt' :
|
|
|
78 |
$ext = 'csv';
|
|
|
79 |
break;
|
|
|
80 |
default:
|
|
|
81 |
$ext = 'csv';
|
|
|
82 |
}
|
|
|
83 |
return $ext;
|
|
|
84 |
}
|
1586 |
jpm |
85 |
|
1530 |
jpm |
86 |
private function getNomMethodeService() {
|
|
|
87 |
$methode = '';
|
|
|
88 |
$service_formate = str_replace(' ', '', ucwords(implode(' ', explode('_', $this->service))));
|
|
|
89 |
$methode = 'getService'.$service_formate;
|
|
|
90 |
return $methode;
|
|
|
91 |
}
|
1586 |
jpm |
92 |
|
1530 |
jpm |
93 |
private function getTypeMime() {
|
|
|
94 |
$mime = '';
|
|
|
95 |
switch ($this->format) {
|
|
|
96 |
case 'csv' :
|
|
|
97 |
$mime = 'text/csv';
|
|
|
98 |
break;
|
|
|
99 |
case 'txt' :
|
|
|
100 |
$mime = 'text/plain';
|
|
|
101 |
break;
|
|
|
102 |
default:
|
|
|
103 |
$mime = 'text/html';
|
|
|
104 |
}
|
|
|
105 |
return $mime;
|
|
|
106 |
}
|
1586 |
jpm |
107 |
|
1530 |
jpm |
108 |
private function getFormatageJson() {
|
|
|
109 |
$json = false;
|
|
|
110 |
switch ($this->service) {
|
|
|
111 |
default:
|
|
|
112 |
$json = false;
|
|
|
113 |
}
|
|
|
114 |
return $json;
|
|
|
115 |
}
|
1586 |
jpm |
116 |
|
|
|
117 |
|
1530 |
jpm |
118 |
private function getServiceStructureExpertise() {
|
|
|
119 |
$donnees = array();
|
1586 |
jpm |
120 |
|
1530 |
jpm |
121 |
// Construction de la requête
|
1537 |
jpm |
122 |
$requete = 'SELECT '.(($this->distinct) ? 'DISTINCT' : '').' '.
|
1530 |
jpm |
123 |
' cs_id_structure, '.
|
|
|
124 |
' SUM(csap_bota_travail_hebdo_tps) AS personnel_heure_nbre, '.
|
1572 |
jpm |
125 |
' cs_nom, csc_truk_stockage_parametre, csv_mark_visite_avec_motif '.
|
1586 |
jpm |
126 |
'FROM coel_structure '.
|
1530 |
jpm |
127 |
' LEFT JOIN coel_structure_a_personne ON (cs_id_structure = csap_id_structure) '.
|
|
|
128 |
' LEFT JOIN coel_structure_conservation ON (cs_id_structure = csc_id_structure) '.
|
1572 |
jpm |
129 |
' LEFT JOIN coel_structure_valorisation ON (cs_id_structure = csv_id_structure) '.
|
1530 |
jpm |
130 |
'GROUP BY cs_id_structure '.
|
1543 |
jpm |
131 |
'ORDER BY '.((!is_null($this->orderby)) ? $this->orderby : 'cs_nom ASC').' ';
|
1530 |
jpm |
132 |
$message_echec = "La requête a retourné aucun résultat.";
|
|
|
133 |
$structures = $this->executerRequete($requete, $message_echec);
|
1586 |
jpm |
134 |
|
1530 |
jpm |
135 |
// Construction de la requête
|
1537 |
jpm |
136 |
$requete = 'SELECT '.(($this->distinct) ? 'DISTINCT' : '').' '.
|
1530 |
jpm |
137 |
' cs_id_structure, '.
|
|
|
138 |
' COUNT(cc_id_collection) AS collection_nbre '.
|
|
|
139 |
'FROM coel_structure '.
|
|
|
140 |
' LEFT JOIN coel_collection ON (cs_id_structure = cc_ce_structure) '.
|
|
|
141 |
'GROUP BY cs_id_structure ';
|
|
|
142 |
$message_echec = "La requête comptant le nombre de collection a retourné aucun résultat.";
|
|
|
143 |
$collections_nbre = $this->executerRequete($requete, $message_echec);
|
1586 |
jpm |
144 |
|
1530 |
jpm |
145 |
// Récupération des métadonnées nécessaires
|
|
|
146 |
$requete = 'SELECT cmlv_id_valeur, cmlv_nom, cmlv_abreviation '.
|
|
|
147 |
'FROM coel_meta_liste_valeur '.
|
|
|
148 |
'WHERE cmlv_ce_parent = '.self::META_LISTE_STOCK_PARAMS.' ';
|
|
|
149 |
$message_echec = "La requête de recherche des métadonnées a retourné aucun résultat.";
|
|
|
150 |
$metadonnees = $this->executerRequete($requete, $message_echec);
|
1586 |
jpm |
151 |
|
1530 |
jpm |
152 |
// Traitement des données
|
|
|
153 |
if ($structures !== false) {
|
|
|
154 |
// Traitement du nombre de collection par structure
|
|
|
155 |
$collections_par_structure = array();
|
|
|
156 |
foreach ($collections_nbre as $collection) {
|
|
|
157 |
$nbre = (empty($collection['collection_nbre'])) ? 0 : $collection['collection_nbre'];
|
|
|
158 |
$collections_par_structure[$collection['cs_id_structure']] = $nbre;
|
|
|
159 |
}
|
1541 |
jpm |
160 |
|
|
|
161 |
// Instanciation des objets nécessaires aux traitements
|
|
|
162 |
$ontologie = new Ontologie($metadonnees);
|
|
|
163 |
$utilTruck = new UtilTruck($ontologie);
|
1586 |
jpm |
164 |
|
|
|
165 |
// Traitement final des données concernant les structures
|
1530 |
jpm |
166 |
foreach ($structures as $structure) {
|
|
|
167 |
$id_structure = $structure['cs_id_structure'];
|
1541 |
jpm |
168 |
$nom = $structure['cs_nom'];
|
|
|
169 |
$stockage_params = $utilTruck->construireTxtListeOntologie($structure['csc_truk_stockage_parametre']);
|
|
|
170 |
$stockage_params_nbre = $utilTruck->getNbreValeur($structure['csc_truk_stockage_parametre']);
|
|
|
171 |
$stockage_params_nbre = empty($stockage_params_nbre) ? 0 : $stockage_params_nbre;
|
1530 |
jpm |
172 |
$collection_nbre = $collections_par_structure[$structure['cs_id_structure']];
|
|
|
173 |
$collection_nbre = empty($collection_nbre) ? 0 : $collection_nbre;
|
|
|
174 |
$personnel_heure_nbre = empty($structure['personnel_heure_nbre']) ? 0 : $structure['personnel_heure_nbre'];
|
1572 |
jpm |
175 |
$visite_avec_motif_science = $structure['csv_mark_visite_avec_motif'];
|
1586 |
jpm |
176 |
|
1541 |
jpm |
177 |
$structure_affichage = array(
|
1586 |
jpm |
178 |
'nom' => $nom,
|
1530 |
jpm |
179 |
'stockage_params' => $stockage_params,
|
1531 |
jpm |
180 |
'stockage_params_nbre' => $stockage_params_nbre,
|
1530 |
jpm |
181 |
'collection_nbre' => $collection_nbre,
|
1572 |
jpm |
182 |
'personnel_heure_nbre' => $personnel_heure_nbre,
|
|
|
183 |
'visite_avec_motif_science' => $visite_avec_motif_science);
|
1541 |
jpm |
184 |
$structure_affichage = $this->nettoyerTableau($structure_affichage);
|
1586 |
jpm |
185 |
|
1541 |
jpm |
186 |
$donnees['structures'][$id_structure] = $structure_affichage;
|
1530 |
jpm |
187 |
}
|
|
|
188 |
}
|
1586 |
jpm |
189 |
|
1530 |
jpm |
190 |
// Création du contenu
|
|
|
191 |
$contenu = $this->executerService($donnees);
|
|
|
192 |
return $contenu;
|
|
|
193 |
}
|
1586 |
jpm |
194 |
|
1531 |
jpm |
195 |
private function getServiceCollectionExpertise() {
|
1537 |
jpm |
196 |
|
1531 |
jpm |
197 |
// Construction de la requête
|
1537 |
jpm |
198 |
$requete = 'SELECT '.(($this->distinct) ? 'DISTINCT' : '').' '.
|
1531 |
jpm |
199 |
' cc_id_collection, '.
|
1829 |
mathias |
200 |
' cc_ce_structure, '.
|
1586 |
jpm |
201 |
' cc_nom, cc_cote, cs_nom, cc_ce_specimen_type, cc_description, cc_truk_periode_constitution, '.
|
1531 |
jpm |
202 |
' cc_truk_couverture_lieu, ccb_truk_etiquette_renseignement, ccb_truk_nature, '.
|
1583 |
jpm |
203 |
' ccb_truk_unite_base, ccb_ce_etat_general, ccb_specimen_fixation_pourcent, '.
|
|
|
204 |
' ccb_truk_specimen_fixation_methode, ccb_truk_etiquette_fixation_support, '.
|
1531 |
jpm |
205 |
' ccb_truk_etiquette_fixation_specimen, ccb_truk_degradation_presentation, '.
|
|
|
206 |
' ccb_ce_classement_etat, ccb_ce_inventaire '.
|
1586 |
jpm |
207 |
'FROM coel_collection '.
|
1531 |
jpm |
208 |
' LEFT JOIN coel_collection_botanique ON (cc_id_collection = ccb_id_collection) '.
|
|
|
209 |
' LEFT JOIN coel_structure ON (cs_id_structure = cc_ce_structure) '.
|
1543 |
jpm |
210 |
'ORDER BY '.((!is_null($this->orderby)) ? $this->orderby : 'cc_nom ASC').' ';
|
1531 |
jpm |
211 |
$message_echec = "La requête a retourné aucun résultat.";
|
1537 |
jpm |
212 |
$collections = $this->executerRequete($requete, $message_echec);
|
1586 |
jpm |
213 |
|
1531 |
jpm |
214 |
// Récupération des métadonnées nécessaires
|
|
|
215 |
$requete = 'SELECT cmlv_id_valeur, cmlv_ce_parent, cmlv_nom, cmlv_abreviation '.
|
|
|
216 |
'FROM coel_meta_liste_valeur '.
|
|
|
217 |
'WHERE cmlv_ce_parent IN ('.self::META_LISTES_EXPERTISE_COLLECTION.') ';
|
|
|
218 |
$message_echec = "La requête de recherche des métadonnées a retourné aucun résultat.";
|
|
|
219 |
$metadonnees = $this->executerRequete($requete, $message_echec);
|
1586 |
jpm |
220 |
|
1531 |
jpm |
221 |
// Traitement des données
|
1537 |
jpm |
222 |
$donnees = array();
|
|
|
223 |
if ($collections !== false) {
|
|
|
224 |
// Instanciation des objets nécessaires aux traitements
|
|
|
225 |
$ontologie = new Ontologie($metadonnees);
|
|
|
226 |
$utilTruck = new UtilTruck($ontologie);
|
1586 |
jpm |
227 |
|
|
|
228 |
// Traitement final des données concernant les structures
|
1537 |
jpm |
229 |
foreach ($collections as $collection) {
|
|
|
230 |
$id_collection = $collection['cc_id_collection'];
|
1541 |
jpm |
231 |
$nom = $collection['cc_nom'];
|
1586 |
jpm |
232 |
$cote = $collection['cc_cote'];
|
1829 |
mathias |
233 |
$id_structure = $collection['cc_ce_structure'];
|
1541 |
jpm |
234 |
$nom_structure = $collection['cs_nom'];
|
1537 |
jpm |
235 |
$specimen_type = $utilTruck->construireTxtListeOntologie($collection['cc_ce_specimen_type']);
|
1541 |
jpm |
236 |
$description = $collection['cc_description'];
|
1537 |
jpm |
237 |
$periode_constitution = $utilTruck->construireTxtListeOntologie($collection['cc_truk_periode_constitution']);
|
|
|
238 |
$couverture_lieu = $utilTruck->construireTxtListeOntologie($collection['cc_truk_couverture_lieu']);
|
1583 |
jpm |
239 |
$specimen_fixation_pourcent = $collection['ccb_specimen_fixation_pourcent'];
|
|
|
240 |
$specimen_fixation_methode = $utilTruck->construireTxtListeOntologie($collection['ccb_truk_specimen_fixation_methode']);
|
1537 |
jpm |
241 |
$etiquette_renseignement = $utilTruck->construireTxtListeOntologie($collection['ccb_truk_etiquette_renseignement']);
|
|
|
242 |
$nature = $utilTruck->construireTxtListeOntologie($collection['ccb_truk_nature']);
|
1540 |
jpm |
243 |
$parts_total = UtilTruck::extraireNbrePart($collection['ccb_truk_unite_base']);
|
1541 |
jpm |
244 |
$etat_general = $utilTruck->construireTxtListeOntologie($collection['ccb_ce_etat_general']);
|
|
|
245 |
$etiquette_fixation_support = $utilTruck->construireTxtListeOntologie($collection['ccb_truk_etiquette_fixation_support']);
|
|
|
246 |
$etiquette_fixation_specimen = $utilTruck->construireTxtListeOntologie($collection['ccb_truk_etiquette_fixation_specimen']);
|
|
|
247 |
$degradation_presentation = $utilTruck->construireTxtListeOntologie($collection['ccb_truk_degradation_presentation'], false, true, true);
|
|
|
248 |
$classement_etat = $utilTruck->construireTxtListeOntologie($collection['ccb_ce_classement_etat']);
|
|
|
249 |
$inventaire = $utilTruck->construireTxtListeOntologie($collection['ccb_ce_inventaire']);
|
1586 |
jpm |
250 |
|
1541 |
jpm |
251 |
$collection_affichage = array(
|
|
|
252 |
'id' => $id_collection,
|
1586 |
jpm |
253 |
'cote' => $cote,
|
1537 |
jpm |
254 |
'nom' => $nom,
|
1586 |
jpm |
255 |
'nom_structure' => $nom_structure,
|
1829 |
mathias |
256 |
'id_structure' => $id_structure,
|
1537 |
jpm |
257 |
'specimen_type' => $specimen_type,
|
|
|
258 |
'description' => $description,
|
|
|
259 |
'periode_constitution' => $periode_constitution,
|
|
|
260 |
'couverture_lieu' => $couverture_lieu,
|
|
|
261 |
'etiquette_renseignement' => $etiquette_renseignement,
|
|
|
262 |
'nature' => $nature,
|
1541 |
jpm |
263 |
'parts_total' => $parts_total,
|
|
|
264 |
'etat_general' => $etat_general,
|
|
|
265 |
'etiquette_fixation_support' => $etiquette_fixation_support,
|
|
|
266 |
'etiquette_fixation_specimen' => $etiquette_fixation_specimen,
|
1583 |
jpm |
267 |
'specimen_fixation_pourcent' => $specimen_fixation_pourcent,
|
|
|
268 |
'specimen_fixation_methode' => $specimen_fixation_methode,
|
1541 |
jpm |
269 |
'degradation_presentation' => $degradation_presentation,
|
|
|
270 |
'classement_etat' => $classement_etat,
|
|
|
271 |
'inventaire' => $inventaire);
|
|
|
272 |
$collection_affichage = $this->nettoyerTableau($collection_affichage);
|
1586 |
jpm |
273 |
|
1541 |
jpm |
274 |
$donnees['collections'][] = $collection_affichage;
|
1531 |
jpm |
275 |
}
|
1541 |
jpm |
276 |
$donnees['champs'] = array_keys(current($donnees['collections']));
|
1531 |
jpm |
277 |
}
|
1586 |
jpm |
278 |
|
1531 |
jpm |
279 |
// Création du contenu
|
|
|
280 |
$contenu = $this->executerService($donnees);
|
|
|
281 |
return $contenu;
|
|
|
282 |
}
|
1586 |
jpm |
283 |
|
1530 |
jpm |
284 |
private function executerRequete($requete, $message_echec) {
|
|
|
285 |
try {
|
|
|
286 |
$infos = $this->bdd->query($requete)->fetchAll(PDO::FETCH_ASSOC);
|
|
|
287 |
if ($infos === false) {
|
|
|
288 |
$this->messages[] = $message_echec;
|
|
|
289 |
}
|
|
|
290 |
} catch (PDOException $e) {
|
1537 |
jpm |
291 |
$this->messages[] = sprintf($this->getTxt('sql_erreur_requete'), $e->getFile(), $e->getLine(), $e->getMessage(), $requete);
|
1530 |
jpm |
292 |
}
|
|
|
293 |
return $infos;
|
|
|
294 |
}
|
1586 |
jpm |
295 |
|
1530 |
jpm |
296 |
private function executerService($donnees) {
|
|
|
297 |
// Création du contenu à partir d'un template PHP
|
|
|
298 |
$contenu = Coel::traiterSquelettePhp($this->squelette, $donnees);
|
|
|
299 |
return $contenu;
|
|
|
300 |
}
|
1586 |
jpm |
301 |
|
1541 |
jpm |
302 |
private function nettoyerTableau(Array $tableau) {
|
|
|
303 |
foreach ($tableau as $cle => $valeur) {
|
|
|
304 |
$tableau[$cle] = self::nettoyerGuillemets($valeur);
|
|
|
305 |
}
|
|
|
306 |
return $tableau;
|
|
|
307 |
}
|
1586 |
jpm |
308 |
|
1537 |
jpm |
309 |
private static function nettoyerGuillemets($txt) {
|
|
|
310 |
$txt = preg_replace('/"/', '""', $txt);
|
|
|
311 |
return $txt;
|
|
|
312 |
}
|
1586 |
jpm |
313 |
}
|