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
|
10 |
jpm |
12 |
* @version SVN: $$Id: Recherche.php 15 2010-03-19 17:55:16Z jpm $$
|
7 |
jpm |
13 |
*/
|
9 |
jpm |
14 |
class Recherche extends ColControleur {
|
7 |
jpm |
15 |
|
8 |
jpm |
16 |
//+----------------------------------------------------------------------------------------------------------------+
|
9 |
jpm |
17 |
// Méthodes
|
7 |
jpm |
18 |
/**
|
|
|
19 |
* Fonction d'affichage par défaut, elle appelle la liste des administrateurs
|
|
|
20 |
*/
|
|
|
21 |
public function executerActionParDefaut() {
|
8 |
jpm |
22 |
return $this->rechercher();
|
7 |
jpm |
23 |
}
|
|
|
24 |
|
|
|
25 |
/**
|
|
|
26 |
* Charge le moteur de recherche et l'envoie à la vue.
|
|
|
27 |
*/
|
|
|
28 |
public function chargerMoteurRecherche() {
|
|
|
29 |
$donnees = array();
|
|
|
30 |
|
8 |
jpm |
31 |
// Gestion des données de la requête
|
15 |
jpm |
32 |
$chaine = $this->obtenirChaineRecherche();
|
|
|
33 |
$this->memoriserChaineRecherche($chaine);
|
|
|
34 |
$donnees['recherche'] = $chaine;
|
8 |
jpm |
35 |
|
7 |
jpm |
36 |
// Gestion de l'url
|
|
|
37 |
$this->url->setVariableRequete('module', 'Recherche');
|
|
|
38 |
$this->url->setVariableRequete('action', 'rechercher');
|
|
|
39 |
$donnees['url_form'] = $this->url->getUrl();
|
|
|
40 |
$donnees['url_module'] = 'Recherche';
|
|
|
41 |
$donnees['url_action'] = 'rechercher';
|
|
|
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 = '';
|
|
|
49 |
if (isset($_GET['recherche'])) {
|
|
|
50 |
$chaine = $_GET['recherche'];
|
|
|
51 |
} else if (isset($_SESSION['col']['recherche'])) {
|
|
|
52 |
$chaine = $_SESSION['col']['recherche'];
|
|
|
53 |
}
|
|
|
54 |
return $chaine;
|
|
|
55 |
}
|
|
|
56 |
|
|
|
57 |
private function memoriserChaineRecherche($chaine) {
|
|
|
58 |
$_SESSION['col']['recherche'] = $chaine;
|
|
|
59 |
}
|
|
|
60 |
|
7 |
jpm |
61 |
/**
|
|
|
62 |
* Recherche des collections.
|
|
|
63 |
* @return string la vue correspondante
|
|
|
64 |
*/
|
|
|
65 |
public function rechercher() {
|
|
|
66 |
$donnees = array();
|
|
|
67 |
$rechercheDao = $this->getModele('RechercheDao');
|
|
|
68 |
$parametres = array('mots' => '');
|
|
|
69 |
|
|
|
70 |
// Récupération des paramêtres de l'url
|
|
|
71 |
if (isset($_GET['recherche'])) {
|
|
|
72 |
$parametres['mots'] = $_GET['recherche'];
|
|
|
73 |
}
|
|
|
74 |
|
|
|
75 |
// Gestion du nombre de résultats
|
|
|
76 |
$donnees_total = $rechercheDao->chercherStructureNbre($parametres);
|
|
|
77 |
|
|
|
78 |
// Gestion du fragmenteur
|
|
|
79 |
$options = array(
|
|
|
80 |
'url' => $this->url,
|
|
|
81 |
'donnees_total' => $donnees_total);
|
|
|
82 |
$fragmenteur = Composant::fabrique('fragmenteur', $options);
|
|
|
83 |
$donnees['fragmenteur'] = $fragmenteur->executer();
|
|
|
84 |
list($de, $a) = $fragmenteur->getDeplacementParPageId();
|
|
|
85 |
|
|
|
86 |
// Gestion de l'accès aux données
|
|
|
87 |
$rechercheDao->setLimitation(($de - 1), $fragmenteur->getDonneesParPage());
|
|
|
88 |
$resultats = $rechercheDao->chercher($parametres);
|
|
|
89 |
|
|
|
90 |
// Post-traitement des résultats pour l'affichage
|
9 |
jpm |
91 |
$this->url->setVariableRequete('module', 'Fiche');
|
7 |
jpm |
92 |
foreach ($resultats as $resultat) {
|
|
|
93 |
$structure_id = $resultat['cs_id_structure'];
|
|
|
94 |
if (!isset($donnees['infos'][$structure_id])) {
|
9 |
jpm |
95 |
$this->url->setVariableRequete('action', 'afficherStructure');
|
|
|
96 |
$this->url->setVariableRequete('id', $resultat['cs_id_structure']);
|
7 |
jpm |
97 |
$structure = array(
|
|
|
98 |
'nom' => $resultat['cs_nom'],
|
9 |
jpm |
99 |
'ville' => $resultat['cs_ville'],
|
|
|
100 |
'url' => $this->url->getURL());
|
|
|
101 |
$this->url->unsetVariableRequete('action');
|
|
|
102 |
$this->url->unsetVariableRequete('id');
|
7 |
jpm |
103 |
$donnees['infos'][$structure_id]['structure'] = $structure;
|
|
|
104 |
}
|
9 |
jpm |
105 |
$this->url->setVariableRequete('action', 'afficherCollection');
|
|
|
106 |
$this->url->setVariableRequete('id', $resultat['cc_id_collection']);
|
|
|
107 |
$collection = array('nom' => $resultat['cc_nom'],
|
|
|
108 |
'url' => $this->url->getURL());
|
|
|
109 |
$this->url->unsetVariableRequete('action');
|
|
|
110 |
$this->url->unsetVariableRequete('id');
|
7 |
jpm |
111 |
$donnees['infos'][$structure_id]['collections'][] = $collection;
|
|
|
112 |
}
|
9 |
jpm |
113 |
$this->url->unsetVariableRequete('module');
|
7 |
jpm |
114 |
|
|
|
115 |
// Gestion des squelettes
|
8 |
jpm |
116 |
$this->chargerMoteurRecherche();
|
|
|
117 |
$resultat = $this->getVue('resultat', $donnees);
|
|
|
118 |
$this->setSortie(self::RENDU_CORPS, $resultat);
|
|
|
119 |
$this->chargerPiedDePage();
|
7 |
jpm |
120 |
}
|
8 |
jpm |
121 |
|
|
|
122 |
/**
|
|
|
123 |
* Recherche des collections.
|
|
|
124 |
* @return string la vue correspondante
|
|
|
125 |
*/
|
|
|
126 |
public function chargerPiedDePage() {
|
|
|
127 |
$this->setSortie(self::RENDU_PIED, $this->getVue('pied'));
|
|
|
128 |
}
|
7 |
jpm |
129 |
}
|