1840 |
jpm |
1 |
<?php
|
|
|
2 |
// declare(encoding='UTF-8');
|
|
|
3 |
/**
|
|
|
4 |
* Classe contenant des méthodes permettant de construire les requêtes SQL complexe concernant les images et obs.
|
1881 |
jpm |
5 |
* Rempli un tableau des clauses "join", "where", "group by" et "oder by" nécessaire à la *recherche* des ids des
|
|
|
6 |
* observations/images correspondantes aux filtres passés dans l'url du web service de recherche
|
|
|
7 |
* (ListeImages et ListeObservations).
|
1840 |
jpm |
8 |
*
|
1881 |
jpm |
9 |
* Attention, cela signifie que toutes les tables ne sont pas *forcément* jointées, par exemple si aucune
|
|
|
10 |
* contrainte ne le nécessite.
|
|
|
11 |
* La requête construite ici est utile pour récupérer la liste des ids d'observations/images qui match.
|
|
|
12 |
* Pour la récupération effective de "toutes" les données nécessaire au retour du web service en json, c'est une autre
|
|
|
13 |
* requête directement dans le web service qui s'en charge. Cette technique en deux étapes est la plus rapide !
|
|
|
14 |
*
|
|
|
15 |
* Note: toujours rajouter les préfixes de table (di, do ou du), en fonction de ce que défini
|
|
|
16 |
* les JOIN qui sont utilisés :
|
|
|
17 |
* - le préfix de del_image est "di"
|
|
|
18 |
* - le préfix de del_observation est "do"
|
|
|
19 |
* - le préfix de del_utilisateur est "du"
|
|
|
20 |
*
|
1840 |
jpm |
21 |
* @category DEL
|
|
|
22 |
* @package Services
|
|
|
23 |
* @package Bibliotheque
|
|
|
24 |
* @version 0.1
|
|
|
25 |
* @author Mathias CHOUET <mathias@tela-botanica.org>
|
|
|
26 |
* @author Jean-Pascal MILCENT <jpm@tela-botanica.org>
|
|
|
27 |
* @author Aurelien PERONNET <aurelien@tela-botanica.org>
|
|
|
28 |
* @license GPL v3 <http://www.gnu.org/licenses/gpl.txt>
|
|
|
29 |
* @license CECILL v2 <http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt>
|
|
|
30 |
* @copyright 1999-2014 Tela Botanica <accueil@tela-botanica.org>
|
|
|
31 |
*/
|
|
|
32 |
class Sql {
|
|
|
33 |
|
1871 |
jpm |
34 |
const APPLI_IMG = 'IMG';
|
|
|
35 |
const APPLI_OBS = 'OBS';
|
|
|
36 |
|
1840 |
jpm |
37 |
private $conteneur;
|
|
|
38 |
private $bdd;
|
|
|
39 |
private $parametres = array();
|
1871 |
jpm |
40 |
private $appli;
|
1840 |
jpm |
41 |
private $requete = array(
|
|
|
42 |
'join' => array(),
|
|
|
43 |
'where' => array(),
|
|
|
44 |
'groupby' => array(),
|
|
|
45 |
'orderby' => array());
|
|
|
46 |
|
2003 |
mathias |
47 |
private $champsPrenom = array('prenom_utilisateur');
|
|
|
48 |
private $champsNom = array('nom_utilisateur');
|
1985 |
aurelien |
49 |
private $champsSousRequeteObs = array('masque.genre', 'masque.famille', 'masque.ns', 'masque.commune', 'masque.milieu', 'masque.pays');
|
1840 |
jpm |
50 |
|
|
|
51 |
public function __construct(Conteneur $conteneur) {
|
|
|
52 |
$this->conteneur = $conteneur;
|
|
|
53 |
$this->bdd = $this->conteneur->getBdd();
|
|
|
54 |
}
|
|
|
55 |
|
|
|
56 |
public function setParametres(Array $parametres) {
|
|
|
57 |
$this->parametres = $parametres;
|
|
|
58 |
}
|
|
|
59 |
|
1871 |
jpm |
60 |
public function setAppli($appliType) {
|
|
|
61 |
if ($appliType == 'IMG' || $appliType == 'OBS') {
|
|
|
62 |
$this->appli = $appliType;
|
|
|
63 |
} else {
|
|
|
64 |
throw new Exception("Les types d'appli disponible sont : IMG (pour PictoFlora) et OBS (pour IdentiPlante)");
|
|
|
65 |
}
|
|
|
66 |
}
|
|
|
67 |
|
|
|
68 |
private function getPrefixe() {
|
|
|
69 |
return $this->appli === 'IMG' ? 'di' : 'do';
|
|
|
70 |
}
|
|
|
71 |
|
|
|
72 |
private function etreAppliImg() {
|
|
|
73 |
return $this->appli === 'IMG' ? true : false;
|
|
|
74 |
}
|
|
|
75 |
|
|
|
76 |
private function etreAppliObs() {
|
|
|
77 |
return $this->appli === 'OBS' ? true : false;
|
|
|
78 |
}
|
|
|
79 |
|
1840 |
jpm |
80 |
public function getRequeteSql() {
|
|
|
81 |
return $this->requete;
|
|
|
82 |
}
|
|
|
83 |
|
|
|
84 |
private function addJoin($join) {
|
1871 |
jpm |
85 |
if (!isset($this->requete['join'][$join])) {
|
1922 |
jpm |
86 |
$this->requete['join'][$join] = $join;
|
1871 |
jpm |
87 |
}
|
1840 |
jpm |
88 |
}
|
|
|
89 |
|
|
|
90 |
public function getJoin() {
|
|
|
91 |
return ($this->requete['join'] ? implode(' ', array_unique($this->requete['join'])).' ' : '');
|
|
|
92 |
}
|
|
|
93 |
|
|
|
94 |
private function addJoinDis($join) {
|
|
|
95 |
$this->requete['join']['dis'] = $join;
|
|
|
96 |
}
|
|
|
97 |
|
|
|
98 |
private function addWhere($idParam, $where) {
|
|
|
99 |
if (isset($this->parametres['_parametres_condition_or_'])
|
|
|
100 |
&& in_array($idParam, $this->parametres['_parametres_condition_or_'])) {
|
1922 |
jpm |
101 |
if ($this->etreAppliImg() && in_array($idParam, $this->champsSousRequeteObs)) {
|
|
|
102 |
$this->requete['where']['OR_SOUS_REQUETE'][] = $where;
|
|
|
103 |
} else {
|
|
|
104 |
$this->requete['where']['OR'][] = $where;
|
|
|
105 |
}
|
1840 |
jpm |
106 |
} else {
|
|
|
107 |
$this->requete['where']['AND'][] = $where;
|
|
|
108 |
}
|
|
|
109 |
}
|
1922 |
jpm |
110 |
|
1840 |
jpm |
111 |
public function getWhere() {
|
1922 |
jpm |
112 |
// Sous-requete spéciale pour éviter de rechercher dans la table obs jointe à img depuis Pictoflora...
|
|
|
113 |
if (isset($this->requete['where']['OR_SOUS_REQUETE']) && count($this->requete['where']['OR_SOUS_REQUETE']) > 0) {
|
|
|
114 |
$clauseWhereSousRequete = implode(' OR ', $this->requete['where']['OR_SOUS_REQUETE']);
|
|
|
115 |
$sousRequete = 'di.ce_observation IN '.
|
1981 |
aurelien |
116 |
"(SELECT id_observation FROM del_observation AS do WHERE $clauseWhereSousRequete ) ";
|
1922 |
jpm |
117 |
$this->requete['where']['OR'][] = "( $sousRequete )";
|
|
|
118 |
unset($this->requete['join']['LEFT JOIN del_observation AS do ON (di.ce_observation = do.id_observation) ']);
|
|
|
119 |
}
|
|
|
120 |
|
1840 |
jpm |
121 |
if (isset($this->requete['where']['OR']) && count($this->requete['where']['OR']) > 0) {
|
|
|
122 |
$this->requete['where']['AND'][] = '('.implode(' OR ', $this->requete['where']['OR']).')';
|
|
|
123 |
}
|
|
|
124 |
|
|
|
125 |
$where = ' TRUE ';
|
|
|
126 |
if (isset($this->requete['where']['AND']) && count($this->requete['where']['AND']) > 0) {
|
|
|
127 |
$where = implode(' AND ', $this->requete['where']['AND']).' ';
|
|
|
128 |
}
|
|
|
129 |
return $where;
|
|
|
130 |
}
|
|
|
131 |
|
|
|
132 |
private function addGroupBy($groupBy) {
|
|
|
133 |
$this->requete['groupby'][] = $groupBy;
|
|
|
134 |
}
|
|
|
135 |
|
|
|
136 |
public function getGroupBy() {
|
|
|
137 |
$groupby = '';
|
|
|
138 |
if (isset($this->requete['groupby']) && count($this->requete['groupby']) > 0) {
|
|
|
139 |
$groupby = 'GROUP BY '.implode(', ', array_unique($this->requete['groupby'])).' ';
|
|
|
140 |
}
|
|
|
141 |
return $groupby;
|
|
|
142 |
}
|
|
|
143 |
|
|
|
144 |
private function addOrderBy($orderby) {
|
|
|
145 |
$this->requete['orderby'][] = $orderby;
|
|
|
146 |
}
|
|
|
147 |
|
|
|
148 |
public function getOrderBy() {
|
|
|
149 |
$orderby = '';
|
|
|
150 |
if (isset($this->requete['orderby']) && count($this->requete['orderby']) > 0) {
|
|
|
151 |
$orderby = 'ORDER BY '.implode(', ', array_unique($this->requete['orderby'])).' ';
|
|
|
152 |
}
|
|
|
153 |
return $orderby;
|
|
|
154 |
}
|
|
|
155 |
|
|
|
156 |
public function getLimit() {
|
|
|
157 |
return 'LIMIT '.$this->parametres['navigation.depart'].','.$this->parametres['navigation.limite'].' ';
|
|
|
158 |
}
|
|
|
159 |
|
|
|
160 |
/**
|
1881 |
jpm |
161 |
|
1840 |
jpm |
162 |
*
|
|
|
163 |
* @param $p les paramètres (notamment de masque) passés par l'URL et déjà traités/filtrés (sauf quotes)
|
|
|
164 |
* @param $req le tableau, passé par référence représentant les composants de la requête à bâtir
|
|
|
165 |
*/
|
|
|
166 |
public function ajouterContraintes() {
|
|
|
167 |
$this->ajouterContrainteAuteur();
|
|
|
168 |
$this->ajouterContrainteDate();
|
1985 |
aurelien |
169 |
$this->ajouterContraintePays();
|
1840 |
jpm |
170 |
$this->ajouterContrainteDepartement();
|
|
|
171 |
$this->ajouterContrainteIdZoneGeo();
|
|
|
172 |
$this->ajouterContrainteGenre();
|
|
|
173 |
$this->ajouterContrainteFamille();
|
|
|
174 |
$this->ajouterContrainteNs();
|
|
|
175 |
$this->ajouterContrainteNn();
|
|
|
176 |
$this->ajouterContrainteReferentiel();
|
|
|
177 |
$this->ajouterContrainteCommune();
|
|
|
178 |
}
|
|
|
179 |
|
|
|
180 |
private function ajouterContrainteAuteur() {
|
|
|
181 |
if (isset($this->parametres['masque.auteur'])) {
|
|
|
182 |
$auteur = $this->parametres['masque.auteur'];
|
|
|
183 |
// id du poster de l'obs
|
1871 |
jpm |
184 |
$prefixe = $this->getPrefixe();
|
1840 |
jpm |
185 |
|
|
|
186 |
if (is_numeric($auteur)) {
|
|
|
187 |
$this->ajouterContrainteAuteurId();
|
1871 |
jpm |
188 |
} elseif(preg_match('/@[a-z0-9-]+(?:\.[a-z0-9-]+)*\.[a-z]{2,}$/i', $auteur)) {
|
1840 |
jpm |
189 |
$this->ajouterContrainteAuteurEmail();
|
|
|
190 |
} else {
|
|
|
191 |
$this->ajouterContrainteAuteurIntitule();
|
|
|
192 |
}
|
|
|
193 |
}
|
|
|
194 |
}
|
|
|
195 |
|
|
|
196 |
private function ajouterContrainteAuteurId() {
|
|
|
197 |
$id = $this->parametres['masque.auteur'];
|
1871 |
jpm |
198 |
$prefixe = $this->getPrefixe();
|
|
|
199 |
$sqlTpl = "(du.id_utilisateur = %1\$d OR $prefixe.ce_utilisateur = %1\$d)";
|
1840 |
jpm |
200 |
$whereAuteur = sprintf($sqlTpl, $id);
|
|
|
201 |
$this->addWhere('masque.auteur', $whereAuteur);
|
|
|
202 |
}
|
|
|
203 |
|
|
|
204 |
private function ajouterContrainteAuteurEmail() {
|
|
|
205 |
$email = $this->parametres['masque.auteur'];
|
1871 |
jpm |
206 |
$prefixe = $this->getPrefixe();
|
|
|
207 |
$sqlTpl = "(du.courriel LIKE %1\$s OR $prefixe.courriel_utilisateur LIKE %1\$s )";
|
1840 |
jpm |
208 |
$emailP = $this->bdd->proteger("$email%");
|
|
|
209 |
$whereAuteur = sprintf($sqlTpl, $emailP);
|
|
|
210 |
$this->addWhere('masque.auteur', $whereAuteur);
|
|
|
211 |
}
|
|
|
212 |
|
|
|
213 |
/**
|
|
|
214 |
* Retourne une clause where du style:
|
|
|
215 |
* CONCAT(IF(du.prenom IS NULL, "", du.prenom), [...] vdi.i_nomutilisateur) REGEXP 'xxx'
|
|
|
216 |
*/
|
|
|
217 |
private function ajouterContrainteAuteurIntitule() {
|
|
|
218 |
$auteurExplode = explode(' ', $this->parametres['masque.auteur']);
|
|
|
219 |
$nbreMots = count($auteurExplode);
|
|
|
220 |
|
|
|
221 |
if ($nbreMots == 1) {
|
|
|
222 |
$this->ajouterContrainteAuteurPrenomOuNom();
|
|
|
223 |
} else if ($nbreMots == 2) {
|
|
|
224 |
$this->ajouterContrainteAuteurPrenomEtNom();
|
|
|
225 |
}
|
|
|
226 |
}
|
|
|
227 |
|
|
|
228 |
private function ajouterContrainteAuteurPrenomOuNom() {
|
|
|
229 |
$prenomOuNom = $this->parametres['masque.auteur'];
|
|
|
230 |
|
|
|
231 |
$sqlTpl = 'CONCAT(%s,%s) LIKE %s';
|
1871 |
jpm |
232 |
$prefixe = $this->getPrefixe();
|
|
|
233 |
$champsPrenomSql = self::ajouterIfNullPourConcat($this->champsPrenom, $prefixe);
|
|
|
234 |
$champsNomSql = self::ajouterIfNullPourConcat($this->champsNom, $prefixe);
|
1840 |
jpm |
235 |
$auteurMotif = $this->bdd->proteger("%$prenomOuNom%");
|
|
|
236 |
|
|
|
237 |
$auteurWhere = sprintf($sqlTpl, $champsPrenomSql, $champsNomSql, $auteurMotif);
|
|
|
238 |
$this->addWhere('masque.auteur', $auteurWhere);
|
|
|
239 |
}
|
|
|
240 |
|
|
|
241 |
private function ajouterContrainteAuteurPrenomEtNom() {
|
|
|
242 |
list($prenom, $nom) = explode(' ', $this->parametres['masque.auteur']);
|
|
|
243 |
|
|
|
244 |
$sqlTpl = '(CONCAT(%1$s,%2$s) LIKE %3$s AND CONCAT(%1$s,%2$s) LIKE %4$s)';
|
1871 |
jpm |
245 |
$prefixe = $this->getPrefixe();
|
|
|
246 |
$champsPrenomSql = self::ajouterIfNullPourConcat($this->champsPrenom, $prefixe);
|
|
|
247 |
$champsNomSql = self::ajouterIfNullPourConcat($this->champsNom, $prefixe);
|
1840 |
jpm |
248 |
$prenomMotif = $this->bdd->proteger("%$prenom%");
|
|
|
249 |
$nomMotif = $this->bdd->proteger("%$nom%");
|
|
|
250 |
|
|
|
251 |
$auteurWhere = sprintf($sqlTpl, $champsPrenomSql, $champsNomSql, $prenomMotif, $nomMotif);
|
|
|
252 |
$this->addWhere('masque.auteur', $auteurWhere);
|
|
|
253 |
}
|
|
|
254 |
|
1881 |
jpm |
255 |
/**
|
|
|
256 |
* Lorsque l'on concatène des champs, un seul NULL prend le dessus.
|
1840 |
jpm |
257 |
* Il faut donc utiliser la syntaxe IFNULL(%s, "").
|
1881 |
jpm |
258 |
* Cette fonction effectue aussi l'implode() "final".
|
1840 |
jpm |
259 |
*/
|
1871 |
jpm |
260 |
private static function ajouterIfNullPourConcat($champs, $prefixe) {
|
1840 |
jpm |
261 |
$champsProteges = array();
|
|
|
262 |
foreach ($champs as $champ) {
|
1871 |
jpm |
263 |
if (strstr($champ, '.') === false) {
|
|
|
264 |
$champ = "$prefixe.$champ";
|
|
|
265 |
}
|
1840 |
jpm |
266 |
$champsProteges[] = "IFNULL($champ, '')";
|
|
|
267 |
}
|
|
|
268 |
return implode(',', $champsProteges);
|
|
|
269 |
}
|
|
|
270 |
|
|
|
271 |
private function ajouterContrainteDate() {
|
|
|
272 |
if (isset($this->parametres['masque.date'])) {
|
|
|
273 |
$date = $this->parametres['masque.date'];
|
1871 |
jpm |
274 |
if (preg_match('/^\d{4}$/', $date) && $date < 2030 && $date > 1600) {
|
|
|
275 |
$sqlTpl = "YEAR(do.date_observation) = %d";
|
1840 |
jpm |
276 |
$dateWhere = sprintf($sqlTpl, $date);
|
|
|
277 |
$this->addWhere('masque.date', $dateWhere);
|
|
|
278 |
} else {
|
1871 |
jpm |
279 |
$sqlTpl = "do.date_observation = %s";
|
|
|
280 |
$dateP = $this->bdd->proteger($date);
|
1840 |
jpm |
281 |
$dateWhere = sprintf($sqlTpl, $dateP);
|
|
|
282 |
$this->addWhere('masque.date', $dateWhere);
|
|
|
283 |
}
|
1871 |
jpm |
284 |
|
|
|
285 |
if ($this->etreAppliImg()) {
|
|
|
286 |
$this->addJoin('LEFT JOIN del_observation AS do ON (di.ce_observation = do.id_observation) ');
|
|
|
287 |
}
|
1840 |
jpm |
288 |
}
|
|
|
289 |
}
|
|
|
290 |
|
|
|
291 |
private function ajouterContrainteDepartement() {
|
|
|
292 |
if (isset($this->parametres['masque.departement'])) {
|
|
|
293 |
$dept = $this->parametres['masque.departement'];
|
|
|
294 |
$deptMotif = $this->bdd->proteger("INSEE-C:$dept");
|
1871 |
jpm |
295 |
$this->addWhere('masque.departement', "do.ce_zone_geo LIKE $deptMotif");
|
|
|
296 |
|
|
|
297 |
if ($this->etreAppliImg()) {
|
|
|
298 |
$this->addJoin('LEFT JOIN del_observation AS do ON (di.ce_observation = do.id_observation) ');
|
|
|
299 |
}
|
1840 |
jpm |
300 |
}
|
|
|
301 |
}
|
1985 |
aurelien |
302 |
|
|
|
303 |
private function ajouterContraintePays() {
|
|
|
304 |
if (isset($this->parametres['masque.pays'])) {
|
|
|
305 |
// Attention le standard contient parfois FX pour la france métropolitaine
|
|
|
306 |
// Dans ce cas particulier on cherche donc FR et FX
|
|
|
307 |
$this->parametres['masque.pays'] = strtoupper($this->parametres['masque.pays']);
|
|
|
308 |
if(strpos($this->parametres['masque.pays'], 'FR') !== false) {
|
|
|
309 |
$this->parametres['masque.pays'] = str_replace('FR', 'FR,FX', $this->parametres['masque.pays']);
|
|
|
310 |
}
|
|
|
311 |
$pays = explode(',', $this->parametres['masque.pays']);
|
|
|
312 |
$pays = implode(',', $this->bdd->proteger($pays));
|
|
|
313 |
$this->addWhere('masque.pays', "do.pays IN ($pays)");
|
|
|
314 |
|
|
|
315 |
if ($this->etreAppliImg()) {
|
|
|
316 |
$this->addJoin('LEFT JOIN del_observation AS do ON (di.ce_observation = do.id_observation) ');
|
|
|
317 |
}
|
|
|
318 |
}
|
|
|
319 |
}
|
1840 |
jpm |
320 |
|
|
|
321 |
private function ajouterContrainteIdZoneGeo() {
|
|
|
322 |
if (isset($this->parametres['masque.id_zone_geo'])) {
|
|
|
323 |
$idZgMotif = $this->bdd->proteger($this->parametres['masque.id_zone_geo']);
|
1871 |
jpm |
324 |
$this->addWhere('masque.id_zone_geo', "do.ce_zone_geo = $idZgMotif");
|
|
|
325 |
if ($this->etreAppliImg()) {
|
|
|
326 |
$this->addJoin('LEFT JOIN del_observation AS do ON (di.ce_observation = do.id_observation) ');
|
|
|
327 |
}
|
1840 |
jpm |
328 |
}
|
|
|
329 |
}
|
|
|
330 |
|
|
|
331 |
private function ajouterContrainteGenre() {
|
|
|
332 |
if (isset($this->parametres['masque.genre'])) {
|
|
|
333 |
$genre = $this->parametres['masque.genre'];
|
2003 |
mathias |
334 |
$genreMotif = $this->bdd->proteger("$genre%");
|
1871 |
jpm |
335 |
$this->addWhere('masque.genre', "do.nom_sel LIKE $genreMotif");
|
|
|
336 |
|
|
|
337 |
if ($this->etreAppliImg()) {
|
|
|
338 |
$this->addJoin('LEFT JOIN del_observation AS do ON (di.ce_observation = do.id_observation) ');
|
|
|
339 |
}
|
1840 |
jpm |
340 |
}
|
|
|
341 |
}
|
|
|
342 |
|
|
|
343 |
private function ajouterContrainteFamille() {
|
|
|
344 |
if (isset($this->parametres['masque.famille'])) {
|
|
|
345 |
$familleMotif = $this->bdd->proteger($this->parametres['masque.famille']);
|
1871 |
jpm |
346 |
$this->addWhere('masque.famille', "do.famille = $familleMotif");
|
|
|
347 |
|
|
|
348 |
if ($this->etreAppliImg()) {
|
|
|
349 |
$this->addJoin('LEFT JOIN del_observation AS do ON (di.ce_observation = do.id_observation) ');
|
|
|
350 |
}
|
1840 |
jpm |
351 |
}
|
|
|
352 |
}
|
|
|
353 |
|
|
|
354 |
private function ajouterContrainteNs() {
|
|
|
355 |
if (isset($this->parametres['masque.ns'])) {
|
|
|
356 |
$ns = $this->parametres['masque.ns'];
|
|
|
357 |
$nsMotif = $this->bdd->proteger("$ns%");
|
1871 |
jpm |
358 |
$this->addWhere('masque.ns', "do.nom_sel LIKE $nsMotif");
|
|
|
359 |
|
|
|
360 |
if ($this->etreAppliImg()) {
|
|
|
361 |
$this->addJoin('LEFT JOIN del_observation AS do ON (di.ce_observation = do.id_observation) ');
|
|
|
362 |
}
|
1840 |
jpm |
363 |
}
|
|
|
364 |
}
|
|
|
365 |
|
|
|
366 |
private function ajouterContrainteNn() {
|
|
|
367 |
if (isset($this->parametres['masque.nn'])) {
|
1871 |
jpm |
368 |
$sqlTpl = '(do.nom_sel_nn = %1$d OR do.nom_ret_nn = %1$d)';
|
1840 |
jpm |
369 |
$nnWhere = sprintf($sqlTpl, $this->parametres['masque.nn']);
|
|
|
370 |
$this->addWhere('masque.nn', $nnWhere);
|
1871 |
jpm |
371 |
|
|
|
372 |
if ($this->etreAppliImg()) {
|
|
|
373 |
$this->addJoin('LEFT JOIN del_observation AS do ON (di.ce_observation = do.id_observation) ');
|
|
|
374 |
}
|
1840 |
jpm |
375 |
}
|
|
|
376 |
}
|
|
|
377 |
|
|
|
378 |
private function ajouterContrainteReferentiel() {
|
|
|
379 |
if (isset($this->parametres['masque.referentiel'])) {
|
|
|
380 |
$ref = $this->parametres['masque.referentiel'];
|
|
|
381 |
$refMotif = $this->bdd->proteger("$ref%");
|
1871 |
jpm |
382 |
$this->addWhere('masque.referentiel', "do.nom_referentiel LIKE $refMotif");
|
|
|
383 |
|
|
|
384 |
if ($this->etreAppliImg()) {
|
|
|
385 |
$this->addJoin('LEFT JOIN del_observation AS do ON (di.ce_observation = do.id_observation) ');
|
|
|
386 |
}
|
1840 |
jpm |
387 |
}
|
|
|
388 |
}
|
|
|
389 |
|
|
|
390 |
private function ajouterContrainteCommune() {
|
|
|
391 |
if (isset($this->parametres['masque.commune'])) {
|
|
|
392 |
$commune = $this->parametres['masque.commune'];
|
|
|
393 |
$communeMotif = $this->bdd->proteger("$commune%");
|
1871 |
jpm |
394 |
$this->addWhere('masque.commune', "do.zone_geo LIKE $communeMotif");
|
|
|
395 |
|
|
|
396 |
if ($this->etreAppliImg()) {
|
|
|
397 |
$this->addJoin('LEFT JOIN del_observation AS do ON (di.ce_observation = do.id_observation) ');
|
|
|
398 |
}
|
1840 |
jpm |
399 |
}
|
|
|
400 |
}
|
|
|
401 |
|
1845 |
jpm |
402 |
public function ajouterConstrainteAppliObs() {
|
|
|
403 |
$this->ajouterContrainteTagCel();
|
|
|
404 |
$this->ajouterContrainteType();
|
|
|
405 |
// TODO : ATTENTION -> vue que l'on utilise une vue basée sur les images, nous devons grouper par obs
|
1871 |
jpm |
406 |
$this->addGroupBy('do.id_observation');
|
1845 |
jpm |
407 |
}
|
|
|
408 |
|
|
|
409 |
private function ajouterContrainteType() {
|
1933 |
aurelien |
410 |
// Les contraintes régissant les onglets sont issus de la réunion dont le compte rendu
|
|
|
411 |
// disponible ici : http://tela-botanica.net/intranet/wakka.php?wiki=Octobre2014
|
|
|
412 |
// Ce lien est à modifier pour pointer vers toute nouvelle réunion modifiant ce fonctionnement
|
|
|
413 |
|
1871 |
jpm |
414 |
if (isset($this->parametres['masque.type'])) {
|
|
|
415 |
if (array_key_exists('adeterminer', $this->parametres['masque.type'])) {
|
1933 |
aurelien |
416 |
// A DETERMINER : toutes les observations qui ont le tag "aDeterminer"
|
|
|
417 |
// *ou* qui n'ont pas de nom d'espèce
|
1871 |
jpm |
418 |
// *ou* qui ont la "certitude" à ("aDeterminer" *ou* "douteux")
|
|
|
419 |
$this->addWhere('masque.type', '('.
|
|
|
420 |
'do.certitude = "aDeterminer" '.
|
|
|
421 |
'OR do.certitude = "douteux" '.
|
|
|
422 |
'OR do.mots_cles_texte LIKE "%aDeterminer%" '.
|
|
|
423 |
'OR do.nom_sel_nn IS NULL '.
|
|
|
424 |
'OR do.nom_sel_nn = 0 '.// il ne DEVRAIT pas y avoir d'entrées à 0, mais il y en a quand-même !!
|
|
|
425 |
')');
|
|
|
426 |
}
|
1933 |
aurelien |
427 |
|
1871 |
jpm |
428 |
if (array_key_exists('validees', $this->parametres['masque.type'])) {
|
1933 |
aurelien |
429 |
// VALIDEES : toutes les observations ayant un commentaire doté de proposition_retenue = 1
|
|
|
430 |
// ou bien possédant une proposition initiale avec un nom valide ayant totalisé un score d'au moins 4
|
|
|
431 |
// (ce qui correspond à au moins deux votes positifs dans la plupart des cas, dont un identifié)
|
|
|
432 |
$sous_requete_score_prop_votees = $this->getSousRequeteSommeVotesPropositions();
|
1871 |
jpm |
433 |
$this->addJoin('INNER JOIN del_commentaire AS dc '.
|
1933 |
aurelien |
434 |
'ON ( '.
|
|
|
435 |
'do.id_observation = dc.ce_observation '.
|
|
|
436 |
'AND ( '.
|
|
|
437 |
'dc.proposition_retenue = 1 OR '.
|
|
|
438 |
'( '.
|
|
|
439 |
'dc.proposition_initiale = 1 '.
|
|
|
440 |
'AND dc.nom_sel_nn != 0 '.
|
|
|
441 |
'AND dc.nom_sel_nn IS NOT NULL '.
|
|
|
442 |
' AND dc.id_commentaire IN ('.$sous_requete_score_prop_votees.' >= 4) '.
|
|
|
443 |
') '.
|
|
|
444 |
') '.
|
|
|
445 |
')'
|
|
|
446 |
);
|
1871 |
jpm |
447 |
}
|
1933 |
aurelien |
448 |
|
|
|
449 |
if(array_key_exists('aconfirmer', $this->parametres['masque.type'])) {
|
|
|
450 |
// A CONFIRMER : toutes les observations moins les validées et à confirmer
|
|
|
451 |
// i.e. : des observations avec un nom valide, qui ne sont pas à déterminer
|
|
|
452 |
// (ni certitude "aDeterminer" ou "douteuse", ni mot clé),
|
|
|
453 |
// ne possédant pas de proposition officiellement retenue
|
|
|
454 |
// et ayant une proposition initiale totalisant un score de moins de 4
|
|
|
455 |
$sous_requete_score_prop_votees = $this->getSousRequeteSommeVotesPropositions();
|
|
|
456 |
$this->addWhere('masque.type',
|
|
|
457 |
'('.
|
|
|
458 |
'do.id_observation IN ('.
|
|
|
459 |
'SELECT dc.ce_observation FROM del_commentaire dc WHERE dc.proposition_retenue = 0'.
|
1961 |
aurelien |
460 |
' AND ( '.
|
1933 |
aurelien |
461 |
'dc.proposition_initiale = 1 '.
|
|
|
462 |
'AND dc.nom_sel_nn != 0 '.
|
|
|
463 |
'AND dc.nom_sel_nn IS NOT NULL '.
|
|
|
464 |
'AND dc.id_commentaire IN ('.$sous_requete_score_prop_votees.' < 4) '.
|
|
|
465 |
') '.
|
|
|
466 |
') AND do.id_observation NOT IN ('.
|
|
|
467 |
'SELECT dc.ce_observation FROM del_commentaire dc '.
|
|
|
468 |
'WHERE '.
|
|
|
469 |
' dc.proposition_retenue = 1'.
|
|
|
470 |
') '.
|
|
|
471 |
'AND do.certitude != "douteux" AND do.certitude != "aDeterminer" '.
|
|
|
472 |
'AND do.mots_cles_texte NOT LIKE "%aDeterminer%" '.
|
|
|
473 |
'AND do.nom_sel_nn != 0 '.
|
|
|
474 |
'AND do.nom_sel_nn IS NOT NULL'.
|
|
|
475 |
') '
|
|
|
476 |
);
|
|
|
477 |
}
|
1845 |
jpm |
478 |
|
1871 |
jpm |
479 |
if ($this->etreAppliImg()) {
|
|
|
480 |
$this->addJoin('LEFT JOIN del_observation AS do ON (di.ce_observation = do.id_observation) ');
|
|
|
481 |
}
|
1845 |
jpm |
482 |
}
|
|
|
483 |
}
|
1933 |
aurelien |
484 |
|
|
|
485 |
private function getSousRequeteSommeVotesPropositions() {
|
|
|
486 |
// ATTENTION : un vote identifié compte 3 votes anonymes (dans les deux sens)
|
|
|
487 |
return 'SELECT ce_proposition '.
|
|
|
488 |
'FROM del_commentaire_vote dcv '.
|
|
|
489 |
'GROUP BY ce_proposition HAVING '.
|
|
|
490 |
'SUM(CASE '.
|
|
|
491 |
' WHEN valeur = 1 AND dcv.ce_utilisateur REGEXP \'^-?[0-9]+$\' != 0 THEN 3 '.
|
|
|
492 |
' WHEN valeur = 0 AND dcv.ce_utilisateur REGEXP \'^-?[0-9]+$\' != 0 THEN -3 '.
|
|
|
493 |
' WHEN valeur = 1 AND dcv.ce_utilisateur REGEXP \'^-?[0-9]+$\' = 0 THEN 1 '.
|
|
|
494 |
' WHEN valeur = 0 AND dcv.ce_utilisateur REGEXP \'^-?[0-9]+$\' = 0 THEN -1 '.
|
|
|
495 |
'END '.
|
|
|
496 |
') ';
|
|
|
497 |
}
|
1845 |
jpm |
498 |
|
1840 |
jpm |
499 |
public function ajouterConstrainteAppliImg() {
|
|
|
500 |
$this->ajouterContrainteMilieu();
|
|
|
501 |
$this->ajouterContrainteTri();
|
|
|
502 |
$this->ajouterContrainteTagCel();
|
|
|
503 |
$this->ajouterContrainteTagDel();
|
|
|
504 |
}
|
|
|
505 |
|
|
|
506 |
private function ajouterContrainteMilieu() {
|
|
|
507 |
if (isset($this->parametres['masque.milieu'])) {
|
|
|
508 |
$milieu = $this->parametres['masque.milieu'];
|
|
|
509 |
$milieuMotif = $this->bdd->proteger("%$milieu%");
|
1871 |
jpm |
510 |
$this->addWhere('masque.milieu', "do.milieu LIKE $milieuMotif");
|
|
|
511 |
|
|
|
512 |
if ($this->etreAppliImg()) {
|
|
|
513 |
$this->addJoin('LEFT JOIN del_observation AS do ON (di.ce_observation = do.id_observation) ');
|
|
|
514 |
}
|
1840 |
jpm |
515 |
}
|
|
|
516 |
}
|
|
|
517 |
|
|
|
518 |
private function ajouterContrainteTri() {
|
|
|
519 |
if (isset($this->parametres['tri'])) {
|
|
|
520 |
$tri = $this->parametres['tri'];
|
|
|
521 |
|
1863 |
jpm |
522 |
if (isset($this->parametres['protocole']) && ($tri == 'moyenne-arithmetique' || $tri == 'points')) {
|
1840 |
jpm |
523 |
// $this->parametres['protocole'] *est* défini (cf Outils::filtrerUrlsParams...())
|
1871 |
jpm |
524 |
$sqlTpl = 'LEFT JOIN del_image_stat AS dis ON di.id_image = dis.ce_image AND dis.ce_protocole = %d';
|
1840 |
jpm |
525 |
$triSql = sprintf($sqlTpl, $this->parametres['protocole']);
|
|
|
526 |
$this->addJoinDis($triSql);
|
|
|
527 |
}
|
|
|
528 |
|
|
|
529 |
if (isset($this->parametres['ordre']) && $tri == 'tags') {
|
|
|
530 |
$typeJointure = ($this->parametres['ordre'] == 'desc') ? 'INNER' : 'LEFT';
|
1871 |
jpm |
531 |
$this->addJoin("$typeJointure JOIN del_image_stat AS dis ON di.id_image = dis.ce_image");
|
1840 |
jpm |
532 |
}
|
|
|
533 |
}
|
|
|
534 |
}
|
|
|
535 |
|
|
|
536 |
private function ajouterContrainteTagCel() {
|
1845 |
jpm |
537 |
if (isset($this->parametres['masque.tag_cel'])) {
|
1840 |
jpm |
538 |
if (isset($this->parametres['masque.tag_cel']['AND'])) {
|
|
|
539 |
$tags = $this->parametres['masque.tag_cel']['AND'];
|
|
|
540 |
$clausesWhere = array();
|
|
|
541 |
foreach ($tags as $tag) {
|
|
|
542 |
$tagMotif = $this->bdd->proteger("%$tag%");
|
1922 |
jpm |
543 |
if ($this->etreAppliImg()) {
|
1981 |
aurelien |
544 |
$sousRequete = 'SELECT id_observation '.
|
1922 |
jpm |
545 |
'FROM del_observation '.
|
|
|
546 |
"WHERE mots_cles_texte LIKE $tagMotif ";
|
|
|
547 |
$sql = " (di.mots_cles_texte LIKE $tagMotif OR di.id_image IN ($sousRequete) ) ";
|
|
|
548 |
} else {
|
|
|
549 |
// WARNING : la sous-requête est la meilleure solution trouvée pour contrer le fonctionnement
|
|
|
550 |
// étrange de l'optimiseur de MYSQL 5.6 (à retester avec Mysql 5.7 et suivant).
|
|
|
551 |
$sousRequete = 'SELECT DISTINCT ce_observation '.
|
|
|
552 |
'FROM del_image '.
|
|
|
553 |
"WHERE mots_cles_texte LIKE $tagMotif ".
|
|
|
554 |
'AND ce_observation IS NOT NULL';
|
|
|
555 |
$sql = " (do.mots_cles_texte LIKE $tagMotif OR do.id_observation IN ($sousRequete)) ";
|
|
|
556 |
}
|
|
|
557 |
$clausesWhere[] = $sql;
|
1840 |
jpm |
558 |
}
|
|
|
559 |
$whereTags = implode(' AND ', $clausesWhere);
|
|
|
560 |
$this->addWhere('masque.tag_cel', "($whereTags)");
|
|
|
561 |
} else if (isset($this->parametres['masque.tag_cel']['OR'])) {
|
|
|
562 |
$tags = $this->parametres['masque.tag_cel']['OR'];
|
1922 |
jpm |
563 |
$tagMotif = $this->bdd->proteger(implode('|', $tags));
|
1871 |
jpm |
564 |
$sqlTpl = "CONCAT(IFNULL(do.mots_cles_texte,''),IFNULL(di.mots_cles_texte,'')) REGEXP %s";
|
1840 |
jpm |
565 |
$tagSql = sprintf($sqlTpl, $tagMotif);
|
1922 |
jpm |
566 |
|
1840 |
jpm |
567 |
$this->addWhere('masque.tag_cel', $tagSql);
|
1922 |
jpm |
568 |
|
|
|
569 |
if ($this->etreAppliObs()) {
|
|
|
570 |
$this->addJoin('LEFT JOIN del_image AS di ON (di.ce_observation = do.id_observation) ');
|
|
|
571 |
}
|
1840 |
jpm |
572 |
}
|
1871 |
jpm |
573 |
if ($this->etreAppliImg()) {
|
|
|
574 |
$this->addJoin('LEFT JOIN del_observation AS do ON (di.ce_observation = do.id_observation) ');
|
|
|
575 |
}
|
1840 |
jpm |
576 |
}
|
|
|
577 |
}
|
|
|
578 |
|
|
|
579 |
/**
|
1881 |
jpm |
580 |
* Plusieurs solutions sont disponibles dans les anciennes versions (voir DelTk et l'historique SVN de ce fichier).
|
1840 |
jpm |
581 |
*/
|
|
|
582 |
private function ajouterContrainteTagDel() {
|
|
|
583 |
if (isset($this->parametres['masque.tag_del'])) {
|
1922 |
jpm |
584 |
$tagsMotif = $this->construireTagsMotif();
|
|
|
585 |
if (is_null($tagsMotif) === false) {
|
|
|
586 |
$sousRequete = 'SELECT ce_image '.
|
1845 |
jpm |
587 |
'FROM del_image_tag '.
|
|
|
588 |
'WHERE actif = 1 '.
|
|
|
589 |
'GROUP BY ce_image '.
|
1922 |
jpm |
590 |
"HAVING GROUP_CONCAT(DISTINCT tag_normalise ORDER BY tag_normalise) REGEXP $tagsMotif ";
|
1840 |
jpm |
591 |
|
1922 |
jpm |
592 |
$this->addWhere('masque.tag_del', "di.id_image IN ($sousRequete)");
|
1840 |
jpm |
593 |
}
|
|
|
594 |
}
|
|
|
595 |
}
|
|
|
596 |
|
1922 |
jpm |
597 |
private function construireTagsMotif() {
|
|
|
598 |
$tagsMotif = null;
|
|
|
599 |
if (isset($this->parametres['masque.tag_del']['AND'])) {
|
|
|
600 |
$tags = $this->parametres['masque.tag_del']['AND'];
|
|
|
601 |
// ATTENTION -> optimisation: en cas de "AND" on sort() l'input et le GROUP_CONCAT()
|
|
|
602 |
// donc nous utilisons des ".*" plutôt que de multiples conditions et "|"
|
|
|
603 |
sort($tags);
|
|
|
604 |
$tagsMotif = $this->bdd->proteger(implode('.*', $tags));
|
|
|
605 |
} else if (isset($this->parametres['masque.tag_del']['OR'])) {
|
|
|
606 |
$tags = $this->parametres['masque.tag_del']['OR'];
|
|
|
607 |
$tagsMotif = $this->bdd->proteger(implode('|', $tags));
|
1840 |
jpm |
608 |
}
|
1922 |
jpm |
609 |
return $tagsMotif;
|
1840 |
jpm |
610 |
}
|
|
|
611 |
|
|
|
612 |
/**
|
|
|
613 |
* Partie spécifique à PictoFlora:
|
1863 |
jpm |
614 |
* Attention : si le critère de tri n'est pas suffisant, les résultats affichés peuvent varier à chaque appel
|
|
|
615 |
* de la même page de résultat de PictoFlora.
|
1840 |
jpm |
616 |
*/
|
|
|
617 |
public function definirOrdreSqlAppliImg() {
|
|
|
618 |
$ordre = $this->parametres['ordre'];
|
1968 |
aurelien |
619 |
|
|
|
620 |
$tri = isset($this->parametres['tri']) ? $this->parametres['tri'] : '';
|
|
|
621 |
switch ($tri) {
|
1863 |
jpm |
622 |
case 'moyenne-arithmetique' :
|
1888 |
jpm |
623 |
$this->addOrderBy("dis.moyenne $ordre, dis.nb_votes $ordre, id_image $ordre");
|
1840 |
jpm |
624 |
break;
|
|
|
625 |
case 'points' :
|
1888 |
jpm |
626 |
$this->addOrderBy("dis.nb_points $ordre, dis.moyenne $ordre, dis.nb_votes $ordre, id_image $ordre");
|
1840 |
jpm |
627 |
break;
|
|
|
628 |
case 'tags' :
|
1888 |
jpm |
629 |
$this->addOrderBy("dis.nb_tags $ordre, id_image $ordre");
|
1840 |
jpm |
630 |
break;
|
|
|
631 |
case 'date_observation' :
|
1871 |
jpm |
632 |
$this->addOrderBy("date_observation $ordre, ce_observation $ordre");
|
1840 |
jpm |
633 |
break;
|
1863 |
jpm |
634 |
case 'date_transmission' :
|
1840 |
jpm |
635 |
default:
|
1871 |
jpm |
636 |
$this->addOrderBy("di.date_transmission $ordre, ce_observation $ordre");
|
1840 |
jpm |
637 |
}
|
|
|
638 |
}
|
|
|
639 |
|
1845 |
jpm |
640 |
public function definirOrdreSqlAppliObs() {
|
|
|
641 |
$ordre = $this->parametres['ordre'];
|
|
|
642 |
|
|
|
643 |
// parmi self::$tri_possible
|
1968 |
aurelien |
644 |
$tri = isset($this->parametres['tri']) ? $this->parametres['tri'] : '';
|
|
|
645 |
switch ($tri) {
|
1845 |
jpm |
646 |
case 'date_observation' :
|
|
|
647 |
$this->addOrderBy("date_observation $ordre, id_observation $ordre");
|
1933 |
aurelien |
648 |
break;
|
|
|
649 |
case 'nb_commentaires' :
|
|
|
650 |
$sql_nb_comms = '(SELECT COUNT(id_commentaire) FROM del_commentaire AS dc WHERE ce_observation = id_observation)';
|
|
|
651 |
$this->addOrderBy("$sql_nb_comms $ordre, id_observation $ordre");
|
1845 |
jpm |
652 |
break;
|
1933 |
aurelien |
653 |
case 'date_transmission' :
|
1845 |
jpm |
654 |
default:
|
1871 |
jpm |
655 |
$this->addOrderBy("do.date_transmission $ordre, id_observation $ordre");
|
1845 |
jpm |
656 |
}
|
|
|
657 |
}
|
|
|
658 |
|
1840 |
jpm |
659 |
public function getAliasDesChamps($champsEtAlias, $select = null, $prefix = null) {
|
|
|
660 |
$arr = ($select) ? array_intersect_key($champsEtAlias, array_flip($select)) : $champsEtAlias;
|
|
|
661 |
$keys = array_keys($arr);
|
|
|
662 |
|
|
|
663 |
if ($prefix) {
|
|
|
664 |
array_walk($keys, create_function('&$val, $k, $prefix', '$val = sprintf("%s.`%s`", $prefix, $val);'), $prefix);
|
|
|
665 |
} else {
|
|
|
666 |
array_walk($keys, create_function('&$val, $k', '$val = sprintf("`%s`", $val);'));
|
|
|
667 |
}
|
|
|
668 |
|
|
|
669 |
return implode(', ', array_map(create_function('$v, $k', 'return sprintf("%s AS `%s`", $k, $v);'), $arr, $keys));
|
|
|
670 |
}
|
|
|
671 |
|
|
|
672 |
public function getVotesDesImages($idsImages, $protocole = null) {
|
|
|
673 |
if (!$idsImages) return;
|
|
|
674 |
|
|
|
675 |
$mappingVotes = $this->conteneur->getParametreTableau('votes.mapping');
|
|
|
676 |
$mappingProtocoles = $this->conteneur->getParametreTableau('protocoles.mapping');
|
|
|
677 |
$selectVotes = array('id_vote', 'ce_image', 'ce_protocole', 'ce_utilisateur', 'valeur', 'date');
|
|
|
678 |
$selectProtocole = array('id_protocole', 'intitule', 'descriptif', 'tag');
|
|
|
679 |
$voteChamps = $this->getAliasDesChamps($mappingVotes, $selectVotes, 'v'); // "v": cf alias dans la requête
|
|
|
680 |
$protoChamps = $this->getAliasDesChamps($mappingProtocoles, $selectProtocole, 'p');
|
|
|
681 |
$idImgsConcat = implode(',', $idsImages);
|
|
|
682 |
|
|
|
683 |
$requete = "SELECT $voteChamps, $protoChamps ".
|
|
|
684 |
'FROM del_image_vote AS v '.
|
|
|
685 |
' INNER JOIN del_image_protocole AS p ON (v.ce_protocole = p.id_protocole) '.
|
|
|
686 |
"WHERE v.ce_image IN ($idImgsConcat) ".
|
|
|
687 |
($protocole ? " AND v.ce_protocole = $protocole " : '').
|
|
|
688 |
"ORDER BY FIELD(v.ce_image, $idImgsConcat) ".
|
|
|
689 |
'-- '.__FILE__.':'.__LINE__;
|
|
|
690 |
return $this->bdd->recupererTous($requete);
|
|
|
691 |
}
|
|
|
692 |
|
|
|
693 |
/**
|
|
|
694 |
* Ajoute les informations sur le protocole et les votes aux images.
|
|
|
695 |
*
|
|
|
696 |
* ATTENTION : Subtilité, nous passons ici le tableau d'images indexé par id_image qui est bien
|
|
|
697 |
* plus pratique pour associer les vote à un tableau, puisque nous ne connaissons pas les id d'observation.
|
|
|
698 |
* Mais magiquement (par référence), cela va remplir notre tableau indexé par couple d'id (id_image, id_observation)
|
|
|
699 |
* cf ListeImages::reformateImagesDoubleIndex() à qui revient la tâche de créer ces deux versions
|
|
|
700 |
* simultanément lorsque c'est encore possible.
|
|
|
701 |
*/
|
1881 |
jpm |
702 |
// TODO : supprimer cette "subtilité" source d'erreurs
|
1840 |
jpm |
703 |
public function ajouterInfosVotesProtocoles($votes, &$images) {
|
|
|
704 |
if (!$votes) return;
|
1845 |
jpm |
705 |
|
1840 |
jpm |
706 |
$mappingVotes = $this->conteneur->getParametreTableau('votes.mapping');
|
|
|
707 |
$mappingProtocoles = $this->conteneur->getParametreTableau('protocoles.mapping');
|
|
|
708 |
|
|
|
709 |
// pour chaque vote
|
|
|
710 |
foreach ($votes as $vote) {
|
|
|
711 |
$imgId = $vote['image.id'];
|
|
|
712 |
$protoId = $vote['protocole.id'];
|
|
|
713 |
|
|
|
714 |
if (!array_key_exists('protocoles_votes', $images[$imgId]) ||
|
1863 |
jpm |
715 |
!array_key_exists($protoId, $images[$imgId]['protocoles_votes'])) {
|
1840 |
jpm |
716 |
// extrait les champs spécifique au protocole (le LEFT JOIN de chargerVotesImage les ramène en doublons
|
|
|
717 |
$protocole = array_intersect_key($vote, array_flip($mappingProtocoles));
|
|
|
718 |
$images[$imgId]['protocoles_votes'][$protoId] = $protocole;
|
|
|
719 |
}
|
|
|
720 |
|
|
|
721 |
$chpsVotes = array('id_vote', 'ce_image', 'ce_utilisateur', 'valeur', 'date');
|
|
|
722 |
$voteSelection = array_intersect_key($mappingVotes, array_flip($chpsVotes));
|
|
|
723 |
$vote = array_intersect_key($vote, array_flip($voteSelection));
|
|
|
724 |
$images[$imgId]['protocoles_votes'][$protoId]['votes'][$vote['vote.id']] = $vote;
|
|
|
725 |
}
|
|
|
726 |
}
|
1845 |
jpm |
727 |
|
|
|
728 |
public function getTotalLignesTrouvees() {
|
1888 |
jpm |
729 |
$resultat = $this->bdd->recuperer('SELECT FOUND_ROWS() AS nbre -- '.__FILE__.':'.__LINE__);
|
1845 |
jpm |
730 |
return intval($resultat['nbre']);
|
|
|
731 |
}
|
1840 |
jpm |
732 |
}
|