Subversion Repositories eFlore/Applications.eflore-consultation

Rev

Rev 74 | Go to most recent revision | Blame | Last modification | View Log | RSS feed

<?php
class Recherche extends aControleur {
        
        //+----------------------------------------------------------------------------------------------------------------+
        // Méthodes
        /**
         * Fonction d'affichage par défaut
         */
        public function executerActionParDefaut() {
                $this->executerAction('RechercheSimple', 'executerAccueil');
                
        }

        public function executerRechercheSimple() {
                $donnees['type_nom'] = $_GET['type_nom'];
                $donnees['nom'] = $_GET['nom'];
                if (strlen($donnees['nom']) < 3) {
                        $donnees['information'] = 'Veuillez saisir un radical contenant au moins 3 caractères alphabétiques !';
                } else {
                        $noms = ($donnees['type_nom'] == 'nom_vernaculaire') 
                                ? new NomsVernaculaires(Config::get('referentielVerna')) 
                                : new Noms(Registre::get('parametres.referentiel'));
                        $presence = $this->rechercherNom($noms);
                        if ($presence == '') {
                                $donnees['information'] = 'Nom inconnu';
                        } elseif ($presence != 'ok') {
                                $donnees['nom_approche'] = $presence;
                                $donnees['url_nom_approche'] = $this->obtenirUrlRechercheSimple($presence, $donnees['type_nom']);
                        }
                }
                Registre::set('donneesMoteur', $donnees);
                $this->executerAction('RechercheSimple', 'executerForm');
                if ($presence == 'ok') {
                        $this->executerAction('Resultat', 'executerResultat');
                }
        }
        
        // regarde si il y a des résultats correspondant au nom recherché sinon recherche un nom approché
        private function rechercherNom($noms) {
                $approche = '';
                $res = $noms->getRechercheEtendue($_GET['nom']);
                $form = I18n::get('Recherche-form-nom');
                if ($res == false || $res['entete']['total'] == 0) { // recherche nom approché
                        $res = $noms->getRechercheFloue($_GET['nom']);
                        if (!($res == false || $res['entete']['total'] == 0)) {
                                $nom_proche = array_shift($res['resultat']);
                                $approche = ($_GET['type_nom'] == 'nom_vernaculaire') ? $nom_proche['nom'] : $nom_proche['nom_sci'];
                        }
                } elseif ($res['entete']['total'] == 1 || urldecode($_GET['submit']) == $form['fiche']) { // renvoie à la fiche
                        $ids = array_keys($res['resultat']);
                        $url = $this->obtenirUrlFiche($ids[0]);
                        $this->redirigerVers($url);
                } else { // affiche les résultats
                        Registre::set('resultats', $res);
                        $approche = 'ok';
                }
                return $approche;
        }
        
}
?>