7 |
jpm |
1 |
<?php
|
|
|
2 |
// declare(encoding='UTF-8');
|
|
|
3 |
/**
|
|
|
4 |
* classe Controleur du module Recherche.
|
|
|
5 |
*
|
|
|
6 |
* @package Collection
|
|
|
7 |
* @category Php5
|
|
|
8 |
* @author Jean-Pascal MILCENT <jpm@tela-botanica.org>
|
|
|
9 |
* @copyright 2010 Tela-Botanica
|
|
|
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
|
20 |
jpm |
12 |
* @version SVN: $Id: Recherche.php 112 2010-06-28 09:29:46Z jpm $
|
7 |
jpm |
13 |
*/
|
9 |
jpm |
14 |
class Recherche extends ColControleur {
|
7 |
jpm |
15 |
|
54 |
jpm |
16 |
private $chaine_recherche = null;
|
|
|
17 |
private static $url_exemple = null;
|
|
|
18 |
|
8 |
jpm |
19 |
//+----------------------------------------------------------------------------------------------------------------+
|
9 |
jpm |
20 |
// Méthodes
|
7 |
jpm |
21 |
/**
|
|
|
22 |
* Fonction d'affichage par défaut, elle appelle la liste des administrateurs
|
|
|
23 |
*/
|
|
|
24 |
public function executerActionParDefaut() {
|
8 |
jpm |
25 |
return $this->rechercher();
|
7 |
jpm |
26 |
}
|
|
|
27 |
|
|
|
28 |
/**
|
|
|
29 |
* Charge le moteur de recherche et l'envoie à la vue.
|
|
|
30 |
*/
|
|
|
31 |
public function chargerMoteurRecherche() {
|
|
|
32 |
$donnees = array();
|
|
|
33 |
|
8 |
jpm |
34 |
// Gestion des données de la requête
|
54 |
jpm |
35 |
$donnees['recherche'] = htmlspecialchars($this->obtenirChaineRecherche());
|
|
|
36 |
|
21 |
jpm |
37 |
// Gestion des urls
|
112 |
jpm |
38 |
$donnees['url_form'] = $this->obtenirUrlRecherche();
|
7 |
jpm |
39 |
$donnees['url_module'] = 'Recherche';
|
|
|
40 |
$donnees['url_action'] = 'rechercher';
|
112 |
jpm |
41 |
self::$url_exemple = $this->obtenirUrlRecherche('%s');
|
7 |
jpm |
42 |
|
8 |
jpm |
43 |
// Gestion du squelette et de la sortie
|
|
|
44 |
$this->setSortie(self::RENDU_TETE, $this->getVue('moteur', $donnees));
|
7 |
jpm |
45 |
}
|
|
|
46 |
|
15 |
jpm |
47 |
private function obtenirChaineRecherche() {
|
|
|
48 |
$chaine = '';
|
54 |
jpm |
49 |
if (!is_null($this->chaine_recherche)) {
|
|
|
50 |
$chaine = $this->chaine_recherche;
|
|
|
51 |
} else if (isset($_GET['recherche'])) {
|
|
|
52 |
// Pré-traitement de la chaine de recherche
|
15 |
jpm |
53 |
$chaine = $_GET['recherche'];
|
54 |
jpm |
54 |
// Suppression des slash ajouté automatiquement par PHP devant les guillemets
|
|
|
55 |
$chaine = stripslashes($chaine);
|
|
|
56 |
// Mémorisation de la chaine
|
|
|
57 |
$this->memoriserChaineRecherche($chaine);
|
|
|
58 |
// Stockage dans la classe pour éviter d'effectuer à nouveau le traitement ci-dessus
|
|
|
59 |
$this->chaine_recherche = $chaine;
|
15 |
jpm |
60 |
} else if (isset($_SESSION['col']['recherche'])) {
|
|
|
61 |
$chaine = $_SESSION['col']['recherche'];
|
|
|
62 |
}
|
|
|
63 |
return $chaine;
|
|
|
64 |
}
|
|
|
65 |
|
|
|
66 |
private function memoriserChaineRecherche($chaine) {
|
|
|
67 |
$_SESSION['col']['recherche'] = $chaine;
|
|
|
68 |
}
|
54 |
jpm |
69 |
|
|
|
70 |
public static function getUrlExemple($chaine) {
|
|
|
71 |
$url = '';
|
|
|
72 |
if (!is_null(self::$url_exemple)) {
|
|
|
73 |
// L'utilisation d'urlencode nécessiate de pré-encodé la chaine dans le format de sortie si nécessaire
|
|
|
74 |
if (Config::get('sortie_encodage') != Config::get('appli_encodage')) {
|
|
|
75 |
$chaine = mb_convert_encoding($chaine, Config::get('sortie_encodage'), Config::get('appli_encodage'));
|
|
|
76 |
}
|
|
|
77 |
$chaine = urlencode($chaine);
|
|
|
78 |
$url = sprintf(self::$url_exemple, $chaine);
|
|
|
79 |
}
|
|
|
80 |
return $url;
|
|
|
81 |
}
|
15 |
jpm |
82 |
|
7 |
jpm |
83 |
/**
|
|
|
84 |
* Recherche des collections.
|
|
|
85 |
* @return string la vue correspondante
|
|
|
86 |
*/
|
|
|
87 |
public function rechercher() {
|
|
|
88 |
$donnees = array();
|
|
|
89 |
$rechercheDao = $this->getModele('RechercheDao');
|
20 |
jpm |
90 |
$parametres = array('mots' => '*');
|
7 |
jpm |
91 |
|
|
|
92 |
// Récupération des paramêtres de l'url
|
54 |
jpm |
93 |
$chaine_de_recherche = $this->obtenirChaineRecherche();
|
|
|
94 |
if (!empty($chaine_de_recherche)) {
|
23 |
jpm |
95 |
$this->url->setVariableRequete('recherche', $chaine_de_recherche);
|
7 |
jpm |
96 |
}
|
20 |
jpm |
97 |
$parametres = $this->parserChaineDeRecherche($chaine_de_recherche);
|
|
|
98 |
|
7 |
jpm |
99 |
// Gestion du nombre de résultats
|
|
|
100 |
$donnees_total = $rechercheDao->chercherStructureNbre($parametres);
|
|
|
101 |
|
|
|
102 |
// Gestion du fragmenteur
|
|
|
103 |
$options = array(
|
|
|
104 |
'url' => $this->url,
|
43 |
jpm |
105 |
'donnees_total' => $donnees_total,
|
|
|
106 |
'donnees_par_page' => Config::get('resultat_par_page_defaut'),
|
|
|
107 |
'donnees_par_page_choix' => Config::get('resultat_par_page_choix'),
|
|
|
108 |
);
|
7 |
jpm |
109 |
$fragmenteur = Composant::fabrique('fragmenteur', $options);
|
|
|
110 |
$donnees['fragmenteur'] = $fragmenteur->executer();
|
|
|
111 |
list($de, $a) = $fragmenteur->getDeplacementParPageId();
|
111 |
jpm |
112 |
$this->url->unsetVariablesRequete(array('recherche', 'page'));
|
7 |
jpm |
113 |
|
|
|
114 |
// Gestion de l'accès aux données
|
|
|
115 |
$rechercheDao->setLimitation(($de - 1), $fragmenteur->getDonneesParPage());
|
20 |
jpm |
116 |
$rechercheDao->setDistinction(1);
|
7 |
jpm |
117 |
$resultats = $rechercheDao->chercher($parametres);
|
21 |
jpm |
118 |
|
7 |
jpm |
119 |
// Post-traitement des résultats pour l'affichage
|
|
|
120 |
foreach ($resultats as $resultat) {
|
92 |
jpm |
121 |
// Ajout des données concernant la structure si ce n'est pas déjà fait
|
7 |
jpm |
122 |
$structure_id = $resultat['cs_id_structure'];
|
|
|
123 |
if (!isset($donnees['infos'][$structure_id])) {
|
|
|
124 |
$structure = array(
|
|
|
125 |
'nom' => $resultat['cs_nom'],
|
9 |
jpm |
126 |
'ville' => $resultat['cs_ville'],
|
112 |
jpm |
127 |
'url' => $this->obtenirUrlFicheStructure($resultat['cs_id_structure']));
|
7 |
jpm |
128 |
$donnees['infos'][$structure_id]['structure'] = $structure;
|
|
|
129 |
}
|
92 |
jpm |
130 |
|
|
|
131 |
// Si la strucutre possède des collections
|
|
|
132 |
if (!empty($resultat['cc_id_collection'])) {
|
|
|
133 |
$collection = array('nom' => $resultat['cc_nom'],
|
112 |
jpm |
134 |
'url' => $this->obtenirUrlFicheCollection($resultat['cc_id_collection']));
|
92 |
jpm |
135 |
$donnees['infos'][$structure_id]['collections'][] = $collection;
|
|
|
136 |
}
|
7 |
jpm |
137 |
}
|
110 |
jpm |
138 |
$this->postraiterDonnees($donnees['infos']);
|
7 |
jpm |
139 |
|
|
|
140 |
// Gestion des squelettes
|
8 |
jpm |
141 |
$this->chargerMoteurRecherche();
|
|
|
142 |
$resultat = $this->getVue('resultat', $donnees);
|
|
|
143 |
$this->setSortie(self::RENDU_CORPS, $resultat);
|
|
|
144 |
$this->chargerPiedDePage();
|
7 |
jpm |
145 |
}
|
8 |
jpm |
146 |
|
54 |
jpm |
147 |
private function parserChaineDeRecherche($chaine) {
|
20 |
jpm |
148 |
$mots = preg_split('/ /i', $chaine, -1, PREG_SPLIT_NO_EMPTY);
|
|
|
149 |
$parametres = array('mots' => '');
|
|
|
150 |
$cle_precedente = null;
|
|
|
151 |
foreach ($mots as $mot) {
|
84 |
jpm |
152 |
if (preg_match('/^(sci|veg|bot|zg|p|pr|str-d):(.*)$/', $mot, $match)) {
|
20 |
jpm |
153 |
$cle = $match[1];
|
|
|
154 |
$cle_precedente = $cle;
|
|
|
155 |
$valeur = $match[2];
|
|
|
156 |
$parametres[$cle] = $valeur;
|
|
|
157 |
} else if (!is_null($cle_precedente)) {
|
|
|
158 |
$parametres[$cle_precedente] .= ' '.$mot;
|
|
|
159 |
} else if (is_null($cle_precedente)) {
|
|
|
160 |
if (empty($parametres['mots'])) {
|
|
|
161 |
$parametres['mots'] = $mot;
|
|
|
162 |
} else {
|
|
|
163 |
$parametres['mots'] .= ' '.$mot;
|
|
|
164 |
}
|
|
|
165 |
}
|
|
|
166 |
}
|
|
|
167 |
$this->remplacerAbreviationParId($parametres);
|
21 |
jpm |
168 |
|
20 |
jpm |
169 |
return $parametres;
|
|
|
170 |
}
|
|
|
171 |
|
|
|
172 |
private function remplacerAbreviationParId(&$parametres) {
|
|
|
173 |
// liste 27 : Liste des relations entre une collection et une personne (id:1030)
|
|
|
174 |
// liste 80 : Liste des types de collection botanique (id:1083)
|
84 |
jpm |
175 |
$params_a_remplacer = array('veg' => 1043, 'bot' => 1083, 'pr' => 1030);
|
20 |
jpm |
176 |
foreach ($params_a_remplacer as $param => $id_liste) {
|
|
|
177 |
if (isset($parametres[$param])) {
|
84 |
jpm |
178 |
// Si plusieurs valeurs séparées par des virgules
|
|
|
179 |
$valeurs = explode(',', $parametres[$param]);
|
|
|
180 |
$valeurs_nbre = count($valeurs);
|
|
|
181 |
$liste = Ontologie::getListeTrieeParAbreviation($id_liste);
|
|
|
182 |
foreach ($valeurs as $valeur) {
|
|
|
183 |
$cle = strtoupper($valeur);
|
|
|
184 |
if (isset($liste[$cle])) {
|
|
|
185 |
if ($valeurs_nbre == 1) {
|
|
|
186 |
$parametres[$param] = $liste[$cle]['id'];
|
|
|
187 |
} else if ($valeurs_nbre > 1) {
|
|
|
188 |
$valeur = preg_quote($valeur, '/');
|
|
|
189 |
$parametres[$param] = preg_replace("/$valeur/", $liste[$cle]['id'], $parametres[$param]);
|
|
|
190 |
}
|
|
|
191 |
}
|
20 |
jpm |
192 |
}
|
|
|
193 |
}
|
|
|
194 |
}
|
|
|
195 |
}
|
7 |
jpm |
196 |
}
|