Subversion Repositories eFlore/Projets.eflore-projets

Rev

Rev 473 | Rev 506 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
449 mathilde 1
<?php
2
 
3
/**
4
* Classe CommunGraphiques.php regroupement de fonctions pour les graphiques
5
*  graphiques/#typegraphique/#bdnt.nn:#num_nomen --> renvoie un graphique avec les données connues
6
*
7
*
8
* @package eflore-projets
9
* @author Jean-Pascal MILCENT <jpm@tela-botanica.org>
10
* @author Mathilde SALTHUN-LASSALLE <mathilde@tela-botanica.org>
11
* @license GPL v3 <http://www.gnu.org/licenses/gpl.txt>
12
* @license CECILL v2 <http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt>
13
* @version 1.0
14
* @copyright 1999-2011 Tela Botanica (accueil@tela-botanica.org)
15
*/
16
 
17
abstract class CommunGraphiques extends Commun{
18
 
19
	protected $parametres = array();
20
	protected $ressources = array();
21
 
22
	protected $Bdd;
23
	protected $config;
24
	protected $cache;
25
	protected $metadonnees;
26
	protected $version;
27
	protected $serviceNom = 'Graphiques';
28
 
29
	protected $graduations_id = array();
30
	protected  $champs_ontologiques =  array();
31
	protected $nomGraphique = array();
32
 
33
	protected $table = '';
34
	protected $requete_condition = "";
35
	protected $requete_champs;
36
 
37
	protected $convertisseur;
38
	protected $cheminGraphBase;
39
	protected $valeurs_en_pourcentage = array();
40
	protected $dom;
41
	protected $largeurSVG = "500";
42
	protected $valeurs_champs;
43
 
44
 
45
	public function consulter($ressources, $parametres) {
46
		$this->ressources = $ressources;
47
		$this->parametres = $parametres;
48
		$this->initialiserConfiguration();
49
		$resultats = '';
50
		$this->traiterRessources();
51
		$requete = $this->assemblerLaRequete();
52
		$resultat = $this->resultat = $this->Bdd->recupererTous($requete);
53
		$versionResultat = $this->obtenirResultat($resultat);
54
		return $versionResultat;
55
	}
56
 
57
 
58
	//+--------------------------initialisation de paramètres  -------------------------------------------+
59
 
60
	private function initialiserConfiguration() {
61
		$conteneur = new Conteneur();
62
		$this->Bdd = $conteneur->getBdd();
63
		$this->config = $conteneur->getParametre('Graphiques');
64
		$this->convertisseur = $this->config['convertisseur'];
65
		$this->graduations_id = $this->getParametreTableau('graduations_id');
66
		$this->champs_ontologiques = $this->getParametreTableau('champs_ontologiques');
67
		$this->cheminGraphBase = $this->config['chemin'];
68
		$cacheOptions = array('mise_en_cache' => $this->config['cache']['miseEnCache'],
69
								'stockage_chemin' => $this->config['cache']['stockageChemin'],
70
								'duree_de_vie' => $this->config['cache']['dureeDeVie']);
71
		$this->cache = $conteneur->getCacheSimple($cacheOptions);
72
		$this->definirVersion();
73
		$this->definirFormat();
74
		$this->definirTable($this->version);
75
	}
76
 
77
	abstract function definirTable($version);
78
 
79
 
80
	private function getParametreTableau($cle) {
81
		$tableau = array();
82
		$parametre = Config::get($cle);
83
		if (empty($parametre) === false) {
84
			$tableauPartiel = explode(',', $parametre);
85
			$tableauPartiel = array_map('trim', $tableauPartiel);
86
			foreach ($tableauPartiel as $champ) {
87
				if (strpos($champ, '=') !== false && strlen($champ) >= 3) {
88
					list($cle, $val) = explode('=', $champ);
89
					$tableau[trim($cle)] = trim($val);
90
				} else {
91
					$tableau[] = trim($champ);
92
				}
93
			}
94
		}
95
		return $tableau;
96
	}
97
 
98
	//+--------------------------traitement ressources ou paramètres  -------------------------------------------+
99
 
100
	//+---- paramètres ----+
101
 
102
	//on n'affiche qu'une version de graphique à la fois ( la dernière ou celle demandée )
103
	private function definirVersion() {
104
		$this->chargerVersions();
105
		if( (!isset($this->parametres['version.projet']) ) || ((isset($this->parametres['version.projet']) )&&
106
		(($this->parametres['version.projet'] == '+') || ($this->parametres['version.projet'] == '')))){
107
			$this->version = $this->metadonnees[0]['version'];
108
		} else {
109
			$this->version = $this->parametres['version.projet'];
110
		}
111
	}
112
 
113
	private function definirFormat() {
114
		if (isset($this->parametres['retour.format']) ){
115
			if (preg_match("/^[0-9]+$/", $this->parametres['retour.format'])){
116
				$this->largeurSVG = $this->parametres['retour.format'];
117
			}else {
118
				$erreur = "Erreur : Entrez la largeur voulue (en pixels) pour le paramètre retour.format.";
119
				$code = RestServeur::HTTP_CODE_MAUVAISE_REQUETE;
120
				throw new Exception($erreur, $code);
121
			}
122
		}
123
		if (!isset($this->parametres['retour']) ){
124
			$this->parametres['retour'] = 'image/svg+xml';
125
 
126
		}else {
127
			if (( $this->parametres['retour'] != 'image/svg+xml')&& ( $this->parametres['retour'] != 'image/png')){
128
				$erreur = "Erreur : choisissez le format de retour pour le paramètre retour : image/svg%2Bxml ou image/png.";
129
				$code = RestServeur::HTTP_CODE_MAUVAISE_REQUETE;
130
				throw new Exception($erreur, $code);
131
			}
132
		}
133
	}
134
 
135
 
136
 
137
	private function chargerVersions() {
138
		$requete = "SELECT version ".
139
							"FROM ".Config::get('bdd_table_meta')." ".
140
							"ORDER BY date_creation DESC ";
141
		$resultats = $this->Bdd->recupererTous($requete);
142
		if (!is_array($resultats) || count($resultats) <= 0) {
143
			$message = "Les méta-données n'ont pu être chargée pour la ressource demandée";
144
			$code = RestServeur::HTTP_CODE_RESSOURCE_INTROUVABLE;
145
			throw new Exception($message, $code);
146
		}
147
 
148
		$this->metadonnees = $resultats;
149
	}
150
 
151
	//+----- ressources -----+
152
 
153
 
154
	public function traiterRessources() {
501 mathilde 155
		if(isset($this->ressources)) {
156
			$this->traiterTypeGraphique();
157
			$this->traiterReferentielEtNum();
158
		} else {
159
			$e = 'Erreur dans l\'url de votre requête : </br> ressources insuffisantes.';
160
			throw new Exception( $e, RestServeur::HTTP_CODE_MAUVAISE_REQUETE);
161
		}
449 mathilde 162
	}
163
 
164
	abstract function traiterReferentielEtNum();
165
	abstract function traiterTypeGraphique();
166
 
167
	//+--------------------------FONCTIONS D'ASSEMBLAGE DE LA REQUETE-------------------------------------------+
168
 
169
	public function assemblerLaRequete() {
170
		$requete = 	' SELECT '.$this->requete_champs.'  FROM '.$this->table.' '.$this->retournerRequeteCondition();
171
		return $requete;
172
	}
173
 
174
	public  function retournerRequeteCondition() {
175
		$condition = '';
176
		if ($this->requete_condition !== "") {
177
			$condition = ' WHERE '.implode(' AND ', $this->requete_condition);
178
		}
179
		return $condition;
180
	}
181
 
182
	//+-------------------------- formatage du résultat  -------------------------------------------+
183
 
184
	public function obtenirResultat($resultat) {
185
		if ($resultat == ""){
186
			$message = 'La requête SQL formée comporte une erreur!';
187
			$code = RestServeur::HTTP_CODE_RESSOURCE_INTROUVABLE;
188
			throw new Exception($message, $code);
189
		}elseif ($resultat) {
190
			if ((count($this->ressources)) != 0) {
458 delphine 191
				//$Atraiter = array_filter($resultat[0],function($var){return ($var != '');});
192
				foreach ($resultat[0] as $champs => $valeur) {
193
					if ($valeur !== '') {
194
						$Atraiter[$champs] = $valeur;
195
					}
196
				}
449 mathilde 197
				if (!empty($Atraiter)) {
198
					$this->traiterValeursEcologiques($Atraiter);
199
					$svg = $this->genererSVG();
200
					$resultat = new ResultatService();
201
					$resultat->corps = ($this->parametres['retour'] == 'image/png') ? $this->convertirEnPNG($svg) : $svg;
202
					$resultat->mime = $this->parametres['retour'];
203
				} else {
204
					$resultat = null;
205
				}
206
			}
207
		} else {
208
			$resultat = null;
209
		}
210
		return $resultat;
211
	}
212
 
213
 
214
 
215
 
216
	//+----- modification svg -----+
217
 
218
 
219
 
220
	public function traiterValeursEcologiques($valeur){
221
		$this->valeurs_champs = $valeur;
222
 
223
		foreach($this->valeurs_champs as $cle => $val){
224
				if (preg_match("/ve_humidite_edaph/", $cle)) {
225
					$this->valeurs_en_pourcentage[$cle] = round($val/13,1);
226
				} elseif (preg_match("/ve_salinite/", $cle)) {
227
					$this->valeurs_en_pourcentage[$cle] = round(($val+1)/11,1);
228
				} else {
229
					$this->valeurs_en_pourcentage[$cle] = round($val/10,1);
230
				}
231
		}
232
	}
233
 
234
 
235
 
236
	public function genererSVG(){
237
		$svg = null;
238
		$this->dom = new DOMDocument('1.0', 'UTF-8');
239
		$this->dom->validateOnParse = true;
240
		$fichierSvg = $this->cheminGraphBase."".$this->nomGraphique.".svg";
241
		$this->dom->load($fichierSvg);
242
		$this->changerValeursSVG();
243
			$svg = $this->dom->saveXML();
244
		return $svg;
245
	}
246
 
247
	abstract function changerValeursSVG();
248
 
249
	public function recupererOntologies($valeur, $champs){
250
		$url = $this->ajouterHref('ontologies',$this->champs_ontologiques[$champs].':'.urlencode(urlencode($valeur)));
251
		$val = $this->consulterHref($url);
252
		return $val;
253
	}
254
 
465 mathilde 255
	public function traiterIntermediaires($valeurTexte,$champsOntologie, $champsTable){
473 mathilde 256
		if (preg_match("/(?:I|i)nterm(?:é|e)diaire(?:s)*/", $valeurTexte )) {
465 mathilde 257
			$prec = $this->recupererOntologies(($this->valeurs_champs[$champsTable]-1), $champsOntologie );
258
			$suiv = $this->recupererOntologies(($this->valeurs_champs[$champsTable]+1), $champsOntologie );
259
			$valeurTexte = "Intermédiaires entre $prec->nom et $suiv->nom ";
260
		}
261
		return $valeurTexte;
262
	}
263
 
449 mathilde 264
	/// +---- convertir png ----+
265
 
266
	public function convertirEnPNG($svg) {
267
		$png = null;
268
 
269
		if (isset($this->convertisseur)) {
270
			if ($this->convertisseur == 'imagick') {
271
				if (extension_loaded('imagick')) {
272
					$png = $this->convertirEnPNGAvecImageMagick($svg);
273
				} else {
274
					$message = "Impossible de générer l'image sur le serveur. Extension ImageMagick absente.";
275
					$code = RestServeur::HTTP_CODE_ERREUR;
276
					throw new Exception($message, $code);
277
				}
278
			} else if ($this->convertisseur == 'rsvg') {
279
				$png = $this->convertirEnPNGAvecRsvg($svg);
280
			} else {
281
				$message = "Le convertisseur indiqué '{$this->convertisseur}' ne fait pas partie de la liste ".
282
								"des convertisseurs disponibles : imagick, rsvg.";
283
				$code = RestServeur::HTTP_CODE_ERREUR;
284
				throw new Exception($message, $code);
285
			}
286
		} else {
287
			$message = "Veuillez indiquer le convertisseur de svg à utiliser pour le service.";
288
			$code = RestServeur::HTTP_CODE_ERREUR;
289
			throw new Exception($message, $code);
290
		}
291
		return $png;
292
	}
293
 
294
	public function convertirEnPNGAvecImageMagick($svg) {
295
		$convertisseur = new Imagick();
296
		$convertisseur->setBackgroundColor(new ImagickPixel('#F8F8F8'));
297
		$convertisseur->readImageBlob($svg);
298
		$convertisseur->setImageFormat('png32');
299
		$convertisseur->resizeImage($this->largeurSVG, 0 , imagick::FILTER_LANCZOS, 0, true);
300
		$png = $convertisseur->getImageBlob();
301
		$convertisseur->clear();
302
		$convertisseur->destroy();
303
		return $png;
304
	}
305
 
306
	public function convertirEnPNGAvecRsvg($svg) {
307
		$idFichier = $this->getIdFichier();
308
		$fichierPng = $this->config['cache']['stockageChemin']."".$idFichier.'.png';
309
		$fichierSvg = $this->config['cache']['stockageChemin']."".$idFichier.'.svg';
310
		file_put_contents($fichierSvg, $svg);
311
		$commande = "rsvg-convert  $fichierSvg -b #F8F8F8 -w $this->largeurSVG -a -o $fichierPng";
312
		$rsvg = exec($commande);
313
		$this->indexerFichierPng($fichierPng);
314
		$png = file_get_contents($fichierPng);
315
		return $png;
316
	}
317
 
318
	public function indexerFichierPng($fichierPng) {
319
		$img = imagecreatefrompng($fichierPng);
320
		imagetruecolortopalette($img, false, 32);
321
		imagepng($img, $fichierPng, 9, PNG_ALL_FILTERS);
322
	}
323
 
324
	public function getIdFichier(){
325
		$idfichier = str_replace(".","-",$this->ressources[1]);
326
		$idfichier = str_replace(':','-',$idfichier);
327
		$idfichier .= "-".$this->ressources[0];
328
		return $idfichier;
329
	}
330
}
331
?>