339 |
benjamin |
1 |
package org.tela_botanica.del.client.modeles;
|
|
|
2 |
|
348 |
aurelien |
3 |
import java.util.ArrayList;
|
|
|
4 |
import java.util.Date;
|
443 |
aurelien |
5 |
import java.util.HashMap;
|
339 |
benjamin |
6 |
import java.util.List;
|
500 |
aurelien |
7 |
import java.util.Map;
|
339 |
benjamin |
8 |
|
500 |
aurelien |
9 |
import org.tela_botanica.del.client.utils.UtilitairesServiceResultat;
|
|
|
10 |
|
|
|
11 |
import com.google.gwt.core.client.GWT;
|
348 |
aurelien |
12 |
import com.google.gwt.i18n.client.DateTimeFormat;
|
|
|
13 |
import com.google.gwt.json.client.JSONArray;
|
|
|
14 |
import com.google.gwt.json.client.JSONObject;
|
|
|
15 |
import com.google.gwt.json.client.JSONValue;
|
500 |
aurelien |
16 |
import com.google.gwt.user.client.Window;
|
348 |
aurelien |
17 |
|
340 |
benjamin |
18 |
public class ImageServiceResultat {
|
534 |
benjamin |
19 |
|
339 |
benjamin |
20 |
private List<Image> images;
|
534 |
benjamin |
21 |
|
339 |
benjamin |
22 |
private int nbTotalImagesPourLaRecherche;
|
534 |
benjamin |
23 |
|
348 |
aurelien |
24 |
public ImageServiceResultat(JSONValue retourJson) {
|
534 |
benjamin |
25 |
|
|
|
26 |
try {
|
|
|
27 |
// TODO ajouter vérifications plus précises
|
|
|
28 |
double total = retourJson.isObject().get("total").isNumber().doubleValue();
|
|
|
29 |
nbTotalImagesPourLaRecherche = (int) total;
|
|
|
30 |
|
|
|
31 |
JSONArray tableauObs = retourJson.isObject().get("contenu").isArray();
|
|
|
32 |
images = new ArrayList<Image>();
|
|
|
33 |
|
|
|
34 |
int nbResultats = tableauObs.size();
|
|
|
35 |
for (int i = 0; i < nbResultats; i++) {
|
|
|
36 |
|
|
|
37 |
JSONObject imageJson = tableauObs.get(i).isObject();
|
|
|
38 |
Image image = UtilitairesServiceResultat.parserImageJSON(imageJson);
|
|
|
39 |
|
|
|
40 |
if (imageJson.get("observation") != null && imageJson.get("observation").isObject() != null) {
|
|
|
41 |
JSONObject observationJson = imageJson.get("observation").isObject();
|
|
|
42 |
image.setObservation(UtilitairesServiceResultat.parserObservationEtCreerPropositionDetermination(observationJson));
|
|
|
43 |
}
|
|
|
44 |
|
|
|
45 |
if (imageJson.get("votes") != null && imageJson.get("votes").isArray() != null) {
|
|
|
46 |
JSONArray votes = imageJson.get("votes").isArray();
|
|
|
47 |
image.setVoteProtocoles(UtilitairesServiceResultat.parserVotesProtocoles(votes));
|
|
|
48 |
}
|
|
|
49 |
|
|
|
50 |
images.add(image);
|
443 |
aurelien |
51 |
}
|
534 |
benjamin |
52 |
} catch (Exception e) {
|
|
|
53 |
|
348 |
aurelien |
54 |
}
|
|
|
55 |
}
|
534 |
benjamin |
56 |
|
339 |
benjamin |
57 |
public List<Image> getImages() {
|
|
|
58 |
return images;
|
|
|
59 |
}
|
|
|
60 |
|
|
|
61 |
public void setImages(List<Image> images) {
|
|
|
62 |
this.images = images;
|
|
|
63 |
}
|
|
|
64 |
|
|
|
65 |
public int getNbTotalImagesPourLaRecherche() {
|
|
|
66 |
return nbTotalImagesPourLaRecherche;
|
|
|
67 |
}
|
|
|
68 |
|
|
|
69 |
public void setNbTotalImagesPourLaRecherche(int nbTotalImagesPourLaRecherche) {
|
|
|
70 |
this.nbTotalImagesPourLaRecherche = nbTotalImagesPourLaRecherche;
|
|
|
71 |
}
|
|
|
72 |
}
|