396 |
mathilde |
1 |
<?php
|
|
|
2 |
/**
|
402 |
mathilde |
3 |
* Classe Graphiques.php permet d'afficher des graphiques en svg remplis avec des données écologiques
|
396 |
mathilde |
4 |
* fin d'url possibles :
|
402 |
mathilde |
5 |
* graphiques/#typegraphique/#bdnt.nn:#num_nomen --> renvoie une graphique avec les données connues
|
396 |
mathilde |
6 |
*
|
|
|
7 |
* Encodage en entrée : utf8
|
|
|
8 |
* Encodage en sortie : utf8
|
|
|
9 |
* @package eflore-projets
|
|
|
10 |
* @author Jean-Pascal MILCENT <jpm@tela-botanica.org>
|
|
|
11 |
* @author Mathilde SALTHUN-LASSALLE <mathilde@tela-botanica.org>
|
|
|
12 |
* @license GPL v3 <http://www.gnu.org/licenses/gpl.txt>
|
|
|
13 |
* @license CECILL v2 <http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt>
|
|
|
14 |
* @version 1.0
|
|
|
15 |
* @copyright 1999-2011 Tela Botanica (accueil@tela-botanica.org)
|
|
|
16 |
*/
|
|
|
17 |
|
|
|
18 |
class Graphiques {
|
402 |
mathilde |
19 |
|
396 |
mathilde |
20 |
private $parametres = array();
|
|
|
21 |
private $ressources = array();
|
402 |
mathilde |
22 |
private $metadonnees;
|
|
|
23 |
private $version;
|
|
|
24 |
private $Bdd;
|
|
|
25 |
private $nomGraphique = array();
|
|
|
26 |
private $table = "";
|
|
|
27 |
private $requete_condition = "";
|
|
|
28 |
private $requete_champs;
|
|
|
29 |
private $config;
|
|
|
30 |
private $convertisseur;
|
|
|
31 |
private $cheminGraphBase;
|
|
|
32 |
private $serviceNom = 'Graphiques';
|
|
|
33 |
private $valeurs_en_pourcentage ;
|
|
|
34 |
private $dom;
|
410 |
mathilde |
35 |
private $largeurSVG="500";
|
402 |
mathilde |
36 |
private $graduations_id = array ("zero" => 0 ,"un"=> 0.1, "deux" => 0.2 , "trois" => 0.3, "quatre" => 0.4,
|
|
|
37 |
"cinq" => 0.5, "six" => 0.6 ,"sept" => 0.7, "huit" => 0.8, "neuf" => 0.9,
|
|
|
38 |
"dix" => 1 );
|
396 |
mathilde |
39 |
|
|
|
40 |
public function consulter($ressources, $parametres) {
|
402 |
mathilde |
41 |
$this->ressources = $ressources;
|
396 |
mathilde |
42 |
$this->parametres = $parametres;
|
402 |
mathilde |
43 |
$this->initialiserConfiguration();
|
|
|
44 |
$resultats = '';
|
|
|
45 |
$this->table = Config::get('bdd_table')."_v".$this->version;
|
396 |
mathilde |
46 |
$this->traiterRessources();
|
402 |
mathilde |
47 |
$requete = $this->assemblerLaRequete();
|
|
|
48 |
$resultat = $this->Bdd->recupererTous($requete);
|
|
|
49 |
$versionResultat = $this->obtenirResultat($resultat);
|
|
|
50 |
return $versionResultat;
|
|
|
51 |
}
|
396 |
mathilde |
52 |
|
402 |
mathilde |
53 |
//+--------------------------initialisation de paramètres -------------------------------------------+
|
|
|
54 |
|
|
|
55 |
public function initialiserConfiguration() {
|
|
|
56 |
$conteneur = new Conteneur();
|
|
|
57 |
$this->Bdd = $conteneur->getBdd();
|
|
|
58 |
$this->config = $conteneur->getParametre('Graphiques');
|
|
|
59 |
$this->convertisseur = $this->config['convertisseur'];
|
|
|
60 |
$this->cheminGraphBase = $this->config['chemin'];
|
410 |
mathilde |
61 |
$cacheOptions = array('mise_en_cache' => $this->config['cache']['miseEnCache'],
|
|
|
62 |
'stockage_chemin' => $this->config['cache']['stockageChemin'],
|
|
|
63 |
'duree_de_vie' => $this->config['cache']['dureeDeVie']);
|
|
|
64 |
$this->cache = $conteneur->getCacheSimple($cacheOptions);
|
402 |
mathilde |
65 |
$this->chargerVersions();
|
|
|
66 |
$this->definirVersion();
|
410 |
mathilde |
67 |
$this->definirFormat();
|
396 |
mathilde |
68 |
}
|
|
|
69 |
|
402 |
mathilde |
70 |
//on n'affiche qu'une version de graphique à la fois ( la dernière ou celle demandée )
|
|
|
71 |
private function definirVersion() {
|
|
|
72 |
if( (!isset($this->parametres['version.projet']) ) || ((isset($this->parametres['version.projet']) )&&
|
|
|
73 |
(($this->parametres['version.projet'] == '+') || ($this->parametres['version.projet'] == '')))){
|
|
|
74 |
$this->version = $this->metadonnees[0]['version'];
|
|
|
75 |
} else {
|
|
|
76 |
$this->version = $this->parametres['version.projet'];
|
|
|
77 |
}
|
|
|
78 |
}
|
|
|
79 |
|
410 |
mathilde |
80 |
private function definirFormat() {
|
|
|
81 |
if (isset($this->parametres['retour.format']) ){
|
|
|
82 |
if (preg_match("/^[0-9]+$/", $this->parametres['retour.format'])){
|
|
|
83 |
$this->largeurSVG= $this->parametres['retour.format'];
|
|
|
84 |
}else {
|
|
|
85 |
$erreur = "Erreur : Entrez la largeur voulue (en pixels) pour le paramètre retour.format.";
|
|
|
86 |
$code = RestServeur::HTTP_CODE_MAUVAISE_REQUETE;
|
|
|
87 |
throw new Exception($erreur, $code);
|
|
|
88 |
}
|
402 |
mathilde |
89 |
}
|
410 |
mathilde |
90 |
if (!isset($this->parametres['retour']) ){
|
|
|
91 |
$this->parametres['retour'] = 'image/svg+xml';
|
|
|
92 |
}else {
|
|
|
93 |
if (( $this->parametres['retour'] != 'image/svg+xml')&& ( $this->parametres['retour'] != 'image/png')){
|
|
|
94 |
$erreur = "Erreur : choisissez le format de retour pour le paramètre retour : image/svg%2Bxml ou image/png.";
|
|
|
95 |
$code = RestServeur::HTTP_CODE_MAUVAISE_REQUETE;
|
|
|
96 |
throw new Exception($erreur, $code);
|
|
|
97 |
}
|
|
|
98 |
}
|
402 |
mathilde |
99 |
}
|
|
|
100 |
|
410 |
mathilde |
101 |
|
|
|
102 |
|
402 |
mathilde |
103 |
private function chargerVersions() {
|
|
|
104 |
$requete = "SELECT version ".
|
|
|
105 |
"FROM ".Config::get('bdd_table_meta')." ".
|
|
|
106 |
"ORDER BY date_creation DESC ";
|
|
|
107 |
$resultats = $this->Bdd->recupererTous($requete);
|
|
|
108 |
if (!is_array($resultats) || count($resultats) <= 0) {
|
|
|
109 |
$message = "Les méta-données n'ont pu être chargée pour la ressource demandée";
|
|
|
110 |
$code = RestServeur::HTTP_CODE_RESSOURCE_INTROUVABLE;
|
|
|
111 |
throw new Exception($message, $code);
|
|
|
112 |
}
|
|
|
113 |
|
|
|
114 |
$this->metadonnees = $resultats;
|
|
|
115 |
}
|
|
|
116 |
|
|
|
117 |
//+--------------------------traitement ressources ou paramètres -------------------------------------------+
|
|
|
118 |
|
396 |
mathilde |
119 |
public function traiterRessources() {
|
402 |
mathilde |
120 |
$this->traiterRessources_NomService();
|
|
|
121 |
$this->traiterRessources_TypeGraphique();
|
|
|
122 |
}
|
|
|
123 |
|
|
|
124 |
public function traiterRessources_TypeGraphique(){
|
|
|
125 |
if (isset($this->ressources) && !empty($this->ressources[1])) {
|
|
|
126 |
if(preg_match('/^(.+)\.nn:([0-9]+)$/', $this->ressources[1], $retour)==1){
|
|
|
127 |
switch ($retour[1]) {
|
|
|
128 |
case 'bdtfx' :
|
|
|
129 |
$this->requete_condition[]= "num_nomen = ".$retour[2]." AND BDNT = 'BDTFX' ";
|
|
|
130 |
break;
|
|
|
131 |
case 'bdafx' :
|
|
|
132 |
$this->requete_condition[] = "num_nomen = ".$retour[2]." AND BDNT = 'BDAFX' ";
|
|
|
133 |
break;
|
|
|
134 |
case 'bdbfx' :
|
|
|
135 |
$this->requete_condition[] = "num_nomen = ".$retour[2]." AND BDNT = 'BDBFX' ";
|
|
|
136 |
break;
|
|
|
137 |
default :
|
|
|
138 |
$e = 'Erreur dans l\'url de votre requête : </br> La ressource " '
|
|
|
139 |
.$retour[1].' " n\'existe pas.';
|
|
|
140 |
throw new Exception( $e, RestServeur::HTTP_CODE_MAUVAISE_REQUETE);
|
|
|
141 |
break;
|
|
|
142 |
}
|
|
|
143 |
|
|
|
144 |
}else {
|
|
|
145 |
$e = 'Erreur dans l\'url de votre requête : </br> La ressource n\'existe pas.';
|
|
|
146 |
throw new Exception( $e, RestServeur::HTTP_CODE_MAUVAISE_REQUETE);
|
|
|
147 |
}
|
|
|
148 |
} else {
|
|
|
149 |
throw new Exception( "Erreur dans l\'url de votre requête :".
|
|
|
150 |
"preciser le référentiel et le numéro nomenclatural sous la forme {bdnt}.nn:{nn}.",
|
|
|
151 |
RestServeur::HTTP_CODE_MAUVAISE_REQUETE);
|
396 |
mathilde |
152 |
}
|
|
|
153 |
|
|
|
154 |
}
|
|
|
155 |
|
402 |
mathilde |
156 |
public function traiterRessources_NomService(){
|
|
|
157 |
if (isset($this->ressources) && !empty($this->ressources[0])) {
|
|
|
158 |
switch ($this->ressources[0]) {
|
|
|
159 |
case 'climat' :
|
|
|
160 |
$this->requete_champs = ' ve_lumiere , ve_temperature, ve_continentalite, ve_humidite_atmos' ;
|
|
|
161 |
$this->nomGraphique= 'climat';
|
|
|
162 |
break;
|
|
|
163 |
case 'sol' :
|
|
|
164 |
$this->requete_champs = ' ve_humidite_edaph , ve_reaction_sol, ve_nutriments_sol, ve_salinite,'
|
|
|
165 |
.'ve_texture_sol, ve_mat_org_sol' ;
|
|
|
166 |
$this->nomGraphique = 'sol';
|
|
|
167 |
break;
|
|
|
168 |
default :
|
|
|
169 |
$e = 'Erreur dans l\'url de votre requête : </br> La ressource " '
|
|
|
170 |
.$retour[1].' " n\'existe pas.';
|
|
|
171 |
throw new Exception($e, RestServeur::HTTP_CODE_MAUVAISE_REQUETE);
|
|
|
172 |
break;
|
|
|
173 |
}
|
|
|
174 |
}else {
|
|
|
175 |
throw new Exception("Erreur dans l\'url de votre requête :".
|
|
|
176 |
"</br> precisez le graphique -> \"sol\" ou \"climat\".", RestServeur::HTTP_CODE_MAUVAISE_REQUETE);
|
|
|
177 |
}
|
|
|
178 |
}
|
|
|
179 |
|
|
|
180 |
|
|
|
181 |
|
|
|
182 |
|
|
|
183 |
//+-------------------------- formatage du résultat -------------------------------------------+
|
|
|
184 |
|
|
|
185 |
|
|
|
186 |
public function obtenirResultat($resultat) {
|
|
|
187 |
if ($resultat == ""){
|
|
|
188 |
$message = 'La requête SQL formée comporte une erreur!';
|
|
|
189 |
$code = RestServeur::HTTP_CODE_RESSOURCE_INTROUVABLE;
|
|
|
190 |
throw new Exception($message, $code);
|
|
|
191 |
}elseif ($resultat) {
|
|
|
192 |
if ((count($this->ressources)) != 0) {
|
|
|
193 |
$this->traiterValeursEcologiques($resultat[0]);
|
|
|
194 |
$i = 0;
|
|
|
195 |
$svg = $this->genererSVG();
|
|
|
196 |
$resultat = new ResultatService();
|
410 |
mathilde |
197 |
|
|
|
198 |
$resultat->corps = ($this->parametres['retour'] == 'image/png') ? $this->convertirEnPNG($svg) : $svg;
|
|
|
199 |
$resultat->mime = $this->parametres['retour'];
|
|
|
200 |
}
|
396 |
mathilde |
201 |
} else {
|
402 |
mathilde |
202 |
$message = 'Les données recherchées sont introuvables.';
|
396 |
mathilde |
203 |
$code = RestServeur::HTTP_CODE_RESSOURCE_INTROUVABLE;
|
|
|
204 |
throw new Exception($message, $code);
|
|
|
205 |
}
|
|
|
206 |
return $resultat;
|
|
|
207 |
}
|
|
|
208 |
|
402 |
mathilde |
209 |
|
|
|
210 |
public function traiterValeursEcologiques($valeurs){
|
|
|
211 |
//humidite edaphique sur echelle de 12
|
|
|
212 |
foreach($valeurs as $cle => $val){
|
|
|
213 |
if ($cle == 've_humidite_edaph'){
|
|
|
214 |
$this->valeurs_en_pourcentage[$cle] = round($val/12,1);
|
|
|
215 |
}else{
|
|
|
216 |
//salinite commence à 0
|
|
|
217 |
if($val == 0){
|
|
|
218 |
$this->valeurs_en_pourcentage[$cle] = 0;
|
|
|
219 |
}else{
|
|
|
220 |
$this->valeurs_en_pourcentage[$cle] = round($val/9,1);
|
|
|
221 |
}
|
|
|
222 |
}
|
|
|
223 |
}
|
|
|
224 |
}
|
|
|
225 |
|
|
|
226 |
public function genererSVG(){
|
|
|
227 |
$this->dom = new DOMDocument('1.0', 'UTF-8');
|
|
|
228 |
//verifie que le xml est bien formé
|
|
|
229 |
$this->dom->validateOnParse = true;
|
|
|
230 |
$fichierSvg = $this->cheminGraphBase."".$this->nomGraphique.".svg";
|
|
|
231 |
$res=$this->dom->load($fichierSvg);
|
|
|
232 |
$this->changerValeursSVG();
|
|
|
233 |
$svg = $this->dom->saveXML();
|
|
|
234 |
return $svg;
|
|
|
235 |
}
|
|
|
236 |
|
|
|
237 |
|
|
|
238 |
|
|
|
239 |
public function changerValeursSVG(){
|
|
|
240 |
foreach ($this->valeurs_en_pourcentage as $cle => $val){
|
|
|
241 |
$grad_id = array_search($val,$this->graduations_id);
|
|
|
242 |
$Dompath = new DOMXPath($this->dom);
|
|
|
243 |
$element = $Dompath->query("//*[@id='".$grad_id."']")->item(0);
|
|
|
244 |
$pos_x = $element->getAttribute('x1');
|
|
|
245 |
$curseur = $Dompath->query("//*[@id='".$cle."']")->item(0);
|
|
|
246 |
$curseur->setAttribute('cx', $pos_x);
|
|
|
247 |
$svg = $this->dom->getElementsByTagName("svg")->item(0);
|
|
|
248 |
$svg->setAttribute('width',$this->largeurSVG);
|
|
|
249 |
}
|
|
|
250 |
}
|
|
|
251 |
|
410 |
mathilde |
252 |
private function convertirEnPNG($svg) {
|
|
|
253 |
$png = null;
|
|
|
254 |
|
|
|
255 |
if (isset($this->convertisseur)) {
|
|
|
256 |
if ($this->convertisseur == 'imagick') {
|
|
|
257 |
if (extension_loaded('imagick')) {
|
|
|
258 |
$png = $this->convertirEnPNGAvecImageMagick($svg);
|
|
|
259 |
} else {
|
|
|
260 |
$message = "Impossible de générer l'image sur le serveur. Extension ImageMagick absente.";
|
|
|
261 |
$code = RestServeur::HTTP_CODE_ERREUR;
|
|
|
262 |
throw new Exception($message, $code);
|
|
|
263 |
}
|
|
|
264 |
} else if ($this->convertisseur == 'rsvg') {
|
|
|
265 |
$png = $this->convertirEnPNGAvecRsvg($svg);
|
|
|
266 |
} else {
|
|
|
267 |
$message = "Le convertisseur indiqué '{$this->convertisseur}' ne fait pas partie de la liste ".
|
|
|
268 |
"des convertisseurs disponibles : imagick, rsvg.";
|
|
|
269 |
$code = RestServeur::HTTP_CODE_ERREUR;
|
|
|
270 |
throw new Exception($message, $code);
|
|
|
271 |
}
|
|
|
272 |
} else {
|
|
|
273 |
$message = "Veuillez indiquer le convertisseur de svg à utiliser pour le service.";
|
|
|
274 |
$code = RestServeur::HTTP_CODE_ERREUR;
|
|
|
275 |
throw new Exception($message, $code);
|
|
|
276 |
}
|
|
|
277 |
return $png;
|
|
|
278 |
}
|
|
|
279 |
|
|
|
280 |
private function convertirEnPNGAvecImageMagick($svg) {
|
|
|
281 |
$convertisseur = new Imagick();
|
|
|
282 |
$convertisseur->setBackgroundColor(new ImagickPixel('transparent'));
|
|
|
283 |
$convertisseur->readImageBlob($svg);
|
|
|
284 |
$convertisseur->setImageFormat('png32');
|
|
|
285 |
$convertisseur->resizeImage($this->largeurSVG, 0 , imagick::FILTER_LANCZOS, 0, true);
|
|
|
286 |
$png = $convertisseur->getImageBlob();
|
|
|
287 |
$convertisseur->clear();
|
|
|
288 |
$convertisseur->destroy();
|
|
|
289 |
return $png;
|
|
|
290 |
}
|
|
|
291 |
|
|
|
292 |
private function convertirEnPNGAvecRsvg($svg) {
|
|
|
293 |
$idFichier = $this->getIdFichier();
|
|
|
294 |
$fichierPng = $this->config['cache']['stockageChemin']."".$idFichier.'.png';
|
|
|
295 |
$fichierSvg = $this->config['cache']['stockageChemin']."".$idFichier.'.svg';
|
|
|
296 |
file_put_contents($fichierSvg, $svg);
|
|
|
297 |
$commande = "rsvg-convert $fichierSvg -d 75 -p 75 -o $fichierPng";
|
|
|
298 |
$rsvg = exec($commande);
|
|
|
299 |
$this->indexerFichierPng($fichierPng);
|
|
|
300 |
$png = file_get_contents($fichierPng);
|
|
|
301 |
return $png;
|
|
|
302 |
}
|
|
|
303 |
|
|
|
304 |
private function indexerFichierPng($fichierPng) {
|
|
|
305 |
$img = imagecreatefrompng($fichierPng);
|
|
|
306 |
imagetruecolortopalette($img, false, 32);
|
|
|
307 |
imagepng($img, $fichierPng, 9, PNG_ALL_FILTERS);
|
|
|
308 |
}
|
|
|
309 |
|
|
|
310 |
private function getIdFichier(){
|
|
|
311 |
$idfichier = str_replace(".","-",$this->ressources[1]);
|
|
|
312 |
$idfichier = str_replace(':','-',$idfichier);
|
|
|
313 |
return $idfichier;
|
|
|
314 |
}
|
402 |
mathilde |
315 |
//+--------------------------FONCTIONS D'ASSEMBLAGE DE LA REQUETE-------------------------------------------+
|
|
|
316 |
|
|
|
317 |
public function assemblerLaRequete() {
|
|
|
318 |
$requete = ' SELECT '.$this->requete_champs.' FROM '.$this->table.' '.$this->retournerRequeteCondition();
|
|
|
319 |
return $requete;
|
|
|
320 |
}
|
|
|
321 |
|
|
|
322 |
public function retournerRequeteCondition() {
|
|
|
323 |
$condition = '';
|
|
|
324 |
if ($this->requete_condition !== "") {
|
|
|
325 |
$condition = ' WHERE '.implode(' AND ', $this->requete_condition);
|
|
|
326 |
}
|
|
|
327 |
return $condition;
|
|
|
328 |
}
|
|
|
329 |
|
|
|
330 |
|
|
|
331 |
|
396 |
mathilde |
332 |
}
|
|
|
333 |
?>
|