500 |
aurelien |
1 |
package org.tela_botanica.del.client.utils;
|
|
|
2 |
|
|
|
3 |
import java.util.ArrayList;
|
|
|
4 |
import java.util.Date;
|
|
|
5 |
import java.util.HashMap;
|
876 |
gduche |
6 |
import java.util.Iterator;
|
500 |
aurelien |
7 |
import java.util.List;
|
|
|
8 |
|
941 |
benjamin |
9 |
import org.tela_botanica.del.client.cache.CacheClient;
|
1469 |
mathias |
10 |
import org.tela_botanica.del.client.config.Config;
|
876 |
gduche |
11 |
import org.tela_botanica.del.client.modeles.Commentaire;
|
690 |
gduche |
12 |
import org.tela_botanica.del.client.modeles.Contributeur;
|
500 |
aurelien |
13 |
import org.tela_botanica.del.client.modeles.Image;
|
941 |
benjamin |
14 |
import org.tela_botanica.del.client.modeles.ImageServiceResultat;
|
846 |
aurelien |
15 |
import org.tela_botanica.del.client.modeles.InterventionForum;
|
1162 |
aurelien |
16 |
import org.tela_botanica.del.client.modeles.MotCle;
|
500 |
aurelien |
17 |
import org.tela_botanica.del.client.modeles.Observation;
|
941 |
benjamin |
18 |
import org.tela_botanica.del.client.modeles.ObservationServiceResultat;
|
500 |
aurelien |
19 |
import org.tela_botanica.del.client.modeles.PropositionDetermination;
|
941 |
benjamin |
20 |
import org.tela_botanica.del.client.modeles.Protocole;
|
|
|
21 |
import org.tela_botanica.del.client.modeles.ProtocoleServiceResultat;
|
516 |
aurelien |
22 |
import org.tela_botanica.del.client.modeles.Utilisateur;
|
846 |
aurelien |
23 |
import org.tela_botanica.del.client.modeles.VoteDetermination;
|
500 |
aurelien |
24 |
import org.tela_botanica.del.client.modeles.VoteProtocole;
|
|
|
25 |
|
1667 |
jpm |
26 |
import com.google.gwt.core.shared.GWT;
|
500 |
aurelien |
27 |
import com.google.gwt.i18n.client.DateTimeFormat;
|
941 |
benjamin |
28 |
import com.google.gwt.json.client.JSONArray;
|
500 |
aurelien |
29 |
import com.google.gwt.json.client.JSONObject;
|
900 |
aurelien |
30 |
import com.google.gwt.json.client.JSONParser;
|
516 |
aurelien |
31 |
import com.google.gwt.json.client.JSONValue;
|
1104 |
gduche |
32 |
import com.google.gwt.user.client.Window;
|
500 |
aurelien |
33 |
|
941 |
benjamin |
34 |
/**
|
|
|
35 |
* Centralisation des methodes de parsing du code JSON retourné par les
|
|
|
36 |
* webservices
|
|
|
37 |
*
|
|
|
38 |
* @author LIENS
|
|
|
39 |
*
|
|
|
40 |
*/
|
500 |
aurelien |
41 |
public class UtilitairesServiceResultat {
|
926 |
benjamin |
42 |
|
941 |
benjamin |
43 |
/**
|
|
|
44 |
* Recupere un objet Image à partir du JSON
|
|
|
45 |
*
|
|
|
46 |
* @param imageJson
|
|
|
47 |
* @return
|
|
|
48 |
*/
|
926 |
benjamin |
49 |
public static Image parserImageJSON(JSONObject imageJson) {
|
|
|
50 |
|
500 |
aurelien |
51 |
Image image = new Image();
|
1469 |
mathias |
52 |
Config config = new Config();
|
1544 |
jpm |
53 |
String urlImages = config.getUrl("images");
|
763 |
aurelien |
54 |
String idImage = imageJson.get("id_image").isString().stringValue();
|
500 |
aurelien |
55 |
image.setIdImage(idImage);
|
1469 |
mathias |
56 |
image.setUrlFormat(urlImages + getIdAvecPadding(idImage) + "%s%.jpg");
|
|
|
57 |
image.setUrl(urlImages + getIdAvecPadding(idImage) + "CRS.jpg");
|
|
|
58 |
image.setMiniature(urlImages + getIdAvecPadding(idImage) + "XS.jpg");
|
1014 |
aurelien |
59 |
image.setMotsClefs(parserMotsCles(UtilitairesServiceResultat.getValeurOuVide(imageJson, "mots_cles_texte")));
|
926 |
benjamin |
60 |
|
500 |
aurelien |
61 |
return image;
|
|
|
62 |
}
|
926 |
benjamin |
63 |
|
941 |
benjamin |
64 |
/**
|
|
|
65 |
* Recupere un objet Observation à partir du JSON
|
|
|
66 |
*
|
|
|
67 |
* @param imageJson
|
|
|
68 |
* @return
|
|
|
69 |
*/
|
500 |
aurelien |
70 |
public static Observation parserObservationJSON(JSONObject observationJson) {
|
926 |
benjamin |
71 |
|
500 |
aurelien |
72 |
Observation observation = new Observation();
|
926 |
benjamin |
73 |
observation.setAuteur(getValeurOuVide(observationJson, "auteur.prenom") + " " + getValeurOuVide(observationJson, "auteur.nom"));
|
|
|
74 |
observation.setNomAuteur(getValeurOuVide(observationJson, "auteur.nom"));
|
1053 |
gduche |
75 |
observation.setPrenomAuteur(getValeurOuVide(observationJson, "auteur.prenom"));
|
926 |
benjamin |
76 |
observation.setIdAuteur(getValeurOuVide(observationJson, "auteur.id"));
|
|
|
77 |
// TODO: renvoyer le courriel de l'auteur dans les obs
|
1667 |
jpm |
78 |
observation.setCourrielAuteur(getValeurOuVide(observationJson, "auteur.courriel"));
|
1774 |
aurelien |
79 |
observation.setDateTransmission(getValeurOuVide(observationJson, "date_transmission"));
|
763 |
aurelien |
80 |
observation.setDateReleve(getValeurOuVide(observationJson, "date_observation"));
|
|
|
81 |
observation.setFamille(getValeurOuVide(observationJson, "determination.famille"));
|
846 |
aurelien |
82 |
observation.setId(getValeurOuVide(observationJson, "id_observation"));
|
|
|
83 |
observation.setIdLocalite(getValeurOuVide(observationJson, "id_zone_geo"));
|
|
|
84 |
observation.setLocalite(getValeurOuVide(observationJson, "zone_geo"));
|
1062 |
benjamin |
85 |
|
954 |
aurelien |
86 |
String nomRetenu = getValeurOuVide(observationJson, "determination.ns");
|
846 |
aurelien |
87 |
observation.setNomRetenu(getValeurOuVide(observationJson, "determination.ns"));
|
|
|
88 |
observation.setMilieu(getValeurOuVide(observationJson, "milieu"));
|
|
|
89 |
observation.setLieuDit(getValeurOuVide(observationJson, "lieudit"));
|
1026 |
gduche |
90 |
observation.setStation(getValeurOuVide(observationJson, "station"));
|
|
|
91 |
observation.setCommentaire(getValeurOuVide(observationJson, "commentaire"));
|
846 |
aurelien |
92 |
observation.setNumNomenclatural(getValeurOuVide(observationJson, "determination.nn"));
|
1367 |
aurelien |
93 |
observation.setReferentiel(getValeurOuVide(observationJson, "determination.referentiel"));
|
1934 |
aurelien |
94 |
String nbCom = getValeurOuVide(observationJson, "nb_commentaires");
|
|
|
95 |
nbCom = nbCom.equals("") ? "0" : nbCom;
|
|
|
96 |
observation.setNbCommentaires(nbCom);
|
1014 |
aurelien |
97 |
observation.setMotsClefs(parserMotsCles(UtilitairesServiceResultat.getValeurOuVide(observationJson, "mots_cles_texte")));
|
846 |
aurelien |
98 |
JSONValue propositions = observationJson.get("commentaires");
|
1062 |
benjamin |
99 |
|
954 |
aurelien |
100 |
boolean creerPropositionAPartirObs = true;
|
1209 |
gduche |
101 |
boolean propositionInitialeExiste = false;
|
|
|
102 |
PropositionDetermination propositionPotentiellementInitiale = null;
|
926 |
benjamin |
103 |
if (propositions != null && propositions.isObject() != null) {
|
939 |
benjamin |
104 |
List<InterventionForum> interventions = parserInterventions(propositions.isObject());
|
1209 |
gduche |
105 |
|
939 |
benjamin |
106 |
for (InterventionForum interventionForum : interventions) {
|
1062 |
benjamin |
107 |
interventionForum.setObservation(observation);
|
|
|
108 |
// Si une proposition avec le même nom retenu que l'observation
|
|
|
109 |
// est déjà présente,
|
|
|
110 |
// alors il n'est pas nécessaire de créer la proposition
|
|
|
111 |
// "factice"
|
|
|
112 |
if (interventionForum instanceof PropositionDetermination) {
|
|
|
113 |
PropositionDetermination proposition = (PropositionDetermination) interventionForum;
|
1526 |
mathias |
114 |
// Si la proposition correspond au nom retenu (non vide) en cours
|
1062 |
benjamin |
115 |
if (!nomRetenu.equals("") && proposition.getEspece().equals(nomRetenu)) {
|
954 |
aurelien |
116 |
creerPropositionAPartirObs = false;
|
1526 |
mathias |
117 |
//proposition.setDate(parserDateObservation(observation.getDateReleve()));
|
954 |
aurelien |
118 |
}
|
1209 |
gduche |
119 |
|
|
|
120 |
if (proposition.getEspece().equals(observation.getNomRetenu()) && proposition.getContributeur().getNomComplet().equals(observation.getAuteur())) {
|
|
|
121 |
propositionPotentiellementInitiale = proposition;
|
|
|
122 |
}
|
|
|
123 |
|
|
|
124 |
if (proposition.estPropositionInitiale()) {
|
|
|
125 |
propositionInitialeExiste = true;
|
|
|
126 |
}
|
1062 |
benjamin |
127 |
}
|
939 |
benjamin |
128 |
}
|
876 |
gduche |
129 |
observation.setInterventionsForum(interventions);
|
846 |
aurelien |
130 |
}
|
1209 |
gduche |
131 |
|
|
|
132 |
if (!propositionInitialeExiste && propositionPotentiellementInitiale != null) {
|
|
|
133 |
propositionPotentiellementInitiale.setEstPropositionInitiale(true);
|
|
|
134 |
}
|
|
|
135 |
|
1062 |
benjamin |
136 |
if (creerPropositionAPartirObs) {
|
|
|
137 |
// Si elle est nécessaire, la proposition factice est ajoutée au
|
|
|
138 |
// début
|
1209 |
gduche |
139 |
observation.getInterventionsForum().add(0, creerPropositionDeterminationAPartirObservation(observation, propositionInitialeExiste));
|
954 |
aurelien |
140 |
}
|
500 |
aurelien |
141 |
return observation;
|
1209 |
gduche |
142 |
|
500 |
aurelien |
143 |
}
|
1209 |
gduche |
144 |
|
926 |
benjamin |
145 |
|
941 |
benjamin |
146 |
/**
|
|
|
147 |
* Créée une proposition de determination à partir d'une observation
|
|
|
148 |
*
|
|
|
149 |
* @param observation
|
|
|
150 |
* @return
|
|
|
151 |
*/
|
1209 |
gduche |
152 |
private static PropositionDetermination creerPropositionDeterminationAPartirObservation(Observation observation, boolean propositionInitialeExiste) {
|
941 |
benjamin |
153 |
|
|
|
154 |
String utilisateurNom = observation.getNomAuteur();
|
|
|
155 |
String utilisateurPrenom = observation.getPrenomAuteur();
|
1062 |
benjamin |
156 |
|
941 |
benjamin |
157 |
String utilisateurCourriel = observation.getCourrielAuteur();
|
|
|
158 |
String utilisateurId = observation.getIdAuteur();
|
|
|
159 |
PropositionDetermination propositionDetermination = new PropositionDetermination(observation);
|
|
|
160 |
Contributeur contributeur = new Contributeur(utilisateurId, utilisateurNom, utilisateurPrenom, utilisateurCourriel);
|
|
|
161 |
propositionDetermination.setContributeur(contributeur);
|
1527 |
mathias |
162 |
java.util.Date datePropDeter = parserDateObservation(observation.getDateTransmission());
|
941 |
benjamin |
163 |
propositionDetermination.setDate(datePropDeter);
|
|
|
164 |
propositionDetermination.setEspece(observation.getNomRetenu());
|
1209 |
gduche |
165 |
if (!propositionInitialeExiste) {
|
|
|
166 |
propositionDetermination.setEstPropositionInitiale(true);
|
|
|
167 |
}
|
|
|
168 |
|
941 |
benjamin |
169 |
|
|
|
170 |
return propositionDetermination;
|
|
|
171 |
}
|
|
|
172 |
|
|
|
173 |
/**
|
|
|
174 |
* Recupere une liste de commentaires à partir du JSON
|
|
|
175 |
*
|
|
|
176 |
* @param imageJson
|
|
|
177 |
* @return
|
|
|
178 |
*/
|
939 |
benjamin |
179 |
public static List<Commentaire> parserCommentaires(JSONObject commentaires) {
|
|
|
180 |
List<InterventionForum> interventionForums = parserInterventions(commentaires);
|
926 |
benjamin |
181 |
List<Commentaire> commentairesListe = new ArrayList<Commentaire>();
|
|
|
182 |
for (InterventionForum interventionForum : interventionForums) {
|
|
|
183 |
if (interventionForum instanceof Commentaire) {
|
|
|
184 |
commentairesListe.add((Commentaire) interventionForum);
|
|
|
185 |
}
|
|
|
186 |
}
|
|
|
187 |
return commentairesListe;
|
|
|
188 |
|
|
|
189 |
}
|
|
|
190 |
|
941 |
benjamin |
191 |
/**
|
|
|
192 |
* Recupere une liste d'interventions à partir du JSON
|
|
|
193 |
*
|
|
|
194 |
* @param imageJson
|
|
|
195 |
* @return
|
|
|
196 |
*/
|
939 |
benjamin |
197 |
public static List<InterventionForum> parserInterventions(JSONObject interventions) {
|
889 |
gduche |
198 |
HashMap<String, InterventionForum> interventionsNonTypees = new HashMap<String, InterventionForum>();
|
926 |
benjamin |
199 |
|
|
|
200 |
List<InterventionForum> retour = new ArrayList<InterventionForum>();
|
939 |
benjamin |
201 |
|
926 |
benjamin |
202 |
// parcourir les interventions et en faire un tableau
|
939 |
benjamin |
203 |
if (interventions == null) {
|
926 |
benjamin |
204 |
return retour;
|
|
|
205 |
}
|
888 |
gduche |
206 |
Iterator<String> itInterventions = interventions.keySet().iterator();
|
|
|
207 |
while (itInterventions.hasNext()) {
|
|
|
208 |
JSONObject jsonIntervention = interventions.get(itInterventions.next()).isObject();
|
|
|
209 |
String nomSel = getValeurOuVide(jsonIntervention, "nom_sel");
|
926 |
benjamin |
210 |
|
888 |
gduche |
211 |
String id = getValeurOuVide(jsonIntervention, "id_commentaire");
|
981 |
aurelien |
212 |
String idParent = getValeurOuVide(jsonIntervention, "id_parent");
|
888 |
gduche |
213 |
String texte = getValeurOuVide(jsonIntervention, "texte");
|
926 |
benjamin |
214 |
|
977 |
aurelien |
215 |
String idUtilisateur = getValeurOuVide(jsonIntervention, "auteur.id");
|
952 |
aurelien |
216 |
String nom = getValeurOuVide(jsonIntervention, "auteur.nom");
|
|
|
217 |
String prenom = getValeurOuVide(jsonIntervention, "auteur.prenom");
|
|
|
218 |
String courriel = getValeurOuVide(jsonIntervention, "auteur.courriel");
|
888 |
gduche |
219 |
Contributeur contributeur = new Contributeur(idUtilisateur, nom, prenom, courriel);
|
1209 |
gduche |
220 |
|
965 |
aurelien |
221 |
Date date = parserDateObservation(getValeurOuVide(jsonIntervention, "date"));
|
926 |
benjamin |
222 |
|
888 |
gduche |
223 |
if (!nomSel.equals("")) {
|
|
|
224 |
String nom_sel = getValeurOuVide(jsonIntervention, "nom_sel");
|
|
|
225 |
String nom_sel_nn = getValeurOuVide(jsonIntervention, "nom_sel_nn");
|
|
|
226 |
String nom_ret = getValeurOuVide(jsonIntervention, "nom_ret");
|
|
|
227 |
String nom_ret_nn = getValeurOuVide(jsonIntervention, "nom_ret_nn");
|
|
|
228 |
String famille = getValeurOuVide(jsonIntervention, "famille");
|
|
|
229 |
String nom_referentiel = getValeurOuVide(jsonIntervention, "nom_referentiel");
|
1209 |
gduche |
230 |
|
920 |
aurelien |
231 |
String nbCommentaires = getValeurOuVide(jsonIntervention, "nb_commentaires");
|
926 |
benjamin |
232 |
|
888 |
gduche |
233 |
PropositionDetermination intervention = new PropositionDetermination(id, contributeur, texte);
|
1209 |
gduche |
234 |
String proposition_initiale = getValeurOuVide(jsonIntervention, "proposition_initiale");
|
|
|
235 |
if (proposition_initiale != null && proposition_initiale.equals("1")) {
|
|
|
236 |
intervention.setEstPropositionInitiale(true);
|
1937 |
aurelien |
237 |
}
|
|
|
238 |
|
|
|
239 |
String proposition_retenue = getValeurOuVide(jsonIntervention, "proposition_retenue");
|
|
|
240 |
if (proposition_retenue != null && proposition_retenue.equals("1")) {
|
|
|
241 |
intervention.setEstPropositionRetenue(true);
|
|
|
242 |
}
|
|
|
243 |
|
888 |
gduche |
244 |
intervention.setEspece(nom_sel);
|
926 |
benjamin |
245 |
|
|
|
246 |
if (!nbCommentaires.equals("")) {
|
933 |
aurelien |
247 |
int nbComm = Integer.parseInt(nbCommentaires);
|
|
|
248 |
intervention.setNbCommentaires(nbComm);
|
920 |
aurelien |
249 |
}
|
926 |
benjamin |
250 |
|
1393 |
aurelien |
251 |
if (nom_sel_nn != null && !nom_sel_nn.equals("")) {
|
|
|
252 |
intervention.setNumNomenclatural(nom_sel_nn);
|
1104 |
gduche |
253 |
}
|
|
|
254 |
|
1393 |
aurelien |
255 |
if(nom_referentiel != null && !nom_referentiel.equals("")) {
|
|
|
256 |
intervention.setReferentiel(nom_referentiel);
|
|
|
257 |
}
|
1209 |
gduche |
258 |
|
888 |
gduche |
259 |
if (!idParent.equals("")) {
|
|
|
260 |
intervention.setIdParent(idParent);
|
|
|
261 |
}
|
926 |
benjamin |
262 |
|
|
|
263 |
if (jsonIntervention.get("votes") != null && jsonIntervention.get("votes").isObject() != null) {
|
939 |
benjamin |
264 |
intervention.setVotesDeterminations(parserVotesDetermination(jsonIntervention.get("votes").isObject()));
|
888 |
gduche |
265 |
}
|
926 |
benjamin |
266 |
|
888 |
gduche |
267 |
intervention.setDate(date);
|
889 |
gduche |
268 |
interventionsNonTypees.put(intervention.getId(), intervention);
|
926 |
benjamin |
269 |
|
888 |
gduche |
270 |
} else {
|
|
|
271 |
Commentaire intervention = new Commentaire(contributeur, date, texte);
|
893 |
gduche |
272 |
intervention.setId(id);
|
888 |
gduche |
273 |
intervention.setDate(date);
|
889 |
gduche |
274 |
interventionsNonTypees.put(intervention.getId(), intervention);
|
893 |
gduche |
275 |
if (!idParent.equals("")) {
|
|
|
276 |
intervention.setIdParent(idParent);
|
|
|
277 |
}
|
888 |
gduche |
278 |
}
|
|
|
279 |
}
|
|
|
280 |
|
889 |
gduche |
281 |
Iterator<String> itIntervention = interventionsNonTypees.keySet().iterator();
|
|
|
282 |
while (itIntervention.hasNext()) {
|
|
|
283 |
String id = itIntervention.next();
|
|
|
284 |
InterventionForum intervention = interventionsNonTypees.get(id);
|
|
|
285 |
String idParent = intervention.getIdParent();
|
1003 |
benjamin |
286 |
if (idParent != null && !idParent.equals("") && !idParent.equals("0") && interventionsNonTypees.containsKey(idParent)) {
|
893 |
gduche |
287 |
InterventionForum parent = interventionsNonTypees.get(idParent);
|
|
|
288 |
intervention.setParent(parent);
|
1062 |
benjamin |
289 |
parent.ajouterCommentaire((Commentaire) intervention);
|
|
|
290 |
} else {
|
1003 |
benjamin |
291 |
retour.add(intervention);
|
|
|
292 |
}
|
889 |
gduche |
293 |
}
|
926 |
benjamin |
294 |
|
889 |
gduche |
295 |
return retour;
|
500 |
aurelien |
296 |
}
|
939 |
benjamin |
297 |
|
941 |
benjamin |
298 |
/**
|
|
|
299 |
* Recupere une liste de commentaires à partir du JSON
|
|
|
300 |
*
|
|
|
301 |
* @param imageJson
|
|
|
302 |
* @return
|
|
|
303 |
*/
|
931 |
aurelien |
304 |
public static String convertirEtParserRetourAjoutCommentaire(String retour) {
|
929 |
aurelien |
305 |
JSONObject retourJson = JSONParser.parseStrict(retour).isObject();
|
|
|
306 |
return parserRetourAjoutCommentaire(retourJson);
|
|
|
307 |
}
|
926 |
benjamin |
308 |
|
941 |
benjamin |
309 |
/**
|
|
|
310 |
* Recupere une liste de commentaires à partir d'un objet JSON
|
|
|
311 |
*
|
|
|
312 |
* @param imageJson
|
|
|
313 |
* @return
|
|
|
314 |
*/
|
884 |
aurelien |
315 |
public static String parserRetourAjoutCommentaire(JSONObject retour) {
|
|
|
316 |
String id = "";
|
926 |
benjamin |
317 |
if (retour != null) {
|
884 |
aurelien |
318 |
id = getValeurOuVide(retour, "id_commentaire");
|
|
|
319 |
}
|
|
|
320 |
return id;
|
|
|
321 |
}
|
926 |
benjamin |
322 |
|
888 |
gduche |
323 |
public static String getValeurOuVide(JSONObject objet, String index) {
|
920 |
aurelien |
324 |
return (objet.get(index) != null && objet.get(index).isString() != null) ? objet.get(index).isString().stringValue() : "";
|
888 |
gduche |
325 |
}
|
926 |
benjamin |
326 |
|
941 |
benjamin |
327 |
/**
|
|
|
328 |
* Recupere une liste de votes sur une determination à partir du JSON
|
|
|
329 |
*
|
|
|
330 |
* @param imageJson
|
|
|
331 |
* @return
|
|
|
332 |
*/
|
939 |
benjamin |
333 |
public static HashMap<String, VoteDetermination> parserRetourListeVotesDetermination(String votesString) {
|
900 |
aurelien |
334 |
|
|
|
335 |
HashMap<String, VoteDetermination> retour = null;
|
926 |
benjamin |
336 |
|
900 |
aurelien |
337 |
JSONObject votes = JSONParser.parseStrict(votesString).isObject();
|
926 |
benjamin |
338 |
if (votes != null && votes.get("resultats") != null && votes.get("resultats").isObject() != null) {
|
900 |
aurelien |
339 |
JSONObject resultat = votes.get("resultats").isObject();
|
939 |
benjamin |
340 |
retour = parserVotesDetermination(resultat);
|
900 |
aurelien |
341 |
}
|
|
|
342 |
return retour;
|
|
|
343 |
}
|
926 |
benjamin |
344 |
|
941 |
benjamin |
345 |
/**
|
|
|
346 |
* Recupere une liste de votes sur une determination à partir d'un objet
|
|
|
347 |
* JSON
|
|
|
348 |
*
|
|
|
349 |
* @param imageJson
|
|
|
350 |
* @return
|
|
|
351 |
*/
|
939 |
benjamin |
352 |
public static HashMap<String, VoteDetermination> parserVotesDetermination(JSONObject votes) {
|
846 |
aurelien |
353 |
HashMap<String, VoteDetermination> votesDetermination = new HashMap<String, VoteDetermination>();
|
|
|
354 |
java.util.Iterator<String> itVotes = votes.keySet().iterator();
|
|
|
355 |
while (itVotes.hasNext()) {
|
|
|
356 |
JSONObject vote = votes.get(itVotes.next()).isObject();
|
|
|
357 |
VoteDetermination vd = new VoteDetermination();
|
|
|
358 |
vd.setContributeur(getValeurOuVide(vote, "auteur.id"));
|
965 |
aurelien |
359 |
vd.setDate(parserDateObservation(getValeurOuVide(vote, "date")));
|
846 |
aurelien |
360 |
vd.setId(getValeurOuVide(vote, "vote.id"));
|
|
|
361 |
vd.setVote(Integer.parseInt(getValeurOuVide(vote, "vote")));
|
900 |
aurelien |
362 |
vd.setContributeur(getValeurOuVide(vote, "auteur.id"));
|
926 |
benjamin |
363 |
|
|
|
364 |
if (vote.get("auteur.nom") != null && vote.get("auteur.nom") != null && vote.get("auteur.courriel") != null) {
|
|
|
365 |
Contributeur auteur = new Contributeur(getValeurOuVide(vote, "auteur.id"), getValeurOuVide(vote, "auteur.nom"), getValeurOuVide(vote, "auteur.prenom"), getValeurOuVide(vote, "auteur.courriel"));
|
900 |
aurelien |
366 |
vd.setAuteur(auteur);
|
|
|
367 |
}
|
926 |
benjamin |
368 |
|
846 |
aurelien |
369 |
votesDetermination.put(getValeurOuVide(vote, "auteur.id"), vd);
|
926 |
benjamin |
370 |
}
|
846 |
aurelien |
371 |
return votesDetermination;
|
|
|
372 |
}
|
926 |
benjamin |
373 |
|
941 |
benjamin |
374 |
/**
|
|
|
375 |
* Recupere une liste de votes sur des images à partir d'un objet JSON
|
|
|
376 |
*
|
|
|
377 |
* @param imageJson
|
|
|
378 |
* @return
|
|
|
379 |
*/
|
926 |
benjamin |
380 |
public static HashMap<String, HashMap<String, VoteProtocole>> parserVotesProtocoles(JSONObject votes) {
|
|
|
381 |
|
|
|
382 |
HashMap<String, HashMap<String, VoteProtocole>> votesProtocoles = new HashMap<String, HashMap<String, VoteProtocole>>();
|
777 |
aurelien |
383 |
java.util.Iterator<String> itProtocoles = votes.keySet().iterator();
|
926 |
benjamin |
384 |
while (itProtocoles.hasNext()) {
|
|
|
385 |
JSONObject protocole = votes.get(itProtocoles.next()).isObject();
|
777 |
aurelien |
386 |
JSONObject votesPourCeProtocoles = protocole.get("votes").isObject();
|
|
|
387 |
String idProtocoleVote = protocole.get("protocole.id").isString().stringValue();
|
|
|
388 |
java.util.Iterator<String> itVotes = votesPourCeProtocoles.keySet().iterator();
|
926 |
benjamin |
389 |
while (itVotes.hasNext()) {
|
777 |
aurelien |
390 |
JSONObject voteEnCours = votesPourCeProtocoles.get(itVotes.next()).isObject();
|
|
|
391 |
VoteProtocole vd = new VoteProtocole();
|
|
|
392 |
vd.setContributeur(voteEnCours.get("auteur.id").isString().stringValue());
|
1471 |
aurelien |
393 |
vd.setId(voteEnCours.get("vote.id").isString().stringValue());
|
777 |
aurelien |
394 |
// TODO récupérer la date du vote et la parser
|
965 |
aurelien |
395 |
vd.setDate(parserDateObservation(getValeurOuVide(voteEnCours, "date")));
|
777 |
aurelien |
396 |
int valeurVote = Integer.parseInt(voteEnCours.get("vote").isString().stringValue());
|
|
|
397 |
vd.setVote(valeurVote);
|
926 |
benjamin |
398 |
if (!votesProtocoles.containsKey(idProtocoleVote)) {
|
|
|
399 |
votesProtocoles.put(idProtocoleVote, new HashMap<String, VoteProtocole>());
|
777 |
aurelien |
400 |
}
|
1573 |
mathias |
401 |
// un seul vote par utilisateur - garde le premier pour être cohérent avec commun/Stats (PHP)
|
|
|
402 |
if (! votesProtocoles.get(idProtocoleVote).containsKey(vd.getContributeur())) {
|
|
|
403 |
votesProtocoles.get(idProtocoleVote).put(vd.getContributeur(), vd);
|
|
|
404 |
}
|
500 |
aurelien |
405 |
}
|
|
|
406 |
}
|
926 |
benjamin |
407 |
|
500 |
aurelien |
408 |
return votesProtocoles;
|
|
|
409 |
}
|
926 |
benjamin |
410 |
|
941 |
benjamin |
411 |
/**
|
|
|
412 |
* Recupere une date à partir du JSON
|
|
|
413 |
*
|
|
|
414 |
* @param imageJson
|
|
|
415 |
* @return
|
|
|
416 |
*/
|
500 |
aurelien |
417 |
public static Date parserDateObservation(String date) {
|
|
|
418 |
Date dateParsee = new Date();
|
965 |
aurelien |
419 |
DateTimeFormat formatDateObs = DateTimeFormat.getFormat("yyyy-MM-dd HH:mm:ss");
|
926 |
benjamin |
420 |
try {
|
|
|
421 |
dateParsee = formatDateObs.parse(date);
|
|
|
422 |
} catch (IllegalArgumentException e) {
|
|
|
423 |
dateParsee = new java.sql.Date(0);
|
500 |
aurelien |
424 |
}
|
926 |
benjamin |
425 |
return dateParsee;
|
500 |
aurelien |
426 |
}
|
926 |
benjamin |
427 |
|
941 |
benjamin |
428 |
/**
|
|
|
429 |
* Recupere des mots-clefs à partir du JSON
|
|
|
430 |
*
|
|
|
431 |
* @param imageJson
|
|
|
432 |
* @return
|
|
|
433 |
*/
|
500 |
aurelien |
434 |
public static List<String> parserMotsCles(String motsClesTexte) {
|
|
|
435 |
String[] tabMotsCle = motsClesTexte.split(",");
|
|
|
436 |
List<String> motsClesParses = new ArrayList<String>();
|
|
|
437 |
for (int i = 0; i < tabMotsCle.length; i++) {
|
1014 |
aurelien |
438 |
motsClesParses.add(tabMotsCle[i].trim());
|
500 |
aurelien |
439 |
}
|
926 |
benjamin |
440 |
|
500 |
aurelien |
441 |
return motsClesParses;
|
|
|
442 |
}
|
926 |
benjamin |
443 |
|
500 |
aurelien |
444 |
public static String getIdAvecPadding(String id) {
|
|
|
445 |
int maxZeros = 9 - id.length();
|
|
|
446 |
for (int i = 0; i < maxZeros; i++) {
|
|
|
447 |
id = "0" + id;
|
|
|
448 |
}
|
|
|
449 |
return id;
|
|
|
450 |
}
|
926 |
benjamin |
451 |
|
941 |
benjamin |
452 |
/**
|
|
|
453 |
* Recupere un utilisateur à partir du JSON
|
|
|
454 |
*
|
|
|
455 |
* @param imageJson
|
|
|
456 |
* @return
|
|
|
457 |
*/
|
516 |
aurelien |
458 |
public static Utilisateur parserUtilisateurJson(JSONValue valeurJson) {
|
|
|
459 |
JSONObject utilisateurJson = valeurJson.isObject();
|
|
|
460 |
boolean connecteUtilisateur = utilisateurJson.get("connecte").isBoolean().booleanValue();
|
|
|
461 |
String idUtilisateur = utilisateurJson.get("id_utilisateur").isString().stringValue();
|
1496 |
aurelien |
462 |
String sessionId = utilisateurJson.get("session_id").isString().stringValue();
|
1667 |
jpm |
463 |
GWT.log(valeurJson.toString());
|
|
|
464 |
|
516 |
aurelien |
465 |
Utilisateur utilisateur;
|
926 |
benjamin |
466 |
if (connecteUtilisateur) {
|
522 |
aurelien |
467 |
String courrielUtilisateur = utilisateurJson.get("courriel").isString().stringValue();
|
516 |
aurelien |
468 |
String nomUtilisateur = utilisateurJson.get("nom").isString().stringValue();
|
|
|
469 |
String prenomUtilisateur = utilisateurJson.get("prenom").isString().stringValue();
|
1496 |
aurelien |
470 |
String mdpHashUtilisateur = utilisateurJson.get("mot_de_passe").isString().stringValue();
|
1690 |
jpm |
471 |
|
|
|
472 |
String adminNiveau = "";
|
|
|
473 |
if (utilisateurJson.get("admin").isString() != null) {
|
|
|
474 |
adminNiveau = utilisateurJson.get("admin").isString().stringValue();
|
|
|
475 |
}
|
926 |
benjamin |
476 |
|
1667 |
jpm |
477 |
utilisateur = new Utilisateur(sessionId, idUtilisateur, prenomUtilisateur, nomUtilisateur,
|
|
|
478 |
courrielUtilisateur, mdpHashUtilisateur, adminNiveau);
|
516 |
aurelien |
479 |
} else {
|
1496 |
aurelien |
480 |
utilisateur = new Utilisateur(sessionId, idUtilisateur);
|
516 |
aurelien |
481 |
}
|
|
|
482 |
return utilisateur;
|
|
|
483 |
}
|
1175 |
aurelien |
484 |
|
|
|
485 |
/**
|
|
|
486 |
* Recupere un utilisateur à partir du JSON
|
|
|
487 |
*
|
|
|
488 |
* @param imageJson
|
|
|
489 |
* @return
|
|
|
490 |
*/
|
|
|
491 |
public static HashMap<String, String> parserPreferencesUtilisateur(JSONValue valeurJson) {
|
|
|
492 |
|
|
|
493 |
JSONObject utilisateurJson = valeurJson.isObject();
|
|
|
494 |
HashMap<String, String> preferences = new HashMap<String, String>();
|
|
|
495 |
JSONObject preferencesJson = utilisateurJson.get("preferences").isObject();
|
|
|
496 |
|
|
|
497 |
java.util.Iterator<String> it = preferencesJson.keySet().iterator();
|
|
|
498 |
while (it.hasNext()) {
|
|
|
499 |
String cle = it.next();
|
|
|
500 |
preferences.put(cle, preferencesJson.get(cle).isString().stringValue());
|
|
|
501 |
}
|
|
|
502 |
return preferences;
|
|
|
503 |
}
|
941 |
benjamin |
504 |
|
|
|
505 |
/**
|
|
|
506 |
* Retourne un objet {@link ProtocoleServiceResultat} à partir d'un objet
|
|
|
507 |
* JSON
|
|
|
508 |
*
|
|
|
509 |
* @param retourJson
|
|
|
510 |
* @return
|
|
|
511 |
*/
|
|
|
512 |
public static ProtocoleServiceResultat parserProtocoleServiceResultat(JSONValue retourJson) {
|
|
|
513 |
List<Protocole> protocoles = new ArrayList<Protocole>();
|
|
|
514 |
JSONObject tableauProto = retourJson.isObject().get("resultats").isObject();
|
|
|
515 |
|
|
|
516 |
if (tableauProto != null) {
|
|
|
517 |
java.util.Iterator<String> it = tableauProto.keySet().iterator();
|
|
|
518 |
while (it.hasNext()) {
|
|
|
519 |
|
|
|
520 |
JSONObject protocoleJSON = tableauProto.get(it.next()).isObject();
|
|
|
521 |
Protocole protocole = new Protocole();
|
|
|
522 |
String idProtocole = UtilitairesServiceResultat.getValeurOuVide(protocoleJSON, "protocole.id");
|
|
|
523 |
protocole.setId(Integer.parseInt(idProtocole));
|
|
|
524 |
protocole.setNom(UtilitairesServiceResultat.getValeurOuVide(protocoleJSON, "protocole.intitule"));
|
|
|
525 |
protocole.setDescription(UtilitairesServiceResultat.getValeurOuVide(protocoleJSON, "protocole.descriptif"));
|
1218 |
aurelien |
526 |
protocole.setTag(UtilitairesServiceResultat.getValeurOuVide(protocoleJSON, "protocole.tag"));
|
1409 |
aurelien |
527 |
protocole.setMotsClesProtocole(UtilitairesServiceResultat.getValeurOuVide(protocoleJSON, "protocole.mots_cles"));
|
941 |
benjamin |
528 |
protocoles.add(protocole);
|
|
|
529 |
}
|
|
|
530 |
}
|
|
|
531 |
|
|
|
532 |
return new ProtocoleServiceResultat(protocoles);
|
|
|
533 |
}
|
|
|
534 |
|
|
|
535 |
/**
|
|
|
536 |
* Retourne un objet {@link ImageServiceResultat} à partir du JSON
|
|
|
537 |
*
|
|
|
538 |
* @param retourJson
|
|
|
539 |
* @return
|
|
|
540 |
*/
|
|
|
541 |
public static ImageServiceResultat parserImageServiceResultat(JSONValue retourJson) {
|
|
|
542 |
|
|
|
543 |
ImageServiceResultat imageServiceResultat = new ImageServiceResultat();
|
|
|
544 |
int nbTotalImagesPourLaRecherche;
|
|
|
545 |
|
|
|
546 |
List<Image> images = new ArrayList<Image>();
|
|
|
547 |
// TODO ajouter vérifications plus précises
|
|
|
548 |
if (retourJson.isObject().get("entete") != null) {
|
|
|
549 |
double total = retourJson.isObject().get("entete").isObject().get("total").isNumber().doubleValue();
|
|
|
550 |
nbTotalImagesPourLaRecherche = (int) total;
|
1861 |
jpm |
551 |
// ATTENTION : "resultats" devrait contenir un array car il garantit l'ordre ce qui est important pour
|
|
|
552 |
// résultat de recherche. Migration progressive des ws pour qu'ils retourne un array et non un objet.
|
|
|
553 |
if (retourJson.isObject().get("resultats").isObject() != null) {
|
|
|
554 |
// TODO : supprimer cette condition quand tous les ws seront migrés vers array.
|
|
|
555 |
JSONObject tableauImg = retourJson.isObject().get("resultats").isObject();
|
|
|
556 |
if (tableauImg != null) {
|
|
|
557 |
java.util.Iterator<String> it = tableauImg.keySet().iterator();
|
|
|
558 |
while (it.hasNext()) {
|
|
|
559 |
JSONObject imageJson = tableauImg.get(it.next()).isObject();
|
|
|
560 |
Image image = parserRetourImage(imageJson);
|
|
|
561 |
images.add(image);
|
|
|
562 |
}
|
1062 |
benjamin |
563 |
}
|
1861 |
jpm |
564 |
} else if (retourJson.isObject().get("resultats").isArray() != null) {
|
|
|
565 |
JSONArray tableauImg = retourJson.isObject().get("resultats").isArray();
|
|
|
566 |
if (tableauImg != null) {
|
|
|
567 |
int nbInfosImagesRetournees = (int) tableauImg.size();
|
|
|
568 |
for (int i = 0; i < nbInfosImagesRetournees; i++) {
|
|
|
569 |
JSONObject imageJson = tableauImg.get(i).isObject();
|
|
|
570 |
Image image = parserRetourImage(imageJson);
|
|
|
571 |
images.add(image);
|
|
|
572 |
}
|
|
|
573 |
}
|
941 |
benjamin |
574 |
}
|
|
|
575 |
} else {
|
|
|
576 |
JSONArray tableauImg = retourJson.isObject().get("images").isArray();
|
|
|
577 |
nbTotalImagesPourLaRecherche = (int) tableauImg.size();
|
|
|
578 |
for (int i = 0; i < nbTotalImagesPourLaRecherche; i++) {
|
|
|
579 |
JSONObject imageJson = tableauImg.get(i).isObject();
|
|
|
580 |
Image image = parserRetourImage(imageJson);
|
|
|
581 |
images.add(image);
|
|
|
582 |
}
|
|
|
583 |
}
|
|
|
584 |
|
|
|
585 |
imageServiceResultat.setImages(images);
|
|
|
586 |
imageServiceResultat.setNbTotalImagesPourLaRecherche(nbTotalImagesPourLaRecherche);
|
|
|
587 |
|
|
|
588 |
return imageServiceResultat;
|
|
|
589 |
|
|
|
590 |
}
|
|
|
591 |
|
|
|
592 |
/**
|
|
|
593 |
* Retourne un objet {@link Image} à partir du JSON
|
|
|
594 |
*
|
|
|
595 |
* @param retourJson
|
|
|
596 |
* @return
|
|
|
597 |
*/
|
|
|
598 |
public static Image parserRetourImage(JSONObject imageJson) {
|
|
|
599 |
Image image = UtilitairesServiceResultat.parserImageJSON(imageJson);
|
|
|
600 |
|
|
|
601 |
if (imageJson.get("observation") != null && imageJson.get("observation").isObject() != null) {
|
|
|
602 |
JSONObject observationJson = imageJson.get("observation").isObject();
|
|
|
603 |
image.setObservation(UtilitairesServiceResultat.parserObservationJSON(observationJson));
|
|
|
604 |
}
|
|
|
605 |
|
|
|
606 |
if (imageJson.get("protocoles_votes") != null && imageJson.get("protocoles_votes").isObject() != null) {
|
|
|
607 |
JSONObject votes = imageJson.get("protocoles_votes").isObject();
|
|
|
608 |
image.setVoteProtocoles(UtilitairesServiceResultat.parserVotesProtocoles(votes));
|
|
|
609 |
}
|
|
|
610 |
|
|
|
611 |
return image;
|
|
|
612 |
}
|
|
|
613 |
|
|
|
614 |
/**
|
|
|
615 |
* Retourne un objet {@link ObservationServiceResultat} à partir du JSON
|
|
|
616 |
*
|
|
|
617 |
* @param retourJson
|
|
|
618 |
* @return
|
|
|
619 |
*/
|
|
|
620 |
public static ObservationServiceResultat parserObservationServiceResultat(JSONValue retourJson) {
|
|
|
621 |
|
|
|
622 |
ObservationServiceResultat observationServiceResultat = new ObservationServiceResultat();
|
|
|
623 |
|
|
|
624 |
List<Observation> observations = new ArrayList<Observation>();
|
|
|
625 |
int nbTotalObservationsPourLaRecherche = 0;
|
|
|
626 |
|
|
|
627 |
if (retourJson.isObject().get("entete") != null) {
|
|
|
628 |
// TODO ajouter vérifications plus précises
|
|
|
629 |
double total = retourJson.isObject().get("entete").isObject().get("total").isNumber().doubleValue();
|
|
|
630 |
nbTotalObservationsPourLaRecherche = (int) total;
|
1934 |
aurelien |
631 |
JSONArray tableauObs = retourJson.isObject().get("resultats").isArray();
|
941 |
benjamin |
632 |
|
|
|
633 |
if (tableauObs != null) {
|
1934 |
aurelien |
634 |
for(int i = 0; i < tableauObs.size(); i++) {
|
|
|
635 |
JSONObject observationJson = tableauObs.get(i).isObject();
|
941 |
benjamin |
636 |
Observation observation = analyserObservation(observationJson);
|
|
|
637 |
observations.add(observation);
|
|
|
638 |
}
|
|
|
639 |
}
|
|
|
640 |
} else {
|
|
|
641 |
JSONObject observationJson = retourJson.isObject();
|
|
|
642 |
Observation observation = analyserObservation(observationJson);
|
|
|
643 |
observations.add(observation);
|
|
|
644 |
CacheClient.getInstance().setObservationCourante(observation);
|
|
|
645 |
}
|
|
|
646 |
|
|
|
647 |
observationServiceResultat.setObservations(observations);
|
|
|
648 |
observationServiceResultat.setNbTotalObservationsPourLaRecherche(nbTotalObservationsPourLaRecherche);
|
|
|
649 |
|
|
|
650 |
return observationServiceResultat;
|
|
|
651 |
}
|
|
|
652 |
|
|
|
653 |
/**
|
|
|
654 |
* Retourne un objet {@link Observation} avec ses {@link Image} associées à
|
|
|
655 |
* partir du JSON
|
|
|
656 |
*
|
|
|
657 |
* @param retourJson
|
|
|
658 |
* @return
|
|
|
659 |
*/
|
|
|
660 |
private static Observation analyserObservation(JSONObject observationJson) {
|
|
|
661 |
Observation observation = UtilitairesServiceResultat.parserObservationJSON(observationJson);
|
|
|
662 |
JSONArray tableauImagesObs = observationJson.get("images").isArray();
|
|
|
663 |
List<Image> imagesPourObs = new ArrayList<Image>();
|
|
|
664 |
|
|
|
665 |
int nbImages = tableauImagesObs.size();
|
|
|
666 |
for (int j = 0; j < nbImages; j++) {
|
|
|
667 |
JSONObject imageJson = tableauImagesObs.get(j).isObject();
|
|
|
668 |
|
|
|
669 |
Image image = UtilitairesServiceResultat.parserImageJSON(imageJson);
|
|
|
670 |
if (imageJson.get("protocoles_votes") != null && imageJson.get("protocoles_votes").isObject() != null) {
|
|
|
671 |
JSONObject votes = imageJson.get("protocoles_votes").isObject();
|
|
|
672 |
image.setVoteProtocoles(UtilitairesServiceResultat.parserVotesProtocoles(votes));
|
|
|
673 |
}
|
|
|
674 |
image.setObservation(observation);
|
|
|
675 |
imagesPourObs.add(image);
|
|
|
676 |
}
|
|
|
677 |
|
|
|
678 |
observation.setImages(imagesPourObs);
|
|
|
679 |
|
|
|
680 |
return observation;
|
|
|
681 |
}
|
|
|
682 |
|
1162 |
aurelien |
683 |
public static List<MotCle> parserRetourListeMotsClesImage(JSONObject retourJson) {
|
|
|
684 |
List<MotCle> motsCles = new ArrayList<MotCle>();
|
1151 |
aurelien |
685 |
JSONObject tableauMc = retourJson;
|
|
|
686 |
if (tableauMc != null) {
|
|
|
687 |
java.util.Iterator<String> it = tableauMc.keySet().iterator();
|
|
|
688 |
while (it.hasNext()) {
|
|
|
689 |
JSONObject mc = tableauMc.get(it.next()).isObject();
|
1162 |
aurelien |
690 |
MotCle motCle = new MotCle(getValeurOuVide(mc, "id_mot_cle"), getValeurOuVide(mc, "image"), getValeurOuVide(mc, "mot_cle"));
|
|
|
691 |
motsCles.add(motCle);
|
1151 |
aurelien |
692 |
}
|
|
|
693 |
}
|
|
|
694 |
return motsCles;
|
|
|
695 |
}
|
1471 |
aurelien |
696 |
|
|
|
697 |
public static String parserRetourAjoutVoteProtocole(JSONObject retour) {
|
|
|
698 |
String id = "";
|
|
|
699 |
if (retour != null) {
|
|
|
700 |
id = getValeurOuVide(retour, "id_vote");
|
|
|
701 |
}
|
|
|
702 |
return id;
|
|
|
703 |
}
|
500 |
aurelien |
704 |
}
|