Subversion Repositories eFlore/Applications.coel

Rev

Rev 1171 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

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