Subversion Repositories eFlore/Applications.coel

Rev

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