Subversion Repositories eFlore/Applications.del

Rev

Rev 1209 | Rev 1367 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

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