Subversion Repositories eFlore/Applications.coel

Rev

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

Rev Author Line No. Line
935 jpm 1
package org.tela_botanica.client.modeles.collection;
463 jp_milcent 2
 
1041 gduche 3
import java.util.HashMap;
4
 
871 jpm 5
import org.tela_botanica.client.Mediateur;
463 jp_milcent 6
import org.tela_botanica.client.RegistreId;
7
import org.tela_botanica.client.http.JsonRestRequestBuilder;
8
import org.tela_botanica.client.http.JsonRestRequestCallback;
9
import org.tela_botanica.client.interfaces.Rafraichissable;
935 jpm 10
import org.tela_botanica.client.modeles.Information;
11
import org.tela_botanica.client.modeles.projet.ProjetListe;
968 jpm 12
import org.tela_botanica.client.util.Debug;
871 jpm 13
import org.tela_botanica.client.util.UtilDAO;
463 jp_milcent 14
 
15
import com.extjs.gxt.ui.client.Registry;
16
import com.google.gwt.core.client.GWT;
871 jpm 17
import com.google.gwt.http.client.URL;
463 jp_milcent 18
import com.google.gwt.json.client.JSONArray;
1041 gduche 19
import com.google.gwt.json.client.JSONNumber;
463 jp_milcent 20
import com.google.gwt.json.client.JSONObject;
21
import com.google.gwt.json.client.JSONValue;
22
 
23
public class CollectionAsyncDao {
24
 
25
	public static final String SERVICE_NOM = "CoelCollection";
871 jpm 26
	private String utilisateurId = null;
27
	private Rafraichissable vueARafraichir = null;
463 jp_milcent 28
 
871 jpm 29
	public CollectionAsyncDao(Rafraichissable vueARafraichirCourrante) {
30
		vueARafraichir = vueARafraichirCourrante;
31
		utilisateurId = ((Mediateur) Registry.get(RegistreId.MEDIATEUR)).getUtilisateurId();
32
	}
33
 
1041 gduche 34
	public void selectionner(final String projetId, final String collectionId, final String nomCollection, final int start, final int nbElements) {
463 jp_milcent 35
		// Ajout des paramètres et données à selectionner dans l'URL
1041 gduche 36
		String[] parametres = {projetId, collectionId, nomCollection};
37
		HashMap<String, String> restrictions = new HashMap<String, String>();
38
		restrictions.put("start", String.valueOf(start));
39
		if (nbElements != -1)	{
40
			restrictions.put("limit", String.valueOf(nbElements));
41
		}
42
 
43
		final JsonRestRequestBuilder rb = UtilDAO.construireRequete(SERVICE_NOM, parametres, restrictions);
44
 
463 jp_milcent 45
		rb.envoyerRequete(null, new JsonRestRequestCallback() {
468 jp_milcent 46
			@Override
463 jp_milcent 47
			public void surReponse(JSONValue responseValue) {
48
				if (responseValue != null) {
49
					// Si la requête est un succès, reception d'un objet ou d'un tableau
1041 gduche 50
					JSONArray responseArray = responseValue.isArray();
51
					if (responseArray.get(1).isObject() != null) {
52
						final JSONObject reponse = responseArray.get(1).isObject();
463 jp_milcent 53
						Collection collection = new Collection(reponse);
54
						CollectionBotanique collectionBotanique = new CollectionBotanique(reponse);
948 jpm 55
						collection.setBotanique(collectionBotanique);
463 jp_milcent 56
 
57
						Information info = new Information("selection_collection");
58
						info.setDonnee(0, collection);
59
						vueARafraichir.rafraichir(info);
60
					} else if (responseValue.isArray() != null) {
1041 gduche 61
						final JSONArray reponse = responseArray.get(1).isArray();
62
						CollectionListe collections = new CollectionListe(reponse, responseArray.get(0).isNumber(), vueARafraichir);
63
						collections.setTaillePage(nbElements);
64
						collections.setPageCourante(start);
65
 
463 jp_milcent 66
						vueARafraichir.rafraichir(collections);
67
					} else {
871 jpm 68
						GWT.log(rb.getUrl()+"\n\tLa réponse n'est pas un objet ou un talbeau JSON et vaut : "+responseValue.toString(), null);
463 jp_milcent 69
					}
70
				} else {
71
					// Dans le cas, où nous demandons toutes les institutions et qu'il n'y en a pas, nous retournons un objet vide
72
					if (collectionId == null) {
73
						CollectionListe collections = new CollectionListe(0);
74
						vueARafraichir.rafraichir(collections);
75
					}
76
				}
77
			}
78
		});
79
	}
643 jp_milcent 80
 
871 jpm 81
	public void ajouter(Collection collection) {
82
		String postDonneesEncodees = construirePost(null, collection);
83
 
84
		final JsonRestRequestBuilder rb = UtilDAO.construireRequetePost(SERVICE_NOM);
85
		rb.envoyerRequete(postDonneesEncodees, new JsonRestRequestCallback() {
86
			@Override
87
			public void surReponse(JSONValue responseValue) {
88
				if (responseValue.isString() != null) {
89
					Information info = new Information("ajout_collection");
90
					String structureIdOuMessage = responseValue.isString().stringValue();
91
					if (structureIdOuMessage.matches("^[0-9]+$")) {
92
						info.setDonnee(structureIdOuMessage);
93
					} else {
94
						info.setMessage(structureIdOuMessage);
95
					}
96
					vueARafraichir.rafraichir(info);
97
				} else {
98
					GWT.log(rb.getUrl()+"\n\tLa réponse n'est pas une chaine JSON.", null);
99
				}
100
			}
101
		});
102
	}
103
 
104
	public void modifier(Collection collection) {
105
		String postDonneesEncodees = construirePost(collection.getId(), collection);
643 jp_milcent 106
 
871 jpm 107
		String[] parametres = {collection.getId()};
108
		final JsonRestRequestBuilder rb = UtilDAO.construireRequetePost(SERVICE_NOM, parametres);
109
		rb.envoyerRequete(postDonneesEncodees, new JsonRestRequestCallback() {
643 jp_milcent 110
			@Override
871 jpm 111
			public void surReponse(JSONValue responseValue) {
643 jp_milcent 112
				// Si la requête est un succès, reception d'une chaine
871 jpm 113
				if (responseValue.isString() != null) {
114
					Information info = new Information("modif_collection");
115
					info.setMessage(responseValue.isString().stringValue());
116
					vueARafraichir.rafraichir(info);
643 jp_milcent 117
				} else {
871 jpm 118
					GWT.log(rb.getUrl()+"\n\tLa réponse n'est pas une chaine JSON.", null);
643 jp_milcent 119
				}
120
			}
121
		});
122
	}
871 jpm 123
 
124
	public void supprimer(String collectionsId) {
125
		String[] parametres = {utilisateurId, collectionsId};
126
		final JsonRestRequestBuilder rb = UtilDAO.construireRequetePost(SERVICE_NOM, parametres);
127
		rb.envoyerRequeteSuppression(new JsonRestRequestCallback() {
128
			@Override
129
			public void surReponse(JSONValue responseValue) {
130
				if (responseValue.isString() != null) {
131
					Information info = new Information("suppression_collection");
132
					info.setMessage(responseValue.isString().stringValue());
133
					vueARafraichir.rafraichir(info);
134
				} else {
135
					GWT.log(rb.getUrl()+"\n\tLa réponse n'est pas une chaine JSON.", null);
136
				}
137
			}
138
		});
139
	}
140
 
141
	private String construirePost(String collectionId, Collection collection) {
142
		String postDonnees = "cmhl_ce_modifier_par=" + URL.encodeComponent(utilisateurId);
143
 
144
		if (collection != null) {
145
			if (collectionId != null) {
146
				postDonnees += "&cc_id_collection=" + URL.encodeComponent(collectionId);
147
			}
968 jpm 148
			Debug.log("id projet:"+collection.getIdProjet());
149
			Debug.log("liste projet:"+((ProjetListe) Registry.get(RegistreId.PROJETS)).get(collection.getIdProjet()).toString());
871 jpm 150
			postDonnees += "&cpr_abreviation=" + URL.encodeComponent(((ProjetListe) Registry.get(RegistreId.PROJETS)).get(collection.getIdProjet()).getAbreviation());
151
			postDonnees += "&cc_ce_projet=" + URL.encodeComponent(collection.getIdProjet()) +
152
				"&cc_ce_mere=" + URL.encodeComponent(collection.getCollectionMereId()) +
153
				"&cc_ce_structure=" + URL.encodeComponent(collection.getIdStructure()) +
154
				"&cc_truk_identifiant_alternatif=" + URL.encodeComponent(collection.getIdAlternatif()) +
155
				"&cc_truk_code=" + URL.encodeComponent(collection.getCode()) +
156
				"&cc_nom=" + URL.encodeComponent(collection.getNom()) +
157
				"&cc_truk_nom_alternatif=" + URL.encodeComponent(collection.getNomAlternatif()) +
158
				"&cc_description=" + URL.encodeComponent(collection.getDescription()) +
159
				"&cc_description_specialiste=" + URL.encodeComponent(collection.getDescriptionSpecialiste()) +
160
				"&cc_historique=" + URL.encodeComponent(collection.getHistorique()) +
161
				"&cc_truk_url=" + URL.encodeComponent(collection.getUrls()) +
162
				"&cc_truk_groupement_principe=" + URL.encodeComponent(collection.getGroupementPrincipe()) +
163
				"&cc_truk_groupement_but=" + URL.encodeComponent(collection.getGroupementBut()) +
164
				"&cc_ce_type=" + URL.encodeComponent(collection.getTypeNcd()) +
165
				"&cc_ce_type_depot=" + URL.encodeComponent(collection.getTypeDepot()) +
166
				"&cc_cote=" + URL.encodeComponent(collection.getCote()) +
956 jpm 167
				"&cc_truk_periode_constitution=" + URL.encodeComponent(collection.getPeriodeConstitution()) +
871 jpm 168
				"&cc_truk_couverture_lieu=" + URL.encodeComponent(collection.getCouvertureLieu()) +
169
				"&cc_ce_specimen_type=" + URL.encodeComponent(collection.getSpecimenType()) +
170
				"&cc_specimen_type_nbre=" + URL.encodeComponent(collection.getSpecimenTypeNbre()) +
171
				"&cc_ce_specimen_type_nbre_precision=" + URL.encodeComponent(collection.getSpecimenTypeNbrePrecision()) +
172
				"&cc_ce_specimen_type_classement=" + URL.encodeComponent(collection.getSpecimenTypeClassement());
173
		}
174
 
175
		if (collection.getBotanique() != null) {
956 jpm 176
			if (collectionId != null) {
177
				postDonnees += "&ccb_id_collection=" + URL.encodeComponent(collectionId);
178
			}
871 jpm 179
			CollectionBotanique collectionBotanique = collection.getBotanique();
180
			postDonnees += "&ccb_nbre_echantillon=" + URL.encodeComponent(collectionBotanique.getNbreEchantillon()) +
181
				"&ccb_ce_truk_type=" + URL.encodeComponent(collectionBotanique.getType()) +
182
				"&ccb_truk_unite_rangement=" + URL.encodeComponent(collectionBotanique.getUniteRangement()) +
183
				"&ccb_ce_unite_rangement_etat=" + URL.encodeComponent(collectionBotanique.getUniteRangementEtat()) +
184
				"&ccb_truk_unite_base=" + URL.encodeComponent(collectionBotanique.getUniteBase()) +
185
				"&ccb_truk_conservation_papier_type=" + URL.encodeComponent(collectionBotanique.getConservationPapierType()) +
186
				"&ccb_truk_conservation_methode=" + URL.encodeComponent(collectionBotanique.getConservationMethode()) +
187
				"&ccb_specimen_fixation_pourcent=" + URL.encodeComponent(collectionBotanique.getSpecimenFixationPourcent()) +
188
				"&ccb_etiquette_fixation_pourcent=" + URL.encodeComponent(collectionBotanique.getEtiquetteFixationPourcent()) +
189
				"&ccb_truk_specimen_fixation_methode=" + URL.encodeComponent(collectionBotanique.getSpecimenFixationMethode()) +
190
				"&ccb_truk_etiquette_fixation_support=" + URL.encodeComponent(collectionBotanique.getEtiquetteFixationSupport()) +
191
				"&ccb_truk_etiquette_fixation_specimen=" + URL.encodeComponent(collectionBotanique.getEtiquetteFixationSpecimen()) +
192
				"&ccb_truk_etiquette_ecriture=" + URL.encodeComponent(collectionBotanique.getEtiquetteEcriture()) +
193
				"&ccb_ce_traitement=" + URL.encodeComponent(collectionBotanique.getTraitement()) +
194
				"&ccb_truk_traitement_poison=" + URL.encodeComponent(collectionBotanique.getTraitementPoison()) +
195
				"&ccb_truk_traitement_insecte=" + URL.encodeComponent(collectionBotanique.getTraitementInsecte()) +
196
				"&ccb_ce_etat_general=" + URL.encodeComponent(collectionBotanique.getEtatGeneral()) +
197
				"&ccb_truk_degradation_specimen=" + URL.encodeComponent(collectionBotanique.getDegradationSpecimen()) +
198
				"&ccb_truk_degradation_presentation=" + URL.encodeComponent(collectionBotanique.getDegradationPresentation()) +
199
				"&ccb_ce_determination=" + URL.encodeComponent(collectionBotanique.getDetermination()) +
200
				"&ccb_truk_nature=" + URL.encodeComponent(collectionBotanique.getNature()) +
201
				"&ccb_specialite=" + URL.encodeComponent(collectionBotanique.getSpecialite()) +
202
				"&ccb_recolte_date_debut=" + URL.encodeComponent(collectionBotanique.getRecolteDateDebut()) +
203
				"&ccb_ce_recolte_date_debut_type=" + URL.encodeComponent(collectionBotanique.getRecolteDateDebutType()) +
204
				"&ccb_recolte_date_fin=" + URL.encodeComponent(collectionBotanique.getRecolteDateFin()) +
205
				"&ccb_ce_recolte_date_fin_type=" + URL.encodeComponent(collectionBotanique.getRecolteDateFinType()) +
206
				"&ccb_annotation_classement=" + URL.encodeComponent(collectionBotanique.getClassementAnnotation()) +
207
				"&ccb_ce_classement_etat=" + URL.encodeComponent(collectionBotanique.getClassementEtat()) +
208
				"&ccb_truk_etiquette_renseignement=" + URL.encodeComponent(collectionBotanique.getEtiquetteRenseignement()) +
209
				"&ccb_ce_precision_localite=" + URL.encodeComponent(collectionBotanique.getPrecisionLocalite()) +
210
				"&ccb_ce_precision_date=" + URL.encodeComponent(collectionBotanique.getPrecisionDate()) +
211
				"&ccb_annotation_diverse=" + URL.encodeComponent(collectionBotanique.getAnnotationsDiverses()) +
212
				"&ccb_ce_collection_integre=" + URL.encodeComponent(collectionBotanique.getCollectionIntegre()) +
213
				"&ccb_ce_collection_integre_info=" + URL.encodeComponent(collectionBotanique.getCollectionIntegreInfo()) +
214
				"&ccb_ce_inventaire=" + URL.encodeComponent(collectionBotanique.getInventaire()) +
215
				"&ccb_ce_inventaire_auteur=" + URL.encodeComponent(collectionBotanique.getInventaireAuteur()) +
216
				"&ccb_ce_inventaire_forme=" + URL.encodeComponent(collectionBotanique.getInventaireForme()) +
217
				"&ccb_inventaire_info=" + URL.encodeComponent(collectionBotanique.getInventaireInfo()) +
218
				"&ccb_ce_truk_inventaire_digital=" + URL.encodeComponent(collectionBotanique.getInventaireDigital()) +
219
				"&ccb_inventaire_digital_pourcent=" + URL.encodeComponent(collectionBotanique.getInventaireDigitalPourcent()) +
220
				"&ccb_ce_inventaire_etat=" + URL.encodeComponent(collectionBotanique.getInventaireEtat()) +
221
				"&ccb_inventaire_donnee_type=" + URL.encodeComponent(collectionBotanique.getInventaireDonneesTypes());
222
		}
223
 
224
		return postDonnees;
225
	}
463 jp_milcent 226
}