Subversion Repositories eFlore/Applications.coel-consultation

Rev

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

Rev 172 Rev 180
Line 7... Line 7...
7
 * @category	Php5
7
 * @category	Php5
8
 * @author		Jean-Pascal MILCENT <jpm@tela-botanica.org>
8
 * @author		Jean-Pascal MILCENT <jpm@tela-botanica.org>
9
 * @copyright	2010 Tela-Botanica
9
 * @copyright	2010 Tela-Botanica
10
 * @license		http://www.cecill.info/licences/Licence_CeCILL_V2-fr.txt Licence CECILL
10
 * @license		http://www.cecill.info/licences/Licence_CeCILL_V2-fr.txt Licence CECILL
11
 * @license		http://www.gnu.org/licenses/gpl.html Licence GNU-GPL
11
 * @license		http://www.gnu.org/licenses/gpl.html Licence GNU-GPL
12
 * @version		SVN: $Id: Recherche.php 172 2011-03-15 14:59:57Z delphine $
12
 * @version		SVN: $Id: Recherche.php 180 2013-12-20 10:29:51Z mathias $
13
 */
13
 */
14
class Recherche extends aControleur {
14
class Recherche extends aControleur {
Line 15... Line 15...
15
	
15
	
-
 
16
	//private $chaine_recherche = null;
16
	private $chaine_recherche = null;
17
	private $masque = null;
Line 17... Line 18...
17
	private static $url_exemple = null;
18
	private static $url_exemple = null;
18
	
19
	
19
	//+----------------------------------------------------------------------------------------------------------------+
20
	//+----------------------------------------------------------------------------------------------------------------+
Line 28... Line 29...
28
	/**
29
	/**
29
	 * Charge le moteur de recherche et l'envoie à la vue.
30
	 * Charge le moteur de recherche et l'envoie à la vue.
30
	 */
31
	 */
31
	public function chargerMoteurRecherche() {
32
	public function chargerMoteurRecherche() {
32
		$donnees = array();
33
		$donnees = array();
33
		
34
 
34
		// Gestion des données de la requête
35
		// Gestion des données de la requête
35
		$donnees['recherche'] = htmlspecialchars($this->obtenirChaineRecherche());
36
		//$donnees['recherche'] = htmlspecialchars($this->obtenirChaineRecherche());
-
 
37
		// masque multi-critères
-
 
38
		$donnees['masque'] = $this->obtenirMasqueRecherche();
Line 36... Line 39...
36
 
39
 
37
		// Gestion des urls
40
		// Gestion des urls
38
		$donnees['url_form'] = $this->obtenirUrlRecherche();
41
		$donnees['url_form'] = $this->obtenirUrlRecherche();
39
		$donnees['url_module'] = 'Recherche';
42
		$donnees['url_module'] = 'Recherche';
Line 42... Line 45...
42
		self::$url_exemple = $this->obtenirUrlRecherche('%s');
45
		self::$url_exemple = $this->obtenirUrlRecherche('%s');
Line 43... Line 46...
43
		
46
		
44
		// Gestion du squelette et de la sortie
47
		// Gestion du squelette et de la sortie
45
		$this->setSortie(self::RENDU_TETE, $this->getVue('moteur', $donnees));
48
		$this->setSortie(self::RENDU_TETE, $this->getVue('moteur', $donnees));
46
	}
49
	}
-
 
50
 
-
 
51
	private function obtenirMasqueRecherche() {
-
 
52
		$masque = array();
-
 
53
		if (!is_null($this->masque)) {
-
 
54
			$masque = $this->masque;
-
 
55
		} else if (isset($_GET['masque'])) {
-
 
56
			$masque = $_GET['masque'];
-
 
57
			$_SESSION['col']['masque'] = $masque;
-
 
58
		} else if (isset($_SESSION['col']['masque'])) {
-
 
59
			$masque = $_SESSION['col']['masque'];
-
 
60
		}
-
 
61
		$this->masque = $masque;
-
 
62
		return $masque;
-
 
63
	}
47
	
64
 
48
	private function obtenirChaineRecherche() {
65
	/*private function obtenirChaineRecherche() {
49
		$chaine = '';
66
		$chaine = '';
50
		if (!is_null($this->chaine_recherche)) {
67
		if (!is_null($this->chaine_recherche)) {
51
			$chaine = $this->chaine_recherche;
68
			$chaine = $this->chaine_recherche;
52
		} else if (isset($_GET['recherche'])) {
69
		} else if (isset($_GET['recherche'])) {
Line 60... Line 77...
60
			$this->chaine_recherche = $chaine;
77
			$this->chaine_recherche = $chaine;
61
		} else if (isset($_SESSION['col']['recherche'])) {
78
		} else if (isset($_SESSION['col']['recherche'])) {
62
			$chaine = $_SESSION['col']['recherche'];
79
			$chaine = $_SESSION['col']['recherche'];
63
		}
80
		}
64
		return $chaine;
81
		return $chaine;
65
	}
82
	}*/
66
	
83
 
67
	private function memoriserChaineRecherche($chaine) {
84
	/*private function memoriserChaineRecherche($chaine) {
68
		$_SESSION['col']['recherche'] = $chaine;
85
		$_SESSION['col']['recherche'] = $chaine;
69
	}
86
	}*/
Line 70... Line 87...
70
 
87
 
71
	public static function getUrlExemple($chaine) {
88
	public static function getUrlExemple($chaine) {
72
		$url = '';
89
		$url = '';
73
		if (!is_null(self::$url_exemple)) {
90
		if (!is_null(self::$url_exemple)) {
Line 78... Line 95...
78
			$chaine = urlencode($chaine);
95
			$chaine = urlencode($chaine);
79
			$url = sprintf(self::$url_exemple, $chaine);
96
			$url = sprintf(self::$url_exemple, $chaine);
80
		}
97
		}
81
		return $url;
98
		return $url;
82
	}
99
	}
83
	
100
 
84
	/**
-
 
85
	 * Recherche des collections.
101
	// recherche des collections ou des personnes, dépendemment de la cible
86
	 * @return string la vue correspondante
-
 
87
	 */
-
 
88
	public function rechercher() {
102
	public function rechercher() {
-
 
103
		// un seul pour les collections ou les personnes, on ne cherche pas 2 choses à la fois !
-
 
104
		$masque = $this->obtenirMasqueRecherche();
-
 
105
 
89
		$donnees = array();
106
		$donnees = array();
-
 
107
		$donnees['cible'] = $masque['cible'];
90
		$rechercheDao =  new RechercheDao();
108
		$rechercheDao =  new RechercheDao();
91
		$parametres = array('mots' => '*');
109
		$parametres = array('mots' => '*');
Line 92... Line 110...
92
		
110
		
93
		// Récupération des paramêtres de l'url
111
		// Récupération des paramêtres de l'url
-
 
112
		/*$chaine_de_recherche = $this->obtenirChaineRecherche();
94
		$chaine_de_recherche = $this->obtenirChaineRecherche(); 
113
		echo "CH RECH: $chaine_de_recherche<br/>"; 
95
		if (!empty($chaine_de_recherche)) {
114
		if (!empty($chaine_de_recherche)) {
96
			$this->url->setVariableRequete('recherche', $chaine_de_recherche);
115
			$this->url->setVariableRequete('recherche', $chaine_de_recherche);
97
		}
116
		}
-
 
117
		$parametres = $this->parserChaineDeRecherche($chaine_de_recherche);*/
-
 
118
 
-
 
119
		// Récupération des paramètres depuis le masque
-
 
120
		$parametres = $masque;
98
		$parametres = $this->parserChaineDeRecherche($chaine_de_recherche);
121
 
-
 
122
		$parametres = $this->limiterParProjets($parametres);
-
 
123
		$this->remplacerAbreviationParId($parametres);
Line 99... Line 124...
99
		$parametres = $this->limiterParProjets($parametres);
124
		//echo "PARAM 2: <pre>" . print_r($parametres, true) . "</pre><br/>";
-
 
125
		
-
 
126
		// Gestion du nombre de résultats
-
 
127
		switch ($masque['cible']) {
-
 
128
			case 'collections':
-
 
129
				$donnees_total = $rechercheDao->chercherCollectionsNbre($parametres);
100
		
130
				break;
-
 
131
			case 'personnes':
-
 
132
				$donnees_total = $rechercheDao->chercherPersonnesNbre($parametres);
-
 
133
				break;
-
 
134
			default:
-
 
135
				// @TODO qu'est-ce qui se passe ?
101
		// Gestion du nombre de résultats
136
				return null;
102
		$donnees_total = $rechercheDao->chercherStructureNbre($parametres);
137
		}
103
		
138
 
104
		// Gestion du fragmenteur
139
		// Gestion du fragmenteur
105
		$options = array(
140
		$options = array(
106
			'url' => $this->url, 
141
			'url' => $this->url, 
Line 114... Line 149...
114
		$this->url->unsetVariablesRequete(array('recherche', 'page'));
149
		$this->url->unsetVariablesRequete(array('recherche', 'page'));
Line 115... Line 150...
115
 
150
 
116
		// Gestion de l'accès aux données
151
		// Gestion de l'accès aux données
117
		$rechercheDao->setLimitation(($de - 1), $fragmenteur->getDonneesParPage());
152
		$rechercheDao->setLimitation(($de - 1), $fragmenteur->getDonneesParPage());
118
		$rechercheDao->setDistinction(1);
-
 
Line 119... Line 153...
119
		$resultats = $rechercheDao->chercher($parametres);
153
		$rechercheDao->setDistinction(1);
-
 
154
		
-
 
155
		// Récupération des résultats
-
 
156
		switch ($masque['cible']) {
-
 
157
			case 'collections':
-
 
158
				$resultats = $rechercheDao->chercherCollections($parametres);
-
 
159
				break;
-
 
160
			case 'personnes':
-
 
161
				$resultats = $rechercheDao->chercherPersonnes($parametres);
-
 
162
				break;
-
 
163
			default:
-
 
164
				return null;
-
 
165
		}
-
 
166
 
-
 
167
		// Affichage de la liste de résultats
120
		
168
		switch ($masque['cible']) {
121
		// Post-traitement des résultats pour l'affichage
169
			case 'collections':
122
		foreach ($resultats as $resultat) {
170
				foreach ($resultats as $resultat) {
123
			// Ajout des données concernant la structure si ce n'est pas déjà fait
171
					// Ajout des données concernant la structure si ce n'est pas déjà fait
124
			$structure_id = $resultat['cs_id_structure'];
172
					$structure_id = $resultat['cs_id_structure'];
125
			if (!isset($donnees['infos'][$structure_id])) {
173
					if (!isset($donnees['infos'][$structure_id])) {
126
				$structure = array(
174
						$structure = array(
127
					'nom' => $resultat['cs_nom'],
175
							'nom' => $resultat['cs_nom'],
-
 
176
							'ville' => $resultat['cs_ville'],
128
					'ville' => $resultat['cs_ville'],
177
							'url' => $this->obtenirUrlFicheStructure($resultat['cs_id_structure'])
129
					'url' => $this->obtenirUrlFicheStructure($resultat['cs_id_structure']));
178
						);
130
				$donnees['infos'][$structure_id]['structure'] = $structure;
179
						$donnees['infos'][$structure_id]['structure'] = $structure;
131
			}
180
					}
132
			
181
					
-
 
182
					// Si la structure possède des collections
133
			// Si la strucutre possède des collections
183
					if (!empty($resultat['cc_id_collection'])) {
134
			if (!empty($resultat['cc_id_collection'])) {
184
						$collection = array(
-
 
185
							'nom' => $resultat['cc_nom'],
135
				$collection = array('nom' => $resultat['cc_nom'],
186
							'url' => $this->obtenirUrlFicheCollection($resultat['cc_id_collection'])
-
 
187
						);
-
 
188
						$donnees['infos'][$structure_id]['collections'][] = $collection;
-
 
189
					}
-
 
190
				}
-
 
191
			break;
-
 
192
 
-
 
193
			case 'personnes':
-
 
194
				foreach ($resultats as $resultat) {
-
 
195
					//echo "<pre>".print_r($resultat,true)."</pre>";
-
 
196
					if (!empty($resultat['cp_id_personne'])) {
-
 
197
						$personne = array(
-
 
198
							'nomcomplet' => $resultat['cp_fmt_nom_complet'],
-
 
199
							'nom' => $resultat['cp_nom'],
-
 
200
							'prenom' => $resultat['cp_prenom'],
-
 
201
							'url' => $this->obtenirUrlFichePersonne($resultat['cp_id_personne'])
-
 
202
						);
136
					'url' => $this->obtenirUrlFicheCollection($resultat['cc_id_collection']));
203
						$donnees['infos']['personnes'][] = $personne;
-
 
204
					}
-
 
205
				}
-
 
206
			break;
-
 
207
 
137
				$donnees['infos'][$structure_id]['collections'][] = $collection;
208
			default:
-
 
209
				return null;
-
 
210
		}
138
			}
211
 
Line 139... Line 212...
139
		}
212
		// Post-traitement des résultats pour l'affichage
140
		$this->postraiterDonnees($donnees['infos']);
213
		$this->postraiterDonnees($donnees['infos']);
141
		
214
		
142
		// Gestion des squelettes
215
		// Gestion des squelettes
143
		$this->chargerMoteurRecherche();
216
		$this->chargerMoteurRecherche();
144
		$resultat = $this->getVue('resultat', $donnees);
217
		$resultat = $this->getVue('resultat', $donnees);
Line 145... Line 218...
145
		$this->setSortie(self::RENDU_CORPS, $resultat);
218
		$this->setSortie(self::RENDU_CORPS, $resultat);
146
		$this->chargerPiedDePage();
219
		$this->chargerPiedDePage();
147
	}
220
	}
148
	
221
	
149
	private function parserChaineDeRecherche($chaine) {		
222
	/*private function parserChaineDeRecherche($chaine) {		
150
		$mots = preg_split('/ /i', $chaine, -1, PREG_SPLIT_NO_EMPTY);
223
		$mots = preg_split('/ /i', $chaine, -1, PREG_SPLIT_NO_EMPTY);
Line 167... Line 240...
167
			}
240
			}
168
		}
241
		}
169
		$this->remplacerAbreviationParId($parametres);
242
		$this->remplacerAbreviationParId($parametres);
Line 170... Line 243...
170
		
243
		
171
		return $parametres;
244
		return $parametres;
172
	}
245
	}*/
173
	
246
 
174
	private function remplacerAbreviationParId(&$parametres) {
247
	private function remplacerAbreviationParId(&$parametres) {
175
		// liste 27 : Liste des relations entre une collection et une personne (id:1030)
248
		// liste 27 : Liste des relations entre une collection et une personne (id:1030)
176
		// liste 80 : Liste des types de collection botanique (id:1083)
249
		// liste 80 : Liste des types de collection botanique (id:1083)
177
		$params_a_remplacer = array('veg' => 1043, 'bot' => 1083, 'pr' => 1030);
250
		$params_a_remplacer = array('veg' => 1043, 'bot' => 1083, 'pr' => 1030);
Line 193... Line 266...
193
					}
266
					}
194
				}
267
				}
195
			}
268
			}
196
		}
269
		}
197
	}
270
	}
198
	
271
 
199
	private function limiterParProjets($parametres) {
272
	private function limiterParProjets($parametres) {
200
		if (Config::get('projets') != '') {
273
		if (Config::get('projets') != '') {
201
			$parametres['projets'] = Config::get('projets');
274
			$parametres['projets'] = Config::get('projets');
202
		} else {
275
		} else {
203
			$parametres['projets'] = '*';
276
			$parametres['projets'] = '*';