130 |
jpm |
1 |
<?php
|
|
|
2 |
// declare(encoding='UTF-8');
|
|
|
3 |
/**
|
|
|
4 |
* Classe gérant les images.
|
|
|
5 |
*
|
|
|
6 |
* @category PHP 5.2
|
|
|
7 |
* @package eflore-consultation
|
|
|
8 |
* @author Jean-Pascal MILCENT <jpm@tela-botanica.org>
|
|
|
9 |
* @author Delphine CAUQUIL <delphine@tela-botanica.org>
|
|
|
10 |
* @copyright 2011 Tela-Botanica
|
|
|
11 |
* @license http://www.gnu.org/licenses/gpl.html Licence GNU-GPL-v3
|
|
|
12 |
* @license http://www.cecill.info/licences/Licence_CeCILL_V2-fr.txt Licence CECILL-v2
|
|
|
13 |
* @version $Id$
|
|
|
14 |
*/
|
|
|
15 |
class Images extends Eflore {
|
624 |
mathilde |
16 |
|
|
|
17 |
private $nntaxon;
|
|
|
18 |
private $limite;
|
|
|
19 |
private $depart;
|
495 |
jpm |
20 |
|
624 |
mathilde |
21 |
public function setNnTaxon($nntax) {
|
|
|
22 |
$this->nntaxon = $nntax;
|
|
|
23 |
}
|
|
|
24 |
|
|
|
25 |
public function setLimite($limite) {
|
|
|
26 |
$this->limite = $limite;
|
|
|
27 |
}
|
|
|
28 |
|
|
|
29 |
public function setDepart($depart) {
|
|
|
30 |
$this->depart = $depart;
|
|
|
31 |
}
|
|
|
32 |
|
339 |
aurelien |
33 |
//TODO: créer des fonctions spécifiques cel et photoflora pour plus de clarté ?
|
130 |
jpm |
34 |
public function getUrlsImagesParIdsNoms(Array $idsNoms) {
|
|
|
35 |
$infosImages = $this->getInfosImagesParIdsNoms($idsNoms);
|
|
|
36 |
$urls = array();
|
509 |
jpm |
37 |
if (count($infosImages) > 0) {
|
|
|
38 |
foreach ($infosImages as $img) {
|
|
|
39 |
$id = $img['determination.nom_sci.code'];
|
|
|
40 |
$urls[$id][] = $img['binaire.href'];
|
|
|
41 |
}
|
130 |
jpm |
42 |
}
|
|
|
43 |
return $urls;
|
|
|
44 |
}
|
|
|
45 |
|
1136 |
mathias |
46 |
// retourne les urls d'une série d'images tirées de del, avec en premier les
|
|
|
47 |
// images d'organes les mieux votées, et ensuite toute les autres images disponibles
|
|
|
48 |
public function getUrlsImagesOrganesParIdsNom($idNom) {
|
|
|
49 |
$infosImages0 = $this->getInfosMeilleuresImagesParTag($idNom, array('fleur', 'feuille', 'fruit', 'ecorce', 'port', 'rameau'), Eflore::PROTOCOLE_CAPITALISATION, 6);
|
|
|
50 |
$infosImages1 = $this->getInfosImagesParIdsNoms(array($idNom));
|
|
|
51 |
$urls = array();
|
|
|
52 |
foreach ($infosImages0 as $imgs) {
|
|
|
53 |
foreach ($imgs as $img) {
|
|
|
54 |
$id = $img['determination.nom_sci.code'];
|
|
|
55 |
$urls[$id][] = $img['binaire.href'];
|
|
|
56 |
}
|
|
|
57 |
}
|
|
|
58 |
foreach ($infosImages1 as $img) {
|
|
|
59 |
$id = $img['determination.nom_sci.code'];
|
|
|
60 |
if (! in_array($img['binaire.href'], $urls[$id])) {
|
|
|
61 |
$urls[$id][] = $img['binaire.href'];
|
|
|
62 |
}
|
|
|
63 |
}
|
|
|
64 |
return $urls;
|
|
|
65 |
}
|
|
|
66 |
|
130 |
jpm |
67 |
public function getInfosImagesParIdsNoms(Array $idsNoms) {
|
898 |
aurelien |
68 |
$pas = 800;
|
|
|
69 |
if(count($idsNoms) >= $pas) {
|
|
|
70 |
$images = array();
|
|
|
71 |
$idsPartages = array_chunk($idsNoms, $pas);
|
|
|
72 |
foreach ($idsPartages as $sousEnsembleIdsNoms) {
|
|
|
73 |
$url = $this->getUrlImagesParIdsNoms($sousEnsembleIdsNoms);
|
1381 |
aurelien |
74 |
echo $url;exit;
|
898 |
aurelien |
75 |
$donnees = $this->chargerDonnees($url);
|
|
|
76 |
$resultats = (isset($donnees['resultats'])) ? $donnees['resultats'] : array();
|
|
|
77 |
$images += $resultats;
|
|
|
78 |
}
|
|
|
79 |
} else {
|
|
|
80 |
$url = $this->getUrlImagesParIdsNoms($idsNoms);
|
|
|
81 |
$donnees = $this->chargerDonnees($url);
|
|
|
82 |
$images = (isset($donnees['resultats'])) ? $donnees['resultats'] : array();
|
|
|
83 |
}
|
1115 |
mathias |
84 |
return $this->formaterResultatImages($images);
|
130 |
jpm |
85 |
}
|
1382 |
aurelien |
86 |
|
|
|
87 |
public function getInfosTrancheImagesParIdsNoms($idNom) {
|
|
|
88 |
$url = $this->getUrlImagesParIdsNoms($idNom, 10);
|
|
|
89 |
$donnees = $this->chargerDonnees($url);
|
|
|
90 |
$images = (isset($donnees['resultats'])) ? $donnees['resultats'] : array();
|
|
|
91 |
return $this->formaterResultatImages($images);
|
|
|
92 |
}
|
495 |
jpm |
93 |
|
475 |
delphine |
94 |
public function getInfosImageParIdImage($id_image) {
|
1115 |
mathias |
95 |
$tpl = $this->obtenirSqueletteSelonApi('imagesPopup');
|
947 |
aurelien |
96 |
$url = $this->formaterUrl($tpl, array('id' => $id_image, 'referentiel' => Registre::get('parametres.referentiel')));
|
1115 |
mathias |
97 |
$image = $this->chargerDonnees($url);
|
|
|
98 |
return $this->formaterResultatImages($image, true);
|
475 |
delphine |
99 |
}
|
624 |
mathilde |
100 |
|
|
|
101 |
public function getInfosImages() {
|
|
|
102 |
$url = $this->getUrlImages();
|
1115 |
mathias |
103 |
$donnees = $this->chargerDonnees($url);
|
624 |
mathilde |
104 |
$images = (empty($donnees['resultats']) == false) ? $donnees['resultats'] : array();
|
1115 |
mathias |
105 |
return $this->formaterResultatImages($images);
|
624 |
mathilde |
106 |
}
|
898 |
aurelien |
107 |
|
624 |
mathilde |
108 |
public function getInfosImagesTaxons() {
|
898 |
aurelien |
109 |
$pas = 800;
|
|
|
110 |
$idsTaxons = explode(',', $this->nntaxon);
|
|
|
111 |
if(count($idsTaxons) >= $pas) {
|
|
|
112 |
$images = array();
|
|
|
113 |
$idsPartages = array_chunk($idsTaxons, $pas);
|
|
|
114 |
foreach ($idsPartages as $sousEnsembleIdsTaxons) {
|
|
|
115 |
$url = $this->getUrlImagesTaxons(implode(',',$sousEnsembleIdsTaxons));
|
|
|
116 |
$donnees = $this->chargerDonnees($url);
|
|
|
117 |
$resultats = (empty($donnees['resultats']) == false) ? $donnees['resultats'] : array();
|
|
|
118 |
$images += $resultats;
|
|
|
119 |
}
|
|
|
120 |
} else {
|
|
|
121 |
$url = $this->getUrlImagesTaxons($idsTaxons);
|
|
|
122 |
$donnees = $this->chargerDonnees($url);
|
|
|
123 |
$images = (isset($donnees['resultats'])) ? $donnees['resultats'] : array();
|
|
|
124 |
}
|
1115 |
mathias |
125 |
return $this->formaterResultatImages($images);
|
|
|
126 |
}
|
|
|
127 |
|
|
|
128 |
public function getInfosPremiereImageParIdsNoms($idsNoms) {
|
|
|
129 |
$url = $this->getUrlPremiereImageParIdsNoms($idsNoms);
|
|
|
130 |
$donnees = $this->chargerDonnees($url);
|
|
|
131 |
$images = (isset($donnees['resultats'])) ? $donnees['resultats'] : array();
|
|
|
132 |
return $this->formaterResultatImages($images);
|
|
|
133 |
}
|
|
|
134 |
|
|
|
135 |
public function getInfosImagesGalerieMobile($nn) {
|
|
|
136 |
$url = $this->getUrlImagesGalerieMobile($nn);
|
|
|
137 |
$donnees = $this->chargerDonnees($url);
|
|
|
138 |
$images = (isset($donnees['resultats'])) ? $donnees['resultats'] : array();
|
624 |
mathilde |
139 |
return $images;
|
|
|
140 |
}
|
1115 |
mathias |
141 |
|
1116 |
mathias |
142 |
/**
|
1136 |
mathias |
143 |
* Retourne les $limite images ayant le plus de votes pour CHAQUE tag de $tags pour le protocole $protocole
|
1116 |
mathias |
144 |
*/
|
1123 |
mathias |
145 |
public function getInfosMeilleuresImagesParTag($nn, $tags, $protocole = Eflore::PROTOCOLE_CAPITALISATION, $limite = 10, $format = 'CRS') {
|
1116 |
mathias |
146 |
if (! is_array($tags)) {
|
|
|
147 |
$tags = array($tags);
|
|
|
148 |
}
|
|
|
149 |
$images_tag = array();
|
|
|
150 |
foreach ($tags as $tag) {
|
1123 |
mathias |
151 |
$url = $this->getUrlMeilleuresImagesParTag($nn, $tag, $protocole, $limite, $format);
|
1116 |
mathias |
152 |
$donnees = $this->chargerDonnees($url);
|
|
|
153 |
$images = (isset($donnees['resultats'])) ? $donnees['resultats'] : array();
|
1123 |
mathias |
154 |
$images_tag[$tag] = $this->formaterResultatImagesDel($images);
|
1116 |
mathias |
155 |
}
|
|
|
156 |
return $images_tag;
|
|
|
157 |
}
|
|
|
158 |
|
1136 |
mathias |
159 |
/**
|
|
|
160 |
* Retourne l'image ayant le plus de votes pour le pour capitalisation d'images, pour le premier tags de $tags. S'il
|
|
|
161 |
* n'y a aucune image pour le premier tag, parcourt les autres tags jusqu'à en trouver une.
|
|
|
162 |
*/
|
|
|
163 |
public function getInfosMeilleureImageParPrioriteTags($nn, $tags, $format = 'CRS') {
|
|
|
164 |
if (! is_array($tags)) {
|
|
|
165 |
$tags = array($tags);
|
|
|
166 |
}
|
|
|
167 |
$image = null;
|
|
|
168 |
foreach ($tags as $tag) {
|
|
|
169 |
$url = $this->getUrlMeilleuresImagesParTag($nn, $tag, Eflore::PROTOCOLE_CAPITALISATION, 1, $format);
|
|
|
170 |
$donnees = $this->chargerDonnees($url);
|
|
|
171 |
$image = (isset($donnees['resultats'])) ? $donnees['resultats'] : array();
|
|
|
172 |
$image = $this->formaterResultatImagesDel($image);
|
|
|
173 |
if (empty($image) == false) {
|
|
|
174 |
break;
|
|
|
175 |
}
|
|
|
176 |
}
|
|
|
177 |
//echo "<pre>" . print_r($image, true) . "</pre>";
|
|
|
178 |
if (is_array($image)) {
|
|
|
179 |
$image = array_pop($image);
|
|
|
180 |
}
|
|
|
181 |
return $image;
|
|
|
182 |
}
|
|
|
183 |
|
1382 |
aurelien |
184 |
private function getUrlImagesParIdsNoms($idsNoms, $limite = 801) {
|
1115 |
mathias |
185 |
$tpl = $this->obtenirSqueletteSelonApi('imagesResultatsDetermination');
|
1382 |
aurelien |
186 |
$params = array('idsNoms' => implode(',', $idsNoms), 'referentiel' => Registre::get('parametres.referentiel'), 'limite' => $limite);
|
130 |
jpm |
187 |
$url = $this->formaterUrl($tpl, $params);
|
|
|
188 |
return $url;
|
|
|
189 |
}
|
495 |
jpm |
190 |
|
1127 |
mathias |
191 |
public function getUrlPremiereImageParIdsNoms($idsNoms) {
|
1115 |
mathias |
192 |
$tpl = $this->obtenirSqueletteSelonApi('imagesPremiere');
|
947 |
aurelien |
193 |
$params = array('idsNoms' => implode(',', $idsNoms), 'referentiel' => Registre::get('parametres.referentiel'));
|
1115 |
mathias |
194 |
return $this->formaterUrl($tpl, $params);
|
414 |
delphine |
195 |
}
|
1115 |
mathias |
196 |
|
|
|
197 |
private function getUrlImages($nn = false) {
|
|
|
198 |
$tpl = $this->obtenirSqueletteSelonApi('images');
|
|
|
199 |
if ($this->getApi() == Eflore::API_EFLORE) {
|
|
|
200 |
$params = array('projet' => $this->getProjet(), 'limite' => $this->limite, 'depart' => $this->depart, 'referentiel' => Registre::get('parametres.referentiel'));
|
|
|
201 |
}
|
624 |
mathilde |
202 |
$url = $this->formaterUrl($tpl, $params);
|
|
|
203 |
return $url;
|
|
|
204 |
}
|
1115 |
mathias |
205 |
|
898 |
aurelien |
206 |
private function getUrlImagesTaxons($idsTaxons) {
|
1115 |
mathias |
207 |
$tpl = $this->obtenirSqueletteSelonApi('imagesTaxons');
|
947 |
aurelien |
208 |
$params = array('projet' => $this->getProjet(),'nntaxon'=> $idsTaxons, 'referentiel' => Registre::get('parametres.referentiel'));
|
624 |
mathilde |
209 |
$url = $this->formaterUrl($tpl, $params);
|
|
|
210 |
return $url;
|
|
|
211 |
}
|
1115 |
mathias |
212 |
|
|
|
213 |
private function getUrlImagesGalerieMobile($nn) {
|
|
|
214 |
$tpl = Config::get('delGalerieMobileTpl');
|
1321 |
mathias |
215 |
$params = array('nn' => $nn, 'referentiel' => Registre::get('parametres.referentiel'));
|
1115 |
mathias |
216 |
$url = $this->formaterUrl($tpl, $params);
|
|
|
217 |
return $url;
|
|
|
218 |
}
|
|
|
219 |
|
1123 |
mathias |
220 |
private function getUrlMeilleuresImagesParTag($nn, $tag, $protocole = Eflore::PROTOCOLE_CAPITALISATION, $limite = 10, $format = 'CRS') {
|
1116 |
mathias |
221 |
$tpl = Config::get('delMeilleuresImagesParTagTpl');
|
|
|
222 |
$params = array('nn'=> $nn,
|
|
|
223 |
'tag'=> $tag,
|
|
|
224 |
'protocole' => $protocole,
|
|
|
225 |
'referentiel' => Registre::get('parametres.referentiel'),
|
1123 |
mathias |
226 |
'limite' => $limite,
|
|
|
227 |
'format' => $format);
|
1116 |
mathias |
228 |
$url = $this->formaterUrl($tpl, $params);
|
|
|
229 |
return $url;
|
|
|
230 |
}
|
|
|
231 |
|
1115 |
mathias |
232 |
/**
|
|
|
233 |
* Transforme les résultats issus des Webservices autres que eflore/cel afin de conserver un format homogène
|
|
|
234 |
* @param mixed $images
|
|
|
235 |
*/
|
|
|
236 |
private function formaterResultatImages($images, $seulementUne = false) {
|
|
|
237 |
switch ($this->getApi()) {
|
|
|
238 |
case Eflore::API_DEL:
|
|
|
239 |
return $this->formaterResultatImagesDel($images, $seulementUne);
|
|
|
240 |
break;
|
|
|
241 |
default:
|
|
|
242 |
return $images;
|
|
|
243 |
}
|
|
|
244 |
}
|
|
|
245 |
|
|
|
246 |
private function formaterResultatImagesDel($images, $seulementUne = false) {
|
|
|
247 |
if ($seulementUne) {
|
|
|
248 |
return $this->formaterUnResultatImagesDel($images);
|
|
|
249 |
} else {
|
|
|
250 |
$retour = array();
|
|
|
251 |
foreach ($images as $idObsImage => $image) {
|
|
|
252 |
$retour[$image['id_image']] = array_merge($images[$idObsImage], $this->formaterUnResultatImagesDel($image));
|
|
|
253 |
}
|
|
|
254 |
return $retour;
|
|
|
255 |
}
|
|
|
256 |
}
|
|
|
257 |
|
|
|
258 |
/**
|
|
|
259 |
* Convertit un array venant d'un Webservice del vers le format retourné par eflore/cel
|
|
|
260 |
* @param array $image
|
|
|
261 |
* @return array
|
|
|
262 |
*/
|
|
|
263 |
private function formaterUnResultatImagesDel(array $image) {
|
|
|
264 |
$libelleAuteur = $image['observation']['auteur.prenom'].' '.$image['observation']['auteur.nom'];
|
|
|
265 |
$codeReferentiel = substr($image['observation']['determination.referentiel'], 0, strpos($image['observation']['determination.referentiel'], ':'));
|
|
|
266 |
$localiteLibelle = array($image['observation']['zone_geo'],
|
|
|
267 |
$image['observation']['lieudit'],
|
|
|
268 |
$image['observation']['station'],
|
|
|
269 |
$image['observation']['milieu']);
|
|
|
270 |
$retourImage = array(
|
|
|
271 |
'date' => $image['observation']['date_observation'],
|
|
|
272 |
'mime' => 'image/jpeg',
|
|
|
273 |
'auteur.libelle' => $libelleAuteur,
|
|
|
274 |
'auteur.id' => $image['observation']['auteur.id'],
|
|
|
275 |
'binaire.href' => $image['binaire.href'],
|
|
|
276 |
'observation.id' => $image['observation']['id_observation'],
|
|
|
277 |
'determination.libelle' => $image['observation']['determination.ns'].'[Dét. : '.$libelleAuteur.']',
|
|
|
278 |
'determination.nom_sci' => $image['observation']['determination.ns'],
|
|
|
279 |
'determination.nom_sci.code' => $codeReferentiel.'.'.$image['observation']['determination.nn'],
|
|
|
280 |
'station.commune' => $image['observation']['zone_geo'],
|
|
|
281 |
'station.lieudit' => $image['observation']['lieudit'],
|
|
|
282 |
'station.station' => $image['observation']['station'],
|
|
|
283 |
'station.milieu' => $image['observation']['milieu'],
|
|
|
284 |
'station.libelle' => $this->formaterLocalite($localiteLibelle)
|
|
|
285 |
);
|
|
|
286 |
return $retourImage;
|
|
|
287 |
}
|
|
|
288 |
|
|
|
289 |
private function formaterLocalite($infosLocalite) {
|
|
|
290 |
$localiteFmt = array();
|
|
|
291 |
foreach ($infosLocalite as $localite) {
|
|
|
292 |
if($localite != '') {
|
|
|
293 |
$localiteFmt[] = $localite;
|
|
|
294 |
}
|
|
|
295 |
}
|
|
|
296 |
if (empty($localiteFmt)) {
|
|
|
297 |
$localiteFmt[0] = 'localité inconnue';
|
|
|
298 |
}
|
|
|
299 |
return implode(" > ", $localiteFmt);
|
|
|
300 |
}
|
130 |
jpm |
301 |
}
|
|
|
302 |
?>
|