121 |
jpm |
1 |
package org.tela_botanica.client.modeles;
|
|
|
2 |
|
|
|
3 |
import org.tela_botanica.client.RegistreId;
|
|
|
4 |
import org.tela_botanica.client.interfaces.Rafraichissable;
|
|
|
5 |
|
|
|
6 |
import com.extjs.gxt.ui.client.Registry;
|
153 |
jpm |
7 |
import com.extjs.gxt.ui.client.widget.Info;
|
133 |
jpm |
8 |
import com.google.gwt.core.client.GWT;
|
121 |
jpm |
9 |
import com.google.gwt.http.client.Request;
|
|
|
10 |
import com.google.gwt.http.client.RequestBuilder;
|
|
|
11 |
import com.google.gwt.http.client.RequestCallback;
|
|
|
12 |
import com.google.gwt.http.client.RequestException;
|
|
|
13 |
import com.google.gwt.http.client.Response;
|
|
|
14 |
import com.google.gwt.http.client.URL;
|
|
|
15 |
import com.google.gwt.json.client.JSONArray;
|
156 |
jp_milcent |
16 |
import com.google.gwt.json.client.JSONObject;
|
121 |
jpm |
17 |
import com.google.gwt.json.client.JSONParser;
|
|
|
18 |
import com.google.gwt.json.client.JSONValue;
|
|
|
19 |
|
|
|
20 |
public class StructureAsyncDao {
|
264 |
jp_milcent |
21 |
|
268 |
jp_milcent |
22 |
private static final String SERVICE_NOM = "CoelStructure";
|
264 |
jp_milcent |
23 |
|
381 |
jp_milcent |
24 |
public void selectionner(final Rafraichissable vueARafraichir, final String projetId, final String structureId) {
|
156 |
jp_milcent |
25 |
// Ajout des paramètres et données à selectionner dans l'URL
|
|
|
26 |
final String url = ((Configuration) Registry.get(RegistreId.CONFIG)).getServiceBaseUrl() +
|
264 |
jp_milcent |
27 |
SERVICE_NOM + "/" +
|
245 |
jp_milcent |
28 |
(projetId == null ? "*" : projetId) + "/" +
|
264 |
jp_milcent |
29 |
(structureId == null ? "*" : structureId) + "/" +
|
156 |
jp_milcent |
30 |
"";
|
|
|
31 |
|
|
|
32 |
RequestBuilder rb = new RequestBuilder(RequestBuilder.GET, url);
|
|
|
33 |
try {
|
|
|
34 |
rb.sendRequest(null, new RequestCallback() {
|
|
|
35 |
|
|
|
36 |
public void onError(Request request, Throwable exception) {
|
|
|
37 |
// Gestion des exceptions déclenchées par l'exécution de la requête
|
268 |
jp_milcent |
38 |
GWT.log("Erreur à l'exécution du service "+SERVICE_NOM+" (selection)", exception);
|
156 |
jp_milcent |
39 |
Info.display("Erreur de Requête", "Une erreur s'est produite lors de l'exécution de la requête.");
|
|
|
40 |
}
|
|
|
41 |
|
|
|
42 |
public void onErrorHTTP(Request request, Response reponse) {
|
|
|
43 |
// Gestion des erreurs HTTP renvoyé par Apache ou JRest
|
|
|
44 |
Information info = new Information("erreur_jrest", JSONParser.parse(reponse.getText()).isArray());
|
|
|
45 |
GWT.log("Erreur JREST - Code "+reponse.getStatusCode()+"\n"+info.getMessages().toString(), null);
|
|
|
46 |
Info.display("Erreur JREST - Code "+reponse.getStatusCode(), info.toString());
|
|
|
47 |
}
|
|
|
48 |
|
|
|
49 |
public void onResponseReceived(Request request, Response response) {
|
|
|
50 |
// Si le code de réponse HTTP ne vaut pas 200 OK, on lance le mécanise d'erreur HTTP
|
|
|
51 |
if (response.getStatusCode() != 200) {
|
|
|
52 |
onErrorHTTP(request, response);
|
|
|
53 |
} else {
|
412 |
jp_milcent |
54 |
Information info = new Information("selection_structure");
|
606 |
jp_milcent |
55 |
if (response.getHeader("X-DebugJrest-Data") != null && response.getHeader("X-DebugJrest-Data").length() != 0) {
|
412 |
jp_milcent |
56 |
final JSONValue reponseEnteteDeboguage = JSONParser.parse(response.getHeader("X-DebugJrest-Data"));
|
|
|
57 |
if (reponseEnteteDeboguage.isArray() != null) {
|
|
|
58 |
info.setDeboguages(reponseEnteteDeboguage.isArray());
|
|
|
59 |
GWT.log("DEBOGUAGE:\n"+info.getDeboguages().toString(), null);
|
|
|
60 |
}
|
|
|
61 |
}
|
156 |
jp_milcent |
62 |
if (response.getText().length() != 0 && response.getText() != null) {
|
|
|
63 |
final JSONValue responseValue = JSONParser.parse(response.getText());
|
|
|
64 |
|
|
|
65 |
// Si la requête est un succès, reception d'un objet ou d'un tableau
|
|
|
66 |
if (responseValue.isObject() != null) {
|
|
|
67 |
final JSONObject reponse = responseValue.isObject();
|
|
|
68 |
Structure structure = new Structure(reponse);
|
188 |
jp_milcent |
69 |
StructureConservation structureConservation = new StructureConservation(reponse);
|
192 |
jp_milcent |
70 |
StructureValorisation structureValorisation = new StructureValorisation(reponse);
|
188 |
jp_milcent |
71 |
info.setDonnee(0, structure);
|
|
|
72 |
info.setDonnee(1, structureConservation);
|
192 |
jp_milcent |
73 |
info.setDonnee(2, structureValorisation);
|
381 |
jp_milcent |
74 |
vueARafraichir.rafraichir(info);
|
156 |
jp_milcent |
75 |
} else if (responseValue.isArray() != null) {
|
|
|
76 |
final JSONArray reponse = responseValue.isArray();
|
|
|
77 |
StructureListe structures = new StructureListe(reponse);
|
381 |
jp_milcent |
78 |
vueARafraichir.rafraichir(structures);
|
156 |
jp_milcent |
79 |
} else {
|
|
|
80 |
GWT.log(url+"\n\tLa réponse n'est pas un objet ou un talbeau JSON et vaut : "+responseValue.toString(), null);
|
|
|
81 |
}
|
|
|
82 |
} else {
|
264 |
jp_milcent |
83 |
if (structureId == null) {
|
156 |
jp_milcent |
84 |
// Dans le cas, où nous demandons toutes les institutions et qu'il n'y en a pas, nous retournons un objet vide
|
|
|
85 |
StructureListe structures = new StructureListe(0);
|
381 |
jp_milcent |
86 |
vueARafraichir.rafraichir(structures);
|
156 |
jp_milcent |
87 |
} else {
|
|
|
88 |
GWT.log(url, null);
|
|
|
89 |
if (response.getText().length() == 0) {
|
|
|
90 |
GWT.log("\tLa réponse a une taille de 0", null);
|
|
|
91 |
}
|
|
|
92 |
if (response.getText() == null) {
|
|
|
93 |
GWT.log("\tLa réponse vaul null", null);
|
|
|
94 |
}
|
|
|
95 |
}
|
|
|
96 |
}
|
|
|
97 |
}
|
|
|
98 |
}
|
|
|
99 |
});
|
|
|
100 |
} catch (RequestException e) {
|
|
|
101 |
e.printStackTrace();
|
|
|
102 |
}
|
|
|
103 |
}
|
|
|
104 |
|
277 |
jp_milcent |
105 |
public void ajouter(final Rafraichissable r, String utilisateurId, final Structure str, StructureConservation conservation, StructureValorisation valorisation) {
|
153 |
jpm |
106 |
final String url = ((Configuration) Registry.get(RegistreId.CONFIG)).getServiceBaseUrl() +
|
264 |
jp_milcent |
107 |
SERVICE_NOM + "/" +
|
|
|
108 |
"";
|
121 |
jpm |
109 |
|
153 |
jpm |
110 |
RequestBuilder rb = new RequestBuilder(RequestBuilder.POST, url);
|
|
|
111 |
|
612 |
jp_milcent |
112 |
String postDonneesEncodees = construirePost(utilisateurId, null, str, conservation, valorisation);
|
609 |
jp_milcent |
113 |
|
121 |
jpm |
114 |
try {
|
306 |
jp_milcent |
115 |
rb.sendRequest(postDonneesEncodees, new RequestCallback() {
|
121 |
jpm |
116 |
|
|
|
117 |
public void onError(Request request, Throwable exception) {
|
153 |
jpm |
118 |
// Gestion des exceptions déclenchées par l'exécution de la requête
|
268 |
jp_milcent |
119 |
GWT.log("Erreur à l'exécution du service "+SERVICE_NOM+" (ajout)", exception);
|
153 |
jpm |
120 |
Info.display("Erreur de Requête", "Une erreur s'est produite lors de l'exécution de la requête.");
|
121 |
jpm |
121 |
}
|
153 |
jpm |
122 |
|
|
|
123 |
public void onErrorHTTP(Request request, Response reponse) {
|
|
|
124 |
// Gestion des erreurs HTTP renvoyé par Apache ou JRest
|
|
|
125 |
Information info = new Information("erreur_jrest", JSONParser.parse(reponse.getText()).isArray());
|
|
|
126 |
GWT.log("Erreur JREST - Code "+reponse.getStatusCode()+"\n"+info.getMessages().toString(), null);
|
|
|
127 |
Info.display("Erreur JREST - Code "+reponse.getStatusCode(), info.toString());
|
|
|
128 |
}
|
121 |
jpm |
129 |
|
|
|
130 |
public void onResponseReceived(Request request, Response response) {
|
153 |
jpm |
131 |
// Si le code de réponse HTTP ne vaut pas 200 OK, on lance le mécanise d'erreur HTTP
|
|
|
132 |
if (response.getStatusCode() != 200) {
|
|
|
133 |
onErrorHTTP(request, response);
|
|
|
134 |
} else {
|
306 |
jp_milcent |
135 |
Information info = new Information("ajout_structure");
|
606 |
jp_milcent |
136 |
if (response.getHeader("X-DebugJrest-Data") != null && response.getHeader("X-DebugJrest-Data").length() != 0) {
|
306 |
jp_milcent |
137 |
final JSONValue reponseEnteteDeboguage = JSONParser.parse(response.getHeader("X-DebugJrest-Data"));
|
|
|
138 |
if (reponseEnteteDeboguage.isArray() != null) {
|
|
|
139 |
info.setDeboguages(reponseEnteteDeboguage.isArray());
|
412 |
jp_milcent |
140 |
GWT.log("DEBOGUAGE:\n"+info.getDeboguages().toString(), null);
|
306 |
jp_milcent |
141 |
}
|
|
|
142 |
}
|
153 |
jpm |
143 |
if (response.getText().length() != 0 && response.getText() != null) {
|
|
|
144 |
final JSONValue responseValue = JSONParser.parse(response.getText());
|
|
|
145 |
|
155 |
jpm |
146 |
// Si la requête est un succès, reception d'une chaine
|
|
|
147 |
if (responseValue.isString() != null) {
|
306 |
jp_milcent |
148 |
info.setMessage(responseValue.isString().stringValue());
|
153 |
jpm |
149 |
} else {
|
306 |
jp_milcent |
150 |
info.setDeboguage("La réponse n'est pas une chaine JSON.");
|
153 |
jpm |
151 |
}
|
|
|
152 |
} else {
|
|
|
153 |
if (response.getText() == null) {
|
306 |
jp_milcent |
154 |
info.setDeboguage("tLa réponse vaut null");
|
|
|
155 |
} else if (response.getText().length() == 0) {
|
|
|
156 |
info.setDeboguage("tLa réponse a une taille de 0");
|
153 |
jpm |
157 |
}
|
121 |
jpm |
158 |
}
|
306 |
jp_milcent |
159 |
r.rafraichir(info);
|
|
|
160 |
|
121 |
jpm |
161 |
}
|
|
|
162 |
}
|
|
|
163 |
|
|
|
164 |
}) ;
|
|
|
165 |
} catch (RequestException e) {
|
153 |
jpm |
166 |
// Gestion des exceptions déclenchées par la création de la requête (url non-valide ?)
|
268 |
jp_milcent |
167 |
GWT.log("Erreur à la création du service "+SERVICE_NOM+" (ajouter)", e);
|
153 |
jpm |
168 |
Info.display("Erreur de Requête", "Une erreur s'est produite lors de la création de la requête.");
|
121 |
jpm |
169 |
}
|
|
|
170 |
}
|
133 |
jpm |
171 |
|
412 |
jp_milcent |
172 |
public void supprimer(final Rafraichissable vueARafraichir, String utilisateurId, String structureId) {
|
133 |
jpm |
173 |
// Ajout des paramètres et données à supprimer dans l'URL
|
|
|
174 |
final String url = ((Configuration) Registry.get(RegistreId.CONFIG)).getServiceBaseUrl() +
|
264 |
jp_milcent |
175 |
SERVICE_NOM + "/" +
|
|
|
176 |
utilisateurId + "/" +
|
|
|
177 |
structureId +
|
133 |
jpm |
178 |
"";
|
|
|
179 |
|
|
|
180 |
// DELETE n'étant pas disponible comme méthode HTTP, nous utilisons POST avec le paramètre action=DELETE
|
|
|
181 |
RequestBuilder rb = new RequestBuilder(RequestBuilder.POST, url);
|
|
|
182 |
String postDonnees = "action=DELETE";
|
|
|
183 |
|
|
|
184 |
try {
|
|
|
185 |
rb.sendRequest(postDonnees, new RequestCallback() {
|
|
|
186 |
|
|
|
187 |
public void onError(Request request, Throwable exception) {
|
156 |
jp_milcent |
188 |
// Gestion des exceptions déclenchées par l'exécution de la requête
|
268 |
jp_milcent |
189 |
GWT.log("Erreur à l'exécution du service "+SERVICE_NOM+" (suppression)", exception);
|
156 |
jp_milcent |
190 |
Info.display("Erreur de Requête", "Une erreur s'est produite lors de l'exécution de la requête.");
|
133 |
jpm |
191 |
}
|
|
|
192 |
|
153 |
jpm |
193 |
public void onErrorHTTP(Request request, Response reponse) {
|
|
|
194 |
// Gestion des erreurs HTTP renvoyé par Apache ou JRest
|
|
|
195 |
Information info = new Information("erreur_jrest", JSONParser.parse(reponse.getText()).isArray());
|
|
|
196 |
GWT.log("Erreur JREST - Code "+reponse.getStatusCode()+"\n"+info.getMessages().toString(), null);
|
|
|
197 |
Info.display("Erreur JREST - Code "+reponse.getStatusCode(), info.toString());
|
|
|
198 |
}
|
|
|
199 |
|
133 |
jpm |
200 |
public void onResponseReceived(Request request, Response response) {
|
153 |
jpm |
201 |
// Si le code de réponse HTTP ne vaut pas 200 OK, on lance le mécanise d'erreur HTTP
|
|
|
202 |
if (response.getStatusCode() != 200) {
|
|
|
203 |
onErrorHTTP(request, response);
|
|
|
204 |
} else {
|
412 |
jp_milcent |
205 |
Information info = new Information("suppression_structure");
|
606 |
jp_milcent |
206 |
if (response.getHeader("X-DebugJrest-Data") != null && response.getHeader("X-DebugJrest-Data").length() != 0) {
|
412 |
jp_milcent |
207 |
final JSONValue reponseEnteteDeboguage = JSONParser.parse(response.getHeader("X-DebugJrest-Data"));
|
|
|
208 |
if (reponseEnteteDeboguage.isArray() != null) {
|
|
|
209 |
info.setDeboguages(reponseEnteteDeboguage.isArray());
|
|
|
210 |
GWT.log("DEBOGUAGE:\n"+info.getDeboguages().toString(), null);
|
|
|
211 |
}
|
|
|
212 |
}
|
153 |
jpm |
213 |
if (response.getText().length() != 0 && response.getText() != null) {
|
|
|
214 |
final JSONValue responseValue = JSONParser.parse(response.getText());
|
|
|
215 |
|
156 |
jp_milcent |
216 |
// Si la requête est un succès, reception d'une chaine
|
153 |
jpm |
217 |
if (responseValue.isString() != null) {
|
412 |
jp_milcent |
218 |
info.setMessage(responseValue.isString().stringValue());
|
|
|
219 |
vueARafraichir.rafraichir(info);
|
153 |
jpm |
220 |
} else {
|
|
|
221 |
GWT.log(url+"\n\tLa réponse n'est pas une chaine JSON.", null);
|
|
|
222 |
}
|
133 |
jpm |
223 |
} else {
|
153 |
jpm |
224 |
GWT.log(url, null);
|
|
|
225 |
if (response.getText().length() == 0) {
|
|
|
226 |
GWT.log("\tLa réponse a une taille de 0", null);
|
|
|
227 |
}
|
|
|
228 |
if (response.getText() == null) {
|
|
|
229 |
GWT.log("\tLa réponse vaul null", null);
|
|
|
230 |
}
|
133 |
jpm |
231 |
}
|
|
|
232 |
}
|
|
|
233 |
}
|
|
|
234 |
|
|
|
235 |
}) ;
|
|
|
236 |
} catch (RequestException e) {
|
153 |
jpm |
237 |
// Gestion des exceptions déclenchées par la création de la requête (url non-valide ?)
|
268 |
jp_milcent |
238 |
GWT.log("Erreur à la création du service "+SERVICE_NOM+" (suppression)", e);
|
153 |
jpm |
239 |
Info.display("Erreur de Requête", "Une erreur s'est produite lors de la création de la requête.");
|
133 |
jpm |
240 |
}
|
|
|
241 |
}
|
169 |
jp_milcent |
242 |
|
412 |
jp_milcent |
243 |
public void modifier(final Rafraichissable vueARafraichir, String utilisateurId, String structureId, Structure str, StructureConservation conservation, StructureValorisation valorisation) {
|
169 |
jp_milcent |
244 |
final String url = ((Configuration) Registry.get(RegistreId.CONFIG)).getServiceBaseUrl() +
|
306 |
jp_milcent |
245 |
SERVICE_NOM + "/" + structureId;
|
169 |
jp_milcent |
246 |
|
|
|
247 |
RequestBuilder rb = new RequestBuilder(RequestBuilder.POST, url);
|
|
|
248 |
|
612 |
jp_milcent |
249 |
String postDonneesEncodees = construirePost(utilisateurId, structureId, str, conservation, valorisation);
|
|
|
250 |
|
169 |
jp_milcent |
251 |
try {
|
306 |
jp_milcent |
252 |
rb.sendRequest(postDonneesEncodees, new RequestCallback() {
|
169 |
jp_milcent |
253 |
|
|
|
254 |
public void onError(Request request, Throwable exception) {
|
|
|
255 |
// Gestion des exceptions déclenchées par l'exécution de la requête
|
268 |
jp_milcent |
256 |
GWT.log("Erreur à l'exécution du service "+SERVICE_NOM+" (modif)", exception);
|
169 |
jp_milcent |
257 |
Info.display("Erreur de Requête", "Une erreur s'est produite lors de l'exécution de la requête.");
|
|
|
258 |
}
|
|
|
259 |
|
|
|
260 |
public void onErrorHTTP(Request request, Response reponse) {
|
|
|
261 |
// Gestion des erreurs HTTP renvoyé par Apache ou JRest
|
|
|
262 |
Information info = new Information("erreur_jrest", JSONParser.parse(reponse.getText()).isArray());
|
|
|
263 |
GWT.log("Erreur JREST - Code "+reponse.getStatusCode()+"\n"+info.getMessages().toString(), null);
|
|
|
264 |
Info.display("Erreur JREST - Code "+reponse.getStatusCode(), info.toString());
|
|
|
265 |
}
|
|
|
266 |
|
|
|
267 |
public void onResponseReceived(Request request, Response response) {
|
|
|
268 |
// Si le code de réponse HTTP ne vaut pas 200 OK, on lance le mécanise d'erreur HTTP
|
|
|
269 |
if (response.getStatusCode() != 200) {
|
|
|
270 |
onErrorHTTP(request, response);
|
|
|
271 |
} else {
|
306 |
jp_milcent |
272 |
Information info = new Information("modif_structure");
|
|
|
273 |
if (response.getHeader("X-DebugJrest-Data").length() != 0) {
|
|
|
274 |
final JSONValue reponseEnteteDeboguage = JSONParser.parse(response.getHeader("X-DebugJrest-Data"));
|
|
|
275 |
if (reponseEnteteDeboguage.isArray() != null) {
|
|
|
276 |
info.setDeboguages(reponseEnteteDeboguage.isArray());
|
412 |
jp_milcent |
277 |
GWT.log("DEBOGUAGE:\n"+info.getDeboguages().toString(), null);
|
306 |
jp_milcent |
278 |
}
|
|
|
279 |
}
|
|
|
280 |
if (response.getText() != null && response.getText().length() != 0) {
|
169 |
jp_milcent |
281 |
final JSONValue responseValue = JSONParser.parse(response.getText());
|
|
|
282 |
|
|
|
283 |
// Si la requête est un succès, reception d'une chaine
|
|
|
284 |
if (responseValue.isString() != null) {
|
306 |
jp_milcent |
285 |
info.setMessage(responseValue.isString().stringValue());
|
169 |
jp_milcent |
286 |
} else {
|
306 |
jp_milcent |
287 |
info.setDeboguage("La réponse n'est pas une chaine JSON.");
|
169 |
jp_milcent |
288 |
}
|
|
|
289 |
} else {
|
|
|
290 |
if (response.getText() == null) {
|
306 |
jp_milcent |
291 |
info.setDeboguage("La réponse vaul null");
|
|
|
292 |
} else if (response.getText().length() == 0) {
|
|
|
293 |
info.setDeboguage("La réponse a une taille de 0");
|
169 |
jp_milcent |
294 |
}
|
|
|
295 |
}
|
412 |
jp_milcent |
296 |
vueARafraichir.rafraichir(info);
|
169 |
jp_milcent |
297 |
}
|
|
|
298 |
}
|
|
|
299 |
|
|
|
300 |
}) ;
|
|
|
301 |
} catch (RequestException e) {
|
|
|
302 |
// Gestion des exceptions déclenchées par la création de la requête (url non-valide ?)
|
268 |
jp_milcent |
303 |
GWT.log("Erreur à la création du service "+SERVICE_NOM+" (modif)", e);
|
169 |
jp_milcent |
304 |
Info.display("Erreur de Requête", "Une erreur s'est produite lors de la création de la requête.");
|
|
|
305 |
}
|
|
|
306 |
}
|
602 |
jp_milcent |
307 |
|
612 |
jp_milcent |
308 |
private String construirePost(String utilisateurId, String structureId, Structure str, StructureConservation conservation, StructureValorisation valorisation) {
|
602 |
jp_milcent |
309 |
String postDonnees = "cmhl_ce_modifier_par=" + URL.encodeComponent(utilisateurId);
|
|
|
310 |
if (str != null) {
|
612 |
jp_milcent |
311 |
if (structureId != null) {
|
|
|
312 |
postDonnees += "&cs_id_structure=" + URL.encodeComponent(structureId);
|
|
|
313 |
}
|
602 |
jp_milcent |
314 |
postDonnees += "&cs_ce_projet=" + URL.encodeComponent(str.getIdProjet()) +
|
|
|
315 |
"&cs_ce_mere=" + URL.encodeComponent(str.getIdMere()) +
|
|
|
316 |
"&cs_guid=" + URL.encodeComponent(str.getGuid()) +
|
|
|
317 |
"&cs_truk_identifiant_alternatif=" + URL.encodeComponent(str.getIdAlternatif()) +
|
|
|
318 |
"&cs_nom=" + URL.encodeComponent(str.getNom()) +
|
|
|
319 |
"&cs_truk_nom_alternatif=" + URL.encodeComponent(str.getNomAlternatif()) +
|
|
|
320 |
"&cs_ce_type=" + URL.encodeComponent(str.getType()) +
|
|
|
321 |
"&cs_ce_truk_type_prive=" + URL.encodeComponent(str.getTypePrive()) +
|
|
|
322 |
"&cs_ce_truk_type_public=" + URL.encodeComponent(str.getTypePublic()) +
|
|
|
323 |
"&cs_adresse_01=" + URL.encodeComponent(str.getAdresse()) +
|
|
|
324 |
"&cs_adresse_02=" + URL.encodeComponent(str.getAdresseComplement()) +
|
|
|
325 |
"&cs_date_fondation=" + URL.encodeComponent(str.getDateFondationFormatMysql()) +
|
|
|
326 |
"&cs_code_postal=" + URL.encodeComponent(str.getCodePostal()) +
|
|
|
327 |
"&cs_ville=" + URL.encodeComponent(str.getVille()) +
|
|
|
328 |
"&cs_ce_truk_region=" + URL.encodeComponent(str.getRegion()) +
|
|
|
329 |
"&cs_ce_truk_pays=" + URL.encodeComponent(str.getPays()) +
|
|
|
330 |
"&cs_truk_telephone=" + URL.encodeComponent(str.getTelephone()) +
|
|
|
331 |
"&cs_truk_url=" + URL.encodeComponent(str.getUrl()) +
|
|
|
332 |
"&cs_nbre_personne=" + URL.encodeComponent(Integer.toString(str.getNbrePersonne()));
|
|
|
333 |
}
|
|
|
334 |
if (conservation != null) {
|
612 |
jp_milcent |
335 |
if (structureId != null) {
|
|
|
336 |
postDonnees += "&csc_id_structure=" + URL.encodeComponent(structureId);
|
|
|
337 |
}
|
602 |
jp_milcent |
338 |
postDonnees += "&csc_mark_formation=" + URL.encodeComponent(conservation.getFormation()) +
|
|
|
339 |
"&csc_formation=" + URL.encodeComponent(conservation.getFormationInfo()) +
|
|
|
340 |
"&csc_mark_formation_interet=" + URL.encodeComponent(conservation.getFormationInteret()) +
|
|
|
341 |
"&csc_truk_stockage_local=" + URL.encodeComponent(conservation.getStockageLocal()) +
|
|
|
342 |
"&csc_truk_stockage_meuble=" + URL.encodeComponent(conservation.getStockageMeuble()) +
|
|
|
343 |
"&csc_truk_stockage_parametre=" + URL.encodeComponent(conservation.getStockageParametre()) +
|
|
|
344 |
"&csc_mark_collection_commune=" + URL.encodeComponent(conservation.getCollectionCommune()) +
|
|
|
345 |
"&csc_truk_collection_autre=" + URL.encodeComponent(conservation.getCollectionAutre()) +
|
|
|
346 |
"&csc_mark_acces_controle=" + URL.encodeComponent(conservation.getAccesControle()) +
|
|
|
347 |
"&csc_mark_restauration=" + URL.encodeComponent(conservation.getRestauration()) +
|
|
|
348 |
"&csc_truk_restauration_operation=" + URL.encodeComponent(conservation.getRestaurationOperation()) +
|
|
|
349 |
"&csc_ce_materiel_conservation=" + URL.encodeComponent(conservation.getMaterielConservation()) +
|
|
|
350 |
"&csc_truk_materiel_autre=" + URL.encodeComponent(conservation.getMaterielAutre()) +
|
|
|
351 |
"&csc_mark_traitement=" + URL.encodeComponent(conservation.getTraitement()) +
|
|
|
352 |
"&csc_truk_traitement=" + URL.encodeComponent(conservation.getTraitements()) +
|
|
|
353 |
"&csc_mark_acquisition_collection=" + URL.encodeComponent(conservation.getAcquisitionCollection()) +
|
|
|
354 |
"&csc_mark_acquisition_echantillon=" + URL.encodeComponent(conservation.getAcquisitionEchantillon()) +
|
|
|
355 |
"&csc_mark_acquisition_traitement=" + URL.encodeComponent(conservation.getAcquisitionTraitement()) +
|
|
|
356 |
"&csc_truk_acquisition_traitement_poison=" + URL.encodeComponent(conservation.getAcquisitionTraitementPoison()) +
|
|
|
357 |
"&csc_truk_acquisition_traitement_insecte=" + URL.encodeComponent(conservation.getAcquisitionTraitementInsecte());
|
|
|
358 |
}
|
|
|
359 |
if (valorisation != null) {
|
612 |
jp_milcent |
360 |
if (structureId != null) {
|
|
|
361 |
postDonnees += "&csc_id_structure=" + URL.encodeComponent(structureId);
|
|
|
362 |
}
|
602 |
jp_milcent |
363 |
postDonnees += "&csv_mark_action=" + URL.encodeComponent(valorisation.getAction()) +
|
|
|
364 |
"&csv_truk_action=" + URL.encodeComponent(valorisation.getActionInfo()) +
|
|
|
365 |
"&csv_publication=" + URL.encodeComponent(valorisation.getPublication()) +
|
|
|
366 |
"&csv_collection_autre=" + URL.encodeComponent(valorisation.getCollectionAutre()) +
|
|
|
367 |
"&csv_mark_action_future=" + URL.encodeComponent(valorisation.getActionFuture()) +
|
|
|
368 |
"&csv_action_future=" + URL.encodeComponent(valorisation.getActionFutureInfo()) +
|
|
|
369 |
"&csv_mark_recherche=" + URL.encodeComponent(valorisation.getRecherche()) +
|
|
|
370 |
"&csv_truk_recherche_provenance=" + URL.encodeComponent(valorisation.getRechercheProvenance()) +
|
|
|
371 |
"&csv_truk_recherche_type=" + URL.encodeComponent(valorisation.getRechercheType()) +
|
|
|
372 |
"&csv_mark_acces_ss_motif=" + URL.encodeComponent(valorisation.getAccesSansMotif()) +
|
|
|
373 |
"&csv_acces_ss_motif=" + URL.encodeComponent(valorisation.getAccesSansMotifInfo()) +
|
|
|
374 |
"&csv_mark_visite_avec_motif=" + URL.encodeComponent(valorisation.getVisiteAvecMotif()) +
|
|
|
375 |
"&csv_visite_avec_motif=" + URL.encodeComponent(valorisation.getVisiteAvecMotifInfo());
|
|
|
376 |
}
|
|
|
377 |
return postDonnees;
|
|
|
378 |
}
|
121 |
jpm |
379 |
}
|