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;
|
1986 |
aurelien |
7 |
import java.util.LinkedHashMap;
|
500 |
aurelien |
8 |
import java.util.List;
|
1986 |
aurelien |
9 |
import java.util.Map;
|
500 |
aurelien |
10 |
|
2102 |
mathias |
11 |
import org.tela_botanica.del.client.Del;
|
941 |
benjamin |
12 |
import org.tela_botanica.del.client.cache.CacheClient;
|
1469 |
mathias |
13 |
import org.tela_botanica.del.client.config.Config;
|
1984 |
aurelien |
14 |
import org.tela_botanica.del.client.i18n.I18n;
|
2054 |
aurelien |
15 |
import org.tela_botanica.del.client.modeles.ActiviteUtilisateur;
|
2077 |
mathias |
16 |
import org.tela_botanica.del.client.modeles.AuthInfo;
|
876 |
gduche |
17 |
import org.tela_botanica.del.client.modeles.Commentaire;
|
690 |
gduche |
18 |
import org.tela_botanica.del.client.modeles.Contributeur;
|
2067 |
aurelien |
19 |
import org.tela_botanica.del.client.modeles.EvenementObs;
|
500 |
aurelien |
20 |
import org.tela_botanica.del.client.modeles.Image;
|
941 |
benjamin |
21 |
import org.tela_botanica.del.client.modeles.ImageServiceResultat;
|
846 |
aurelien |
22 |
import org.tela_botanica.del.client.modeles.InterventionForum;
|
1162 |
aurelien |
23 |
import org.tela_botanica.del.client.modeles.MotCle;
|
500 |
aurelien |
24 |
import org.tela_botanica.del.client.modeles.Observation;
|
941 |
benjamin |
25 |
import org.tela_botanica.del.client.modeles.ObservationServiceResultat;
|
500 |
aurelien |
26 |
import org.tela_botanica.del.client.modeles.PropositionDetermination;
|
941 |
benjamin |
27 |
import org.tela_botanica.del.client.modeles.Protocole;
|
|
|
28 |
import org.tela_botanica.del.client.modeles.ProtocoleServiceResultat;
|
516 |
aurelien |
29 |
import org.tela_botanica.del.client.modeles.Utilisateur;
|
846 |
aurelien |
30 |
import org.tela_botanica.del.client.modeles.VoteDetermination;
|
500 |
aurelien |
31 |
import org.tela_botanica.del.client.modeles.VoteProtocole;
|
|
|
32 |
|
1667 |
jpm |
33 |
import com.google.gwt.core.shared.GWT;
|
500 |
aurelien |
34 |
import com.google.gwt.i18n.client.DateTimeFormat;
|
941 |
benjamin |
35 |
import com.google.gwt.json.client.JSONArray;
|
2077 |
mathias |
36 |
import com.google.gwt.json.client.JSONNumber;
|
500 |
aurelien |
37 |
import com.google.gwt.json.client.JSONObject;
|
900 |
aurelien |
38 |
import com.google.gwt.json.client.JSONParser;
|
2077 |
mathias |
39 |
import com.google.gwt.json.client.JSONString;
|
516 |
aurelien |
40 |
import com.google.gwt.json.client.JSONValue;
|
500 |
aurelien |
41 |
|
941 |
benjamin |
42 |
/**
|
|
|
43 |
* Centralisation des methodes de parsing du code JSON retourné par les
|
|
|
44 |
* webservices
|
|
|
45 |
*
|
|
|
46 |
* @author LIENS
|
|
|
47 |
*
|
|
|
48 |
*/
|
500 |
aurelien |
49 |
public class UtilitairesServiceResultat {
|
926 |
benjamin |
50 |
|
941 |
benjamin |
51 |
/**
|
|
|
52 |
* Recupere un objet Image à partir du JSON
|
|
|
53 |
*
|
|
|
54 |
* @param imageJson
|
|
|
55 |
* @return
|
|
|
56 |
*/
|
926 |
benjamin |
57 |
public static Image parserImageJSON(JSONObject imageJson) {
|
|
|
58 |
|
500 |
aurelien |
59 |
Image image = new Image();
|
1469 |
mathias |
60 |
Config config = new Config();
|
1544 |
jpm |
61 |
String urlImages = config.getUrl("images");
|
763 |
aurelien |
62 |
String idImage = imageJson.get("id_image").isString().stringValue();
|
500 |
aurelien |
63 |
image.setIdImage(idImage);
|
1469 |
mathias |
64 |
image.setUrlFormat(urlImages + getIdAvecPadding(idImage) + "%s%.jpg");
|
|
|
65 |
image.setUrl(urlImages + getIdAvecPadding(idImage) + "CRS.jpg");
|
|
|
66 |
image.setMiniature(urlImages + getIdAvecPadding(idImage) + "XS.jpg");
|
1014 |
aurelien |
67 |
image.setMotsClefs(parserMotsCles(UtilitairesServiceResultat.getValeurOuVide(imageJson, "mots_cles_texte")));
|
926 |
benjamin |
68 |
|
500 |
aurelien |
69 |
return image;
|
|
|
70 |
}
|
926 |
benjamin |
71 |
|
941 |
benjamin |
72 |
/**
|
|
|
73 |
* Recupere un objet Observation à partir du JSON
|
|
|
74 |
*
|
|
|
75 |
* @param imageJson
|
|
|
76 |
* @return
|
|
|
77 |
*/
|
500 |
aurelien |
78 |
public static Observation parserObservationJSON(JSONObject observationJson) {
|
926 |
benjamin |
79 |
|
500 |
aurelien |
80 |
Observation observation = new Observation();
|
926 |
benjamin |
81 |
observation.setAuteur(getValeurOuVide(observationJson, "auteur.prenom") + " " + getValeurOuVide(observationJson, "auteur.nom"));
|
|
|
82 |
observation.setNomAuteur(getValeurOuVide(observationJson, "auteur.nom"));
|
1053 |
gduche |
83 |
observation.setPrenomAuteur(getValeurOuVide(observationJson, "auteur.prenom"));
|
926 |
benjamin |
84 |
observation.setIdAuteur(getValeurOuVide(observationJson, "auteur.id"));
|
|
|
85 |
// TODO: renvoyer le courriel de l'auteur dans les obs
|
1667 |
jpm |
86 |
observation.setCourrielAuteur(getValeurOuVide(observationJson, "auteur.courriel"));
|
1774 |
aurelien |
87 |
observation.setDateTransmission(getValeurOuVide(observationJson, "date_transmission"));
|
763 |
aurelien |
88 |
observation.setDateReleve(getValeurOuVide(observationJson, "date_observation"));
|
|
|
89 |
observation.setFamille(getValeurOuVide(observationJson, "determination.famille"));
|
846 |
aurelien |
90 |
observation.setId(getValeurOuVide(observationJson, "id_observation"));
|
1995 |
aurelien |
91 |
observation.setPays(getValeurOuVide(observationJson, "pays"));
|
846 |
aurelien |
92 |
observation.setIdLocalite(getValeurOuVide(observationJson, "id_zone_geo"));
|
|
|
93 |
observation.setLocalite(getValeurOuVide(observationJson, "zone_geo"));
|
1062 |
benjamin |
94 |
|
954 |
aurelien |
95 |
String nomRetenu = getValeurOuVide(observationJson, "determination.ns");
|
1984 |
aurelien |
96 |
// Pour afficher quelque chose de plus pertinent qu'un nom vide
|
|
|
97 |
// (il en existe parfois et cela fausse l'affichage)
|
|
|
98 |
if(nomRetenu.trim().isEmpty()) {
|
|
|
99 |
nomRetenu = I18n.getVocabulary().indeterminee();
|
|
|
100 |
}
|
|
|
101 |
observation.setNomRetenu(nomRetenu);
|
846 |
aurelien |
102 |
observation.setMilieu(getValeurOuVide(observationJson, "milieu"));
|
|
|
103 |
observation.setLieuDit(getValeurOuVide(observationJson, "lieudit"));
|
1026 |
gduche |
104 |
observation.setStation(getValeurOuVide(observationJson, "station"));
|
|
|
105 |
observation.setCommentaire(getValeurOuVide(observationJson, "commentaire"));
|
846 |
aurelien |
106 |
observation.setNumNomenclatural(getValeurOuVide(observationJson, "determination.nn"));
|
1367 |
aurelien |
107 |
observation.setReferentiel(getValeurOuVide(observationJson, "determination.referentiel"));
|
1934 |
aurelien |
108 |
String nbCom = getValeurOuVide(observationJson, "nb_commentaires");
|
|
|
109 |
nbCom = nbCom.equals("") ? "0" : nbCom;
|
|
|
110 |
observation.setNbCommentaires(nbCom);
|
1014 |
aurelien |
111 |
observation.setMotsClefs(parserMotsCles(UtilitairesServiceResultat.getValeurOuVide(observationJson, "mots_cles_texte")));
|
846 |
aurelien |
112 |
JSONValue propositions = observationJson.get("commentaires");
|
2050 |
aurelien |
113 |
|
|
|
114 |
JSONValue evenements = observationJson.get("evenements");
|
2067 |
aurelien |
115 |
List<EvenementObs> evenementsObs = new ArrayList<EvenementObs>();
|
2050 |
aurelien |
116 |
if (evenements != null && evenements.isArray() != null) {
|
|
|
117 |
JSONArray evenementsTab = evenements.isArray();
|
|
|
118 |
for (int i = 0; i < evenementsTab.size(); i++) {
|
2067 |
aurelien |
119 |
String type = evenementsTab.get(i).isObject().get("type").isString().stringValue();
|
|
|
120 |
String infosComplementaires = evenementsTab.get(i).isObject().get("infos_complementaires").isString().stringValue();
|
|
|
121 |
EvenementObs evtObs = new EvenementObs(type, infosComplementaires);
|
|
|
122 |
evenementsObs.add(evtObs);
|
2050 |
aurelien |
123 |
}
|
|
|
124 |
}
|
|
|
125 |
observation.setEvenementsAssocies(evenementsObs);
|
1062 |
benjamin |
126 |
|
954 |
aurelien |
127 |
boolean creerPropositionAPartirObs = true;
|
1209 |
gduche |
128 |
boolean propositionInitialeExiste = false;
|
|
|
129 |
PropositionDetermination propositionPotentiellementInitiale = null;
|
926 |
benjamin |
130 |
if (propositions != null && propositions.isObject() != null) {
|
939 |
benjamin |
131 |
List<InterventionForum> interventions = parserInterventions(propositions.isObject());
|
1209 |
gduche |
132 |
|
939 |
benjamin |
133 |
for (InterventionForum interventionForum : interventions) {
|
1062 |
benjamin |
134 |
interventionForum.setObservation(observation);
|
|
|
135 |
if (interventionForum instanceof PropositionDetermination) {
|
|
|
136 |
PropositionDetermination proposition = (PropositionDetermination) interventionForum;
|
2090 |
aurelien |
137 |
// Si une proposition avec les même nums noms et référentiel que l'observation est déjà présente,
|
|
|
138 |
// alors il n'est pas nécessaire de créer la proposition "factice"
|
|
|
139 |
if (especePropositionEtObservationCorrespondent(observation, proposition)) {
|
954 |
aurelien |
140 |
creerPropositionAPartirObs = false;
|
2090 |
aurelien |
141 |
// Si de plus les auteurs correspondent, alors nous avons affaire à la proposition initiale
|
|
|
142 |
if(proposition.getContributeur().getNomComplet().equals(observation.getAuteur())) {
|
|
|
143 |
propositionPotentiellementInitiale = proposition;
|
|
|
144 |
}
|
954 |
aurelien |
145 |
}
|
1209 |
gduche |
146 |
|
|
|
147 |
if (proposition.estPropositionInitiale()) {
|
|
|
148 |
propositionInitialeExiste = true;
|
|
|
149 |
}
|
1062 |
benjamin |
150 |
}
|
939 |
benjamin |
151 |
}
|
876 |
gduche |
152 |
observation.setInterventionsForum(interventions);
|
846 |
aurelien |
153 |
}
|
1209 |
gduche |
154 |
|
|
|
155 |
if (!propositionInitialeExiste && propositionPotentiellementInitiale != null) {
|
2090 |
aurelien |
156 |
// Ceci permet à la la proposition d'être mise en valeur différemment dans l'interface
|
1209 |
gduche |
157 |
propositionPotentiellementInitiale.setEstPropositionInitiale(true);
|
|
|
158 |
}
|
2090 |
aurelien |
159 |
|
1062 |
benjamin |
160 |
if (creerPropositionAPartirObs) {
|
1984 |
aurelien |
161 |
// Si elle est nécessaire, la proposition factice est ajoutée au début
|
1209 |
gduche |
162 |
observation.getInterventionsForum().add(0, creerPropositionDeterminationAPartirObservation(observation, propositionInitialeExiste));
|
954 |
aurelien |
163 |
}
|
500 |
aurelien |
164 |
return observation;
|
1209 |
gduche |
165 |
|
500 |
aurelien |
166 |
}
|
2102 |
mathias |
167 |
|
2090 |
aurelien |
168 |
public static boolean especePropositionEtObservationCorrespondent(Observation observation, PropositionDetermination proposition) {
|
|
|
169 |
boolean correspondent = false;
|
2102 |
mathias |
170 |
String obsNN = observation.getNumNomenclatural();
|
|
|
171 |
String obsRef = observation.getReferentiel();
|
|
|
172 |
String propNN = proposition.getNumNomenclatural();
|
|
|
173 |
String propRef = proposition.getReferentiel();
|
|
|
174 |
boolean obnNNVide = obsNN == null || obsNN.isEmpty() || obsNN.equals("0");
|
|
|
175 |
boolean propNNVide = propNN == null || propNN.isEmpty() || propNN.equals("0");
|
|
|
176 |
|
|
|
177 |
/*Del.LogVersFirebug(
|
|
|
178 |
"OBS NN: [" + obsNN
|
|
|
179 |
+ "], OBS REF: [" + obsRef
|
|
|
180 |
+ "], PROP NN: [" + propNN
|
|
|
181 |
//+ "], PROP NS: [" + proposition.getEspece()
|
|
|
182 |
+ "], PROP REF: [" + propRef
|
|
|
183 |
+ "]"
|
|
|
184 |
);*/
|
|
|
185 |
|
|
|
186 |
// @WARNING patch crado en raison d'une conception poucrave de cette appli cliente : la
|
|
|
187 |
// présence d'une obs non liée à un référentiel, même si ce n'est pas celle qui est
|
|
|
188 |
// actuellement retenue, entraînera une disparition de la proposition actuellement retenue;
|
|
|
189 |
// mais ce n'est pas censé arriver, car à la première création d'une proposition, la
|
|
|
190 |
// proposition initiale doit être matérialisée (j'ai bon ? pas sûr :P)
|
|
|
191 |
|
|
|
192 |
// soit les NN sont à zéro ou null (proposition non liée) et dans ce cas on ne compare pas les référentiels
|
|
|
193 |
if (propNNVide && obnNNVide) {
|
|
|
194 |
correspondent = true;
|
|
|
195 |
} else { // soit on compare les NN et les référentiels
|
|
|
196 |
correspondent = (obsNN.equals(propNN) && obsRef.equals(propRef));
|
2090 |
aurelien |
197 |
}
|
2102 |
mathias |
198 |
|
2090 |
aurelien |
199 |
return correspondent;
|
|
|
200 |
}
|
926 |
benjamin |
201 |
|
941 |
benjamin |
202 |
/**
|
|
|
203 |
* Créée une proposition de determination à partir d'une observation
|
|
|
204 |
*
|
|
|
205 |
* @param observation
|
|
|
206 |
* @return
|
|
|
207 |
*/
|
1209 |
gduche |
208 |
private static PropositionDetermination creerPropositionDeterminationAPartirObservation(Observation observation, boolean propositionInitialeExiste) {
|
941 |
benjamin |
209 |
|
|
|
210 |
String utilisateurNom = observation.getNomAuteur();
|
|
|
211 |
String utilisateurPrenom = observation.getPrenomAuteur();
|
1062 |
benjamin |
212 |
|
941 |
benjamin |
213 |
String utilisateurCourriel = observation.getCourrielAuteur();
|
|
|
214 |
String utilisateurId = observation.getIdAuteur();
|
|
|
215 |
PropositionDetermination propositionDetermination = new PropositionDetermination(observation);
|
|
|
216 |
Contributeur contributeur = new Contributeur(utilisateurId, utilisateurNom, utilisateurPrenom, utilisateurCourriel);
|
|
|
217 |
propositionDetermination.setContributeur(contributeur);
|
1527 |
mathias |
218 |
java.util.Date datePropDeter = parserDateObservation(observation.getDateTransmission());
|
941 |
benjamin |
219 |
propositionDetermination.setDate(datePropDeter);
|
1984 |
aurelien |
220 |
|
941 |
benjamin |
221 |
propositionDetermination.setEspece(observation.getNomRetenu());
|
1982 |
aurelien |
222 |
propositionDetermination.setNumNomenclatural(observation.getNumNomenclatural());
|
|
|
223 |
propositionDetermination.setReferentiel(observation.getReferentiel());
|
1209 |
gduche |
224 |
if (!propositionInitialeExiste) {
|
|
|
225 |
propositionDetermination.setEstPropositionInitiale(true);
|
|
|
226 |
}
|
|
|
227 |
|
941 |
benjamin |
228 |
|
|
|
229 |
return propositionDetermination;
|
|
|
230 |
}
|
|
|
231 |
|
|
|
232 |
/**
|
|
|
233 |
* Recupere une liste de commentaires à partir du JSON
|
|
|
234 |
*
|
|
|
235 |
* @param imageJson
|
|
|
236 |
* @return
|
|
|
237 |
*/
|
939 |
benjamin |
238 |
public static List<Commentaire> parserCommentaires(JSONObject commentaires) {
|
|
|
239 |
List<InterventionForum> interventionForums = parserInterventions(commentaires);
|
926 |
benjamin |
240 |
List<Commentaire> commentairesListe = new ArrayList<Commentaire>();
|
|
|
241 |
for (InterventionForum interventionForum : interventionForums) {
|
|
|
242 |
if (interventionForum instanceof Commentaire) {
|
|
|
243 |
commentairesListe.add((Commentaire) interventionForum);
|
|
|
244 |
}
|
|
|
245 |
}
|
|
|
246 |
return commentairesListe;
|
|
|
247 |
|
|
|
248 |
}
|
|
|
249 |
|
941 |
benjamin |
250 |
/**
|
|
|
251 |
* Recupere une liste d'interventions à partir du JSON
|
|
|
252 |
*
|
|
|
253 |
* @param imageJson
|
|
|
254 |
* @return
|
|
|
255 |
*/
|
939 |
benjamin |
256 |
public static List<InterventionForum> parserInterventions(JSONObject interventions) {
|
889 |
gduche |
257 |
HashMap<String, InterventionForum> interventionsNonTypees = new HashMap<String, InterventionForum>();
|
926 |
benjamin |
258 |
|
|
|
259 |
List<InterventionForum> retour = new ArrayList<InterventionForum>();
|
939 |
benjamin |
260 |
|
926 |
benjamin |
261 |
// parcourir les interventions et en faire un tableau
|
939 |
benjamin |
262 |
if (interventions == null) {
|
926 |
benjamin |
263 |
return retour;
|
|
|
264 |
}
|
888 |
gduche |
265 |
Iterator<String> itInterventions = interventions.keySet().iterator();
|
|
|
266 |
while (itInterventions.hasNext()) {
|
|
|
267 |
JSONObject jsonIntervention = interventions.get(itInterventions.next()).isObject();
|
|
|
268 |
String nomSel = getValeurOuVide(jsonIntervention, "nom_sel");
|
926 |
benjamin |
269 |
|
888 |
gduche |
270 |
String id = getValeurOuVide(jsonIntervention, "id_commentaire");
|
981 |
aurelien |
271 |
String idParent = getValeurOuVide(jsonIntervention, "id_parent");
|
888 |
gduche |
272 |
String texte = getValeurOuVide(jsonIntervention, "texte");
|
926 |
benjamin |
273 |
|
977 |
aurelien |
274 |
String idUtilisateur = getValeurOuVide(jsonIntervention, "auteur.id");
|
952 |
aurelien |
275 |
String nom = getValeurOuVide(jsonIntervention, "auteur.nom");
|
|
|
276 |
String prenom = getValeurOuVide(jsonIntervention, "auteur.prenom");
|
|
|
277 |
String courriel = getValeurOuVide(jsonIntervention, "auteur.courriel");
|
888 |
gduche |
278 |
Contributeur contributeur = new Contributeur(idUtilisateur, nom, prenom, courriel);
|
1209 |
gduche |
279 |
|
965 |
aurelien |
280 |
Date date = parserDateObservation(getValeurOuVide(jsonIntervention, "date"));
|
926 |
benjamin |
281 |
|
888 |
gduche |
282 |
if (!nomSel.equals("")) {
|
|
|
283 |
String nom_sel = getValeurOuVide(jsonIntervention, "nom_sel");
|
|
|
284 |
String nom_sel_nn = getValeurOuVide(jsonIntervention, "nom_sel_nn");
|
|
|
285 |
String nom_ret = getValeurOuVide(jsonIntervention, "nom_ret");
|
|
|
286 |
String nom_ret_nn = getValeurOuVide(jsonIntervention, "nom_ret_nn");
|
|
|
287 |
String famille = getValeurOuVide(jsonIntervention, "famille");
|
|
|
288 |
String nom_referentiel = getValeurOuVide(jsonIntervention, "nom_referentiel");
|
1209 |
gduche |
289 |
|
920 |
aurelien |
290 |
String nbCommentaires = getValeurOuVide(jsonIntervention, "nb_commentaires");
|
926 |
benjamin |
291 |
|
888 |
gduche |
292 |
PropositionDetermination intervention = new PropositionDetermination(id, contributeur, texte);
|
1209 |
gduche |
293 |
String proposition_initiale = getValeurOuVide(jsonIntervention, "proposition_initiale");
|
|
|
294 |
if (proposition_initiale != null && proposition_initiale.equals("1")) {
|
|
|
295 |
intervention.setEstPropositionInitiale(true);
|
1937 |
aurelien |
296 |
}
|
|
|
297 |
|
|
|
298 |
String proposition_retenue = getValeurOuVide(jsonIntervention, "proposition_retenue");
|
|
|
299 |
if (proposition_retenue != null && proposition_retenue.equals("1")) {
|
|
|
300 |
intervention.setEstPropositionRetenue(true);
|
|
|
301 |
}
|
|
|
302 |
|
888 |
gduche |
303 |
intervention.setEspece(nom_sel);
|
926 |
benjamin |
304 |
|
|
|
305 |
if (!nbCommentaires.equals("")) {
|
933 |
aurelien |
306 |
int nbComm = Integer.parseInt(nbCommentaires);
|
|
|
307 |
intervention.setNbCommentaires(nbComm);
|
920 |
aurelien |
308 |
}
|
926 |
benjamin |
309 |
|
1393 |
aurelien |
310 |
if (nom_sel_nn != null && !nom_sel_nn.equals("")) {
|
|
|
311 |
intervention.setNumNomenclatural(nom_sel_nn);
|
1104 |
gduche |
312 |
}
|
|
|
313 |
|
1393 |
aurelien |
314 |
if(nom_referentiel != null && !nom_referentiel.equals("")) {
|
|
|
315 |
intervention.setReferentiel(nom_referentiel);
|
|
|
316 |
}
|
1209 |
gduche |
317 |
|
888 |
gduche |
318 |
if (!idParent.equals("")) {
|
|
|
319 |
intervention.setIdParent(idParent);
|
|
|
320 |
}
|
926 |
benjamin |
321 |
|
|
|
322 |
if (jsonIntervention.get("votes") != null && jsonIntervention.get("votes").isObject() != null) {
|
939 |
benjamin |
323 |
intervention.setVotesDeterminations(parserVotesDetermination(jsonIntervention.get("votes").isObject()));
|
888 |
gduche |
324 |
}
|
926 |
benjamin |
325 |
|
888 |
gduche |
326 |
intervention.setDate(date);
|
889 |
gduche |
327 |
interventionsNonTypees.put(intervention.getId(), intervention);
|
926 |
benjamin |
328 |
|
888 |
gduche |
329 |
} else {
|
|
|
330 |
Commentaire intervention = new Commentaire(contributeur, date, texte);
|
893 |
gduche |
331 |
intervention.setId(id);
|
888 |
gduche |
332 |
intervention.setDate(date);
|
889 |
gduche |
333 |
interventionsNonTypees.put(intervention.getId(), intervention);
|
893 |
gduche |
334 |
if (!idParent.equals("")) {
|
|
|
335 |
intervention.setIdParent(idParent);
|
|
|
336 |
}
|
888 |
gduche |
337 |
}
|
|
|
338 |
}
|
|
|
339 |
|
889 |
gduche |
340 |
Iterator<String> itIntervention = interventionsNonTypees.keySet().iterator();
|
|
|
341 |
while (itIntervention.hasNext()) {
|
|
|
342 |
String id = itIntervention.next();
|
|
|
343 |
InterventionForum intervention = interventionsNonTypees.get(id);
|
|
|
344 |
String idParent = intervention.getIdParent();
|
1003 |
benjamin |
345 |
if (idParent != null && !idParent.equals("") && !idParent.equals("0") && interventionsNonTypees.containsKey(idParent)) {
|
893 |
gduche |
346 |
InterventionForum parent = interventionsNonTypees.get(idParent);
|
|
|
347 |
intervention.setParent(parent);
|
1062 |
benjamin |
348 |
parent.ajouterCommentaire((Commentaire) intervention);
|
|
|
349 |
} else {
|
1003 |
benjamin |
350 |
retour.add(intervention);
|
|
|
351 |
}
|
889 |
gduche |
352 |
}
|
926 |
benjamin |
353 |
|
889 |
gduche |
354 |
return retour;
|
500 |
aurelien |
355 |
}
|
939 |
benjamin |
356 |
|
941 |
benjamin |
357 |
/**
|
|
|
358 |
* Recupere une liste de commentaires à partir du JSON
|
|
|
359 |
*
|
|
|
360 |
* @param imageJson
|
|
|
361 |
* @return
|
|
|
362 |
*/
|
931 |
aurelien |
363 |
public static String convertirEtParserRetourAjoutCommentaire(String retour) {
|
929 |
aurelien |
364 |
JSONObject retourJson = JSONParser.parseStrict(retour).isObject();
|
|
|
365 |
return parserRetourAjoutCommentaire(retourJson);
|
|
|
366 |
}
|
926 |
benjamin |
367 |
|
941 |
benjamin |
368 |
/**
|
|
|
369 |
* Recupere une liste de commentaires à partir d'un objet JSON
|
|
|
370 |
*
|
|
|
371 |
* @param imageJson
|
|
|
372 |
* @return
|
|
|
373 |
*/
|
884 |
aurelien |
374 |
public static String parserRetourAjoutCommentaire(JSONObject retour) {
|
|
|
375 |
String id = "";
|
926 |
benjamin |
376 |
if (retour != null) {
|
884 |
aurelien |
377 |
id = getValeurOuVide(retour, "id_commentaire");
|
|
|
378 |
}
|
|
|
379 |
return id;
|
|
|
380 |
}
|
926 |
benjamin |
381 |
|
888 |
gduche |
382 |
public static String getValeurOuVide(JSONObject objet, String index) {
|
920 |
aurelien |
383 |
return (objet.get(index) != null && objet.get(index).isString() != null) ? objet.get(index).isString().stringValue() : "";
|
888 |
gduche |
384 |
}
|
926 |
benjamin |
385 |
|
941 |
benjamin |
386 |
/**
|
|
|
387 |
* Recupere une liste de votes sur une determination à partir du JSON
|
|
|
388 |
*
|
|
|
389 |
* @param imageJson
|
|
|
390 |
* @return
|
|
|
391 |
*/
|
939 |
benjamin |
392 |
public static HashMap<String, VoteDetermination> parserRetourListeVotesDetermination(String votesString) {
|
900 |
aurelien |
393 |
|
|
|
394 |
HashMap<String, VoteDetermination> retour = null;
|
926 |
benjamin |
395 |
|
900 |
aurelien |
396 |
JSONObject votes = JSONParser.parseStrict(votesString).isObject();
|
926 |
benjamin |
397 |
if (votes != null && votes.get("resultats") != null && votes.get("resultats").isObject() != null) {
|
900 |
aurelien |
398 |
JSONObject resultat = votes.get("resultats").isObject();
|
939 |
benjamin |
399 |
retour = parserVotesDetermination(resultat);
|
900 |
aurelien |
400 |
}
|
|
|
401 |
return retour;
|
|
|
402 |
}
|
926 |
benjamin |
403 |
|
941 |
benjamin |
404 |
/**
|
|
|
405 |
* Recupere une liste de votes sur une determination à partir d'un objet
|
|
|
406 |
* JSON
|
|
|
407 |
*
|
|
|
408 |
* @param imageJson
|
|
|
409 |
* @return
|
|
|
410 |
*/
|
939 |
benjamin |
411 |
public static HashMap<String, VoteDetermination> parserVotesDetermination(JSONObject votes) {
|
846 |
aurelien |
412 |
HashMap<String, VoteDetermination> votesDetermination = new HashMap<String, VoteDetermination>();
|
|
|
413 |
java.util.Iterator<String> itVotes = votes.keySet().iterator();
|
|
|
414 |
while (itVotes.hasNext()) {
|
|
|
415 |
JSONObject vote = votes.get(itVotes.next()).isObject();
|
|
|
416 |
VoteDetermination vd = new VoteDetermination();
|
|
|
417 |
vd.setContributeur(getValeurOuVide(vote, "auteur.id"));
|
965 |
aurelien |
418 |
vd.setDate(parserDateObservation(getValeurOuVide(vote, "date")));
|
846 |
aurelien |
419 |
vd.setId(getValeurOuVide(vote, "vote.id"));
|
|
|
420 |
vd.setVote(Integer.parseInt(getValeurOuVide(vote, "vote")));
|
900 |
aurelien |
421 |
vd.setContributeur(getValeurOuVide(vote, "auteur.id"));
|
926 |
benjamin |
422 |
|
|
|
423 |
if (vote.get("auteur.nom") != null && vote.get("auteur.nom") != null && vote.get("auteur.courriel") != null) {
|
|
|
424 |
Contributeur auteur = new Contributeur(getValeurOuVide(vote, "auteur.id"), getValeurOuVide(vote, "auteur.nom"), getValeurOuVide(vote, "auteur.prenom"), getValeurOuVide(vote, "auteur.courriel"));
|
900 |
aurelien |
425 |
vd.setAuteur(auteur);
|
|
|
426 |
}
|
926 |
benjamin |
427 |
|
846 |
aurelien |
428 |
votesDetermination.put(getValeurOuVide(vote, "auteur.id"), vd);
|
926 |
benjamin |
429 |
}
|
846 |
aurelien |
430 |
return votesDetermination;
|
|
|
431 |
}
|
926 |
benjamin |
432 |
|
941 |
benjamin |
433 |
/**
|
|
|
434 |
* Recupere une liste de votes sur des images à partir d'un objet JSON
|
|
|
435 |
*
|
|
|
436 |
* @param imageJson
|
|
|
437 |
* @return
|
|
|
438 |
*/
|
926 |
benjamin |
439 |
public static HashMap<String, HashMap<String, VoteProtocole>> parserVotesProtocoles(JSONObject votes) {
|
|
|
440 |
|
|
|
441 |
HashMap<String, HashMap<String, VoteProtocole>> votesProtocoles = new HashMap<String, HashMap<String, VoteProtocole>>();
|
777 |
aurelien |
442 |
java.util.Iterator<String> itProtocoles = votes.keySet().iterator();
|
926 |
benjamin |
443 |
while (itProtocoles.hasNext()) {
|
|
|
444 |
JSONObject protocole = votes.get(itProtocoles.next()).isObject();
|
777 |
aurelien |
445 |
JSONObject votesPourCeProtocoles = protocole.get("votes").isObject();
|
|
|
446 |
String idProtocoleVote = protocole.get("protocole.id").isString().stringValue();
|
|
|
447 |
java.util.Iterator<String> itVotes = votesPourCeProtocoles.keySet().iterator();
|
926 |
benjamin |
448 |
while (itVotes.hasNext()) {
|
777 |
aurelien |
449 |
JSONObject voteEnCours = votesPourCeProtocoles.get(itVotes.next()).isObject();
|
|
|
450 |
VoteProtocole vd = new VoteProtocole();
|
|
|
451 |
vd.setContributeur(voteEnCours.get("auteur.id").isString().stringValue());
|
1471 |
aurelien |
452 |
vd.setId(voteEnCours.get("vote.id").isString().stringValue());
|
777 |
aurelien |
453 |
// TODO récupérer la date du vote et la parser
|
965 |
aurelien |
454 |
vd.setDate(parserDateObservation(getValeurOuVide(voteEnCours, "date")));
|
777 |
aurelien |
455 |
int valeurVote = Integer.parseInt(voteEnCours.get("vote").isString().stringValue());
|
|
|
456 |
vd.setVote(valeurVote);
|
926 |
benjamin |
457 |
if (!votesProtocoles.containsKey(idProtocoleVote)) {
|
|
|
458 |
votesProtocoles.put(idProtocoleVote, new HashMap<String, VoteProtocole>());
|
777 |
aurelien |
459 |
}
|
1573 |
mathias |
460 |
// un seul vote par utilisateur - garde le premier pour être cohérent avec commun/Stats (PHP)
|
|
|
461 |
if (! votesProtocoles.get(idProtocoleVote).containsKey(vd.getContributeur())) {
|
|
|
462 |
votesProtocoles.get(idProtocoleVote).put(vd.getContributeur(), vd);
|
|
|
463 |
}
|
500 |
aurelien |
464 |
}
|
|
|
465 |
}
|
926 |
benjamin |
466 |
|
500 |
aurelien |
467 |
return votesProtocoles;
|
|
|
468 |
}
|
926 |
benjamin |
469 |
|
941 |
benjamin |
470 |
/**
|
|
|
471 |
* Recupere une date à partir du JSON
|
|
|
472 |
*
|
|
|
473 |
* @param imageJson
|
|
|
474 |
* @return
|
|
|
475 |
*/
|
500 |
aurelien |
476 |
public static Date parserDateObservation(String date) {
|
|
|
477 |
Date dateParsee = new Date();
|
965 |
aurelien |
478 |
DateTimeFormat formatDateObs = DateTimeFormat.getFormat("yyyy-MM-dd HH:mm:ss");
|
926 |
benjamin |
479 |
try {
|
|
|
480 |
dateParsee = formatDateObs.parse(date);
|
|
|
481 |
} catch (IllegalArgumentException e) {
|
|
|
482 |
dateParsee = new java.sql.Date(0);
|
500 |
aurelien |
483 |
}
|
926 |
benjamin |
484 |
return dateParsee;
|
500 |
aurelien |
485 |
}
|
926 |
benjamin |
486 |
|
941 |
benjamin |
487 |
/**
|
|
|
488 |
* Recupere des mots-clefs à partir du JSON
|
|
|
489 |
*
|
|
|
490 |
* @param imageJson
|
|
|
491 |
* @return
|
|
|
492 |
*/
|
500 |
aurelien |
493 |
public static List<String> parserMotsCles(String motsClesTexte) {
|
|
|
494 |
String[] tabMotsCle = motsClesTexte.split(",");
|
|
|
495 |
List<String> motsClesParses = new ArrayList<String>();
|
|
|
496 |
for (int i = 0; i < tabMotsCle.length; i++) {
|
1014 |
aurelien |
497 |
motsClesParses.add(tabMotsCle[i].trim());
|
500 |
aurelien |
498 |
}
|
926 |
benjamin |
499 |
|
500 |
aurelien |
500 |
return motsClesParses;
|
|
|
501 |
}
|
926 |
benjamin |
502 |
|
500 |
aurelien |
503 |
public static String getIdAvecPadding(String id) {
|
|
|
504 |
int maxZeros = 9 - id.length();
|
|
|
505 |
for (int i = 0; i < maxZeros; i++) {
|
|
|
506 |
id = "0" + id;
|
|
|
507 |
}
|
|
|
508 |
return id;
|
|
|
509 |
}
|
926 |
benjamin |
510 |
|
941 |
benjamin |
511 |
/**
|
|
|
512 |
* Recupere un utilisateur à partir du JSON
|
|
|
513 |
*
|
|
|
514 |
* @param imageJson
|
|
|
515 |
* @return
|
|
|
516 |
*/
|
516 |
aurelien |
517 |
public static Utilisateur parserUtilisateurJson(JSONValue valeurJson) {
|
|
|
518 |
JSONObject utilisateurJson = valeurJson.isObject();
|
|
|
519 |
boolean connecteUtilisateur = utilisateurJson.get("connecte").isBoolean().booleanValue();
|
|
|
520 |
String idUtilisateur = utilisateurJson.get("id_utilisateur").isString().stringValue();
|
1496 |
aurelien |
521 |
String sessionId = utilisateurJson.get("session_id").isString().stringValue();
|
1667 |
jpm |
522 |
GWT.log(valeurJson.toString());
|
|
|
523 |
|
516 |
aurelien |
524 |
Utilisateur utilisateur;
|
926 |
benjamin |
525 |
if (connecteUtilisateur) {
|
522 |
aurelien |
526 |
String courrielUtilisateur = utilisateurJson.get("courriel").isString().stringValue();
|
516 |
aurelien |
527 |
String nomUtilisateur = utilisateurJson.get("nom").isString().stringValue();
|
|
|
528 |
String prenomUtilisateur = utilisateurJson.get("prenom").isString().stringValue();
|
1690 |
jpm |
529 |
|
|
|
530 |
String adminNiveau = "";
|
|
|
531 |
if (utilisateurJson.get("admin").isString() != null) {
|
|
|
532 |
adminNiveau = utilisateurJson.get("admin").isString().stringValue();
|
|
|
533 |
}
|
2050 |
aurelien |
534 |
|
2144 |
mathias |
535 |
//String nbEvtsUtilisateur = utilisateurJson.get("nb_evenements").isString().stringValue();
|
2050 |
aurelien |
536 |
String dateDerniereConsultationEvts = utilisateurJson.get("date_derniere_consultation_evenements").isString().stringValue();
|
926 |
benjamin |
537 |
|
1667 |
jpm |
538 |
utilisateur = new Utilisateur(sessionId, idUtilisateur, prenomUtilisateur, nomUtilisateur,
|
2077 |
mathias |
539 |
courrielUtilisateur, adminNiveau);
|
2050 |
aurelien |
540 |
|
2054 |
aurelien |
541 |
ActiviteUtilisateur activite = new ActiviteUtilisateur();
|
2144 |
mathias |
542 |
//activite.setNbEvenements(nbEvtsUtilisateur);
|
2054 |
aurelien |
543 |
activite.setDateDerniereConsultationEvenements(dateDerniereConsultationEvts);
|
|
|
544 |
|
|
|
545 |
utilisateur.setActivite(activite);
|
516 |
aurelien |
546 |
} else {
|
1496 |
aurelien |
547 |
utilisateur = new Utilisateur(sessionId, idUtilisateur);
|
516 |
aurelien |
548 |
}
|
|
|
549 |
return utilisateur;
|
|
|
550 |
}
|
2077 |
mathias |
551 |
|
|
|
552 |
/**
|
|
|
553 |
* Recupere des informations d'authentification à partir du JSON renvoyé par les
|
|
|
554 |
* services Auth de l'annuaire (SSO)
|
|
|
555 |
*
|
|
|
556 |
* @param valeurJson
|
|
|
557 |
* @return AuthInfo
|
|
|
558 |
*/
|
|
|
559 |
public static AuthInfo parserAuthJson(JSONValue valeurJson) {
|
|
|
560 |
AuthInfo authInfo = new AuthInfo();
|
|
|
561 |
JSONObject authJson = valeurJson.isObject();
|
|
|
562 |
|
|
|
563 |
JSONValue erreurJSON = authJson.get("error");
|
|
|
564 |
// test si erreur
|
|
|
565 |
if (erreurJSON != null) {
|
|
|
566 |
JSONString erreur = erreurJSON.isString();
|
|
|
567 |
if (erreur != null) {
|
|
|
568 |
authInfo.error = erreur.stringValue();
|
|
|
569 |
} else {
|
|
|
570 |
authInfo.error = "erreur d'authentification";
|
|
|
571 |
}
|
|
|
572 |
} else {
|
|
|
573 |
boolean session = authJson.get("session").isBoolean().booleanValue();
|
|
|
574 |
authInfo.session = session;
|
|
|
575 |
// test si session ouverte
|
|
|
576 |
if (session) {
|
|
|
577 |
JSONValue tokenJson = authJson.get("token");
|
|
|
578 |
String token = null;
|
|
|
579 |
// protection paranoïaque
|
|
|
580 |
if (tokenJson != null) {
|
|
|
581 |
JSONString tokenString = tokenJson.isString();
|
|
|
582 |
if (tokenString != null) {
|
|
|
583 |
token = tokenString.stringValue();
|
|
|
584 |
}
|
|
|
585 |
}
|
|
|
586 |
String tokenId = authJson.get("token_id").isString().stringValue();
|
|
|
587 |
int duration = (int) authJson.get("duration").isNumber().doubleValue();
|
|
|
588 |
JSONValue lastModifJson = authJson.get("last_modif");
|
|
|
589 |
|
|
|
590 |
authInfo.token = token;
|
|
|
591 |
authInfo.tokenId = tokenId;
|
|
|
592 |
authInfo.duration = duration;
|
|
|
593 |
// test si lastModif est null
|
|
|
594 |
if (lastModifJson != null) {
|
|
|
595 |
JSONNumber lastModif = lastModifJson.isNumber();
|
|
|
596 |
if (lastModif != null) {
|
|
|
597 |
authInfo.lastModif = (int) lastModif.doubleValue();
|
|
|
598 |
}
|
|
|
599 |
}
|
|
|
600 |
}
|
|
|
601 |
}
|
|
|
602 |
//GWT.log(valeurJson.toString());
|
|
|
603 |
|
|
|
604 |
return authInfo;
|
|
|
605 |
}
|
1175 |
aurelien |
606 |
|
|
|
607 |
/**
|
|
|
608 |
* Recupere un utilisateur à partir du JSON
|
|
|
609 |
*
|
|
|
610 |
* @param imageJson
|
|
|
611 |
* @return
|
|
|
612 |
*/
|
|
|
613 |
public static HashMap<String, String> parserPreferencesUtilisateur(JSONValue valeurJson) {
|
|
|
614 |
|
|
|
615 |
JSONObject utilisateurJson = valeurJson.isObject();
|
|
|
616 |
HashMap<String, String> preferences = new HashMap<String, String>();
|
|
|
617 |
JSONObject preferencesJson = utilisateurJson.get("preferences").isObject();
|
|
|
618 |
|
|
|
619 |
java.util.Iterator<String> it = preferencesJson.keySet().iterator();
|
|
|
620 |
while (it.hasNext()) {
|
|
|
621 |
String cle = it.next();
|
|
|
622 |
preferences.put(cle, preferencesJson.get(cle).isString().stringValue());
|
|
|
623 |
}
|
|
|
624 |
return preferences;
|
|
|
625 |
}
|
941 |
benjamin |
626 |
|
|
|
627 |
/**
|
|
|
628 |
* Retourne un objet {@link ProtocoleServiceResultat} à partir d'un objet
|
|
|
629 |
* JSON
|
|
|
630 |
*
|
|
|
631 |
* @param retourJson
|
|
|
632 |
* @return
|
|
|
633 |
*/
|
|
|
634 |
public static ProtocoleServiceResultat parserProtocoleServiceResultat(JSONValue retourJson) {
|
|
|
635 |
List<Protocole> protocoles = new ArrayList<Protocole>();
|
|
|
636 |
JSONObject tableauProto = retourJson.isObject().get("resultats").isObject();
|
|
|
637 |
|
|
|
638 |
if (tableauProto != null) {
|
|
|
639 |
java.util.Iterator<String> it = tableauProto.keySet().iterator();
|
|
|
640 |
while (it.hasNext()) {
|
|
|
641 |
|
|
|
642 |
JSONObject protocoleJSON = tableauProto.get(it.next()).isObject();
|
|
|
643 |
Protocole protocole = new Protocole();
|
|
|
644 |
String idProtocole = UtilitairesServiceResultat.getValeurOuVide(protocoleJSON, "protocole.id");
|
2080 |
aurelien |
645 |
protocole.setId(Integer.parseInt(idProtocole));
|
|
|
646 |
String doitEtreIdentifiePourVoter = UtilitairesServiceResultat.getValeurOuVide(protocoleJSON, "protocole.identifie");
|
|
|
647 |
boolean boolDoitEtreIdentifie = doitEtreIdentifiePourVoter.equals("1") ? true : false;
|
|
|
648 |
protocole.setDoitEtreIdentifiePourVoter(boolDoitEtreIdentifie);
|
941 |
benjamin |
649 |
protocole.setNom(UtilitairesServiceResultat.getValeurOuVide(protocoleJSON, "protocole.intitule"));
|
|
|
650 |
protocole.setDescription(UtilitairesServiceResultat.getValeurOuVide(protocoleJSON, "protocole.descriptif"));
|
1218 |
aurelien |
651 |
protocole.setTag(UtilitairesServiceResultat.getValeurOuVide(protocoleJSON, "protocole.tag"));
|
1409 |
aurelien |
652 |
protocole.setMotsClesProtocole(UtilitairesServiceResultat.getValeurOuVide(protocoleJSON, "protocole.mots_cles"));
|
941 |
benjamin |
653 |
protocoles.add(protocole);
|
|
|
654 |
}
|
|
|
655 |
}
|
|
|
656 |
|
|
|
657 |
return new ProtocoleServiceResultat(protocoles);
|
|
|
658 |
}
|
|
|
659 |
|
|
|
660 |
/**
|
|
|
661 |
* Retourne un objet {@link ImageServiceResultat} à partir du JSON
|
|
|
662 |
*
|
|
|
663 |
* @param retourJson
|
|
|
664 |
* @return
|
|
|
665 |
*/
|
|
|
666 |
public static ImageServiceResultat parserImageServiceResultat(JSONValue retourJson) {
|
|
|
667 |
|
|
|
668 |
ImageServiceResultat imageServiceResultat = new ImageServiceResultat();
|
|
|
669 |
int nbTotalImagesPourLaRecherche;
|
|
|
670 |
|
|
|
671 |
List<Image> images = new ArrayList<Image>();
|
|
|
672 |
// TODO ajouter vérifications plus précises
|
|
|
673 |
if (retourJson.isObject().get("entete") != null) {
|
|
|
674 |
double total = retourJson.isObject().get("entete").isObject().get("total").isNumber().doubleValue();
|
|
|
675 |
nbTotalImagesPourLaRecherche = (int) total;
|
1861 |
jpm |
676 |
// ATTENTION : "resultats" devrait contenir un array car il garantit l'ordre ce qui est important pour
|
|
|
677 |
// résultat de recherche. Migration progressive des ws pour qu'ils retourne un array et non un objet.
|
|
|
678 |
if (retourJson.isObject().get("resultats").isObject() != null) {
|
|
|
679 |
// TODO : supprimer cette condition quand tous les ws seront migrés vers array.
|
|
|
680 |
JSONObject tableauImg = retourJson.isObject().get("resultats").isObject();
|
|
|
681 |
if (tableauImg != null) {
|
|
|
682 |
java.util.Iterator<String> it = tableauImg.keySet().iterator();
|
|
|
683 |
while (it.hasNext()) {
|
|
|
684 |
JSONObject imageJson = tableauImg.get(it.next()).isObject();
|
|
|
685 |
Image image = parserRetourImage(imageJson);
|
|
|
686 |
images.add(image);
|
|
|
687 |
}
|
1062 |
benjamin |
688 |
}
|
1861 |
jpm |
689 |
} else if (retourJson.isObject().get("resultats").isArray() != null) {
|
|
|
690 |
JSONArray tableauImg = retourJson.isObject().get("resultats").isArray();
|
|
|
691 |
if (tableauImg != null) {
|
|
|
692 |
int nbInfosImagesRetournees = (int) tableauImg.size();
|
|
|
693 |
for (int i = 0; i < nbInfosImagesRetournees; i++) {
|
|
|
694 |
JSONObject imageJson = tableauImg.get(i).isObject();
|
|
|
695 |
Image image = parserRetourImage(imageJson);
|
|
|
696 |
images.add(image);
|
|
|
697 |
}
|
|
|
698 |
}
|
941 |
benjamin |
699 |
}
|
|
|
700 |
} else {
|
|
|
701 |
JSONArray tableauImg = retourJson.isObject().get("images").isArray();
|
|
|
702 |
nbTotalImagesPourLaRecherche = (int) tableauImg.size();
|
|
|
703 |
for (int i = 0; i < nbTotalImagesPourLaRecherche; i++) {
|
|
|
704 |
JSONObject imageJson = tableauImg.get(i).isObject();
|
|
|
705 |
Image image = parserRetourImage(imageJson);
|
|
|
706 |
images.add(image);
|
|
|
707 |
}
|
|
|
708 |
}
|
|
|
709 |
|
|
|
710 |
imageServiceResultat.setImages(images);
|
|
|
711 |
imageServiceResultat.setNbTotalImagesPourLaRecherche(nbTotalImagesPourLaRecherche);
|
|
|
712 |
|
|
|
713 |
return imageServiceResultat;
|
|
|
714 |
|
|
|
715 |
}
|
|
|
716 |
|
|
|
717 |
/**
|
|
|
718 |
* Retourne un objet {@link Image} à partir du JSON
|
|
|
719 |
*
|
|
|
720 |
* @param retourJson
|
|
|
721 |
* @return
|
|
|
722 |
*/
|
|
|
723 |
public static Image parserRetourImage(JSONObject imageJson) {
|
|
|
724 |
Image image = UtilitairesServiceResultat.parserImageJSON(imageJson);
|
|
|
725 |
|
|
|
726 |
if (imageJson.get("observation") != null && imageJson.get("observation").isObject() != null) {
|
|
|
727 |
JSONObject observationJson = imageJson.get("observation").isObject();
|
|
|
728 |
image.setObservation(UtilitairesServiceResultat.parserObservationJSON(observationJson));
|
|
|
729 |
}
|
|
|
730 |
|
|
|
731 |
if (imageJson.get("protocoles_votes") != null && imageJson.get("protocoles_votes").isObject() != null) {
|
|
|
732 |
JSONObject votes = imageJson.get("protocoles_votes").isObject();
|
|
|
733 |
image.setVoteProtocoles(UtilitairesServiceResultat.parserVotesProtocoles(votes));
|
|
|
734 |
}
|
|
|
735 |
|
|
|
736 |
return image;
|
|
|
737 |
}
|
|
|
738 |
|
|
|
739 |
/**
|
|
|
740 |
* Retourne un objet {@link ObservationServiceResultat} à partir du JSON
|
|
|
741 |
*
|
|
|
742 |
* @param retourJson
|
|
|
743 |
* @return
|
|
|
744 |
*/
|
|
|
745 |
public static ObservationServiceResultat parserObservationServiceResultat(JSONValue retourJson) {
|
|
|
746 |
|
|
|
747 |
ObservationServiceResultat observationServiceResultat = new ObservationServiceResultat();
|
|
|
748 |
|
|
|
749 |
List<Observation> observations = new ArrayList<Observation>();
|
|
|
750 |
int nbTotalObservationsPourLaRecherche = 0;
|
|
|
751 |
|
|
|
752 |
if (retourJson.isObject().get("entete") != null) {
|
|
|
753 |
// TODO ajouter vérifications plus précises
|
|
|
754 |
double total = retourJson.isObject().get("entete").isObject().get("total").isNumber().doubleValue();
|
|
|
755 |
nbTotalObservationsPourLaRecherche = (int) total;
|
1934 |
aurelien |
756 |
JSONArray tableauObs = retourJson.isObject().get("resultats").isArray();
|
941 |
benjamin |
757 |
|
|
|
758 |
if (tableauObs != null) {
|
1934 |
aurelien |
759 |
for(int i = 0; i < tableauObs.size(); i++) {
|
|
|
760 |
JSONObject observationJson = tableauObs.get(i).isObject();
|
941 |
benjamin |
761 |
Observation observation = analyserObservation(observationJson);
|
|
|
762 |
observations.add(observation);
|
|
|
763 |
}
|
|
|
764 |
}
|
|
|
765 |
} else {
|
|
|
766 |
JSONObject observationJson = retourJson.isObject();
|
|
|
767 |
Observation observation = analyserObservation(observationJson);
|
|
|
768 |
observations.add(observation);
|
|
|
769 |
CacheClient.getInstance().setObservationCourante(observation);
|
|
|
770 |
}
|
|
|
771 |
|
|
|
772 |
observationServiceResultat.setObservations(observations);
|
|
|
773 |
observationServiceResultat.setNbTotalObservationsPourLaRecherche(nbTotalObservationsPourLaRecherche);
|
|
|
774 |
|
|
|
775 |
return observationServiceResultat;
|
|
|
776 |
}
|
|
|
777 |
|
|
|
778 |
/**
|
|
|
779 |
* Retourne un objet {@link Observation} avec ses {@link Image} associées à
|
|
|
780 |
* partir du JSON
|
|
|
781 |
*
|
|
|
782 |
* @param retourJson
|
|
|
783 |
* @return
|
|
|
784 |
*/
|
|
|
785 |
private static Observation analyserObservation(JSONObject observationJson) {
|
|
|
786 |
Observation observation = UtilitairesServiceResultat.parserObservationJSON(observationJson);
|
|
|
787 |
JSONArray tableauImagesObs = observationJson.get("images").isArray();
|
|
|
788 |
List<Image> imagesPourObs = new ArrayList<Image>();
|
|
|
789 |
|
|
|
790 |
int nbImages = tableauImagesObs.size();
|
|
|
791 |
for (int j = 0; j < nbImages; j++) {
|
|
|
792 |
JSONObject imageJson = tableauImagesObs.get(j).isObject();
|
|
|
793 |
|
|
|
794 |
Image image = UtilitairesServiceResultat.parserImageJSON(imageJson);
|
|
|
795 |
if (imageJson.get("protocoles_votes") != null && imageJson.get("protocoles_votes").isObject() != null) {
|
|
|
796 |
JSONObject votes = imageJson.get("protocoles_votes").isObject();
|
|
|
797 |
image.setVoteProtocoles(UtilitairesServiceResultat.parserVotesProtocoles(votes));
|
|
|
798 |
}
|
|
|
799 |
image.setObservation(observation);
|
|
|
800 |
imagesPourObs.add(image);
|
|
|
801 |
}
|
|
|
802 |
|
|
|
803 |
observation.setImages(imagesPourObs);
|
|
|
804 |
|
|
|
805 |
return observation;
|
|
|
806 |
}
|
|
|
807 |
|
1162 |
aurelien |
808 |
public static List<MotCle> parserRetourListeMotsClesImage(JSONObject retourJson) {
|
|
|
809 |
List<MotCle> motsCles = new ArrayList<MotCle>();
|
1151 |
aurelien |
810 |
JSONObject tableauMc = retourJson;
|
|
|
811 |
if (tableauMc != null) {
|
|
|
812 |
java.util.Iterator<String> it = tableauMc.keySet().iterator();
|
|
|
813 |
while (it.hasNext()) {
|
|
|
814 |
JSONObject mc = tableauMc.get(it.next()).isObject();
|
1162 |
aurelien |
815 |
MotCle motCle = new MotCle(getValeurOuVide(mc, "id_mot_cle"), getValeurOuVide(mc, "image"), getValeurOuVide(mc, "mot_cle"));
|
|
|
816 |
motsCles.add(motCle);
|
1151 |
aurelien |
817 |
}
|
|
|
818 |
}
|
|
|
819 |
return motsCles;
|
|
|
820 |
}
|
1471 |
aurelien |
821 |
|
|
|
822 |
public static String parserRetourAjoutVoteProtocole(JSONObject retour) {
|
|
|
823 |
String id = "";
|
|
|
824 |
if (retour != null) {
|
|
|
825 |
id = getValeurOuVide(retour, "id_vote");
|
|
|
826 |
}
|
|
|
827 |
return id;
|
|
|
828 |
}
|
1986 |
aurelien |
829 |
|
|
|
830 |
public static Map<String, String> parserListePays(JSONValue retourJson) {
|
|
|
831 |
Map<String, String> listePays = new LinkedHashMap<String, String>();
|
|
|
832 |
JSONArray tableauPays = retourJson.isArray();
|
|
|
833 |
int nbPays = (int) tableauPays.size();
|
|
|
834 |
for (int i = 0; i < nbPays; i++) {
|
|
|
835 |
JSONObject pays = tableauPays.get(i).isObject();
|
|
|
836 |
listePays.put(pays.get("code_iso_3166_1").isString().stringValue(), pays.get("nom_fr").isString().stringValue());
|
|
|
837 |
}
|
|
|
838 |
return listePays;
|
|
|
839 |
}
|
2054 |
aurelien |
840 |
|
|
|
841 |
public static ActiviteUtilisateur parserActiviteUtilisateurJson(JSONValue valeurJson) {
|
|
|
842 |
|
|
|
843 |
JSONObject activiteJson = valeurJson.isObject();
|
|
|
844 |
|
2144 |
mathias |
845 |
//String nbEvtsUtilisateur = activiteJson.get("nb_evenements").isString().stringValue();
|
2054 |
aurelien |
846 |
String dateDerniereConsultationEvts = activiteJson.get("date_derniere_consultation_evenements").isString().stringValue();
|
|
|
847 |
|
|
|
848 |
ActiviteUtilisateur activite = new ActiviteUtilisateur();
|
2144 |
mathias |
849 |
//activite.setNbEvenements(nbEvtsUtilisateur);
|
2054 |
aurelien |
850 |
activite.setDateDerniereConsultationEvenements(dateDerniereConsultationEvts);
|
|
|
851 |
|
|
|
852 |
return activite;
|
|
|
853 |
}
|
500 |
aurelien |
854 |
}
|