6 |
jpm |
1 |
<?php
|
|
|
2 |
|
490 |
mathilde |
3 |
/**
|
|
|
4 |
* classe pour web service qui affiche les images de Coste.
|
|
|
5 |
* il n'existe qu'une seule version pour les images de Coste : 2.00
|
|
|
6 |
* retour en application/json
|
|
|
7 |
*
|
|
|
8 |
* exemple d'appel du service :
|
|
|
9 |
* .../service:eflore:0.1/coste/images?masque.nt=1053
|
|
|
10 |
* .../service:eflore:0.1/coste/images?masque.nn=39594,39601
|
|
|
11 |
* .../service:eflore:0.1/coste/images
|
|
|
12 |
*
|
|
|
13 |
* paramètres disponibles : navigation.depart, navigation.limite, masque.nn, masque.nt
|
|
|
14 |
*
|
|
|
15 |
* @package eFlore/services
|
|
|
16 |
* @author Jean-Pascal MILCENT <jpm@tela-botanica.org>
|
|
|
17 |
* @author Mathilde Salthun-Lassalle <mathilde@tela-botanica.org>
|
|
|
18 |
* @license GPL v3 <http://www.gnu.org/licenses/gpl.txt>
|
|
|
19 |
* @license CECILL v2 <http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt>
|
|
|
20 |
* @version 1.0
|
|
|
21 |
* @copyright 1999-2011 Tela Botanica (accueil@tela-botanica.org)
|
|
|
22 |
*/
|
6 |
jpm |
23 |
|
|
|
24 |
class Images extends Commun {
|
|
|
25 |
|
490 |
mathilde |
26 |
protected $table ;
|
|
|
27 |
private $requete_condition = array(" image != '' ");
|
|
|
28 |
private $champs_recherches = " num_nom, image, flore_bdtfx_nn, flore_bdtfx_nt ";
|
|
|
29 |
private $total_resultat;
|
|
|
30 |
protected $limite_requete = array('depart' => 0, 'limite' => 100);
|
|
|
31 |
private $masque = array();
|
6 |
jpm |
32 |
|
527 |
mathilde |
33 |
|
490 |
mathilde |
34 |
|
6 |
jpm |
35 |
|
|
|
36 |
public function consulter($ressources, $parametres) {
|
490 |
mathilde |
37 |
$this->ressources = $ressources;
|
|
|
38 |
$this->parametres = $parametres;
|
|
|
39 |
$this->traiterRessources();
|
|
|
40 |
$this->traiterParametres();
|
|
|
41 |
$this->table = config::get('bdd_table').'_v2_00';
|
|
|
42 |
$requete = $this->assemblerLaRequete();
|
|
|
43 |
$resultat = $this->getBdd()->recupererTous($requete);
|
496 |
mathilde |
44 |
$resultats = $this->formaterResultat($resultat);
|
490 |
mathilde |
45 |
return $resultats;
|
6 |
jpm |
46 |
}
|
|
|
47 |
|
490 |
mathilde |
48 |
//+-----------------------------------traitement ressources et paramètres --------------------------------+
|
|
|
49 |
|
|
|
50 |
|
|
|
51 |
public function traiterRessources() {
|
|
|
52 |
if (empty($this->ressources) ) {
|
|
|
53 |
if (isset($this->parametres['masque.nn']) == false
|
|
|
54 |
&& isset($this->parametres['masque.nt']) == false) {
|
|
|
55 |
$this->requete_condition[] = " flore_bdtfx_nt != '' AND flore_bdtfx_nn != '' ";
|
|
|
56 |
}
|
6 |
jpm |
57 |
} else {
|
490 |
mathilde |
58 |
$e = "La ressource {$this->ressources[0]} n'existe pas.";
|
|
|
59 |
$this->renvoyerErreur(RestServeur::HTTP_CODE_MAUVAISE_REQUETE,$e);
|
6 |
jpm |
60 |
}
|
|
|
61 |
}
|
|
|
62 |
|
490 |
mathilde |
63 |
public function traiterParametres() {
|
|
|
64 |
foreach ($this->parametres as $param => $val ) {
|
|
|
65 |
switch ($param) {
|
|
|
66 |
case 'masque.nt' :
|
|
|
67 |
$this->analyserMasque($val,'nt');
|
|
|
68 |
break;
|
|
|
69 |
case 'masque.nn' :
|
|
|
70 |
$this->analyserMasque($val,'nn');
|
|
|
71 |
break;
|
638 |
aurelien |
72 |
case 'referentiel' :
|
|
|
73 |
// ce paramètre est ignoré dans le cas de coste
|
|
|
74 |
// car seul le cel le prend en compte pour le moment
|
|
|
75 |
// on l'indique ici dans le switch car ce sont les mêmes url
|
|
|
76 |
// qui sont appelées pour le cel et coste (à retirer donc si ça change)
|
|
|
77 |
break;
|
490 |
mathilde |
78 |
case 'navigation.depart' :
|
|
|
79 |
$this->limite_requete['depart'] = $val;
|
|
|
80 |
break;
|
|
|
81 |
case 'navigation.limite' :
|
|
|
82 |
$this->limite_requete['limite'] = $val;
|
|
|
83 |
break;
|
|
|
84 |
default :
|
|
|
85 |
$e = 'Erreur dans les paramètres de recherche de votre requête : </br> Le parametre " '
|
|
|
86 |
.$param.' " n\'existe pas.';
|
|
|
87 |
$this->renvoyerErreur(RestServeur::HTTP_CODE_MAUVAISE_REQUETE,$e);
|
|
|
88 |
break;
|
6 |
jpm |
89 |
}
|
490 |
mathilde |
90 |
}
|
6 |
jpm |
91 |
}
|
|
|
92 |
|
|
|
93 |
|
490 |
mathilde |
94 |
|
6 |
jpm |
95 |
|
490 |
mathilde |
96 |
private function analyserMasque($valeur, $type_masque) {
|
|
|
97 |
$this->masque[] = "$type_masque=$valeur";
|
939 |
raphael |
98 |
if (!$valeur) {
|
490 |
mathilde |
99 |
$e = 'renseignez une valeur pour masque.nn';
|
|
|
100 |
$this->renvoyerErreur(RestServeur::HTTP_CODE_MAUVAISE_REQUETE,$e);
|
6 |
jpm |
101 |
}
|
939 |
raphael |
102 |
$arr = array_filter(array_map('intval', explode(',', $valeur)));
|
|
|
103 |
if(!$arr) $this->renvoyerErreur(RestServeur::HTTP_CODE_MAUVAISE_REQUETE, "valeur incorrecte pour masque.".$type_masque);
|
|
|
104 |
$this->requete_condition[] = sprintf(" flore_bdtfx_%s IN (%s)", $type_masque, implode(',', $arr));
|
6 |
jpm |
105 |
}
|
|
|
106 |
|
|
|
107 |
|
|
|
108 |
|
|
|
109 |
|
558 |
mathilde |
110 |
|
490 |
mathilde |
111 |
//+-------------------------------------------formatage résultats---------------------------------------------+
|
6 |
jpm |
112 |
|
496 |
mathilde |
113 |
public function formaterResultat($resultat) {
|
|
|
114 |
$versionResultat['entete'] = $this->formaterEnteteResultat();;
|
|
|
115 |
if ($resultat == '') {
|
|
|
116 |
$message = 'La requête SQL formée comporte une erreur!';
|
|
|
117 |
$code = RestServeur::HTTP_CODE_MAUVAISE_REQUETE;
|
|
|
118 |
throw new Exception($message, $code);
|
|
|
119 |
} elseif ($resultat) {
|
534 |
mathilde |
120 |
$versionResultat = $this->retournerResultatFormate($resultat);
|
496 |
mathilde |
121 |
} else {
|
|
|
122 |
$versionResultat['resultats'] = array();
|
|
|
123 |
}
|
|
|
124 |
return $versionResultat;
|
|
|
125 |
}
|
|
|
126 |
|
|
|
127 |
public function retournerResultatFormate($resultat) {
|
490 |
mathilde |
128 |
$resultat_json = array();
|
496 |
mathilde |
129 |
foreach ($resultat as $tab) {
|
|
|
130 |
$num_coste = $tab['num_nom'];
|
|
|
131 |
unset($tab['num_nom']);
|
|
|
132 |
$resultat_json['resultats'][$num_coste]['num_nomenclatural'] = $tab['flore_bdtfx_nn'];
|
|
|
133 |
$resultat_json['resultats'][$num_coste]['num_taxonomique'] = $tab['flore_bdtfx_nt'];
|
|
|
134 |
$resultat_json['resultats'][$num_coste]['binaire.href'] = $this->formaterUrlImage($tab['image']);
|
|
|
135 |
$resultat_json['resultats'][$num_coste]['mime'] = "images/png";
|
|
|
136 |
}
|
490 |
mathilde |
137 |
return $resultat_json;
|
6 |
jpm |
138 |
}
|
|
|
139 |
|
490 |
mathilde |
140 |
public function formaterUrlImage($fichier) {
|
|
|
141 |
$chemin = config::get('donnees')."2.00/img/$fichier";
|
|
|
142 |
return $chemin;
|
6 |
jpm |
143 |
}
|
|
|
144 |
|
490 |
mathilde |
145 |
|
6 |
jpm |
146 |
|
558 |
mathilde |
147 |
|
490 |
mathilde |
148 |
public function formaterEnteteResultat() {
|
|
|
149 |
$entete['depart'] = $this->limite_requete['depart'];
|
|
|
150 |
$entete['limite'] = $this->limite_requete['limite'];
|
|
|
151 |
$entete['total'] = $this->total_resultat;
|
|
|
152 |
$entete['masque'] = empty($this->masque) ? 'aucun' : implode('&', $this->masque);
|
|
|
153 |
$url = $this->formulerUrl($this->total_resultat, '/images');
|
|
|
154 |
if (isset($url['precedent']) && $url['precedent'] != '') {
|
|
|
155 |
$entete['href.precedent'] = $url['precedent'];
|
6 |
jpm |
156 |
}
|
490 |
mathilde |
157 |
if (isset($url['suivant']) && $url['suivant'] != '') {
|
|
|
158 |
$entete['href.suivant'] = $url['suivant'];
|
6 |
jpm |
159 |
}
|
490 |
mathilde |
160 |
return $entete;
|
6 |
jpm |
161 |
}
|
|
|
162 |
|
490 |
mathilde |
163 |
//+--------------------------FONCTIONS D'ASSEMBLAGE DE LA REQUETE-------------------------------------------+
|
6 |
jpm |
164 |
|
490 |
mathilde |
165 |
public function assemblerLaRequete() {
|
|
|
166 |
$requete = ' SELECT '.$this->champs_recherches.' FROM '.$this->table.' '
|
|
|
167 |
.$this->retournerRequeteCondition().' '
|
|
|
168 |
.$this->delimiterResultatsRequete();
|
|
|
169 |
return $requete;
|
6 |
jpm |
170 |
}
|
|
|
171 |
|
490 |
mathilde |
172 |
|
6 |
jpm |
173 |
|
490 |
mathilde |
174 |
public function retournerRequeteCondition() {
|
|
|
175 |
$condition = '';
|
|
|
176 |
if (empty($this->requete_condition) == false) {
|
|
|
177 |
$condition = ' WHERE '.implode(' AND ', $this->requete_condition);
|
|
|
178 |
}
|
|
|
179 |
return $condition;
|
6 |
jpm |
180 |
}
|
|
|
181 |
|
490 |
mathilde |
182 |
|
6 |
jpm |
183 |
|
490 |
mathilde |
184 |
public function calculerTotalResultat() {
|
|
|
185 |
$requete = 'SELECT count(*) as nombre FROM '.$this->table.' '
|
|
|
186 |
.$this->retournerRequeteCondition();
|
|
|
187 |
$res = $this->getBdd()->recuperer($requete);
|
6 |
jpm |
188 |
if ($res) {
|
490 |
mathilde |
189 |
$this->total_resultat = $res['nombre'];
|
|
|
190 |
} else {
|
|
|
191 |
$this->total_resultat = 0;
|
|
|
192 |
$e = 'Données introuvables dans la base';
|
|
|
193 |
$this->renvoyerErreur(RestServeur::HTTP_CODE_RESSOURCE_INTROUVABLE, $e);
|
6 |
jpm |
194 |
}
|
|
|
195 |
}
|
|
|
196 |
|
|
|
197 |
|
490 |
mathilde |
198 |
public function delimiterResultatsRequete() {
|
|
|
199 |
$this->calculerTotalResultat();
|
|
|
200 |
$requete_limite = '';
|
|
|
201 |
if ((count($this->ressources)) == 0) {
|
534 |
mathilde |
202 |
if (($this->limite_requete['depart'] < $this->total_resultat) &&
|
|
|
203 |
(($this->limite_requete['limite'] + $this->limite_requete['depart'] )
|
|
|
204 |
< $this->total_resultat )) {
|
490 |
mathilde |
205 |
$requete_limite = 'LIMIT '.$this->limite_requete['depart'].', '
|
|
|
206 |
.$this->limite_requete['limite'];
|
534 |
mathilde |
207 |
}
|
6 |
jpm |
208 |
}
|
490 |
mathilde |
209 |
return $requete_limite;
|
6 |
jpm |
210 |
}
|
|
|
211 |
|
|
|
212 |
}
|
|
|
213 |
?>
|