Rev 133 | Rev 153 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed
package org.tela_botanica.client.modeles;
import org.tela_botanica.client.RegistreId;
import org.tela_botanica.client.interfaces.Rafraichissable;
import com.extjs.gxt.ui.client.Registry;
import com.google.gwt.core.client.GWT;
import com.google.gwt.http.client.Request;
import com.google.gwt.http.client.RequestBuilder;
import com.google.gwt.http.client.RequestCallback;
import com.google.gwt.http.client.RequestException;
import com.google.gwt.http.client.Response;
import com.google.gwt.http.client.URL;
import com.google.gwt.json.client.JSONArray;
import com.google.gwt.json.client.JSONParser;
import com.google.gwt.json.client.JSONValue;
public class StructureAsyncDao {
public void ajouter(final Rafraichissable r, String utilisateurId, final Structure str) {
String url = ((Configuration) Registry.get(RegistreId.CONFIG)).getServiceBaseUrl();
RequestBuilder rb = new RequestBuilder(RequestBuilder.POST, url+"CoelStructureListe/");
String postDonnees = "cmhl_ce_modifier_par=" + utilisateurId +
"&cs_ce_projet =" + URL.encodeComponent(str.getIdProjet()) +
"&cs_ce_mere =" + URL.encodeComponent(str.getIdMere()) +
"&cs_guid =" + URL.encodeComponent(str.getGuid()) +
"&cs_truk_identifiant_alternatif =" + URL.encodeComponent(str.getIdAlternatif()) +
"&cs_nom=" + URL.encodeComponent(str.getNom()) +
"&cs_truk_nom_alternatif =" + URL.encodeComponent(str.getNomAlternatif()) +
"&cs_ce_type =" + URL.encodeComponent(str.getType()) +
"&cs_ce_truk_type_prive =" + URL.encodeComponent(str.getTypePrive()) +
"&cs_ce_truk_type_public =" + URL.encodeComponent(str.getTypePublic()) +
"&cs_adresse_01 =" + URL.encodeComponent(str.getAdresse()) +
"&cs_adresse_02 =" + URL.encodeComponent(str.getAdresseComplement()) +
"&cs_date_fondation =" + URL.encodeComponent(str.getDateFondation()) +
"&cs_code_postal =" + URL.encodeComponent(str.getCodePostal()) +
"&cs_ville =" + URL.encodeComponent(str.getVille()) +
"&cs_region =" + URL.encodeComponent(str.getRegion()) +
"&cs_pays =" + URL.encodeComponent(str.getPays()) +
"&cs_telephone =" + URL.encodeComponent(str.getTelephone()) +
"&cs_fax =" + URL.encodeComponent(str.getFax()) +
"&cs_truk_url =" + URL.encodeComponent(str.getUrl()) +
"&cs_nbre_personne =" + URL.encodeComponent(str.getNbrePersonne()) +
"";
try {
rb.sendRequest(postDonnees, new RequestCallback() {
public void onError(Request request, Throwable exception) {
// TODO Auto-generated method stub
}
public void onResponseReceived(Request request, Response response) {
if (response.getText().length() != 0 && response.getText() != null) {
final JSONValue responseValue = JSONParser.parse(response.getText());
// Si la requête est un succès, reception d'un tableau
if (responseValue.isString() != null) {
str.set("messages", responseValue.isString().stringValue());
r.rafraichir(str);
}
}
}
}) ;
} catch (RequestException e) {
}
}
public void supprimer(final Rafraichissable r, String idUtilisateur, String idStr) {
// Ajout des paramètres et données à supprimer dans l'URL
final String url = ((Configuration) Registry.get(RegistreId.CONFIG)).getServiceBaseUrl() +
"CoelStructureListe/" +
idUtilisateur + "/" +
idStr +
"";
// DELETE n'étant pas disponible comme méthode HTTP, nous utilisons POST avec le paramètre action=DELETE
RequestBuilder rb = new RequestBuilder(RequestBuilder.POST, url);
String postDonnees = "action=DELETE";
try {
rb.sendRequest(postDonnees, new RequestCallback() {
public void onError(Request request, Throwable exception) {
// TODO Auto-generated method stub
}
public void onResponseReceived(Request request, Response response) {
if (response.getText().length() != 0 && response.getText() != null) {
final JSONValue responseValue = JSONParser.parse(response.getText());
// Si la requête est un succès, reception d'un tableau
if (responseValue.isString() != null) {
GWT.log(responseValue.isString().stringValue(), null);
Information info = new Information("suppression_structure", responseValue.isString().stringValue());
info.setMessage("ok");
r.rafraichir(info);
} else {
GWT.log(url+"\n\tLa réponse est une chaine valant null", null);
}
} else {
GWT.log(url, null);
if (response.getText().length() == 0) {
GWT.log("\tLa réponse a une taille de 0", null);
}
if (response.getText() == null) {
GWT.log("\tLa réponse vaul null", null);
}
}
}
}) ;
} catch (RequestException e) {
}
}
}