Subversion Repositories eFlore/Applications.del

Rev

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