Subversion Repositories eFlore/Applications.coel

Rev

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