Subversion Repositories eFlore/Applications.eflore-consultation

Rev

Rev 1152 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
74 delphine 1
<?php
2
class Recherche extends aControleur {
3
 
4
	//+----------------------------------------------------------------------------------------------------------------+
5
	// Méthodes
85 delphine 6
	protected $nom = null;
7
	protected $type_nom = 'nom_scientifique';
165 delphine 8
	protected $type_resultat = '';
85 delphine 9
	protected $submit = '';
885 aurelien 10
	protected $acces_fiche = false;
729 mathilde 11
	private $recherche_avancee;
12
	private $param;
13
	private $i18n =  array();
14
 
996 aurelien 15
	private $parametresAvancesGeneriques = array('gen','fam','nn','nt','sp','ssp','type','sto','sti','stc');
16
 
85 delphine 17
	public function initialiser() {
18
		$this->capturerParametres();
729 mathilde 19
		$this->capturerParametresAvances();
20
		$this->i18n = I18n::get('Recherche-form-avancee');
85 delphine 21
	}
729 mathilde 22
 
74 delphine 23
	/**
24
	 * Fonction d'affichage par défaut
25
	 */
26
	public function executerActionParDefaut() {
179 delphine 27
		$this->executerAccueil();
74 delphine 28
	}
179 delphine 29
 
182 delphine 30
	public function executerAccueil($donneesMoteur = array()) {
1152 aurelien 31
 
32
		$meta = new MetaDonnees();
33
		$meta->setProjet(Registre::get('parametres.referentiel'));
34
		$metadonnees = $meta->getMetaDonnees();
35
		$donneesMoteur['metadonnees_referentiel'] = $metadonnees[0];
36
 
179 delphine 37
		$niveau = new Niveau();
38
		$donnees['form_niveau'] = $niveau->afficherNiveau();
39
		$recherchesimple = new RechercheSimple();
182 delphine 40
		$donnees['form_nom'] = $recherchesimple->executerFormulaireNom($donneesMoteur);
729 mathilde 41
		if (Registre::get('parametres.niveau') != 1) {
42
			$recherche_avancee = new RechercheAvancee();
43
			$donnees['form_recherche_av'] = $recherche_avancee->executerFormulaireRechercheAv($donneesMoteur);
44
		}
1154 aurelien 45
		$donnees['description'] = "";
46
 
47
		// le descriptif du référentiel est affiché lorsque seul le moteur est affiché (donc ni résultats, ni fiche)
48
		if(Registre::get('parametres.module') == 'recherche' &&
49
			Registre::get('parametres.action') == 'action-par-defaut' &&
50
			!Registre::get('resultats')) {
51
			$referentiel = Registre::get('parametres.referentiel');
52
			$wiki = new Wikini();
53
			$description = $wiki->getDescriptionReferentielFormate($referentiel);
54
			$donnees['description'] = $description;
55
		}
179 delphine 56
		$this->afficherAccueil($donnees);
57
	}
58
 
59
	private function afficherAccueil($donnees) {
60
		$donnees['i18n'] = I18n::get('Recherche-accueil');
216 delphine 61
		$this->setSortie(self::RENDU_CORPS, $this->getVue('recherche_accueil', $donnees), true);
179 delphine 62
	}
74 delphine 63
 
729 mathilde 64
 
65
	//+---------------------------------------------recherche avancee-------------------------------------+
66
	public function executerRechercheAvancee() {
901 aurelien 67
		$this->param = $this->nettoyerParametresDefautRechercheAvancee($this->param);
729 mathilde 68
		$donnees['param'] = $this->param;
69
		$presence = $this->rechercherCriteresDemandes();
901 aurelien 70
		if (empty($presence) && !empty($this->param)) {
71
			$donnees['message_av']['attention'] = 'info_res_vide';
72
		}
729 mathilde 73
		$this->executerAccueil($donnees);
74
		if (Registre::get('resultats')) {
75
			$_GET['resultat'] = $this->type_resultat;
76
			$this->executerAction('Resultat', 'executerResultat');
77
		}
78
	}
901 aurelien 79
 
80
	private function nettoyerParametresDefautRechercheAvancee($params) {
81
		$params_nettoyes = array();
82
		foreach ($params as $cle => $param) {
83
			if(!preg_match("#^\(.*\)$#", $param)) {
84
				$params_nettoyes[$cle] = $param;
85
			}
86
		}
87
		return $params_nettoyes;
88
	}
729 mathilde 89
 
90
	public function rechercherCriteresDemandes() {
91
		$noms = new Noms(Registre::get('parametres.referentiel'));
92
		$res = $noms->getRechercheAvancee($this->param);
93
		if ($res != false || $res['entete']['total'] != 0) {
94
			if ($res['entete']['total'] == 1 ) {
95
				$ids = array_keys($res['resultat']);
96
				$nom = $res['resultat'][$ids[0]]['nom_sci'];
97
				$url = $this->urls->obtenirUrlFiche($ids[0], 'nom_scientifique', $nom);
98
				$this->redirigerVers($url);
99
			} else {
100
			$res['type'] = $this->type_nom;
101
			Registre::set('resultats', $res);
102
			}
103
		} else {
104
			$res = '';
105
		}
106
		return $res;
107
	}
108
 
109
	//+---------------------------------------------recherche simple-------------------------------------+
74 delphine 110
	public function executerRechercheSimple() {
85 delphine 111
		$donnees['type_nom'] = $this->type_nom;
112
		$donnees['nom'] = $this->nom;
74 delphine 113
		if (strlen($donnees['nom']) < 3) {
123 delphine 114
			$donnees['message']['attention'] = 'info_nb_lettres';
74 delphine 115
		} else {
88 delphine 116
			$presence = $this->rechercherNom();
123 delphine 117
			if ($presence == '') { // s'il n'y a pas de nom
118
				$donnees['message']['attention'] = 'info_sp_abs';
720 delphine 119
			} elseif ($presence == 'sans_correspondance') {
120
				$res = Registre::get('resultats');
121
				$id = array_keys($res['resultat']);
122
				$donnees['message']['nom_ss_corresp']['id'] = $id[0];
123
				$nom = array_shift($res['resultat']);
124
				$donnees['message']['nom_ss_corresp']['nom'] = $nom['nom_sci'];
123 delphine 125
			} elseif ($presence != 'ok') { // s'il y a des noms approchés
126
				if (!Registre::get('resultats')) { // s'il n'y a aucun nom exact
127
					$donnees['message']['attention'] = 'info_sp_abs';
128
				}
129
				$donnees['message']['nom_approche'] = $presence;
74 delphine 130
			}
131
		}
179 delphine 132
		$this->executerAccueil($donnees);
88 delphine 133
		if (Registre::get('resultats')) {
185 delphine 134
			$_GET['resultat'] = $this->type_resultat;
76 delphine 135
			$this->executerAction('Resultat', 'executerResultat');
136
		}
74 delphine 137
	}
138
 
729 mathilde 139
 
74 delphine 140
	// regarde si il y a des résultats correspondant au nom recherché sinon recherche un nom approché
88 delphine 141
	// $noms classe métier nom ou nom
142
	private function rechercherNom() {
143
		$noms = ($this->type_nom == 'nom_vernaculaire')
144
				? new NomsVernaculaires(Config::get(Registre::get('parametres.referentiel').'.referentielVerna'))
145
				: new Noms(Registre::get('parametres.referentiel'));
74 delphine 146
		$approche = '';
165 delphine 147
		$res = $noms->getRechercheEtendue($this->nom, $this->type_resultat);
74 delphine 148
		$form = I18n::get('Recherche-form-nom');
149
		if ($res == false || $res['entete']['total'] == 0) { // recherche nom approché
88 delphine 150
			$approche = $this->rechercherNomApproche($noms);
885 aurelien 151
		} elseif ($res['entete']['total'] == 1 || $this->acces_fiche) { // renvoie à la fiche
720 delphine 152
			$approche = $this->traiterAccesFiche($res);
74 delphine 153
		} else { // affiche les résultats
85 delphine 154
			$res['type'] = $this->type_nom;
76 delphine 155
			Registre::set('resultats', $res);
74 delphine 156
			$approche = 'ok';
123 delphine 157
			if ($res['entete']['total'] < 3) { // si moins de 16 noms affiche en plus un nom approché
88 delphine 158
				$approche = $this->rechercherNomApproche($noms);
159
			}
74 delphine 160
		}
161
		return $approche;
162
	}
163
 
720 delphine 164
	private function traiterAccesFiche($res) {
165
		$ids = array_keys($res['resultat']);
166
		if ($this->type_nom == 'nom_vernaculaire') {
167
			$id = explode(':',$res['resultat'][$ids[0]]['nom_retenu.code']);
168
			$id = $id[1];
169
		} else {
170
			if ($res['resultat'][$ids[0]]['retenu'] == 'absent') { // dans le cas d'un nom sans correspondance
171
				$res['type'] = $this->type_nom;
172
				Registre::set('resultats', $res);
173
				$approche = 'sans_correspondance';
174
				return $approche;
175
			} else {
176
				$id = $ids[0];
177
			}
178
		}
179
		$url = $this->urls->obtenirUrlFiche($id, $this->type_nom, $this->nom);
180
		$this->redirigerVers($url);
181
	}
182
 
88 delphine 183
	private function rechercherNomApproche($noms) {
184
		$approche = '';
185
		$res = $noms->getRechercheFloue($this->nom);
186
		if (!($res == false || $res['entete']['total'] == 0)) {
123 delphine 187
			for ($i = 0; $i < 3; $i++) {
188
				$nom_proche = array_shift($res['resultat']);
189
				$approche[$i]['nom'] = ($this->type_nom == 'nom_vernaculaire') ? $nom_proche['nom'] : $nom_proche['nom_sci'];
156 delphine 190
				$approche[$i]['url_nom_approche'] = $this->urls->obtenirUrlRechercheSimple($approche[$i]['nom'], $this->type_nom);
123 delphine 191
			}
88 delphine 192
		}
193
		return $approche;
194
	}
195
 
729 mathilde 196
	//+-----------------------------------------------méthodes utiles---------------------------------+
179 delphine 197
 
85 delphine 198
	private function capturerParametres() {
720 delphine 199
		if (isset($_REQUEST['nom'])) {
901 aurelien 200
			$this->nom = $this->convertirEncodageEntree(urldecode($_REQUEST['nom']));
85 delphine 201
		}
202
		if (isset($_GET['type_nom'])) {
901 aurelien 203
			$this->type_nom = $this->convertirEncodageEntree(urldecode($_GET['type_nom']));
85 delphine 204
		}
205
		if (isset($_GET['submit'])) {
901 aurelien 206
			$this->submit = $this->convertirEncodageEntree(urldecode($_GET['submit']));
85 delphine 207
		}
885 aurelien 208
		if(isset($_GET['acces_fiche'])) {
209
			$this->acces_fiche = true;
210
		}
174 delphine 211
		if (isset($_GET['niveau'])) {
901 aurelien 212
			Registre::set('parametres.niveau', $this->convertirEncodageEntree($_GET['niveau']));
174 delphine 213
		}
165 delphine 214
		if (isset($_GET['resultat'])) {
901 aurelien 215
			$this->type_resultat = $this->convertirEncodageEntree(urldecode($_GET['resultat']));
165 delphine 216
		} else {
217
			$onglet_resultat = $this->recupererTableauConfig('affich_resultats');
218
			$this->type_resultat = $onglet_resultat[Registre::get('parametres.niveau').'_'.$this->type_nom];
219
		}
85 delphine 220
	}
221
 
729 mathilde 222
	private function capturerParametresAvances() {
996 aurelien 223
		$this->capturerParametresAvancesGeneriques();
224
		$this->capturerParametresAvancesDependantsLangage();
225
		$this->capturerParametresAvancesPresenceSpecifiques();
226
	}
227
 
228
	private function capturerParametresAvancesGeneriques() {
229
		foreach($this->parametresAvancesGeneriques as $param) {
230
			if (isset($_GET[$param]) && $_GET[$param] != '') {
231
				$this->param[$param] = $this->convertirEncodageEntree(urldecode($_GET[$param]));
232
			}
729 mathilde 233
		}
996 aurelien 234
	}
235
 
236
	private function capturerParametresAvancesDependantsLangage() {
237
		if (isset($_GET['au']) && $_GET['au'] != ''
238
		&& $_GET['au'] != $this->convertirEncodageEntree(urlencode($this->i18n['valeur-form-auteur']))) {
901 aurelien 239
			$this->param['au'] = $this->convertirEncodageEntree(urldecode($_GET['au']));
729 mathilde 240
		}
241
		if (isset($_GET['bib']) && $_GET['bib'] != ''
996 aurelien 242
		&& $_GET['bib'] != $this->convertirEncodageEntree(urlencode($this->i18n['valeur-form-bib']))) {
901 aurelien 243
			$this->param['bib'] = $this->convertirEncodageEntree(urldecode($_GET['bib']));
729 mathilde 244
		}
245
		if (isset($_GET['and']) && $_GET['and'] != ''
996 aurelien 246
		&& $_GET['and'] != $this->convertirEncodageEntree(urlencode($this->i18n['valeur-form-date']))) {
901 aurelien 247
			$this->param['and'] = $this->convertirEncodageEntree(urldecode($_GET['and']));
729 mathilde 248
		}
249
		if (isset($_GET['anf']) && $_GET['anf'] != ''
996 aurelien 250
		&& $_GET['anf'] != urlencode($this->i18n['valeur-form-date'])) {
901 aurelien 251
			$this->param['anf'] = $this->convertirEncodageEntree(urldecode($_GET['anf']));
729 mathilde 252
		}
996 aurelien 253
	}
254
 
255
	private function capturerParametresAvancesPresenceSpecifiques()  {
256
		$champs_presence = $this->obtenirChampsPresence();
257
		foreach($champs_presence as $champ) {
258
			$param = $champ['param'];
259
			if (isset($_GET[$param]) && $_GET[$param] != '') {
260
				$this->param[$param] = $this->convertirEncodageEntree(urldecode($_GET[$param]));
261
			}
729 mathilde 262
		}
996 aurelien 263
	}
264
 
265
	private function obtenirChampsPresence() {
266
		$tableau_champs_presence = array();
267
		$referentiel = Registre::get('parametres.referentiel');
268
		$champs_presence = Config::get($referentiel.'.champsPresence');
269
		$champs_presence_spl = explode('|', $champs_presence);
270
		foreach($champs_presence_spl as $champ) {
271
			$label_param_champ = explode(':', $champ);
272
			$tableau_champs_presence[] = array('param' => $label_param_champ[1],
273
														'label' => $label_param_champ[0]);
729 mathilde 274
		}
996 aurelien 275
		return $tableau_champs_presence;
729 mathilde 276
	}
277
 
165 delphine 278
	protected function recupererTableauConfig($param) {
279
		$tableau = array();
280
		$tableauPartiel = explode(',', Config::get($param));
281
		$tableauPartiel = array_map('trim', $tableauPartiel);
282
		foreach ($tableauPartiel as $champ) {
283
			if (strpos($champ, '=') === false) {
284
				$tableau[] = $champ;
285
			} else {
286
				list($cle, $val) = explode('=', $champ);
287
				$tableau[$cle] = $val;
288
			}
289
		}
290
		return $tableau;
291
	}
901 aurelien 292
 
293
 
294
	 /**
295
	 * Convertion des valeurs de requête dans l'encodage de l'application (voir fichier config.ini : appli_encodage),
296
	 * A cause d'un bug en cours d'investigation, celle ci utilise des paramètres différents de la fonction de conversion
297
	 * D'encodage de sortie
298
	 * Cette convertion a lieu seulement si les formats sont différents.
299
	 */
300
	private function convertirEncodageEntree($contenu) {
301
		if (Config::get('sortie_encodage') != Config::get('appli_encodage')) {
302
			$contenu = mb_convert_encoding($contenu, Config::get('appli_encodage'), Config::get('sortie_encodage'));
303
		}
304
		return $contenu;
305
	}
165 delphine 306
 
74 delphine 307
}
308
?>