2214 |
delphine |
1 |
<?php
|
|
|
2 |
// declare(encoding='UTF-8');
|
|
|
3 |
/**
|
|
|
4 |
* Web service retournant toutes les infos d'une observation donnée :
|
|
|
5 |
* images, votes sur image et protocole, commentaires, votes sur commentaires, ...
|
|
|
6 |
*
|
|
|
7 |
* @category DEL
|
|
|
8 |
* @package Services
|
|
|
9 |
* @subpackage Observations
|
|
|
10 |
* @version 0.1
|
|
|
11 |
* @author Mathias CHOUET <mathias@tela-botanica.org>
|
|
|
12 |
* @author Jean-Pascal MILCENT <jpm@tela-botanica.org>
|
|
|
13 |
* @author Aurelien PERONNET <aurelien@tela-botanica.org>
|
|
|
14 |
* @license GPL v3 <http://www.gnu.org/licenses/gpl.txt>
|
|
|
15 |
* @license CECILL v2 <http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt>
|
|
|
16 |
* @copyright 1999-2014 Tela Botanica <accueil@tela-botanica.org>
|
|
|
17 |
*/
|
|
|
18 |
class ObservationDetails {
|
|
|
19 |
|
|
|
20 |
private $conteneur;
|
|
|
21 |
private $bdd;
|
|
|
22 |
private $sql;
|
|
|
23 |
private $idObs;
|
|
|
24 |
private $protocole;
|
|
|
25 |
private $observation;
|
|
|
26 |
private $mappings = array();
|
|
|
27 |
|
|
|
28 |
public function __construct(Conteneur $conteneur) {
|
|
|
29 |
$this->conteneur = $conteneur;
|
|
|
30 |
$this->bdd = $this->conteneur->getBdd();
|
|
|
31 |
$this->sql = $this->conteneur->getSql();
|
|
|
32 |
|
2217 |
delphine |
33 |
$this->mappings['observations'] = $this->conteneur->getParametreTableau('observations.tepik');
|
2214 |
delphine |
34 |
$this->mappings['images'] = $this->conteneur->getParametreTableau('images.mapping');
|
2217 |
delphine |
35 |
$this->mappings['votes'] = $this->conteneur->getParametreTableau('votes.tepik');
|
|
|
36 |
$this->mappings['commentaires'] = $this->conteneur->getParametreTableau('commentaires.tepik');
|
2214 |
delphine |
37 |
// les deux alias suivants sont particuliers afin d'éviter un conflit d'alias lors des jointures avec del_commentaire_vote
|
|
|
38 |
$this->mappings['commentaires']['ce_utilisateur'] = '__auteur_com';
|
|
|
39 |
$this->mappings['commentaires']['date'] = '__date_com';
|
|
|
40 |
}
|
|
|
41 |
|
|
|
42 |
public function consulter($ressources, $parametres) {
|
|
|
43 |
$this->idObs = $ressources[0];
|
|
|
44 |
$this->protocole = isset($parametres['protocole']) && is_numeric($parametres['protocole']) ? intval($parametres['protocole']) : null;
|
|
|
45 |
|
|
|
46 |
$infos = $this->getInfosObservationEtImages();
|
|
|
47 |
if (! $infos) {
|
|
|
48 |
$message = "Aucune observation ne possède d'identifiant '{$this->idObs}'.";
|
|
|
49 |
throw new Exception($message, RestServeur::HTTP_CODE_RESSOURCE_INTROUVABLE);
|
|
|
50 |
}
|
|
|
51 |
$this->formaterObservation($infos);
|
|
|
52 |
|
|
|
53 |
// 3) charge les données de votes et protocoles associés aux images
|
|
|
54 |
|
|
|
55 |
if ($this->observation['images']) {
|
|
|
56 |
$idsImages = array_keys($this->observation['images']);
|
|
|
57 |
$votes = $this->sql->getVotesDesImages($idsImages, $this->protocole);
|
|
|
58 |
$this->sql->ajouterInfosVotesProtocoles($votes, $this->observation['images']);
|
|
|
59 |
}
|
|
|
60 |
|
|
|
61 |
// 4) charge les commentaires et les votes associés -> modifie/créé $observation['commentaires']
|
|
|
62 |
$commentaires = $this->getCommentaires();
|
|
|
63 |
$this->ajouterCommentaires($commentaires);
|
|
|
64 |
|
|
|
65 |
// désindexe le tableau (tel qu'apparement attendu par les applis), c'est une exception
|
|
|
66 |
// TODO : corriger l'appli cliente pour utiliser les index puis supprimer cette ligne
|
|
|
67 |
$this->observation['images'] = array_values($this->observation['images']);
|
|
|
68 |
|
|
|
69 |
// autre élément de post-processing: le ce_utilisateur de l'observation non-numeric...
|
|
|
70 |
$this->nettoyerAuteur();
|
|
|
71 |
|
|
|
72 |
// Mettre en forme le résultat et l'envoyer pour affichage
|
|
|
73 |
$resultat = new ResultatService();
|
|
|
74 |
$resultat->corps = $this->observation;
|
|
|
75 |
return $resultat;
|
|
|
76 |
}
|
|
|
77 |
|
|
|
78 |
private function getInfosObservationEtImages() {
|
|
|
79 |
$obsChamps = $this->sql->getAliasDesChamps($this->mappings['observations'], null, 'do');
|
|
|
80 |
$imgChamps = $this->sql->getAliasDesChamps($this->mappings['images'], null, 'di');
|
|
|
81 |
|
|
|
82 |
// rétrocompatibilité champs de l'annuaire après suppression de del_utilisateur
|
|
|
83 |
$annuaireChamps = implode(', ', array(
|
|
|
84 |
"do.prenom_utilisateur AS `auteur.prenom`",
|
|
|
85 |
"do.nom_utilisateur AS `auteur.nom`"));
|
|
|
86 |
|
|
|
87 |
$requete = "SELECT $obsChamps, $imgChamps, $annuaireChamps ".
|
|
|
88 |
"FROM del_observation AS do ".
|
|
|
89 |
" LEFT JOIN del_image AS di ON (do.id_observation = di.ce_observation) ".
|
|
|
90 |
"WHERE do.id_observation = {$this->idObs} ".
|
|
|
91 |
'-- '.__FILE__.':'.__LINE__;
|
|
|
92 |
//Debug::printr($requete);
|
|
|
93 |
return $this->bdd->recupererTous($requete);
|
|
|
94 |
}
|
|
|
95 |
|
|
|
96 |
private function formaterObservation($infos) {
|
|
|
97 |
$infos = array_filter($infos);
|
|
|
98 |
foreach ($infos as $info) {
|
|
|
99 |
$image = array_intersect_key($info, array_flip(array('id_image', 'date', 'hauteur' , 'largeur', 'nom_original')));
|
|
|
100 |
$urlImgTpl = $this->conteneur->getParametre('cel_img_url_tpl');
|
|
|
101 |
$imageFormat = 'XL';
|
|
|
102 |
$image['binaire.href'] = sprintf($urlImgTpl, $image['id_image'], $imageFormat);
|
|
|
103 |
unset($info['id_image'], $info['date'], $info['hauteur'], $info['largeur'], $info['nom_original']);
|
|
|
104 |
|
|
|
105 |
// ATTENTION : la requête retourne de nombreuses lignes avec les mêmes données (test de l'existence nécessaire)
|
|
|
106 |
if (!isset($this->observation)) {
|
|
|
107 |
$this->observation = $info;
|
|
|
108 |
$this->observation['images'] = array();
|
|
|
109 |
}
|
|
|
110 |
if (!isset($this->observation['images'][$image['id_image']])) {
|
|
|
111 |
$this->observation['images'][$image['id_image']] = $image;
|
|
|
112 |
}
|
|
|
113 |
}
|
|
|
114 |
}
|
|
|
115 |
|
|
|
116 |
private function getCommentaires() {
|
|
|
117 |
$selectVotes = array('id_vote', 'ce_proposition', 'ce_utilisateur', 'valeur', 'date');
|
|
|
118 |
$selectCommentaires = array('id_commentaire', 'ce_observation', 'ce_proposition', 'ce_commentaire_parent', 'texte',
|
|
|
119 |
'ce_utilisateur', 'utilisateur_prenom', 'utilisateur_nom',
|
|
|
120 |
'nom_sel', 'nom_sel_nn', 'nom_ret', 'nom_ret_nn', 'nt', 'famille', 'nom_referentiel', 'date',
|
|
|
121 |
'proposition_initiale','proposition_retenue');
|
|
|
122 |
|
|
|
123 |
$voteChamps = $this->sql->getAliasDesChamps($this->mappings['votes'], $selectVotes, 'cv');
|
|
|
124 |
$commentaireChamps = $this->sql->getAliasDesChamps($this->mappings['commentaires'], $selectCommentaires, 'dc');
|
|
|
125 |
|
|
|
126 |
// LEFT JOIN optionnel, mais explicatif : récupèration des infos de vote que pour les commentaires comportant un nom_sel "valide"
|
|
|
127 |
$requete = "SELECT $commentaireChamps, $voteChamps ".
|
|
|
128 |
"FROM del_commentaire AS dc ".
|
|
|
129 |
" LEFT JOIN del_commentaire_vote AS cv ".
|
|
|
130 |
" ON (cv.ce_proposition = dc.id_commentaire AND dc.nom_sel != '' AND dc.nom_sel IS NOT NULL) ".
|
|
|
131 |
"WHERE ce_observation = {$this->idObs} ".
|
|
|
132 |
'-- '.__FILE__.':'.__LINE__;
|
|
|
133 |
|
|
|
134 |
$commentaires = $this->bdd->recupererTous($requete);
|
|
|
135 |
return $commentaires;
|
|
|
136 |
|
|
|
137 |
}
|
|
|
138 |
|
|
|
139 |
private function ajouterCommentaires($commentaires) {
|
|
|
140 |
if (!$commentaires) return;
|
|
|
141 |
|
|
|
142 |
$ret = array();
|
|
|
143 |
foreach ($commentaires as $comment) {
|
|
|
144 |
$commentId = $comment['id_commentaire'];
|
|
|
145 |
$voteId = $comment['vote.id'];
|
|
|
146 |
|
|
|
147 |
if (!array_key_exists($commentId, $ret)) {
|
|
|
148 |
$comment_extract = array_intersect_key($comment, array_flip($this->mappings['commentaires']));
|
|
|
149 |
|
|
|
150 |
// cas particulier: conflit d'aliases avec del_commentaire_vote
|
|
|
151 |
$comment_extract['auteur.id'] = $comment_extract['__auteur_com'];
|
|
|
152 |
$comment_extract['date'] = $comment_extract['__date_com'];
|
|
|
153 |
unset($comment_extract['__auteur_com'], $comment_extract['__date_com']);
|
|
|
154 |
|
|
|
155 |
// toujours un éléments "votes", quand bien même il n'y en aurait pas
|
|
|
156 |
$comment_extract['votes'] = array();
|
|
|
157 |
$ret[$commentId] = $comment_extract;
|
|
|
158 |
}
|
|
|
159 |
|
|
|
160 |
if (!$comment['nom_sel'] || ! $voteId) continue;
|
|
|
161 |
$vote = array_intersect_key($comment, array_flip($this->mappings['votes']));
|
|
|
162 |
$ret[$commentId]['votes'][$voteId] = $vote;
|
|
|
163 |
}
|
|
|
164 |
$this->observation['commentaires'] = $ret;
|
|
|
165 |
}
|
|
|
166 |
|
|
|
167 |
private function nettoyerAuteur() {
|
|
|
168 |
if (!isset($this->observation['auteur.id']) || !is_numeric($this->observation['auteur.id'])) {
|
|
|
169 |
$this->observation['auteur.id'] = '0';
|
|
|
170 |
}
|
|
|
171 |
if (!isset($this->observation['auteur.nom'])) {
|
|
|
172 |
$this->observation['auteur.nom'] = '[inconnu]';
|
|
|
173 |
}
|
|
|
174 |
}
|
|
|
175 |
|
|
|
176 |
|
|
|
177 |
}
|