761 |
gduche |
1 |
<?php
|
|
|
2 |
/**
|
1385 |
raphael |
3 |
* Le web service observations récupère toutes les information pour une observation:
|
|
|
4 |
* images, votes sur image et protocole, commentaires, votes sur commentaires, ...
|
761 |
gduche |
5 |
*
|
|
|
6 |
* @category php 5.2
|
1385 |
raphael |
7 |
* @author Raphaël Droz <raphael@tela-botanica.org>
|
|
|
8 |
* @copyright Copyright (c) 2013, Tela Botanica (accueil@tela-botanica.org)
|
761 |
gduche |
9 |
* @license http://www.cecill.info/licences/Licence_CeCILL_V2-fr.txt Licence CECILL
|
|
|
10 |
* @license http://www.gnu.org/licenses/gpl.html Licence GNU-GPL
|
|
|
11 |
* @see http://www.tela-botanica.org/wikini/eflore/wakka.php?wiki=ApiIdentiplante01Observations
|
1385 |
raphael |
12 |
*
|
|
|
13 |
* @config-depend: "url_image" (dans configurations/config_observations.ini)
|
|
|
14 |
* ex: http://www.tela-botanica.org/appli:cel-img:%09dXL.jpg
|
761 |
gduche |
15 |
*/
|
|
|
16 |
|
|
|
17 |
// http://localhost/del/services/0.1/observations/#id => une observation donnée et ses images, SANS LES propositions & nombre de commentaire
|
1385 |
raphael |
18 |
|
1490 |
raphael |
19 |
require_once(dirname(__FILE__) . '/../DelTk.php');
|
1385 |
raphael |
20 |
|
761 |
gduche |
21 |
class Observation {
|
1385 |
raphael |
22 |
|
|
|
23 |
/* Map les champs MySQL vers les champs utilisés dans le JSON pour les clients pour
|
|
|
24 |
chacune des différentes tables utilisées pour le chargement de résultats ci-dessous.
|
|
|
25 |
- chargerObservation() (v_del_image)
|
|
|
26 |
- chargerVotesImage() (del_image_vote, del_image_protocole)
|
|
|
27 |
- chargerCommentaires() (del_commentaire_vote, del_commentaire).
|
|
|
28 |
Si la valeur vaut 1, aucun alias ne sera défini (nom du champ d'origine), cf consulter() */
|
|
|
29 |
static $mappings = array(
|
|
|
30 |
'observations' => array( // v_del_image
|
|
|
31 |
"id_observation" => 1,
|
|
|
32 |
"date_observation" => 1,
|
|
|
33 |
"date_transmission" => 1,
|
|
|
34 |
"famille" => "determination.famille",
|
|
|
35 |
"nom_sel" => "determination.ns",
|
|
|
36 |
"nom_sel_nn" => "determination.nn",
|
|
|
37 |
"nom_referentiel" => "determination.referentiel",
|
|
|
38 |
"nt" => "determination.nt",
|
|
|
39 |
"ce_zone_geo" => "id_zone_geo",
|
|
|
40 |
"zone_geo" => 1,
|
|
|
41 |
"lieudit" => 1,
|
|
|
42 |
"station" => 1,
|
|
|
43 |
"milieu" => 1,
|
|
|
44 |
"ce_utilisateur" => "auteur.id",
|
|
|
45 |
"mots_cles_texte" => "mots_cles_texte",
|
|
|
46 |
"commentaire" => 1),
|
|
|
47 |
/* exclus car issus de la jointure annuaire:
|
|
|
48 |
"nom" => "auteur.nom", // XXX: jointure annuaire
|
|
|
49 |
"prenom" => "auteur.prenom", // XXX: jointure annuaire
|
|
|
50 |
"courriel" => "observateur", // XXX: jointure annuaire */
|
|
|
51 |
/* présents dans cel_obs mais exclus:
|
|
|
52 |
ordre, nom_ret, nom_ret_nn, latitude, longitude, altitude, geodatum
|
|
|
53 |
transmission, date_creation, date_modificationabondance, certitude, phenologie, code_insee_calcule */
|
|
|
54 |
|
|
|
55 |
'images' => array( // v_del_image
|
|
|
56 |
"id_image" => 1,
|
|
|
57 |
"hauteur" => 1,
|
|
|
58 |
// "largeur" => 1, inutile semble-t-il
|
|
|
59 |
"date_prise_de_vue" => "date"),
|
|
|
60 |
/* présents dans cel_images mais exclus:
|
|
|
61 |
i_commentaire, nom_original, publiable_eflore, i_mots_cles_texte, i_ordre,
|
|
|
62 |
i_ce_utilisateur, i_prenom_utilisateur, i_nom_utilisateur, i_courriel_utilisateur */
|
|
|
63 |
|
|
|
64 |
'protocoles' => array( // del_image_protocole
|
|
|
65 |
"ce_protocole" => "protocole.id",
|
|
|
66 |
"id_protocole" => "protocole.id",
|
|
|
67 |
"intitule" => "protocole.intitule",
|
|
|
68 |
"descriptif" => "protocole.descriptif",
|
|
|
69 |
"tag" => "protocole.tag"),
|
|
|
70 |
|
|
|
71 |
/* See desc del_commentaire_vote & desc del_image_vote;
|
|
|
72 |
Les deux schémas sont similaires, à l'exception de ce_protocole
|
|
|
73 |
spécifique à del_image_vote et ce_proposition => ce_image */
|
|
|
74 |
'votes' => array( // del_image_vote et del_commentaire_vote
|
|
|
75 |
"id_vote" => "vote.id",
|
|
|
76 |
"ce_proposition" => "proposition.id",
|
|
|
77 |
"ce_image" => "image.id",
|
|
|
78 |
"ce_utilisateur" => "auteur.id", // attention, conflit avec commentaire, cf ci-dessous
|
|
|
79 |
"valeur" => "vote",
|
|
|
80 |
"date" => 1, // attention, conflit avec commentaire, cf ci-dessous
|
|
|
81 |
// absents du JSON, et pourtant présents dans services/configurations/config_mapping_votes.ini
|
|
|
82 |
// (nécessiterait une propre jointure sur del_utilisateur)
|
|
|
83 |
/* "nom" => "auteur.nom",
|
|
|
84 |
"prenom" => "auteur.prenom",
|
|
|
85 |
"courriel" => "auteur.courriel" */),
|
|
|
86 |
|
|
|
87 |
'commentaires' => array( // del_commentaire
|
|
|
88 |
"id_commentaire" => 1,
|
|
|
89 |
"ce_observation" => "observation",
|
|
|
90 |
"ce_proposition" => "proposition",
|
|
|
91 |
"ce_commentaire_parent" => "id_parent",
|
|
|
92 |
|
|
|
93 |
// les deux alias suivants sont particuliers afin d'éviter un conflit d'alias
|
|
|
94 |
// lors des jointures avec del_commentaire_vote ci-dessus
|
|
|
95 |
// (cf cas particulier dans la boucle de chargerCommentaires())
|
|
|
96 |
"ce_utilisateur" => "__auteur_com",
|
|
|
97 |
"date" => "__date_com",
|
|
|
98 |
|
|
|
99 |
"texte" => 1,
|
|
|
100 |
"utilisateur_nom" => "auteur.nom",
|
|
|
101 |
"utilisateur_prenom" => "auteur.prenom",
|
|
|
102 |
"utilisateur_courriel" => "auteur.courriel",
|
|
|
103 |
"nom_sel" => 1,
|
|
|
104 |
"nom_sel_nn" => 1,
|
|
|
105 |
"nom_ret_nn" => 1,
|
1435 |
aurelien |
106 |
"nom_referentiel" => 1,
|
1385 |
raphael |
107 |
"proposition_initiale" => 1),
|
|
|
108 |
);
|
|
|
109 |
|
761 |
gduche |
110 |
|
|
|
111 |
private $conteneur;
|
|
|
112 |
private $gestionBdd;
|
|
|
113 |
private $bdd;
|
|
|
114 |
|
|
|
115 |
public function __construct(Conteneur $conteneur = null) {
|
|
|
116 |
$this->conteneur = $conteneur == null ? new Conteneur() : $conteneur;
|
787 |
delphine |
117 |
$this->conteneur->chargerConfiguration('config_votes.ini');
|
841 |
aurelien |
118 |
$this->conteneur->chargerConfiguration('config_mapping_votes.ini');
|
950 |
aurelien |
119 |
$this->conteneur->chargerConfiguration('config_mapping_commentaires.ini');
|
761 |
gduche |
120 |
$this->gestionBdd = $conteneur->getGestionBdd();
|
|
|
121 |
$this->bdd = $this->gestionBdd->getBdd();
|
|
|
122 |
}
|
|
|
123 |
|
|
|
124 |
/**
|
|
|
125 |
* Méthode principale de la classe.
|
|
|
126 |
* Lance la récupération des images dans la base et les place dans un objet ResultatService
|
|
|
127 |
* pour l'afficher.
|
|
|
128 |
* @param array $ressources les ressources situées après l'url de base (ex : http://url/ressource1/ressource2)
|
|
|
129 |
* @param array $parametres les paramètres situés après le ? dans l'url
|
|
|
130 |
* */
|
|
|
131 |
public function consulter($ressources, $parametres) {
|
1385 |
raphael |
132 |
if (!$ressources || count($ressources) != 1 ) {
|
|
|
133 |
throw new Exception("Le service observation accepte un unique identifiant d'observation", RestServeur::HTTP_CODE_ERREUR);
|
|
|
134 |
}
|
|
|
135 |
|
|
|
136 |
// initialise les mappings:
|
|
|
137 |
// substitue les valeurs à 1 par le nom de la clef (pas d'alias de champ)
|
|
|
138 |
array_walk(self::$mappings['observations'], create_function('&$val, $k', 'if($val==1) $val = $k;'));
|
|
|
139 |
array_walk(self::$mappings['images'], create_function('&$val, $k', 'if($val==1) $val = $k;'));
|
|
|
140 |
array_walk(self::$mappings['protocoles'], create_function('&$val, $k', 'if($val==1) $val = $k;'));
|
|
|
141 |
array_walk(self::$mappings['votes'], create_function('&$val, $k', 'if($val==1) $val = $k;'));
|
|
|
142 |
array_walk(self::$mappings['commentaires'], create_function('&$val, $k', 'if($val==1) $val = $k;'));
|
|
|
143 |
|
|
|
144 |
|
761 |
gduche |
145 |
// Gestion des configuration du script
|
1385 |
raphael |
146 |
$idobs = $ressources[0];
|
|
|
147 |
$protocole = isset($parametres['protocole']) && is_numeric($parametres['protocole']) ?intval($parametres['protocole']) : NULL;
|
1361 |
raphael |
148 |
|
1385 |
raphael |
149 |
// 1) récupération de l'observation (et de ses images (v_del_image est une vue utilisant des INNER JOIN))
|
|
|
150 |
$liaisons = self::chargerObservation($this->bdd, $idobs);
|
|
|
151 |
|
|
|
152 |
if(!$liaisons) {
|
1379 |
raphael |
153 |
header('HTTP/1.0 404 Not Found');
|
|
|
154 |
// don't die (phpunit)
|
|
|
155 |
throw(new Exception());
|
|
|
156 |
}
|
1361 |
raphael |
157 |
|
1385 |
raphael |
158 |
// 2) réassocie les images "à plat" à leur observation (merge)
|
1389 |
raphael |
159 |
// TODO: appliquer le formattage dépendant de la configuration en fin de processus
|
1490 |
raphael |
160 |
$observations = self::reformateObservationSimpleIndex($liaisons, $this->conteneur->getParametre('url_images'));
|
|
|
161 |
// bien que dans notre cas il n'y ait qu'une seule observation, issue de plusieurs images
|
1385 |
raphael |
162 |
// dans $liaisons, $observation est un tableau (cf reformateObservation).
|
|
|
163 |
// Considérons la chose comme telle au cas où le webservice doivent demain demander une paire
|
1490 |
raphael |
164 |
// d'observations (... convergence avec ListeObservations & DelTk)
|
1385 |
raphael |
165 |
|
|
|
166 |
$observation = array_pop($observations);
|
|
|
167 |
|
|
|
168 |
// 3) charge les données de votes et protocoles associés aux images
|
|
|
169 |
if($observation['images']) {
|
|
|
170 |
$votes = self::chargerVotesImage($this->bdd, $observation['images'], $protocole);
|
|
|
171 |
// 3") merge/reformate les données retournées
|
|
|
172 |
self::mapVotesToImages($votes,
|
|
|
173 |
$observation['images']);
|
|
|
174 |
}
|
|
|
175 |
|
|
|
176 |
// 4) charge les commentaires et les votes associés
|
|
|
177 |
// modifie/créé $observation['commentaires']
|
|
|
178 |
self::chargerCommentaires($this->bdd, $observation);
|
|
|
179 |
|
|
|
180 |
|
|
|
181 |
// désindexe le tableau (tel qu'apparement attendu par les applis), c'est une exception
|
|
|
182 |
// corriger l'appli cliente pour utiliser les index puis supprimer cette ligne
|
|
|
183 |
$observation['images'] = array_values($observation['images']);
|
|
|
184 |
// autre élément de post-processing: le ce_utilisateur de l'observation non-numeric...
|
|
|
185 |
if(!is_numeric($observation['auteur.id'])) $observation['auteur.id'] = "0";
|
|
|
186 |
if(!isset($observation['auteur.nom'])) $observation['auteur.nom'] = '[inconnu]';
|
|
|
187 |
|
1389 |
raphael |
188 |
|
|
|
189 |
if(isset($parametres['justthrow'])) return $observation;
|
|
|
190 |
|
761 |
gduche |
191 |
// Mettre en forme le résultat et l'envoyer pour affichage
|
|
|
192 |
$resultat = new ResultatService();
|
|
|
193 |
$resultat->corps = $observation;
|
|
|
194 |
return $resultat;
|
|
|
195 |
}
|
1385 |
raphael |
196 |
|
|
|
197 |
static function chargerObservation($db, $idobs) {
|
|
|
198 |
// prenom_utilisateur, nom_utilisateur, courriel_utilisateur sont exclus du mapping
|
|
|
199 |
// car nous utilisons une construction SQL élaborée pour eux (cf IFNULL ci-dessous)
|
1490 |
raphael |
200 |
$obs_fields = DelTk::sqlFieldsToAlias(self::$mappings['observations'], NULL, 'dob');
|
1385 |
raphael |
201 |
|
1490 |
raphael |
202 |
$image_fields = DelTk::sqlFieldsToAlias(self::$mappings['images'], NULL, 'dob');
|
1385 |
raphael |
203 |
|
|
|
204 |
// champs de l'annuaire (del_utilisateur): id_utilisateur prenom, nom, courriel
|
|
|
205 |
$annuaire_fields = implode(', ', array("IFNULL(du.prenom, prenom_utilisateur) AS `auteur.prenom`",
|
|
|
206 |
"IFNULL(du.nom, nom_utilisateur) AS `auteur.nom`",
|
|
|
207 |
"IFNULL(du.courriel, courriel_utilisateur) AS observateur"));
|
|
|
208 |
return $db->recupererTous(sprintf(
|
|
|
209 |
'SELECT %s, %s, %s FROM v_del_image as dob'.
|
|
|
210 |
' LEFT JOIN del_utilisateur du ON CAST(du.id_utilisateur AS CHAR) = CAST(dob.ce_utilisateur AS CHAR)'.
|
|
|
211 |
' WHERE dob.id_observation = %d -- %s',
|
|
|
212 |
$obs_fields, $image_fields, $annuaire_fields, $idobs, __FILE__ . ':' . __LINE__));
|
|
|
213 |
}
|
|
|
214 |
|
761 |
gduche |
215 |
|
1385 |
raphael |
216 |
// Charger les images et leurs votes associés
|
|
|
217 |
static function chargerVotesImage($db, $images, $protocole = NULL) {
|
|
|
218 |
if(!$images) return NULL;
|
|
|
219 |
|
|
|
220 |
$select = array('votes' =>
|
|
|
221 |
array('id_vote', 'ce_image', 'ce_protocole', 'ce_utilisateur', 'valeur', 'date', /* del_image_vote */),
|
|
|
222 |
'protocole' =>
|
|
|
223 |
array('id_protocole', 'intitule', 'descriptif', 'tag' /* del_image_protocole */ ));
|
1490 |
raphael |
224 |
$vote_fields = DelTk::sqlFieldsToAlias(self::$mappings['votes'], $select['votes'], 'v'); // "v": cf alias dans la requête
|
|
|
225 |
$proto_fields = DelTk::sqlFieldsToAlias(self::$mappings['protocoles'], $select['protocole'], 'p');
|
1385 |
raphael |
226 |
|
|
|
227 |
$where = array();
|
1584 |
mathias |
228 |
$idsImages = array_values(array_map(create_function('$a', 'return $a["id_image"];'), $images));
|
1385 |
raphael |
229 |
$where[] = sprintf('v.ce_image IN (%s)',
|
1584 |
mathias |
230 |
implode(',', $idsImages));
|
1385 |
raphael |
231 |
|
|
|
232 |
if ($protocole) {
|
|
|
233 |
$where[] = "v.ce_protocole = $protocole";
|
761 |
gduche |
234 |
}
|
1385 |
raphael |
235 |
|
1584 |
mathias |
236 |
// pour une fois, on conserve l'ordre en ne luttant pas contre les IDs reçus
|
|
|
237 |
$ordreDesIdsRecus = sprintf('FIELD(v.ce_image, %s)', implode(',', $idsImages));
|
|
|
238 |
$req = sprintf(
|
1385 |
raphael |
239 |
'SELECT %s, %s FROM del_image_vote AS v'.
|
|
|
240 |
' INNER JOIN del_image_protocole p ON v.ce_protocole = p.id_protocole'.
|
1584 |
mathias |
241 |
' WHERE %s'.
|
|
|
242 |
' ORDER BY %s -- %s',
|
|
|
243 |
$vote_fields,
|
|
|
244 |
$proto_fields,
|
|
|
245 |
($where ? implode(' AND ', $where) : 1),
|
|
|
246 |
$ordreDesIdsRecus,
|
|
|
247 |
__FILE__ . ':' . __LINE__);
|
|
|
248 |
|
|
|
249 |
//echo "REQUETE: $req"; exit;
|
|
|
250 |
|
|
|
251 |
return $db->recupererTous($req);
|
761 |
gduche |
252 |
}
|
|
|
253 |
|
|
|
254 |
/**
|
1385 |
raphael |
255 |
* Formater une observation depuis une ligne liaison
|
|
|
256 |
* @param $liaison liaison issue de la recherche
|
|
|
257 |
* @return $observation l'observation mise en forme
|
|
|
258 |
* Exemple: vote, au sortir de MySQL contient:
|
|
|
259 |
* 'xxx' => 'blah', 'descriptif' => 'foo', 'valeur' => 3
|
|
|
260 |
* et le tableau de mapping contient:
|
|
|
261 |
* descriptif = protocole.descriptif, valeur = vote
|
|
|
262 |
* Alors $retour[ contient:
|
|
|
263 |
*
|
761 |
gduche |
264 |
* */
|
1385 |
raphael |
265 |
static function mapVotesToImages($votes, &$images) {
|
|
|
266 |
if(!$votes) return;
|
|
|
267 |
|
|
|
268 |
// pour chaque vote
|
|
|
269 |
foreach ($votes as $vote) {
|
|
|
270 |
$imgid = $vote['image.id'];
|
|
|
271 |
$protoid = $vote['protocole.id'];
|
761 |
gduche |
272 |
|
1385 |
raphael |
273 |
// un vote sans image associée ? est-ce possible ?
|
|
|
274 |
// if(!isset($images[$imgid])) continue;
|
|
|
275 |
|
|
|
276 |
if(!array_key_exists('protocoles_votes', $images[$imgid]) ||
|
|
|
277 |
!array_key_exists($protoid, $images[$imgid]['protocoles_votes'])) {
|
|
|
278 |
// extrait les champs spécifique au protocole (le LEFT JOIN de chargerVotesImage les ramène en doublons
|
|
|
279 |
$protocole = array_intersect_key($vote, array_flip(self::$mappings['protocoles']));
|
|
|
280 |
$images[$imgid]['protocoles_votes'][$protoid] = $protocole;
|
761 |
gduche |
281 |
}
|
|
|
282 |
|
1385 |
raphael |
283 |
$vote = array_intersect_key($vote, array_flip(self::$mappings['votes']));
|
|
|
284 |
$images[$imgid]['protocoles_votes'][$protoid]['votes'][$vote['vote.id']] = $vote;
|
761 |
gduche |
285 |
}
|
|
|
286 |
}
|
1361 |
raphael |
287 |
|
1385 |
raphael |
288 |
// Charger les commentaires et leurs votes associés
|
|
|
289 |
static function chargerCommentaires($db, &$observation) {
|
|
|
290 |
$select = array('votes' =>
|
|
|
291 |
array('id_vote', 'ce_proposition', 'ce_utilisateur', 'valeur', 'date' /* del_commentaire_vote */),
|
|
|
292 |
'commentaires' =>
|
|
|
293 |
array('id_commentaire', 'ce_observation', 'ce_proposition', 'ce_commentaire_parent', 'texte',
|
|
|
294 |
'ce_utilisateur', 'utilisateur_prenom', 'utilisateur_nom', 'utilisateur_courriel',
|
|
|
295 |
'nom_sel', 'nom_sel_nn', 'nom_ret', 'nom_ret_nn', 'nt', 'famille', 'nom_referentiel', 'date',
|
|
|
296 |
'proposition_initiale'));
|
1490 |
raphael |
297 |
$vote_fields = DelTk::sqlFieldsToAlias(self::$mappings['votes'], $select['votes'], 'cv'); // "v": cf alias dans la requête
|
|
|
298 |
$comment_fields = DelTk::sqlFieldsToAlias(self::$mappings['commentaires'], $select['commentaires'], 'dc');
|
1385 |
raphael |
299 |
|
|
|
300 |
$commentaires = $db->recupererTous(sprintf(
|
|
|
301 |
"SELECT %s, %s FROM del_commentaire as dc".
|
|
|
302 |
// LEFT JOIN optionnel, mais explicatif:
|
|
|
303 |
// on ne récupère des infos de vote que pour les commentaires comportant un
|
|
|
304 |
// nom_sel "valide"
|
|
|
305 |
" LEFT JOIN del_commentaire_vote cv".
|
|
|
306 |
" ON cv.ce_proposition = dc.id_commentaire AND dc.nom_sel != '' AND dc.nom_sel IS NOT NULL".
|
|
|
307 |
" WHERE ce_observation = %d -- %s",
|
|
|
308 |
$comment_fields, $vote_fields,
|
|
|
309 |
$observation['id_observation'],
|
1358 |
raphael |
310 |
__FILE__ . ':' . __LINE__));
|
841 |
aurelien |
311 |
|
1358 |
raphael |
312 |
if(!$commentaires) return;
|
|
|
313 |
|
1385 |
raphael |
314 |
// les commentaires réunifiées et dont les votes sont mergés
|
|
|
315 |
$ret = array();
|
|
|
316 |
foreach ($commentaires as $comment) {
|
|
|
317 |
$commentid = $comment['id_commentaire'];
|
|
|
318 |
$voteid = $comment['vote.id'];
|
|
|
319 |
|
|
|
320 |
if(!array_key_exists($commentid, $ret)) {
|
|
|
321 |
$comment_extract = array_intersect_key($comment, array_flip(self::$mappings['commentaires']));
|
|
|
322 |
// cas particulier: conflit d'aliases avec del_commentaire_vote
|
|
|
323 |
$comment_extract['auteur.id'] = $comment_extract['__auteur_com'];
|
|
|
324 |
$comment_extract['date'] = $comment_extract['__date_com'];
|
|
|
325 |
unset($comment_extract['__auteur_com'], $comment_extract['__date_com']);
|
|
|
326 |
|
|
|
327 |
// toujours un éléments "votes", quand bien même il n'y en aurait pas
|
|
|
328 |
$comment_extract['votes'] = array();
|
|
|
329 |
$ret[$commentid] = $comment_extract;
|
787 |
delphine |
330 |
}
|
1385 |
raphael |
331 |
|
|
|
332 |
if(!$comment['nom_sel'] || ! $voteid) continue;
|
|
|
333 |
$vote = array_intersect_key($comment, array_flip(self::$mappings['votes']));
|
|
|
334 |
$ret[$commentid]['votes'][$voteid] = $vote;
|
787 |
delphine |
335 |
}
|
1385 |
raphael |
336 |
$observation['commentaires'] = $ret;
|
761 |
gduche |
337 |
}
|
|
|
338 |
|
1490 |
raphael |
339 |
// cf ListeObservation::reformateObservation() et ListeImages2::reformateImagesDoubleIndex()
|
|
|
340 |
// (trop de variétés de formatage, à unifier côté client pour unifier côté backend ...)
|
|
|
341 |
static function reformateObservationSimpleIndex($obs, $url_pattern = '') {
|
|
|
342 |
// XXX: cf Observation.php::consulter(), nous pourriouns ici
|
|
|
343 |
// conserver les valeurs vides (pour les phptests notamment, ou non)
|
|
|
344 |
$obs = array_map('array_filter', $obs);
|
|
|
345 |
$obs_merged = array();
|
|
|
346 |
foreach($obs as $o) {
|
|
|
347 |
$id = $o['id_observation'];
|
|
|
348 |
$image = array_intersect_key($o, array_flip(array('id_image', 'date', 'hauteur' , 'largeur', 'nom_original')));
|
|
|
349 |
$image['binaire.href'] = sprintf($url_pattern, $image['id_image']);
|
|
|
350 |
unset($o['id_image'], $o['date'], $o['hauteur'], $o['largeur'], $o['nom_original']);
|
|
|
351 |
if(!isset($obs_merged[$id])) $obs_merged[$id] = $o;
|
|
|
352 |
$obs_merged[$id]['images'][$image['id_image']] = $image;
|
|
|
353 |
}
|
|
|
354 |
return $obs_merged;
|
|
|
355 |
}
|
1385 |
raphael |
356 |
|
|
|
357 |
}
|