1 |
<?php
|
1 |
<?php
|
2 |
// declare(encoding='UTF-8');
|
2 |
// declare(encoding='UTF-8');
|
3 |
/**
|
3 |
/**
|
4 |
* Classe implémentant l'API d'eFlore Images pour le projet CEL.
|
4 |
* Classe implémentant l'API d'eFlore Images pour le projet CEL.
|
5 |
*
|
5 |
*
|
6 |
* @see http://www.tela-botanica.org/wikini/eflore/wakka.php?wiki=EfloreApi01Images
|
6 |
* @see http://www.tela-botanica.org/wikini/eflore/wakka.php?wiki=EfloreApi01Images
|
7 |
*
|
7 |
*
|
8 |
* @package eFlore/services
|
8 |
* @package eFlore/services
|
9 |
* @author Jean-Pascal MILCENT <jpm@tela-botanica.org>
|
9 |
* @author Jean-Pascal MILCENT <jpm@tela-botanica.org>
|
10 |
* @author Aurélien PERONNET <aurelien@tela-botanica.org>
|
10 |
* @author Aurélien PERONNET <aurelien@tela-botanica.org>
|
11 |
* @license GPL v3 <http://www.gnu.org/licenses/gpl.txt>
|
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>
|
12 |
* @license CECILL v2 <http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt>
|
13 |
* @version 1.0
|
13 |
* @version 1.0
|
14 |
* @copyright 1999-2011 Tela Botanica (accueil@tela-botanica.org)
|
14 |
* @copyright 1999-2011 Tela Botanica (accueil@tela-botanica.org)
|
15 |
*/
|
15 |
*/
|
16 |
// TODO : Config et Outils sont des classes statiques qui doivent poser des pb pour les tests...
|
16 |
// TODO : Config et Outils sont des classes statiques qui doivent poser des pb pour les tests...
|
17 |
class Images {
|
17 |
class Images {
|
18 |
|
18 |
|
19 |
private $parametres = array();
|
19 |
private $parametres = array();
|
20 |
private $ressources = array();
|
20 |
private $ressources = array();
|
21 |
private $Bdd;
|
21 |
private $Bdd;
|
22 |
|
22 |
|
23 |
const CODE_REFTAX_DEFAUT = 'bdtfx';
|
23 |
const CODE_REFTAX_DEFAUT = 'bdtfx';
|
24 |
const TPL_URL_IMG = 'http://www.tela-botanica.org/appli:cel-img:%s.jpg';
|
24 |
const TPL_URL_IMG = 'http://www.tela-botanica.org/appli:cel-img:%s.jpg';
|
25 |
const TAILLE_IMG_DEFAUT = 'M';
|
25 |
const TAILLE_IMG_DEFAUT = 'M';
|
26 |
const MIME_JPEG = 'image/jpeg';
|
26 |
const MIME_JPEG = 'image/jpeg';
|
27 |
const MIME_JSON = 'application/json';
|
27 |
const MIME_JSON = 'application/json';
|
28 |
|
28 |
|
29 |
private $config = array();
|
29 |
private $config = array();
|
30 |
private $cheminImagesBase = '';
|
30 |
private $cheminImagesBase = '';
|
31 |
private $formats_supportes = array(self::MIME_JPEG, self::MIME_JSON);
|
31 |
private $formats_supportes = array(self::MIME_JPEG, self::MIME_JSON);
|
32 |
private $tris_supportes = array('date');
|
32 |
private $tris_supportes = array('date');
|
33 |
private $retour_champs = array('determination.nom_sci' => 'nom_sel', 'determination.nom_sci.code' => 'num_nom_sel',
|
33 |
private $retour_champs = array('determination.nom_sci' => 'nom_sel', 'determination.nom_sci.code' => 'num_nom_sel',
|
34 |
'station.lieudit' => 'lieudit', 'station', 'milieu');
|
34 |
'station.lieudit' => 'lieudit', 'station', 'milieu');
|
35 |
private $ref_tax_demande = array();
|
35 |
private $ref_tax_demande = array();
|
36 |
private $infosImages = array();
|
36 |
private $infosImages = array();
|
37 |
private $nbreImages = 0;
|
37 |
private $nbreImages = 0;
|
38 |
private $Utilisateurs = null;
|
38 |
private $Utilisateurs = null;
|
39 |
private $UrlNavigation = null;
|
39 |
private $UrlNavigation = null;
|
40 |
|
40 |
|
41 |
public function __construct(Bdd $bdd = null, Array $config = null, Utilisateurs $utilisateurs = null, Url $url = null) {
|
41 |
public function __construct(Bdd $bdd = null, Array $config = null, Utilisateurs $utilisateurs = null, Url $url = null) {
|
42 |
$this->config = is_null($config) ? Config::get('Images') : $config;
|
42 |
$this->config = is_null($config) ? Config::get('Images') : $config;
|
43 |
$this->Bdd = is_null($bdd) ? new Bdd() : $bdd;
|
43 |
$this->Bdd = is_null($bdd) ? new Bdd() : $bdd;
|
44 |
$this->Utilisateurs = is_null($utilisateurs) ? new Utilisateurs() : $utilisateurs;
|
44 |
$this->Utilisateurs = is_null($utilisateurs) ? new Utilisateurs() : $utilisateurs;
|
45 |
$this->UrlNavigation = is_null($url) ? new Url($this->config['urlService']) : $url;
|
45 |
$this->UrlNavigation = is_null($url) ? new Url($this->config['urlService']) : $url;
|
46 |
$this->cheminImagesBase = $this->config['chemin'];
|
46 |
$this->cheminImagesBase = $this->config['chemin'];
|
47 |
}
|
47 |
}
|
48 |
|
48 |
|
49 |
public function consulter($ressources, $parametres) {
|
49 |
public function consulter($ressources, $parametres) {
|
50 |
//$tpsDebut = microtime(true);
|
50 |
//$tpsDebut = microtime(true);
|
51 |
$this->parametres = $parametres;
|
51 |
$this->parametres = $parametres;
|
52 |
$this->ressources = $ressources;
|
52 |
$this->ressources = $ressources;
|
53 |
|
53 |
|
54 |
$this->definirValeurParDefautDesParametres();
|
54 |
$this->definirValeurParDefautDesParametres();
|
55 |
$this->verifierParametres();
|
55 |
$this->verifierParametres();
|
56 |
|
56 |
|
57 |
$resultat = new ResultatService();
|
57 |
$resultat = new ResultatService();
|
58 |
if ($this->parametres['retour'] == self::MIME_JPEG) {
|
58 |
if ($this->parametres['retour'] == self::MIME_JPEG) {
|
59 |
if ($this->parametres['retour.tri'] == 'date') { // recherche la plus vieille image du CEL
|
59 |
if ($this->parametres['retour.tri'] == 'date') { // recherche la plus vieille image du CEL
|
60 |
$id_image_a_renvoyer = $this->obtenirIdPremiereImage();
|
60 |
$id_image_a_renvoyer = $this->obtenirIdPremiereImage();
|
61 |
} else {
|
61 |
} else {
|
62 |
$id_image_a_renvoyer = $this->obtenirIdImageAuHasard();
|
62 |
$id_image_a_renvoyer = $this->obtenirIdImageAuHasard();
|
63 |
}
|
63 |
}
|
64 |
$resultat->corps = $this->recupererImageBinaire($id_image_a_renvoyer);
|
64 |
$resultat->corps = $this->recupererImageBinaire($id_image_a_renvoyer);
|
65 |
} else if ($this->parametres['retour'] == self::MIME_JSON) {
|
65 |
} else if ($this->parametres['retour'] == self::MIME_JSON) {
|
66 |
if (isset($this->ressources[0])) {
|
66 |
if (isset($this->ressources[0])) {
|
67 |
$this->chargerInfosImage();
|
67 |
$this->chargerInfosImage();
|
68 |
$this->extraireIdentitesAuteurs();
|
68 |
$this->extraireIdentitesAuteurs();
|
69 |
$resultat->corps = $this->formaterInfosImage($this->infosImages[0]);
|
69 |
$resultat->corps = $this->formaterInfosImage($this->infosImages[0]);
|
70 |
} else {
|
70 |
} else {
|
71 |
$this->chargerListeImages();
|
71 |
$this->chargerListeImages();
|
72 |
$this->chargerNbreImagesTotal();
|
72 |
$this->chargerNbreImagesTotal();
|
73 |
$resultat->corps = $this->formaterListeImages();
|
73 |
$resultat->corps = $this->formaterListeImages();
|
74 |
}
|
74 |
}
|
75 |
}
|
75 |
}
|
76 |
$resultat->mime = $this->parametres['retour'];
|
76 |
$resultat->mime = $this->parametres['retour'];
|
77 |
|
77 |
|
78 |
return $resultat;
|
78 |
return $resultat;
|
79 |
}
|
79 |
}
|
80 |
//+---------------------------FONCTION D'ANALYSE DES PARAMETRES---------------------------------------------------------+
|
80 |
//+---------------------------FONCTION D'ANALYSE DES PARAMETRES---------------------------------------------------------+
|
81 |
private function definirValeurParDefautDesParametres() {
|
81 |
private function definirValeurParDefautDesParametres() {
|
82 |
if (isset($this->parametres['retour']) == false) {
|
82 |
if (isset($this->parametres['retour']) == false) {
|
83 |
$this->parametres['retour'] = self::MIME_JSON;
|
83 |
$this->parametres['retour'] = self::MIME_JSON;
|
84 |
}
|
84 |
}
|
85 |
if (isset($this->parametres['retour.format']) == false) {
|
85 |
if (isset($this->parametres['retour.format']) == false) {
|
86 |
$this->parametres['retour.format'] = 'M';
|
86 |
$this->parametres['retour.format'] = 'M';
|
87 |
}
|
87 |
}
|
88 |
if (isset($this->parametres['navigation.depart']) == false) {
|
88 |
if (isset($this->parametres['navigation.depart']) == false) {
|
89 |
$this->parametres['navigation.depart'] = 0;
|
89 |
$this->parametres['navigation.depart'] = 0;
|
90 |
}
|
90 |
}
|
91 |
if (isset($this->parametres['navigation.limite']) == false) {
|
91 |
if (isset($this->parametres['navigation.limite']) == false) {
|
92 |
$this->parametres['navigation.limite'] = 100;
|
92 |
$this->parametres['navigation.limite'] = 100;
|
93 |
}
|
93 |
}
|
94 |
}
|
94 |
}
|
95 |
|
95 |
|
96 |
private function verifierParametres() {
|
96 |
private function verifierParametres() {
|
97 |
$erreurs = array();
|
97 |
$erreurs = array();
|
98 |
|
98 |
|
99 |
if (!isset($this->ressources[0])) {
|
99 |
if (!isset($this->ressources[0])) {
|
100 |
if (isset($this->parametres['masque.nn']) == false) {
|
100 |
if (isset($this->parametres['masque.nn']) == false) {
|
101 |
$erreurs[] = "Le paramètre masque.nn est obligatoire.";
|
101 |
$erreurs[] = "Le paramètre masque.nn est obligatoire.";
|
102 |
} else {
|
102 |
} else {
|
103 |
$this->analyserMasqueNn();
|
103 |
$this->analyserMasqueNn();
|
104 |
if ($this->verifierMasqueNnAutorisePourRetourJPEG() == false) {
|
104 |
if ($this->verifierMasqueNnAutorisePourRetourJPEG() == false) {
|
105 |
$erreurs[] = "Le paramètre masque.nn peut contenir une seule valeur numérique pour l'instant pour le format de retour image/jpeg.";
|
105 |
$erreurs[] = "Le paramètre masque.nn peut contenir une seule valeur numérique pour l'instant pour le format de retour image/jpeg.";
|
106 |
} else if ($this->verifierValeurParametreMasqueNn() == false) {
|
106 |
} else if ($this->verifierValeurParametreMasqueNn() == false) {
|
107 |
$erreurs[] = "Le paramètre masque.nn est mal formé.";
|
107 |
$erreurs[] = "Le paramètre masque.nn est mal formé.";
|
108 |
}
|
108 |
}
|
109 |
}
|
109 |
}
|
110 |
}
|
110 |
}
|
111 |
if (isset($this->parametres['retour']) == false) {
|
111 |
if (isset($this->parametres['retour']) == false) {
|
112 |
$erreurs[] = "Le paramètre type de retour 'retour' est obligatoire.";
|
112 |
$erreurs[] = "Le paramètre type de retour 'retour' est obligatoire.";
|
113 |
}
|
113 |
}
|
114 |
if ($this->verifierValeurParametreRetour() == false) {
|
114 |
if ($this->verifierValeurParametreRetour() == false) {
|
115 |
$erreurs[] = "Le type de retour '{$this->parametres['retour']}' n'est pas supporté";
|
115 |
$erreurs[] = "Le type de retour '{$this->parametres['retour']}' n'est pas supporté";
|
116 |
}
|
116 |
}
|
117 |
if (isset($this->parametres['retour.format']) == false) {
|
117 |
if (isset($this->parametres['retour.format']) == false) {
|
118 |
$erreurs[] = "Le paramètre de format de retour 'retour.format' est obligatoire.";
|
118 |
$erreurs[] = "Le paramètre de format de retour 'retour.format' est obligatoire.";
|
119 |
}
|
119 |
}
|
120 |
if ($this->verifierValeurParametreFormat() == false) {
|
120 |
if ($this->verifierValeurParametreFormat() == false) {
|
121 |
$erreurs[] = "Le type de format '{$this->parametres['retour.format']}' n'est pas supporté";
|
121 |
$erreurs[] = "Le type de format '{$this->parametres['retour.format']}' n'est pas supporté";
|
122 |
}
|
122 |
}
|
123 |
if (isset($this->parametres['retour.tri'])){
|
123 |
if (isset($this->parametres['retour.tri'])){
|
124 |
if ($this->verifierValeurParametreTri() == false) {
|
124 |
if ($this->verifierValeurParametreTri() == false) {
|
125 |
$erreurs[] = "Le type de tri '{$this->parametres['retour.tri']}' n'est pas supporté";
|
125 |
$erreurs[] = "Le type de tri '{$this->parametres['retour.tri']}' n'est pas supporté";
|
126 |
}
|
126 |
}
|
127 |
}
|
127 |
}
|
128 |
|
128 |
|
129 |
if (isset($this->parametres['retour.champs'])){
|
129 |
if (isset($this->parametres['retour.champs'])){
|
130 |
if ($this->verifierValeurParametreRetourChamps() == false) {
|
130 |
if ($this->verifierValeurParametreRetourChamps() == false) {
|
131 |
$erreurs[] = "Le champs '{$this->parametres['retour.champs']}' n'existe pas";
|
131 |
$erreurs[] = "Le champs '{$this->parametres['retour.champs']}' n'existe pas";
|
132 |
}
|
132 |
}
|
133 |
}
|
133 |
}
|
134 |
|
134 |
|
135 |
if ($this->verifierValeurParametreNavigationDepart() == false) {
|
135 |
if ($this->verifierValeurParametreNavigationDepart() == false) {
|
136 |
$erreurs[] = "Le paramètre 'navigation.depart' doit possèder un valeur numérique.";
|
136 |
$erreurs[] = "Le paramètre 'navigation.depart' doit possèder un valeur numérique.";
|
137 |
}
|
137 |
}
|
138 |
if ($this->verifierValeurParametreNavigationLimite() == false) {
|
138 |
if ($this->verifierValeurParametreNavigationLimite() == false) {
|
139 |
$erreurs[] = "Le paramètre 'navigation.limite' doit possèder un valeur numérique supérieure à 0.";
|
139 |
$erreurs[] = "Le paramètre 'navigation.limite' doit possèder un valeur numérique supérieure à 0.";
|
140 |
}
|
140 |
}
|
141 |
|
141 |
|
142 |
if (count($erreurs) > 0) {
|
142 |
if (count($erreurs) > 0) {
|
143 |
$message = implode('<br />', $erreurs);
|
143 |
$message = implode('<br />', $erreurs);
|
144 |
$code = RestServeur::HTTP_CODE_MAUVAISE_REQUETE;
|
144 |
$code = RestServeur::HTTP_CODE_MAUVAISE_REQUETE;
|
145 |
throw new Exception($message, $code);
|
145 |
throw new Exception($message, $code);
|
146 |
}
|
146 |
}
|
147 |
}
|
147 |
}
|
148 |
|
148 |
|
149 |
private function verifierMasqueNnAutorisePourRetourJPEG() {
|
149 |
private function verifierMasqueNnAutorisePourRetourJPEG() {
|
150 |
$ok = true;
|
150 |
$ok = true;
|
151 |
$masque = $this->parametres['masque.nn'];
|
151 |
$masque = $this->parametres['masque.nn'];
|
152 |
$retour = $this->parametres['retour'];
|
152 |
$retour = $this->parametres['retour'];
|
153 |
|
153 |
|
154 |
if ($retour == self::MIME_JPEG) {
|
154 |
if ($retour == self::MIME_JPEG) {
|
155 |
$ok = is_numeric($masque) ? true : false;
|
155 |
$ok = is_numeric($masque) ? true : false;
|
156 |
}
|
156 |
}
|
157 |
return $ok;
|
157 |
return $ok;
|
158 |
}
|
158 |
}
|
159 |
|
159 |
|
160 |
private function verifierValeurParametreMasqueNn() {
|
160 |
private function verifierValeurParametreMasqueNn() {
|
161 |
$nn = $this->parametres['masque.nn'];
|
161 |
$nn = $this->parametres['masque.nn'];
|
162 |
$projetPattern = '(?:(?:[A-Z0-9]+:)?(?:[0-9]+,)*[0-9]+)';
|
162 |
$projetPattern = '(?:(?:[A-Z0-9]+:)?(?:[0-9]+,)*[0-9]+)';
|
163 |
$patternComplet = "/^$projetPattern(?:;$projetPattern)*$/i";
|
163 |
$patternComplet = "/^$projetPattern(?:;$projetPattern)*$/i";
|
164 |
$ok = preg_match($patternComplet, $nn) ? true : false;
|
164 |
$ok = preg_match($patternComplet, $nn) ? true : false;
|
165 |
return $ok;
|
165 |
return $ok;
|
166 |
}
|
166 |
}
|
167 |
|
167 |
|
168 |
private function verifierValeurParametreRetour() {
|
168 |
private function verifierValeurParametreRetour() {
|
169 |
return in_array($this->parametres['retour'], $this->formats_supportes);
|
169 |
return in_array($this->parametres['retour'], $this->formats_supportes);
|
170 |
}
|
170 |
}
|
171 |
|
171 |
|
172 |
private function verifierValeurParametreFormat() {
|
172 |
private function verifierValeurParametreFormat() {
|
173 |
$formats = Outils::recupererTableauConfig('Images.formats');
|
173 |
$formats = Outils::recupererTableauConfig('Images.formats');
|
174 |
$ok = array_key_exists($this->parametres['retour.format'], $formats);
|
174 |
$ok = array_key_exists($this->parametres['retour.format'], $formats);
|
175 |
return $ok;
|
175 |
return $ok;
|
176 |
}
|
176 |
}
|
177 |
|
177 |
|
178 |
private function verifierValeurParametreTri() {
|
178 |
private function verifierValeurParametreTri() {
|
179 |
return in_array($this->parametres['retour.tri'], $this->tris_supportes);
|
179 |
return in_array($this->parametres['retour.tri'], $this->tris_supportes);
|
180 |
}
|
180 |
}
|
181 |
|
181 |
|
182 |
private function verifierValeurParametreRetourChamps() {
|
182 |
private function verifierValeurParametreRetourChamps() {
|
183 |
$ok = false;
|
183 |
$ok = false;
|
184 |
$liste_champs = preg_split(',', $this->parametres['retour.champs']);
|
184 |
$liste_champs = preg_split(',', $this->parametres['retour.champs']);
|
185 |
foreach ($liste_champs as $champs) {
|
185 |
foreach ($liste_champs as $champs) {
|
186 |
$ok[$champs] = array_key_exists($champs, $this->retour_champs);
|
186 |
$ok[$champs] = array_key_exists($champs, $this->retour_champs);
|
187 |
}
|
187 |
}
|
188 |
return $ok;
|
188 |
return $ok;
|
189 |
}
|
189 |
}
|
190 |
|
190 |
|
191 |
private function verifierValeurParametreNavigationDepart() {
|
191 |
private function verifierValeurParametreNavigationDepart() {
|
192 |
$depart = $this->parametres['navigation.depart'];
|
192 |
$depart = $this->parametres['navigation.depart'];
|
193 |
$ok = is_numeric($depart) ? true : false;
|
193 |
$ok = is_numeric($depart) ? true : false;
|
194 |
return $ok;
|
194 |
return $ok;
|
195 |
}
|
195 |
}
|
196 |
|
196 |
|
197 |
private function verifierValeurParametreNavigationLimite() {
|
197 |
private function verifierValeurParametreNavigationLimite() {
|
198 |
$limite = $this->parametres['navigation.limite'];
|
198 |
$limite = $this->parametres['navigation.limite'];
|
199 |
$ok = (is_numeric($limite) && $limite != 0) ? true : false;
|
199 |
$ok = (is_numeric($limite) && $limite != 0) ? true : false;
|
200 |
return $ok;
|
200 |
return $ok;
|
201 |
}
|
201 |
}
|
202 |
|
202 |
|
203 |
private function analyserMasqueNn() {
|
203 |
private function analyserMasqueNn() {
|
204 |
$nn = $this->parametres['masque.nn'];
|
204 |
$nn = $this->parametres['masque.nn'];
|
205 |
if (preg_match('/^[0-9]+$/', $nn)) {
|
205 |
if (preg_match('/^[0-9]+$/', $nn)) {
|
206 |
$this->ref_tax_demande[self::CODE_REFTAX_DEFAUT][] = $nn;
|
206 |
$this->ref_tax_demande[self::CODE_REFTAX_DEFAUT][] = $nn;
|
207 |
} else {
|
207 |
} else {
|
208 |
// ceci contient potentiellement des formes ref_tax1:nn1,nn2;ref_tax2:nn3,nn4
|
208 |
// ceci contient potentiellement des formes ref_tax1:nn1,nn2;ref_tax2:nn3,nn4
|
209 |
$projetsListeEtNumNoms = explode(';', $nn);
|
209 |
$projetsListeEtNumNoms = explode(';', $nn);
|
210 |
if (count($projetsListeEtNumNoms) > 0) {
|
210 |
if (count($projetsListeEtNumNoms) > 0) {
|
211 |
foreach ($projetsListeEtNumNoms as $projetEtNumNoms) {
|
211 |
foreach ($projetsListeEtNumNoms as $projetEtNumNoms) {
|
212 |
$projetEtNumNoms = (strpos($projetEtNumNoms, ':')) ? $projetEtNumNoms : self::CODE_REFTAX_DEFAUT.':'.$projetEtNumNoms;
|
212 |
$projetEtNumNoms = (strpos($projetEtNumNoms, ':')) ? $projetEtNumNoms : self::CODE_REFTAX_DEFAUT.':'.$projetEtNumNoms;
|
213 |
list($projet, $numNoms) = explode(':', $projetEtNumNoms);
|
213 |
list($projet, $numNoms) = explode(':', $projetEtNumNoms);
|
214 |
$this->ref_tax_demande[$projet] = explode(',', $numNoms);
|
214 |
$this->ref_tax_demande[$projet] = explode(',', $numNoms);
|
215 |
}
|
215 |
}
|
216 |
}
|
216 |
}
|
217 |
}
|
217 |
}
|
218 |
}
|
218 |
}
|
219 |
|
219 |
|
220 |
|
220 |
|
221 |
//+---------------------------------------- REQUETES ---------------------------------------------------------------+
|
221 |
//+---------------------------------------- REQUETES ---------------------------------------------------------------+
|
222 |
private function obtenirIdImageAuHasard() {
|
222 |
private function obtenirIdImageAuHasard() {
|
223 |
$refTax = self::CODE_REFTAX_DEFAUT;
|
223 |
$refTax = self::CODE_REFTAX_DEFAUT;
|
224 |
$numNom = $this->Bdd->proteger($this->ref_tax_demande[$refTax][0]);
|
224 |
$numNom = $this->Bdd->proteger($this->ref_tax_demande[$refTax][0]);
|
225 |
|
225 |
|
226 |
//TODO: modifier la requete lors du passage à la nouvelle base de données pour faire quelque chose
|
226 |
//TODO: modifier la requete lors du passage à la nouvelle base de données pour faire quelque chose
|
227 |
// du numéro nomenclatural + modifier les champs appelés pour le nouveau format
|
227 |
// du numéro nomenclatural + modifier les champs appelés pour le nouveau format
|
228 |
$requete = 'SELECT coi.coi_ce_image AS id_image '.
|
228 |
$requete = 'SELECT coi.coi_ce_image AS id_image '.
|
229 |
'FROM cel_obs_images AS coi '.
|
229 |
'FROM cel_obs_images AS coi '.
|
230 |
' LEFT JOIN cel_inventory AS ci '.
|
230 |
' LEFT JOIN cel_inventory AS ci '.
|
231 |
'ON (coi.coi_ce_observation = ci.ordre AND coi.coi_ce_utilisateur = ci.identifiant) '.
|
231 |
'ON (coi.coi_ce_observation = ci.ordre AND coi.coi_ce_utilisateur = ci.identifiant) '.
|
232 |
'WHERE ci.transmission = 1 '.
|
232 |
'WHERE ci.transmission = 1 '.
|
233 |
" AND ci.num_nom_ret IN ($numNom)";
|
233 |
" AND ci.num_nom_ret IN ($numNom)";
|
234 |
|
234 |
|
235 |
$resultat = $this->Bdd->recupererTous($requete);
|
235 |
$resultat = $this->Bdd->recupererTous($requete);
|
236 |
|
236 |
|
237 |
if (!is_array($resultat) || count($resultat) <= 0) {
|
237 |
if (!is_array($resultat) || count($resultat) <= 0) {
|
238 |
$message = "Aucune image ne correspond au numéro numenclatural $refTax:$numNom";
|
238 |
$message = "Aucune image ne correspond au numéro numenclatural $refTax:$numNom";
|
239 |
$code = RestServeur::HTTP_CODE_RESSOURCE_INTROUVABLE;
|
239 |
$code = RestServeur::HTTP_CODE_RESSOURCE_INTROUVABLE;
|
240 |
throw new Exception($message, $code);
|
240 |
throw new Exception($message, $code);
|
241 |
}
|
241 |
}
|
242 |
|
242 |
|
243 |
$id_image_hasard = $resultat[array_rand($resultat)]['id_image'];
|
243 |
$id_image_hasard = $resultat[array_rand($resultat)]['id_image'];
|
244 |
return $id_image_hasard;
|
244 |
return $id_image_hasard;
|
245 |
}
|
245 |
}
|
246 |
|
246 |
|
247 |
private function obtenirIdPremiereImage() {
|
247 |
private function obtenirIdPremiereImage() {
|
248 |
$refTax = self::CODE_REFTAX_DEFAUT;
|
248 |
$refTax = self::CODE_REFTAX_DEFAUT;
|
249 |
$numNom = $this->Bdd->proteger($this->ref_tax_demande[$refTax][0]);
|
249 |
$numNom = $this->Bdd->proteger($this->ref_tax_demande[$refTax][0]);
|
250 |
$requete = 'SELECT ci.ci_id_image AS id_image '.
|
250 |
$requete = 'SELECT ci.ci_id_image AS id_image '.
|
251 |
'FROM cel_images AS ci'.
|
251 |
'FROM cel_images AS ci'.
|
252 |
' LEFT JOIN cel_obs_images AS coi '.
|
252 |
' LEFT JOIN cel_obs_images AS coi '.
|
253 |
' ON (coi.coi_ce_image = ci.ci_id_image) '.
|
253 |
' ON (coi.coi_ce_image = ci.ci_id_image) '.
|
254 |
' LEFT JOIN cel_inventory AS co '.
|
254 |
' LEFT JOIN cel_inventory AS co '.
|
255 |
' ON (coi.coi_ce_observation = co.ordre AND coi.coi_ce_utilisateur = co.identifiant) '.
|
255 |
' ON (coi.coi_ce_observation = co.ordre AND coi.coi_ce_utilisateur = co.identifiant) '.
|
256 |
'WHERE co.transmission = 1 '.
|
256 |
'WHERE co.transmission = 1 '.
|
257 |
" AND co.num_nom_ret IN ($numNom) ".
|
257 |
" AND co.num_nom_ret IN ($numNom) ".
|
258 |
' AND ci.ci_meta_date != "0000-00-00" ORDER BY ci.ci_meta_date ASC';
|
258 |
' AND ci.ci_meta_date != "0000-00-00" ORDER BY ci.ci_meta_date ASC';
|
259 |
|
259 |
|
260 |
$resultat = $this->Bdd->recupererTous($requete);
|
260 |
$resultat = $this->Bdd->recupererTous($requete);
|
261 |
|
261 |
|
262 |
if (!is_array($resultat) || count($resultat) <= 0) {
|
262 |
if (!is_array($resultat) || count($resultat) <= 0) {
|
263 |
$message = "Aucune image ne correspond au numéro numenclatural $refTax:$numNom";
|
263 |
$message = "Aucune image ne correspond au numéro numenclatural $refTax:$numNom";
|
264 |
$code = RestServeur::HTTP_CODE_RESSOURCE_INTROUVABLE;
|
264 |
$code = RestServeur::HTTP_CODE_RESSOURCE_INTROUVABLE;
|
265 |
throw new Exception($message, $code);
|
265 |
throw new Exception($message, $code);
|
266 |
}
|
266 |
}
|
267 |
|
267 |
|
268 |
$id_image_hasard = $resultat[0]['id_image'];
|
268 |
$id_image_hasard = $resultat[0]['id_image'];
|
269 |
return $id_image_hasard;
|
269 |
return $id_image_hasard;
|
270 |
}
|
270 |
}
|
271 |
|
271 |
|
272 |
private function chargerInfosImage() {
|
272 |
private function chargerInfosImage() {
|
273 |
$requete = 'SELECT SQL_CALC_FOUND_ROWS '.
|
273 |
$requete = 'SELECT SQL_CALC_FOUND_ROWS '.
|
274 |
' ci.ci_id_image AS id_img, co.id AS id_obs, '.
|
274 |
' ci.ci_id_image AS id_img, ci.ci_meta_date AS date, '.
|
- |
|
275 |
' co.id AS id_obs, '.
|
275 |
' identifiant AS utilisateur_courriel, '.
|
276 |
' identifiant AS utilisateur_courriel, '.
|
276 |
' nom_sel, num_nom_sel, '.
|
277 |
' nom_sel, num_nom_sel, '.
|
277 |
' location, id_location, lieudit, station, milieu, '.
|
278 |
' location, id_location, lieudit, station, milieu '.
|
278 |
' ci.ci_meta_date AS date '.
|
- |
|
279 |
'FROM cel_images AS ci'.
|
279 |
'FROM cel_images AS ci'.
|
280 |
' LEFT JOIN cel_obs_images AS coi '.
|
280 |
' LEFT JOIN cel_obs_images AS coi '.
|
281 |
' ON (coi.coi_ce_image = ci.ci_id_image) '.
|
281 |
' ON (coi.coi_ce_image = ci.ci_id_image) '.
|
282 |
' LEFT JOIN cel_inventory AS co '.
|
282 |
' LEFT JOIN cel_inventory AS co '.
|
283 |
' ON (coi.coi_ce_observation = co.ordre AND coi.coi_ce_utilisateur = co.identifiant) '.
|
283 |
' ON (coi.coi_ce_observation = co.ordre AND coi.coi_ce_utilisateur = co.identifiant) '.
|
284 |
'WHERE ci.ci_id_image = '.$this->ressources[0];
|
284 |
'WHERE ci.ci_id_image = '.$this->ressources[0];
|
285 |
|
285 |
|
286 |
$this->infosImages = $this->Bdd->recupererTous($requete);
|
286 |
$this->infosImages = $this->Bdd->recupererTous($requete);
|
287 |
}
|
287 |
}
|
288 |
|
288 |
|
289 |
private function chargerListeImages() {
|
289 |
private function chargerListeImages() {
|
290 |
$refTax = self::CODE_REFTAX_DEFAUT;
|
290 |
$refTax = self::CODE_REFTAX_DEFAUT;
|
291 |
$numNomListe = implode(',', $this->ref_tax_demande[$refTax]);
|
291 |
$numNomListe = implode(',', $this->ref_tax_demande[$refTax]);
|
292 |
$depart = $this->parametres['navigation.depart'];
|
292 |
$depart = $this->parametres['navigation.depart'];
|
293 |
$limite = $this->parametres['navigation.limite'];
|
293 |
$limite = $this->parametres['navigation.limite'];
|
294 |
|
294 |
|
295 |
//TODO: modifier la requete lors du passage à la nouvelle base de données pour faire quelque chose
|
295 |
//TODO: modifier la requete lors du passage à la nouvelle base de données pour faire quelque chose
|
296 |
// du numéro nomenclatural + modifier les champs appelés pour le nouveau format
|
296 |
// du numéro nomenclatural + modifier les champs appelés pour le nouveau format
|
297 |
$requete = 'SELECT SQL_CALC_FOUND_ROWS '.
|
297 |
$requete = 'SELECT SQL_CALC_FOUND_ROWS '.
|
298 |
' co.id AS id_obs, co.identifiant AS utilisateur_courriel, co.location, co.id_location, '.
|
298 |
' co.id AS id_obs, co.identifiant AS utilisateur_courriel, co.location, co.id_location, '.
|
299 |
' co.nom_sel, co.num_nom_sel, '.
|
299 |
' co.nom_sel, co.num_nom_sel, '.
|
300 |
' ci.ci_id_image AS id_img, ci.ci_meta_date AS date '.
|
300 |
' ci.ci_id_image AS id_img, ci.ci_meta_date AS date '.
|
301 |
(isset($this->parametres['retour.champs']) ? ', '.$this->parametres['retour.champs'] : '').
|
301 |
(isset($this->parametres['retour.champs']) ? ', '.$this->parametres['retour.champs'] : '').
|
302 |
'FROM cel_images AS ci'.
|
302 |
'FROM cel_images AS ci'.
|
303 |
' LEFT JOIN cel_obs_images AS coi '.
|
303 |
' LEFT JOIN cel_obs_images AS coi '.
|
304 |
' ON (coi.coi_ce_image = ci.ci_id_image) '.
|
304 |
' ON (coi.coi_ce_image = ci.ci_id_image) '.
|
305 |
' LEFT JOIN cel_inventory AS co '.
|
305 |
' LEFT JOIN cel_inventory AS co '.
|
306 |
' ON (coi.coi_ce_observation = co.ordre AND coi.coi_ce_utilisateur = co.identifiant) '.
|
306 |
' ON (coi.coi_ce_observation = co.ordre AND coi.coi_ce_utilisateur = co.identifiant) '.
|
307 |
$this->formerRequeteConditions($numNomListe).' '.
|
307 |
$this->formerRequeteConditions($numNomListe).' '.
|
308 |
'GROUP BY id_img '.
|
308 |
'GROUP BY id_img '.
|
309 |
$this->formerRequeteTri().
|
309 |
$this->formerRequeteTri().
|
310 |
"LIMIT $depart,$limite ";
|
310 |
"LIMIT $depart,$limite ";
|
311 |
|
311 |
|
312 |
$this->infosImages = $this->Bdd->recupererTous($requete);
|
312 |
$this->infosImages = $this->Bdd->recupererTous($requete);
|
313 |
}
|
313 |
}
|
314 |
|
314 |
|
315 |
private function formerRequeteConditions($numNomListe) {
|
315 |
private function formerRequeteConditions($numNomListe) {
|
316 |
$where[] = " co.transmission = 1 AND co.num_nom_ret IN ($numNomListe) ";
|
316 |
$where[] = " co.transmission = 1 AND co.num_nom_ret IN ($numNomListe) ";
|
317 |
if (isset($this->parametres['retour.tri']) && $this->parametres['retour.tri'] == 'date') {
|
317 |
if (isset($this->parametres['retour.tri']) && $this->parametres['retour.tri'] == 'date') {
|
318 |
$where[] = ' ci.ci_meta_date != "0000-00-00"';
|
318 |
$where[] = ' ci.ci_meta_date != "0000-00-00"';
|
319 |
}
|
319 |
}
|
320 |
return ' WHERE '.implode(' AND ', $where);
|
320 |
return ' WHERE '.implode(' AND ', $where);
|
321 |
}
|
321 |
}
|
322 |
|
322 |
|
323 |
private function formerRequeteTri() {
|
323 |
private function formerRequeteTri() {
|
324 |
$order = '';
|
324 |
$order = '';
|
325 |
if (isset($this->parametres['retour.tri']) && $this->parametres['retour.tri'] == 'date') {
|
325 |
if (isset($this->parametres['retour.tri']) && $this->parametres['retour.tri'] == 'date') {
|
326 |
$order = ' ORDER BY ci.ci_meta_date ASC ';
|
326 |
$order = ' ORDER BY ci.ci_meta_date ASC ';
|
327 |
}
|
327 |
}
|
328 |
return $order;
|
328 |
return $order;
|
329 |
}
|
329 |
}
|
330 |
|
330 |
|
331 |
private function chargerNbreImagesTotal() {
|
331 |
private function chargerNbreImagesTotal() {
|
332 |
$requete = 'SELECT FOUND_ROWS() AS nbre ';
|
332 |
$requete = 'SELECT FOUND_ROWS() AS nbre ';
|
333 |
$resultats = $this->Bdd->recuperer($requete);
|
333 |
$resultats = $this->Bdd->recuperer($requete);
|
334 |
$this->nbreImages = (int) $resultats['nbre'];
|
334 |
$this->nbreImages = (int) $resultats['nbre'];
|
335 |
}
|
335 |
}
|
336 |
|
336 |
|
337 |
//+---------------------------------------CHEMIN ET CONVERSION--------------------------------------------------------+
|
337 |
//+---------------------------------------CHEMIN ET CONVERSION--------------------------------------------------------+
|
338 |
private function recupererImageBinaire($id_image) {
|
338 |
private function recupererImageBinaire($id_image) {
|
339 |
$image = '';
|
339 |
$image = '';
|
340 |
$chemin = $this->obtenirCheminImage($id_image);
|
340 |
$chemin = $this->obtenirCheminImage($id_image);
|
341 |
$image = file_get_contents($chemin);
|
341 |
$image = file_get_contents($chemin);
|
342 |
if ($image === false) {
|
342 |
if ($image === false) {
|
343 |
$message = "L'image demandée est introuvable sur le serveur : $chemin";
|
343 |
$message = "L'image demandée est introuvable sur le serveur : $chemin";
|
344 |
$code = RestServeur::HTTP_CODE_RESSOURCE_INTROUVABLE;
|
344 |
$code = RestServeur::HTTP_CODE_RESSOURCE_INTROUVABLE;
|
345 |
throw new Exception($message, $code);
|
345 |
throw new Exception($message, $code);
|
346 |
}
|
346 |
}
|
347 |
return $image;
|
347 |
return $image;
|
348 |
}
|
348 |
}
|
349 |
|
349 |
|
350 |
private function obtenirCheminImage($idImage) {
|
350 |
private function obtenirCheminImage($idImage) {
|
351 |
$nom = $this->convertirIdImageVersNomFichier($idImage);
|
351 |
$nom = $this->convertirIdImageVersNomFichier($idImage);
|
352 |
$dossier = $this->convertirIdImageVersChemin($idImage);
|
352 |
$dossier = $this->convertirIdImageVersChemin($idImage);
|
353 |
return $dossier.'/'.$nom;
|
353 |
return $dossier.'/'.$nom;
|
354 |
}
|
354 |
}
|
355 |
|
355 |
|
356 |
private function convertirIdImageVersNomFichier($idImage) {
|
356 |
private function convertirIdImageVersNomFichier($idImage) {
|
357 |
$codeImage = $this->construireCodeImage($idImage);
|
357 |
$codeImage = $this->construireCodeImage($idImage);
|
358 |
$nom_fichier = $codeImage.'.jpg';
|
358 |
$nom_fichier = $codeImage.'.jpg';
|
359 |
return $nom_fichier;
|
359 |
return $nom_fichier;
|
360 |
}
|
360 |
}
|
361 |
|
361 |
|
362 |
private function convertirIdImageVersChemin($idImage) {
|
362 |
private function convertirIdImageVersChemin($idImage) {
|
363 |
$codeImage = $this->construireCodeImage($idImage);
|
363 |
$codeImage = $this->construireCodeImage($idImage);
|
364 |
list($dossierNiveau1, $dossierNiveau2, $idFichier, $format) = explode('_', $codeImage);
|
364 |
list($dossierNiveau1, $dossierNiveau2, $idFichier, $format) = explode('_', $codeImage);
|
365 |
$chemin_sur_serveur = $this->cheminImagesBase.'/'.$dossierNiveau1.'/'.$dossierNiveau2.'/'.$format;
|
365 |
$chemin_sur_serveur = $this->cheminImagesBase.'/'.$dossierNiveau1.'/'.$dossierNiveau2.'/'.$format;
|
366 |
return $chemin_sur_serveur;
|
366 |
return $chemin_sur_serveur;
|
367 |
}
|
367 |
}
|
368 |
|
368 |
|
369 |
private function construireCodeImage($idImage) {
|
369 |
private function construireCodeImage($idImage) {
|
370 |
$codeImage = sprintf('%09s', $idImage);
|
370 |
$codeImage = sprintf('%09s', $idImage);
|
371 |
$codeImage = wordwrap($codeImage, 3, '_', true);
|
371 |
$codeImage = wordwrap($codeImage, 3, '_', true);
|
372 |
$format = $this->parametres['retour.format'];
|
372 |
$format = $this->parametres['retour.format'];
|
373 |
$codeImage .= '_'.$format;
|
373 |
$codeImage .= '_'.$format;
|
374 |
return $codeImage;
|
374 |
return $codeImage;
|
375 |
}
|
375 |
}
|
376 |
|
376 |
|
377 |
//+------------------------------------FORMATAGE LISTE----------------------------------------------------------------+
|
377 |
//+------------------------------------FORMATAGE LISTE----------------------------------------------------------------+
|
378 |
private function formaterListeImages() {
|
378 |
private function formaterListeImages() {
|
379 |
$entete = $this->construireEntete();
|
379 |
$entete = $this->construireEntete();
|
380 |
$resultats = $this->construireResultats();
|
380 |
$resultats = $this->construireResultats();
|
381 |
|
381 |
|
382 |
$resultat = array('entete' => $entete, 'resultats' => $resultats);
|
382 |
$resultat = array('entete' => $entete, 'resultats' => $resultats);
|
383 |
return $resultat;
|
383 |
return $resultat;
|
384 |
}
|
384 |
}
|
385 |
|
385 |
|
386 |
private function construireEntete() {
|
386 |
private function construireEntete() {
|
387 |
$entete = array('masque' => '', 'depart' => 0, 'limite' => 100, 'total' => 0);
|
387 |
$entete = array('masque' => '', 'depart' => 0, 'limite' => 100, 'total' => 0);
|
388 |
|
388 |
|
389 |
$entete['masque'] = $this->recupererMasque();
|
389 |
$entete['masque'] = $this->recupererMasque();
|
390 |
$entete['depart'] = (int) $this->parametres['navigation.depart'];
|
390 |
$entete['depart'] = (int) $this->parametres['navigation.depart'];
|
391 |
$entete['limite'] = (int) $this->parametres['navigation.limite'];
|
391 |
$entete['limite'] = (int) $this->parametres['navigation.limite'];
|
392 |
$entete['total'] = $this->nbreImages;
|
392 |
$entete['total'] = $this->nbreImages;
|
393 |
if ($hrefPrecedent = $this->recupererHrefPrecedent()) {
|
393 |
if ($hrefPrecedent = $this->recupererHrefPrecedent()) {
|
394 |
$entete['href.precedent'] = $hrefPrecedent;
|
394 |
$entete['href.precedent'] = $hrefPrecedent;
|
395 |
}
|
395 |
}
|
396 |
if ($hrefSuivant = $this->recupererHrefSuivant()) {
|
396 |
if ($hrefSuivant = $this->recupererHrefSuivant()) {
|
397 |
$entete['href.suivant'] = $hrefSuivant;
|
397 |
$entete['href.suivant'] = $hrefSuivant;
|
398 |
}
|
398 |
}
|
399 |
return $entete;
|
399 |
return $entete;
|
400 |
}
|
400 |
}
|
401 |
|
401 |
|
402 |
private function recupererMasque() {
|
402 |
private function recupererMasque() {
|
403 |
$masqueEntete = '';
|
403 |
$masqueEntete = '';
|
404 |
if ($masqueNn = $this->parametres['masque.nn']) {
|
404 |
if ($masqueNn = $this->parametres['masque.nn']) {
|
405 |
$masqueEntete = "nn=$masqueNn";
|
405 |
$masqueEntete = "nn=$masqueNn";
|
406 |
}
|
406 |
}
|
407 |
return $masqueEntete;
|
407 |
return $masqueEntete;
|
408 |
}
|
408 |
}
|
409 |
|
409 |
|
410 |
private function recupererHrefPrecedent() {
|
410 |
private function recupererHrefPrecedent() {
|
411 |
$departActuel = $this->parametres['navigation.depart'];
|
411 |
$departActuel = $this->parametres['navigation.depart'];
|
412 |
$limite = $this->parametres['navigation.limite'];
|
412 |
$limite = $this->parametres['navigation.limite'];
|
413 |
$departPrecedent = $departActuel - $limite;
|
413 |
$departPrecedent = $departActuel - $limite;
|
414 |
$url = null;
|
414 |
$url = null;
|
415 |
if ($departPrecedent >= 0) {
|
415 |
if ($departPrecedent >= 0) {
|
416 |
$url = $this->obtenirUrlNavigation($departPrecedent, $limite);
|
416 |
$url = $this->obtenirUrlNavigation($departPrecedent, $limite);
|
417 |
}
|
417 |
}
|
418 |
return $url;
|
418 |
return $url;
|
419 |
}
|
419 |
}
|
420 |
|
420 |
|
421 |
private function recupererHrefSuivant() {
|
421 |
private function recupererHrefSuivant() {
|
422 |
$departActuel = $this->parametres['navigation.depart'];
|
422 |
$departActuel = $this->parametres['navigation.depart'];
|
423 |
$limite = $this->parametres['navigation.limite'];
|
423 |
$limite = $this->parametres['navigation.limite'];
|
424 |
$departSuivant = $departActuel + $limite;
|
424 |
$departSuivant = $departActuel + $limite;
|
425 |
$url = null;
|
425 |
$url = null;
|
426 |
if ($departSuivant < $this->nbreImages) {
|
426 |
if ($departSuivant < $this->nbreImages) {
|
427 |
$url = $this->obtenirUrlNavigation($departSuivant, $limite);
|
427 |
$url = $this->obtenirUrlNavigation($departSuivant, $limite);
|
428 |
}
|
428 |
}
|
429 |
return $url;
|
429 |
return $url;
|
430 |
}
|
430 |
}
|
431 |
|
431 |
|
432 |
private function obtenirUrlNavigation($depart, $limite) {
|
432 |
private function obtenirUrlNavigation($depart, $limite) {
|
433 |
$parametres = array(
|
433 |
$parametres = array(
|
434 |
'navigation.depart' => $depart,
|
434 |
'navigation.depart' => $depart,
|
435 |
'navigation.limite' => $limite);
|
435 |
'navigation.limite' => $limite);
|
436 |
if (isset($this->parametres['masque.nn'])) {
|
436 |
if (isset($this->parametres['masque.nn'])) {
|
437 |
$parametres['masque.nn'] = $this->parametres['masque.nn'];
|
437 |
$parametres['masque.nn'] = $this->parametres['masque.nn'];
|
438 |
}
|
438 |
}
|
439 |
$this->UrlNavigation->setRequete($parametres);
|
439 |
$this->UrlNavigation->setRequete($parametres);
|
440 |
$url = $this->UrlNavigation->getURL();
|
440 |
$url = $this->UrlNavigation->getURL();
|
441 |
return $url;
|
441 |
return $url;
|
442 |
}
|
442 |
}
|
443 |
|
443 |
|
444 |
private function construireResultats() {
|
444 |
private function construireResultats() {
|
445 |
$resultats = array();
|
445 |
$resultats = array();
|
446 |
$this->extraireIdentitesAuteurs();
|
446 |
$this->extraireIdentitesAuteurs();
|
447 |
foreach ($this->infosImages as $img) {
|
447 |
foreach ($this->infosImages as $img) {
|
448 |
$info = $this->formaterInfosImage($img);
|
448 |
$info = $this->formaterInfosImage($img);
|
449 |
$id = $img['id_img'];
|
449 |
$id = $img['id_img'];
|
450 |
$info['href'] = $this->config['urlService'].'/'.$id;
|
450 |
$info['href'] = $this->config['urlService'].'/'.$id;
|
451 |
if (!isset($resultats[$id])) {
|
451 |
if (!isset($resultats[$id])) {
|
452 |
$resultats[$id] = $info;
|
452 |
$resultats[$id] = $info;
|
453 |
} else {
|
453 |
} else {
|
454 |
throw new Exception("Double : $id");
|
454 |
throw new Exception("Double : $id");
|
455 |
}
|
455 |
}
|
456 |
}
|
456 |
}
|
457 |
return $resultats;
|
457 |
return $resultats;
|
458 |
}
|
458 |
}
|
459 |
|
459 |
|
460 |
private function formaterInfosImage($img) {
|
460 |
private function formaterInfosImage($img) {
|
461 |
$info = array();
|
461 |
$info = array();
|
462 |
$info['date'] = $img['date'];
|
462 |
$info['date'] = $img['date'];
|
463 |
$info['mime'] = self::MIME_JPEG;
|
463 |
$info['mime'] = self::MIME_JPEG;
|
464 |
$info['auteur.libelle'] = $this->Utilisateurs->getIntitule($img['utilisateur_courriel']);
|
464 |
$info['auteur.libelle'] = $this->Utilisateurs->getIntitule($img['utilisateur_courriel']);
|
465 |
$info['auteur.id'] = $this->Utilisateurs->getId($img['utilisateur_courriel']);
|
465 |
$info['auteur.id'] = $this->Utilisateurs->getId($img['utilisateur_courriel']);
|
466 |
$info['binaire.href'] = $this->formaterUrlImage($img);
|
466 |
$info['binaire.href'] = $this->formaterUrlImage($img);
|
- |
|
467 |
$info['observation.id'] = $img['id_obs'];
|
467 |
if (isset($img['nom_sel'])) {
|
468 |
if (isset($img['nom_sel'])) {
|
468 |
$info['determination.libelle'] = $this->formaterDetermination($img);
|
469 |
$info['determination.libelle'] = $this->formaterDetermination($img);
|
469 |
$info['determination.nom_sci'] = $img['nom_sel'];
|
470 |
$info['determination.nom_sci'] = $img['nom_sel'];
|
470 |
$info['determination.nom_sci.code'] = $this->formaterNomSciCode($img);
|
471 |
$info['determination.nom_sci.code'] = $this->formaterNomSciCode($img);
|
471 |
}
|
472 |
}
|
472 |
$info = array_merge($info, $this->formaterStation($img));
|
473 |
$info = array_merge($info, $this->formaterStation($img));
|
473 |
return $info;
|
474 |
return $info;
|
474 |
}
|
475 |
}
|
475 |
|
476 |
|
476 |
private function extraireIdentitesAuteurs() {
|
477 |
private function extraireIdentitesAuteurs() {
|
477 |
$courriels = array();
|
478 |
$courriels = array();
|
478 |
foreach ($this->infosImages as $img) {
|
479 |
foreach ($this->infosImages as $img) {
|
479 |
$courriels[] = $img['utilisateur_courriel'];
|
480 |
$courriels[] = $img['utilisateur_courriel'];
|
480 |
}
|
481 |
}
|
481 |
$this->Utilisateurs->setCourriels($courriels);
|
482 |
$this->Utilisateurs->setCourriels($courriels);
|
482 |
$this->Utilisateurs->chargerIdentites();
|
483 |
$this->Utilisateurs->chargerIdentites();
|
483 |
}
|
484 |
}
|
484 |
|
485 |
|
485 |
private function formaterUrlImage($infos) {
|
486 |
private function formaterUrlImage($infos) {
|
486 |
$format = $this->parametres['retour.format'];
|
487 |
$format = $this->parametres['retour.format'];
|
487 |
$id = sprintf('%09s', $infos['id_img']).$format;
|
488 |
$id = sprintf('%09s', $infos['id_img']).$format;
|
488 |
$url = sprintf(self::TPL_URL_IMG, $id);
|
489 |
$url = sprintf(self::TPL_URL_IMG, $id);
|
489 |
return $url;
|
490 |
return $url;
|
490 |
}
|
491 |
}
|
491 |
|
492 |
|
492 |
private function formaterDetermination($infos) {
|
493 |
private function formaterDetermination($infos) {
|
493 |
$auteur = $this->Utilisateurs->getIntitule($infos['utilisateur_courriel']);
|
494 |
$auteur = $this->Utilisateurs->getIntitule($infos['utilisateur_courriel']);
|
494 |
return $infos['nom_sel']."[Dét. : $auteur]";
|
495 |
return $infos['nom_sel']."[Dét. : $auteur]";
|
495 |
}
|
496 |
}
|
496 |
|
497 |
|
497 |
private function formaterNomSciCode($infos) {
|
498 |
private function formaterNomSciCode($infos) {
|
498 |
return self::CODE_REFTAX_DEFAUT.'.'.$infos['num_nom_sel'];
|
499 |
return self::CODE_REFTAX_DEFAUT.'.'.$infos['num_nom_sel'];
|
499 |
}
|
500 |
}
|
500 |
|
501 |
|
501 |
private function formaterStation($infos) {
|
502 |
private function formaterStation($infos) {
|
502 |
$station = array();
|
503 |
$station = array();
|
503 |
if (isset($infos['location']) && $commune = $this->formaterCommune($infos)) {
|
504 |
if (isset($infos['location']) && $commune = $this->formaterCommune($infos)) {
|
504 |
$station['station.commune'] = $commune;
|
505 |
$station['station.commune'] = $commune;
|
505 |
}
|
506 |
}
|
506 |
if (isset($infos['lieudit']) && $this->avoirContenu($infos['lieudit'])) {
|
507 |
if (isset($infos['lieudit']) && $this->avoirContenu($infos['lieudit'])) {
|
507 |
$station['station.lieudit'] = $infos['lieudit'];
|
508 |
$station['station.lieudit'] = $infos['lieudit'];
|
508 |
}
|
509 |
}
|
509 |
if (isset($infos['station']) && $this->avoirContenu($infos['station'])) {
|
510 |
if (isset($infos['station']) && $this->avoirContenu($infos['station'])) {
|
510 |
$station['station.station'] = $infos['station'];
|
511 |
$station['station.station'] = $infos['station'];
|
511 |
}
|
512 |
}
|
512 |
|
513 |
|
513 |
if (isset($infos['milieu']) && $this->avoirContenu($infos['milieu'])) {
|
514 |
if (isset($infos['milieu']) && $this->avoirContenu($infos['milieu'])) {
|
514 |
$station['station.milieu'] = $infos['milieu'];
|
515 |
$station['station.milieu'] = $infos['milieu'];
|
515 |
}
|
516 |
}
|
516 |
if (count($station) > 1) {
|
517 |
if (count($station) > 1) {
|
517 |
$station['station.libelle'] = implode(' > ', $station);
|
518 |
$station['station.libelle'] = implode(' > ', $station);
|
518 |
}
|
519 |
}
|
519 |
return $station;
|
520 |
return $station;
|
520 |
}
|
521 |
}
|
521 |
|
522 |
|
522 |
private function formaterCommune($infos) {
|
523 |
private function formaterCommune($infos) {
|
523 |
$commune = array();
|
524 |
$commune = array();
|
524 |
if ($this->avoirContenu($infos['location'])) {
|
525 |
if ($this->avoirContenu($infos['location'])) {
|
525 |
$commune[] = $infos['location'];
|
526 |
$commune[] = $infos['location'];
|
526 |
}
|
527 |
}
|
527 |
if (isset($infos['id_location']) && $this->avoirContenu($infos['id_location'])) {
|
528 |
if (isset($infos['id_location']) && $this->avoirContenu($infos['id_location'])) {
|
528 |
$commune[] = '('.$infos['id_location'].')';
|
529 |
$commune[] = '('.$infos['id_location'].')';
|
529 |
}
|
530 |
}
|
530 |
return implode(' ', $commune);
|
531 |
return implode(' ', $commune);
|
531 |
}
|
532 |
}
|
532 |
|
533 |
|
533 |
private function avoirContenu($info) {
|
534 |
private function avoirContenu($info) {
|
534 |
$vide = true;
|
535 |
$vide = true;
|
535 |
if ($info == null || $info == '' || $info == '000null') {
|
536 |
if ($info == null || $info == '' || $info == '000null') {
|
536 |
$vide = false;
|
537 |
$vide = false;
|
537 |
}
|
538 |
}
|
538 |
return $vide;
|
539 |
return $vide;
|
539 |
}
|
540 |
}
|
540 |
}
|
541 |
}
|
541 |
?>
|
542 |
?>
|