Subversion Repositories eFlore/Applications.coel

Rev

Rev 1136 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1136 Rev 1327
Line 7... Line 7...
7
import org.tela_botanica.client.http.JsonRestRequestBuilder;
7
import org.tela_botanica.client.http.JsonRestRequestBuilder;
8
import org.tela_botanica.client.http.JsonRestRequestCallback;
8
import org.tela_botanica.client.http.JsonRestRequestCallback;
9
import org.tela_botanica.client.interfaces.Rafraichissable;
9
import org.tela_botanica.client.interfaces.Rafraichissable;
10
import org.tela_botanica.client.modeles.Information;
10
import org.tela_botanica.client.modeles.Information;
11
import org.tela_botanica.client.modeles.structure.StructureListe;
11
import org.tela_botanica.client.modeles.structure.StructureListe;
-
 
12
import org.tela_botanica.client.util.Debug;
12
import org.tela_botanica.client.util.UtilDAO;
13
import org.tela_botanica.client.util.UtilDAO;
Line 13... Line 14...
13
 
14
 
14
import com.extjs.gxt.ui.client.Registry;
15
import com.extjs.gxt.ui.client.Registry;
15
import com.extjs.gxt.ui.client.widget.Info;
16
import com.extjs.gxt.ui.client.widget.Info;
Line 27... Line 28...
27
	public ProjetAsyncDao(Rafraichissable vueARafraichirCourrante) {
28
	public ProjetAsyncDao(Rafraichissable vueARafraichirCourrante) {
28
		vueARafraichir = vueARafraichirCourrante;
29
		vueARafraichir = vueARafraichirCourrante;
29
		utilisateurId = ((Mediateur) Registry.get(RegistreId.MEDIATEUR)).getUtilisateurId();
30
		utilisateurId = ((Mediateur) Registry.get(RegistreId.MEDIATEUR)).getUtilisateurId();
30
	}
31
	}
Line -... Line 32...
-
 
32
	
-
 
33
	/**
-
 
34
	 * @param paginationProgressive : définit le mode de consultation de la base de données
-
 
35
	 * 			- True :	la consultation des données est progressive, ce qui signifie que la liste est chargée (paginée) au
-
 
36
	 * 						fur et à mesure de la consultation des données par l'utilisateur.
-
 
37
	 * 			- False :	la consultation des données est classique : un seul appel à la base de données est effectué, le retour
-
 
38
	 * 						est renvoyé à l'appelant
-
 
39
	 * 			// FIXME : si la taille de la liste est supérieure à la limite du JREST (150), ce deuxieme mode ne fonctionne pas
31
	
40
	 */
-
 
41
	public void selectionner(final boolean paginationProgressive, final String projetId, final String nomProjet, final int start, final int nbElements) {
-
 
42
		
32
	public void selectionner(final String projetId, final String nom, final int pageCourante, final int nbElements) {
43
		String nom = (nomProjet == null) ? "%" : nomProjet+"%";
Line 33... Line 44...
33
		String[] param = {projetId, nom};
44
		String[] param = {projetId, nom};
34
		
-
 
-
 
45
		
35
		HashMap<String, String> restrictions = new HashMap<String, String>();
46
		HashMap<String, String> restrictions = new HashMap<String, String>();
36
		restrictions.put("start", String.valueOf(pageCourante*nbElements));
47
		
37
		if (nbElements != -1)	{
48
		if (nbElements != -1)	{
Line -... Line 49...
-
 
49
			restrictions.put("limit", String.valueOf(nbElements));
-
 
50
		}
-
 
51
		
-
 
52
		/** GESTION DE LA REQUETE dans le cas d'une liste paginée progressive **/
-
 
53
		if (paginationProgressive) {
-
 
54
 
-
 
55
			/** DEFINITION DU TUPLE DE DEPART **/
38
			restrictions.put("limit", String.valueOf(nbElements));
56
			restrictions.put("start", String.valueOf(start));
-
 
57
			
-
 
58
			/** CONSTRUCTION DE LA REQUETE **/
39
		}
59
    		final JsonRestRequestBuilder rb = UtilDAO.construireRequete(SERVICE_NOM, param, restrictions);
40
		
60
 
-
 
61
    		/** ENVOI DE LA REQUETE **/
41
		final JsonRestRequestBuilder rb = UtilDAO.construireRequete(SERVICE_NOM, param, restrictions);
62
    		rb.envoyerRequete(null, new JsonRestRequestCallback()
-
 
63
    		{
-
 
64
    			/** RECEPTION DE LA REPONSE **/
-
 
65
    			public void surReponse(JSONValue responseValue)
42
		rb.envoyerRequete(null, new JsonRestRequestCallback() {
66
    			{
-
 
67
    				/** Dans le cas d'une liste paginée, vueARafraichir est un objet Proxy.
-
 
68
    				 * On retourne l'objet JSON au proxy afin que ce soit lui qui le traite **/
-
 
69
    				vueARafraichir.rafraichir(responseValue);
43
			@Override
70
    			}
-
 
71
    		});
-
 
72
		}
-
 
73
		/** GESTION DE LA REQUETE dans le cas d'une liste NON paginée progressive **/
44
			public void surReponse(JSONValue responseValue) {
74
		else {
-
 
75
			
-
 
76
			/** DEFINITION DU TUPLE DE DEPART **/
-
 
77
			restrictions.put("start", String.valueOf(start*nbElements));			
45
				if (responseValue != null) {
78
			
-
 
79
			final JsonRestRequestBuilder rb = UtilDAO.construireRequete(SERVICE_NOM, param, restrictions);
46
					// Si la requête est un succès, reception d'un objet ou d'un tableau
80
			
-
 
81
			rb.envoyerRequete(null, new JsonRestRequestCallback() {
47
					JSONArray responseArray = responseValue.isArray();
82
				
Line 48... Line -...
48
					if (responseArray.get(1).isObject() != null) {
-
 
49
						final JSONObject reponse = responseArray.get(1).isObject();
-
 
50
						Projet projet = new Projet(reponse);
-
 
51
						
-
 
52
						Information info = new Information("selection_projet");
83
				public void surReponse(JSONValue responseValue) {
53
						info.setDonnee(0, projet);
-
 
54
						vueARafraichir.rafraichir(info);
-
 
55
					} else if (responseArray.get(1).isArray() != null) {
-
 
56
						final JSONArray reponse = responseValue.isArray();
-
 
57
						ProjetListe projets;
-
 
58
						if (responseArray.get(1).isObject() != null)	{
-
 
59
							projets = new ProjetListe(reponse.get(1).isArray());
-
 
60
						} else	{
-
 
Line -... Line 84...
-
 
84
					
-
 
85
					if (responseValue != null) {
-
 
86
						
-
 
87
						JSONObject responseObject = responseValue.isObject();
-
 
88
						
-
 
89
						if (responseObject != null) {
-
 
90
							
-
 
91
							// Si la réponse est un tableau, alors c'est une liste de projets qui a été retournée
-
 
92
							if (responseObject.get("projets").isArray() != null) {
-
 
93
								
-
 
94
								JSONArray reponse = responseObject.get("projets").isArray();
61
							projets = new ProjetListe(reponse.get(1).isArray(), reponse.get(0).isNumber(), vueARafraichir);
95
								ProjetListe projets;
-
 
96
								projets = new ProjetListe(reponse, responseObject.get("nbElements").isNumber(), vueARafraichir);
-
 
97
								projets.setTaillePage(nbElements);
-
 
98
								projets.setPageCourante(start);							
-
 
99
								
-
 
100
								vueARafraichir.rafraichir(projets);
-
 
101
							
-
 
102
							// Si la réponse est un objet, alors c'est un unique projet qui a été retournée
-
 
103
							} else if (responseObject.get("projets").isObject() != null) {
-
 
104
								
-
 
105
								JSONObject reponse = responseObject.get("projets").isObject();
-
 
106
								Projet projet = new Projet(reponse);
-
 
107
								
-
 
108
								Information info = new Information("selection_projet");
-
 
109
								info.setDonnee(0, projet);
62
						}
110
								vueARafraichir.rafraichir(info);
63
						projets.setTaillePage(nbElements);
-
 
64
						projets.setPageCourante(pageCourante);							
-
 
65
						
-
 
66
						vueARafraichir.rafraichir(projets);
111
							}
67
					} else {
112
						} else {
68
						GWT.log(rb.getUrl()+"\n\tLa réponse n'est pas un objet ou un talbeau JSON et vaut : "+responseValue.toString(), null);
113
							GWT.log(rb.getUrl()+"\n\tLa réponse n'est pas un objet ou un tableau JSON et vaut : "+responseValue.toString(), null);
69
					}
114
						}
-
 
115
					} else {
70
				} else {
116
						// Dans le cas, où nous demandons tous les projets et qu'il n'y en a pas, nous retournons un objet vide
71
					// Dans le cas, où nous demandons tous les projets et qu'il n'y en a pas, nous retournons un objet vide
117
						if (projetId == null) {
72
					if (projetId == null) {
118
							ProjetListe projets = new ProjetListe(0);
73
						ProjetListe projets = new ProjetListe(0);
119
							vueARafraichir.rafraichir(projets);								
74
						vueARafraichir.rafraichir(projets);								
-
 
75
					}
120
						}
Line 76... Line 121...
76
				}
121
					}
77
			}
122
				}