989 |
aurelien |
1 |
package org.tela_botanica.client.modeles.dao;
|
101 |
jpm |
2 |
|
989 |
aurelien |
3 |
import org.tela_botanica.client.modeles.objets.Configuration;
|
2831 |
mathias |
4 |
import org.tela_botanica.client.modeles.objets.Utilisateur;
|
101 |
jpm |
5 |
import org.tela_botanica.client.observation.ObservationModele;
|
2831 |
mathias |
6 |
import org.tela_botanica.client.util.Util;
|
204 |
david |
7 |
|
|
|
8 |
import com.google.gwt.http.client.URL;
|
101 |
jpm |
9 |
import com.google.gwt.user.client.Window;
|
|
|
10 |
|
|
|
11 |
public class ExportObservationsDAO {
|
|
|
12 |
|
|
|
13 |
ObservationModele om = null ;
|
|
|
14 |
|
|
|
15 |
public ExportObservationsDAO(ObservationModele observationModele) {
|
|
|
16 |
om = observationModele ;
|
|
|
17 |
}
|
|
|
18 |
|
1705 |
raphael |
19 |
public void exporterObservations(String identifiant, String[][] criteres, String format, String groupes) {
|
101 |
jpm |
20 |
|
1705 |
raphael |
21 |
String requete = "colonnes=" + groupes ;
|
101 |
jpm |
22 |
|
|
|
23 |
if(criteres != null)
|
|
|
24 |
{
|
|
|
25 |
// on construit les paramètres du get avec les critères (&critere1=valeur1&critere2=valeur2 etc...)
|
|
|
26 |
for (int i = 0; i < criteres.length; i++) {
|
|
|
27 |
|
272 |
aurelien |
28 |
if(criteres[i] != null && criteres[i][1] != null && !criteres[i][1].equals(""))
|
101 |
jpm |
29 |
{
|
1705 |
raphael |
30 |
requete += "&"+criteres[i][0]+"="+URL.encodeComponent(criteres[i][1]) ;
|
101 |
jpm |
31 |
}
|
|
|
32 |
}
|
|
|
33 |
}
|
|
|
34 |
|
1705 |
raphael |
35 |
requete += "&id_utilisateur="+identifiant+"&format="+format;
|
2831 |
mathias |
36 |
// jeton SSO en GET car pas moyen d'ajouter un header Authorization
|
|
|
37 |
requete += "&Authorization=" + Utilisateur.getJeton();
|
|
|
38 |
String url = Configuration.getServiceBaseUrl()+"/CelWidgetExport/export/?"+requete;
|
|
|
39 |
//Util.LogVersFirebug(url);
|
|
|
40 |
Window.open(url ,"Export",null) ;
|
101 |
jpm |
41 |
|
|
|
42 |
}
|
|
|
43 |
|
|
|
44 |
|
|
|
45 |
|
|
|
46 |
}
|