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 |
|
876 |
gduche |
9 |
import org.tela_botanica.del.client.modeles.Commentaire;
|
690 |
gduche |
10 |
import org.tela_botanica.del.client.modeles.Contributeur;
|
500 |
aurelien |
11 |
import org.tela_botanica.del.client.modeles.Image;
|
846 |
aurelien |
12 |
import org.tela_botanica.del.client.modeles.InterventionForum;
|
500 |
aurelien |
13 |
import org.tela_botanica.del.client.modeles.Observation;
|
|
|
14 |
import org.tela_botanica.del.client.modeles.PropositionDetermination;
|
516 |
aurelien |
15 |
import org.tela_botanica.del.client.modeles.Utilisateur;
|
846 |
aurelien |
16 |
import org.tela_botanica.del.client.modeles.VoteDetermination;
|
500 |
aurelien |
17 |
import org.tela_botanica.del.client.modeles.VoteProtocole;
|
|
|
18 |
|
|
|
19 |
import com.google.gwt.i18n.client.DateTimeFormat;
|
|
|
20 |
import com.google.gwt.json.client.JSONObject;
|
900 |
aurelien |
21 |
import com.google.gwt.json.client.JSONParser;
|
516 |
aurelien |
22 |
import com.google.gwt.json.client.JSONValue;
|
500 |
aurelien |
23 |
|
|
|
24 |
public class UtilitairesServiceResultat {
|
926 |
benjamin |
25 |
|
|
|
26 |
public static Image parserImageJSON(JSONObject imageJson) {
|
|
|
27 |
|
500 |
aurelien |
28 |
Image image = new Image();
|
763 |
aurelien |
29 |
String idImage = imageJson.get("id_image").isString().stringValue();
|
500 |
aurelien |
30 |
image.setIdImage(idImage);
|
926 |
benjamin |
31 |
image.setUrlFormat("http://www.tela-botanica.org/appli:cel-img:" + getIdAvecPadding(idImage) + "%s%.jpg");
|
|
|
32 |
image.setUrl("http://www.tela-botanica.org/appli:cel-img:" + getIdAvecPadding(idImage) + "CRS.jpg");
|
|
|
33 |
image.setMiniature("http://www.tela-botanica.org/appli:cel-img:" + getIdAvecPadding(idImage) + "XS.jpg");
|
|
|
34 |
|
500 |
aurelien |
35 |
return image;
|
|
|
36 |
}
|
926 |
benjamin |
37 |
|
|
|
38 |
public static Observation parserObservationEtCreerPropositionDetermination(JSONObject observationJson) {
|
500 |
aurelien |
39 |
Observation observation = parserObservationJSON(observationJson);
|
|
|
40 |
return observation;
|
|
|
41 |
}
|
926 |
benjamin |
42 |
|
500 |
aurelien |
43 |
public static Observation parserObservationJSON(JSONObject observationJson) {
|
926 |
benjamin |
44 |
|
500 |
aurelien |
45 |
Observation observation = new Observation();
|
926 |
benjamin |
46 |
observation.setAuteur(getValeurOuVide(observationJson, "auteur.prenom") + " " + getValeurOuVide(observationJson, "auteur.nom"));
|
|
|
47 |
observation.setNomAuteur(getValeurOuVide(observationJson, "auteur.nom"));
|
|
|
48 |
observation.setPrenomAuteur(getValeurOuVide(observationJson, "auteur.nom"));
|
|
|
49 |
observation.setIdAuteur(getValeurOuVide(observationJson, "auteur.id"));
|
|
|
50 |
// TODO: renvoyer le courriel de l'auteur dans les obs
|
837 |
aurelien |
51 |
observation.setCourrielAuteur("");
|
926 |
benjamin |
52 |
observation.setDateTransmission(getValeurOuVide(observationJson, "date_observation"));
|
763 |
aurelien |
53 |
observation.setDateReleve(getValeurOuVide(observationJson, "date_observation"));
|
|
|
54 |
observation.setFamille(getValeurOuVide(observationJson, "determination.famille"));
|
846 |
aurelien |
55 |
observation.setId(getValeurOuVide(observationJson, "id_observation"));
|
|
|
56 |
observation.setIdLocalite(getValeurOuVide(observationJson, "id_zone_geo"));
|
|
|
57 |
observation.setLocalite(getValeurOuVide(observationJson, "zone_geo"));
|
|
|
58 |
observation.setNomRetenu(getValeurOuVide(observationJson, "determination.ns"));
|
|
|
59 |
observation.setMilieu(getValeurOuVide(observationJson, "milieu"));
|
|
|
60 |
observation.setLieuDit(getValeurOuVide(observationJson, "lieudit"));
|
|
|
61 |
observation.setNumNomenclatural(getValeurOuVide(observationJson, "determination.nn"));
|
926 |
benjamin |
62 |
// TODO: renvoyer les mots clés des observations
|
|
|
63 |
// observation.setMotsClefs(parserMotsCles(UtilitairesServiceResultat.getValeurOuVide(observationJson,
|
|
|
64 |
// "mots_cles_texte")));
|
846 |
aurelien |
65 |
JSONValue propositions = observationJson.get("commentaires");
|
926 |
benjamin |
66 |
|
|
|
67 |
if (propositions != null && propositions.isObject() != null) {
|
888 |
gduche |
68 |
List<InterventionForum> interventions = parserInterventions(propositions.isObject(), observation);
|
876 |
gduche |
69 |
observation.setInterventionsForum(interventions);
|
846 |
aurelien |
70 |
} else {
|
|
|
71 |
observation.ajouterPropositionDetermination(creerPropositionDeterminationAPartirObservation(observation));
|
|
|
72 |
}
|
500 |
aurelien |
73 |
return observation;
|
|
|
74 |
}
|
926 |
benjamin |
75 |
|
|
|
76 |
public static List<Commentaire> parserCommentaires(JSONObject commentaires, Observation observation) {
|
|
|
77 |
List<InterventionForum> interventionForums = parserInterventions(commentaires, observation);
|
|
|
78 |
List<Commentaire> commentairesListe = new ArrayList<Commentaire>();
|
|
|
79 |
for (InterventionForum interventionForum : interventionForums) {
|
|
|
80 |
if (interventionForum instanceof Commentaire) {
|
|
|
81 |
commentairesListe.add((Commentaire) interventionForum);
|
|
|
82 |
}
|
|
|
83 |
}
|
|
|
84 |
return commentairesListe;
|
|
|
85 |
|
|
|
86 |
}
|
|
|
87 |
|
888 |
gduche |
88 |
public static List<InterventionForum> parserInterventions(JSONObject interventions, Observation observation) {
|
889 |
gduche |
89 |
HashMap<String, InterventionForum> interventionsNonTypees = new HashMap<String, InterventionForum>();
|
926 |
benjamin |
90 |
|
|
|
91 |
List<InterventionForum> retour = new ArrayList<InterventionForum>();
|
763 |
aurelien |
92 |
|
926 |
benjamin |
93 |
// parcourir les interventions et en faire un tableau
|
|
|
94 |
if(interventions==null){
|
|
|
95 |
return retour;
|
|
|
96 |
}
|
888 |
gduche |
97 |
Iterator<String> itInterventions = interventions.keySet().iterator();
|
|
|
98 |
while (itInterventions.hasNext()) {
|
|
|
99 |
JSONObject jsonIntervention = interventions.get(itInterventions.next()).isObject();
|
|
|
100 |
String nomSel = getValeurOuVide(jsonIntervention, "nom_sel");
|
926 |
benjamin |
101 |
|
888 |
gduche |
102 |
String id = getValeurOuVide(jsonIntervention, "id_commentaire");
|
|
|
103 |
String idParent = getValeurOuVide(jsonIntervention, "ce_commentaire_parent");
|
|
|
104 |
String texte = getValeurOuVide(jsonIntervention, "texte");
|
926 |
benjamin |
105 |
|
888 |
gduche |
106 |
String idUtilisateur = getValeurOuVide(jsonIntervention, "ce_utilisateur");
|
|
|
107 |
String nom = getValeurOuVide(jsonIntervention, "utilisateur_nom");
|
|
|
108 |
String prenom = getValeurOuVide(jsonIntervention, "utilisateur_prenom");
|
|
|
109 |
String courriel = getValeurOuVide(jsonIntervention, "utilisateur_courriel");
|
|
|
110 |
Contributeur contributeur = new Contributeur(idUtilisateur, nom, prenom, courriel);
|
926 |
benjamin |
111 |
|
|
|
112 |
// TODO : parser date
|
888 |
gduche |
113 |
Date date = new Date();
|
926 |
benjamin |
114 |
|
888 |
gduche |
115 |
if (!nomSel.equals("")) {
|
|
|
116 |
String nom_sel = getValeurOuVide(jsonIntervention, "nom_sel");
|
|
|
117 |
String nom_sel_nn = getValeurOuVide(jsonIntervention, "nom_sel_nn");
|
|
|
118 |
String nom_ret = getValeurOuVide(jsonIntervention, "nom_ret");
|
|
|
119 |
String nom_ret_nn = getValeurOuVide(jsonIntervention, "nom_ret_nn");
|
|
|
120 |
String famille = getValeurOuVide(jsonIntervention, "famille");
|
|
|
121 |
String nom_referentiel = getValeurOuVide(jsonIntervention, "nom_referentiel");
|
926 |
benjamin |
122 |
|
920 |
aurelien |
123 |
String nbCommentaires = getValeurOuVide(jsonIntervention, "nb_commentaires");
|
926 |
benjamin |
124 |
|
888 |
gduche |
125 |
PropositionDetermination intervention = new PropositionDetermination(id, contributeur, texte);
|
|
|
126 |
intervention.setObservation(observation);
|
|
|
127 |
intervention.setEspece(nom_sel);
|
926 |
benjamin |
128 |
|
|
|
129 |
if (!nbCommentaires.equals("")) {
|
920 |
aurelien |
130 |
intervention.setNbCommentaires(Integer.parseInt(nbCommentaires));
|
|
|
131 |
}
|
926 |
benjamin |
132 |
|
888 |
gduche |
133 |
if (!idParent.equals("")) {
|
|
|
134 |
intervention.setIdParent(idParent);
|
|
|
135 |
}
|
926 |
benjamin |
136 |
|
|
|
137 |
if (jsonIntervention.get("votes") != null && jsonIntervention.get("votes").isObject() != null) {
|
888 |
gduche |
138 |
intervention.setVotesDeterminations(parserVotesDetermination(jsonIntervention.get("votes").isObject(), intervention));
|
|
|
139 |
}
|
926 |
benjamin |
140 |
|
888 |
gduche |
141 |
intervention.setDate(date);
|
889 |
gduche |
142 |
interventionsNonTypees.put(intervention.getId(), intervention);
|
926 |
benjamin |
143 |
|
888 |
gduche |
144 |
} else {
|
|
|
145 |
Commentaire intervention = new Commentaire(contributeur, date, texte);
|
893 |
gduche |
146 |
intervention.setId(id);
|
888 |
gduche |
147 |
intervention.setDate(date);
|
889 |
gduche |
148 |
interventionsNonTypees.put(intervention.getId(), intervention);
|
893 |
gduche |
149 |
if (!idParent.equals("")) {
|
|
|
150 |
intervention.setIdParent(idParent);
|
|
|
151 |
}
|
888 |
gduche |
152 |
}
|
|
|
153 |
}
|
|
|
154 |
|
889 |
gduche |
155 |
Iterator<String> itIntervention = interventionsNonTypees.keySet().iterator();
|
|
|
156 |
while (itIntervention.hasNext()) {
|
|
|
157 |
String id = itIntervention.next();
|
|
|
158 |
InterventionForum intervention = interventionsNonTypees.get(id);
|
|
|
159 |
String idParent = intervention.getIdParent();
|
893 |
gduche |
160 |
if (idParent != null && !idParent.equals("") && !idParent.equals("0")) {
|
|
|
161 |
InterventionForum parent = interventionsNonTypees.get(idParent);
|
|
|
162 |
intervention.setParent(parent);
|
889 |
gduche |
163 |
}
|
|
|
164 |
}
|
926 |
benjamin |
165 |
|
500 |
aurelien |
166 |
|
889 |
gduche |
167 |
retour.addAll(interventionsNonTypees.values());
|
|
|
168 |
return retour;
|
500 |
aurelien |
169 |
}
|
926 |
benjamin |
170 |
|
884 |
aurelien |
171 |
public static String parserRetourAjoutCommentaire(JSONObject retour) {
|
|
|
172 |
String id = "";
|
926 |
benjamin |
173 |
if (retour != null) {
|
884 |
aurelien |
174 |
id = getValeurOuVide(retour, "id_commentaire");
|
|
|
175 |
}
|
|
|
176 |
return id;
|
|
|
177 |
}
|
926 |
benjamin |
178 |
|
888 |
gduche |
179 |
public static String getValeurOuVide(JSONObject objet, String index) {
|
920 |
aurelien |
180 |
return (objet.get(index) != null && objet.get(index).isString() != null) ? objet.get(index).isString().stringValue() : "";
|
888 |
gduche |
181 |
}
|
926 |
benjamin |
182 |
|
888 |
gduche |
183 |
public static PropositionDetermination creerPropositionDeterminationAPartirObservation(Observation observation) {
|
926 |
benjamin |
184 |
|
888 |
gduche |
185 |
String utilisateurNom = observation.getNomAuteur();
|
|
|
186 |
String utilisateurPrenom = observation.getPrenomAuteur();
|
|
|
187 |
String utilisateurCourriel = observation.getCourrielAuteur();
|
|
|
188 |
String utilisateurId = observation.getIdAuteur();
|
|
|
189 |
PropositionDetermination propositionDetermination = new PropositionDetermination(observation);
|
|
|
190 |
Contributeur contributeur = new Contributeur(utilisateurId, utilisateurNom, utilisateurPrenom, utilisateurCourriel);
|
|
|
191 |
propositionDetermination.setContributeur(contributeur);
|
|
|
192 |
java.util.Date datePropDeter = parserDateObservation(observation.getDateReleve());
|
|
|
193 |
propositionDetermination.setDate(datePropDeter);
|
|
|
194 |
propositionDetermination.setEspece(observation.getNomRetenu());
|
926 |
benjamin |
195 |
|
888 |
gduche |
196 |
return propositionDetermination;
|
|
|
197 |
}
|
926 |
benjamin |
198 |
|
900 |
aurelien |
199 |
public static HashMap<String, VoteDetermination> parserRetourListeVotesDetermination(String votesString, PropositionDetermination proposition) {
|
|
|
200 |
|
|
|
201 |
HashMap<String, VoteDetermination> retour = null;
|
926 |
benjamin |
202 |
|
900 |
aurelien |
203 |
JSONObject votes = JSONParser.parseStrict(votesString).isObject();
|
926 |
benjamin |
204 |
if (votes != null && votes.get("resultats") != null && votes.get("resultats").isObject() != null) {
|
900 |
aurelien |
205 |
JSONObject resultat = votes.get("resultats").isObject();
|
|
|
206 |
retour = parserVotesDetermination(resultat, proposition);
|
|
|
207 |
}
|
|
|
208 |
return retour;
|
|
|
209 |
}
|
926 |
benjamin |
210 |
|
846 |
aurelien |
211 |
public static HashMap<String, VoteDetermination> parserVotesDetermination(JSONObject votes, PropositionDetermination proposition) {
|
|
|
212 |
HashMap<String, VoteDetermination> votesDetermination = new HashMap<String, VoteDetermination>();
|
|
|
213 |
java.util.Iterator<String> itVotes = votes.keySet().iterator();
|
|
|
214 |
while (itVotes.hasNext()) {
|
|
|
215 |
JSONObject vote = votes.get(itVotes.next()).isObject();
|
|
|
216 |
VoteDetermination vd = new VoteDetermination();
|
|
|
217 |
vd.setContributeur(getValeurOuVide(vote, "auteur.id"));
|
|
|
218 |
vd.setDate(new Date());
|
|
|
219 |
vd.setId(getValeurOuVide(vote, "vote.id"));
|
|
|
220 |
vd.setPropositionDetermination(proposition);
|
|
|
221 |
vd.setVote(Integer.parseInt(getValeurOuVide(vote, "vote")));
|
900 |
aurelien |
222 |
vd.setContributeur(getValeurOuVide(vote, "auteur.id"));
|
926 |
benjamin |
223 |
|
|
|
224 |
if (vote.get("auteur.nom") != null && vote.get("auteur.nom") != null && vote.get("auteur.courriel") != null) {
|
|
|
225 |
Contributeur auteur = new Contributeur(getValeurOuVide(vote, "auteur.id"), getValeurOuVide(vote, "auteur.nom"), getValeurOuVide(vote, "auteur.prenom"), getValeurOuVide(vote, "auteur.courriel"));
|
900 |
aurelien |
226 |
vd.setAuteur(auteur);
|
|
|
227 |
}
|
926 |
benjamin |
228 |
|
846 |
aurelien |
229 |
votesDetermination.put(getValeurOuVide(vote, "auteur.id"), vd);
|
926 |
benjamin |
230 |
}
|
846 |
aurelien |
231 |
return votesDetermination;
|
|
|
232 |
}
|
926 |
benjamin |
233 |
|
|
|
234 |
public static HashMap<String, HashMap<String, VoteProtocole>> parserVotesProtocoles(JSONObject votes) {
|
|
|
235 |
|
|
|
236 |
HashMap<String, HashMap<String, VoteProtocole>> votesProtocoles = new HashMap<String, HashMap<String, VoteProtocole>>();
|
777 |
aurelien |
237 |
java.util.Iterator<String> itProtocoles = votes.keySet().iterator();
|
926 |
benjamin |
238 |
while (itProtocoles.hasNext()) {
|
|
|
239 |
JSONObject protocole = votes.get(itProtocoles.next()).isObject();
|
777 |
aurelien |
240 |
JSONObject votesPourCeProtocoles = protocole.get("votes").isObject();
|
|
|
241 |
String idProtocoleVote = protocole.get("protocole.id").isString().stringValue();
|
|
|
242 |
java.util.Iterator<String> itVotes = votesPourCeProtocoles.keySet().iterator();
|
926 |
benjamin |
243 |
while (itVotes.hasNext()) {
|
777 |
aurelien |
244 |
JSONObject voteEnCours = votesPourCeProtocoles.get(itVotes.next()).isObject();
|
|
|
245 |
VoteProtocole vd = new VoteProtocole();
|
|
|
246 |
vd.setContributeur(voteEnCours.get("auteur.id").isString().stringValue());
|
|
|
247 |
// TODO récupérer la date du vote et la parser
|
|
|
248 |
vd.setDate(new Date());
|
|
|
249 |
int valeurVote = Integer.parseInt(voteEnCours.get("vote").isString().stringValue());
|
|
|
250 |
vd.setVote(valeurVote);
|
926 |
benjamin |
251 |
if (!votesProtocoles.containsKey(idProtocoleVote)) {
|
|
|
252 |
votesProtocoles.put(idProtocoleVote, new HashMap<String, VoteProtocole>());
|
777 |
aurelien |
253 |
}
|
|
|
254 |
votesProtocoles.get(idProtocoleVote).put(vd.getContributeur(), vd);
|
500 |
aurelien |
255 |
}
|
|
|
256 |
}
|
926 |
benjamin |
257 |
|
500 |
aurelien |
258 |
return votesProtocoles;
|
|
|
259 |
}
|
926 |
benjamin |
260 |
|
500 |
aurelien |
261 |
public static Date parserDateObservation(String date) {
|
|
|
262 |
Date dateParsee = new Date();
|
|
|
263 |
DateTimeFormat formatDateObs = DateTimeFormat.getFormat("yyyy-MM-dd HH:mm:ss");
|
926 |
benjamin |
264 |
try {
|
|
|
265 |
dateParsee = formatDateObs.parse(date);
|
|
|
266 |
} catch (IllegalArgumentException e) {
|
|
|
267 |
dateParsee = new java.sql.Date(0);
|
500 |
aurelien |
268 |
}
|
926 |
benjamin |
269 |
return dateParsee;
|
500 |
aurelien |
270 |
}
|
926 |
benjamin |
271 |
|
500 |
aurelien |
272 |
public static List<String> parserMotsCles(String motsClesTexte) {
|
|
|
273 |
String[] tabMotsCle = motsClesTexte.split(",");
|
|
|
274 |
List<String> motsClesParses = new ArrayList<String>();
|
|
|
275 |
for (int i = 0; i < tabMotsCle.length; i++) {
|
|
|
276 |
motsClesParses.add(tabMotsCle[i]);
|
|
|
277 |
}
|
926 |
benjamin |
278 |
|
500 |
aurelien |
279 |
return motsClesParses;
|
|
|
280 |
}
|
926 |
benjamin |
281 |
|
500 |
aurelien |
282 |
public static String getIdAvecPadding(String id) {
|
|
|
283 |
int maxZeros = 9 - id.length();
|
|
|
284 |
for (int i = 0; i < maxZeros; i++) {
|
|
|
285 |
id = "0" + id;
|
|
|
286 |
}
|
|
|
287 |
return id;
|
|
|
288 |
}
|
926 |
benjamin |
289 |
|
516 |
aurelien |
290 |
public static Utilisateur parserUtilisateurJson(JSONValue valeurJson) {
|
926 |
benjamin |
291 |
|
516 |
aurelien |
292 |
JSONObject utilisateurJson = valeurJson.isObject();
|
|
|
293 |
boolean connecteUtilisateur = utilisateurJson.get("connecte").isBoolean().booleanValue();
|
|
|
294 |
String idUtilisateur = utilisateurJson.get("id_utilisateur").isString().stringValue();
|
926 |
benjamin |
295 |
|
516 |
aurelien |
296 |
Utilisateur utilisateur;
|
926 |
benjamin |
297 |
|
|
|
298 |
if (connecteUtilisateur) {
|
522 |
aurelien |
299 |
String courrielUtilisateur = utilisateurJson.get("courriel").isString().stringValue();
|
516 |
aurelien |
300 |
String nomUtilisateur = utilisateurJson.get("nom").isString().stringValue();
|
|
|
301 |
String prenomUtilisateur = utilisateurJson.get("prenom").isString().stringValue();
|
926 |
benjamin |
302 |
|
516 |
aurelien |
303 |
utilisateur = new Utilisateur(idUtilisateur, prenomUtilisateur, nomUtilisateur, courrielUtilisateur);
|
|
|
304 |
} else {
|
|
|
305 |
utilisateur = new Utilisateur(idUtilisateur);
|
|
|
306 |
}
|
926 |
benjamin |
307 |
|
516 |
aurelien |
308 |
return utilisateur;
|
|
|
309 |
}
|
500 |
aurelien |
310 |
}
|