Subversion Repositories Applications.papyrus

Rev

Rev 850 | Rev 1025 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
217 jpm 1
<?php
2
/*vim: set expandtab tabstop=4 shiftwidth=4: */
3
// +------------------------------------------------------------------------------------------------------+
4
// | PHP version 4.1                                                                                      |
5
// +------------------------------------------------------------------------------------------------------+
6
// | Copyright (C) 2004 Tela Botanica (accueil@tela-botanica.org)                                         |
7
// +------------------------------------------------------------------------------------------------------+
8
// | This file is part of Papyrus.                                                                        |
9
// |                                                                                                      |
10
// | Foobar is free software; you can redistribute it and/or modify                                       |
11
// | it under the terms of the GNU General Public License as published by                                 |
12
// | the Free Software Foundation; either version 2 of the License, or                                    |
13
// | (at your option) any later version.                                                                  |
14
// |                                                                                                      |
15
// | Foobar is distributed in the hope that it will be useful,                                            |
16
// | but WITHOUT ANY WARRANTY; without even the implied warranty of                                       |
17
// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the                                        |
18
// | GNU General Public License for more details.                                                         |
19
// |                                                                                                      |
20
// | You should have received a copy of the GNU General Public License                                    |
21
// | along with Foobar; if not, write to the Free Software                                                |
22
// | Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA                            |
23
// +------------------------------------------------------------------------------------------------------+
862 jp_milcent 24
// CVS : $Id: moteur_recherche.php,v 1.12 2006-06-16 09:45:10 jp_milcent Exp $
217 jpm 25
/**
26
* Applette : moteur de recherche
27
*
28
* Génère un formulaire contenant une zone de saisie permettant de taper un texte à rechercher sur l'ensemble
29
* des sites gérés par Papyrus.
339 jpm 30
* Utilisation des bibliothèques inclue par Papyrus :
31
* - Papyrus pap_meta.fonct.php
32
* - PEAR NET_URL
217 jpm 33
*
34
*@package Applette
35
*@subpackage Moteur_recherche
36
//Auteur original :
37
*@author        Jean-Pascal MILCENT <jpm@tela-botanica.org>
38
//Autres auteurs :
39
*@author        Aucun
40
*@copyright     Tela-Botanica 2000-2004
862 jp_milcent 41
*@version       $Revision: 1.12 $ $Date: 2006-06-16 09:45:10 $
217 jpm 42
// +------------------------------------------------------------------------------------------------------+
43
*/
44
 
45
// +------------------------------------------------------------------------------------------------------+
46
// |                                            ENTETE du PROGRAMME                                       |
47
// +------------------------------------------------------------------------------------------------------+
339 jpm 48
$GLOBALS['_GEN_commun']['info_applette_nom_fonction'] = 'afficherMoteurRecherche';
49
$GLOBALS['_GEN_commun']['info_applette_balise'] = 'MOTEUR_RECHERCHE';
217 jpm 50
 
51
// --------------------------------------------------------------------------------------------------------
339 jpm 52
//Utilisation de la bibliothèque Papyrus pap_meta.fonct.php inclue par Papyrus
53
//Utilisation de la bibliothèque PEAR NET_URL inclue par Papyrus
217 jpm 54
/** Inclusion du fichier de configuration de cette application.*/
55
require_once GEN_CHEMIN_APPLETTE.'moteur_recherche/configuration/more_configuration.inc.php';
846 jp_milcent 56
/** Inclusion du fichier de configuration des Spip.*/
57
require_once GEN_CHEMIN_APPLETTE.'moteur_recherche/configuration/more_config_spip.inc.php';
217 jpm 58
/** Inclusion de la bibliothèque PEAR de conception de formulaire.*/
59
require_once MORE_CHEMIN_BIBLIOTHEQUE_PEAR.'HTML/QuickForm.php';
272 jpm 60
/** Inclusion de la bibliothèque PEAR de modification des squelettes des formulaires QuickForm.*/
832 florian 61
require_once PAP_CHEMIN_API_PEAR.'HTML/QuickForm/Renderer/Default.php';
217 jpm 62
 
63
// Inclusion des fichiers de traduction de l'appli ADME dePapyrus
339 jpm 64
if (file_exists(MORE_CHEMIN_LANGUE.'more_langue_'.$GLOBALS['_GEN_commun']['i18n'].'.inc.php')) {
217 jpm 65
    /** Inclusion du fichier de traduction suite à la transaction avec le navigateur.*/
339 jpm 66
    require_once MORE_CHEMIN_LANGUE.'more_langue_'.$GLOBALS['_GEN_commun']['i18n'].'.inc.php';
217 jpm 67
} else {
68
    /** Inclusion du fichier de traduction par défaut.*/
69
    require_once MORE_CHEMIN_LANGUE.'more_langue_'.MORE_I18N_DEFAUT.'.inc.php';
70
}
71
 
72
// +------------------------------------------------------------------------------------------------------+
73
// |                                            CORPS du PROGRAMME                                        |
74
// +------------------------------------------------------------------------------------------------------+
75
 
76
if (isset($_POST['more_motif']) && $_POST['more_motif'] != '') {
77
    // Initialisation de variable extérieures
846 jp_milcent 78
    $GLOBALS['_VEI_']['usurpation'] = MORE_LG_USURPATION.htmlentities(stripslashes($_POST['more_motif']));
217 jpm 79
    $GLOBALS['_PAPYRUS_']['general']['application_chemin'] = null;
80
    // Modification des meta de l'entête de la page
846 jp_milcent 81
    GEN_modifierMetaHttpEquiv('Content-Type', 'text/html; charset=ISO-8859-15');
217 jpm 82
    GEN_modifierMetaHttpEquiv('Content-style-type', 'text/css');
83
    GEN_modifierMetaHttpEquiv('Content-script-type', 'text/javascript');
339 jpm 84
    GEN_modifierMetaHttpEquiv('Content-language', $GLOBALS['_GEN_commun']['i18n']);
217 jpm 85
 
86
    GEN_modifierMetaName('revisit-after', '15 days');
87
    GEN_modifierMetaName('robots', 'index,follow');
88
    GEN_modifierMetaName('author', 'Tela Botanica');
89
    GEN_modifierMetaName('keywords', 'Recherche, résultat.');
90
    GEN_modifierMetaName('description', 'Page de résultats du moteur de recherche de Papyrus.');
91
 
92
    GEN_viderMeta('dc');
93
}
94
 
95
// +------------------------------------------------------------------------------------------------------+
96
// |                                           LISTE de FONCTIONS                                         |
97
// +------------------------------------------------------------------------------------------------------+
98
 
850 florian 99
/** Fonction afficherMoteurRecherche() - Fournit un formulaire de recherche.
217 jpm 100
*
101
* Renvoie un formulaire permettant de rechercher une chaine de caractères dans les sites
102
* gérés par Papyrus.
103
* Necessite l'utilisation de Pear Net_URL par le programme appelant cette fonction.
104
*
105
* @param  array  tableau d'éventuel arguments présent dans la balise transmis à la fonction.
106
* @param  array  tableau global de Papyrus.
107
* @return string  formulaire XHTML de recherche.
108
*/
109
function afficherMoteurRecherche($tab_applette_arguments, $_GEN_commun)
110
{
111
    // --------------------------------------------------------------------------------------------------------
112
    // Initialisation de variable de configuration.
113
    $liste_type_site = '102, 103';// Les id des types des sites pouvant apparaître dans le sélecteur
339 jpm 114
    $objet_pear_db =& $_GEN_commun['pear_db'];//objet Pear créé par DB contenant la connexion à la base de données.
115
    $GLOBALS['_MOTEUR_RECHERCHE_']['bd']['papyrus'] =& $_GEN_commun['pear_db'];// Connexion à la BD de Papyrus
116
    $code_site = $_GEN_commun['url_site'];// identifiant du site courant.
217 jpm 117
    $url = $_GEN_commun['url'];
118
    $url_base = PAP_URL;
119
    $url_id_type_site = GEN_URL_ID_TYPE_SITE;
120
    $indent_origine = 12;// Indentation de départ en nombre d'espace
121
    $indent_pas     = 4;// Pas d'indentation en nombre d'espace
122
    $retour = '';
123
    $retour_resultats = '';
846 jp_milcent 124
    // Titre de la page
850 florian 125
    if (isset($_POST['more_motif'])) {
126
    	$GLOBALS['_PAPYRUS_']['rendu']['TITRE_PAGE'] = MORE_LG_TITRE.htmlentities(stripslashes($_POST['more_motif']));
127
    }
217 jpm 128
 
129
    // --------------------------------------------------------------------------------------------------------
130
    // Lancement de la recherche si nécessaire
131
 
132
    $_SESSION['_MOTEUR_RECHERCHE_']['rechercher']['more_motif'] = '';
133
    if (!isset($_POST['more_motif']) || $_POST['more_motif'] == '') {
134
        $_SESSION['_MOTEUR_RECHERCHE_']['rechercher']['more_motif'] = MORE_LG_FORM_MOTIF_VALUE;
135
    } else {
136
        $_SESSION['_MOTEUR_RECHERCHE_']['rechercher']['more_motif'] = $_POST['more_motif'];
137
        /** Inclusion de la classe Recherche.*/
138
        require_once MORE_CHEMIN_BIBLIO.'more_recherche.class.php';
846 jp_milcent 139
        /** Inclusion de la classe Recherche_Papyrus_Menu.*/
217 jpm 140
        require_once MORE_CHEMIN_BIBLIO.'more_recherche_papyrus_menu.class.php';
846 jp_milcent 141
        /** Inclusion de la classe Recherche_Spip_Article.*/
142
        require_once MORE_CHEMIN_BIBLIO.'more_recherche_spip_article.class.php';
217 jpm 143
        $moteur = new Recherche($_SESSION['_MOTEUR_RECHERCHE_']['rechercher']['more_motif']);
144
        $recherche_papyrus_menu = new Recherche_Papyrus_Menu($_SESSION['_MOTEUR_RECHERCHE_']['rechercher']['more_motif']);
846 jp_milcent 145
        $recherche_spip_article = new Recherche_Spip_Article($_SESSION['_MOTEUR_RECHERCHE_']['rechercher']['more_motif']);
217 jpm 146
        $moteur->ajouterRecherche($recherche_papyrus_menu);
846 jp_milcent 147
        $moteur->ajouterRecherche($recherche_spip_article);
217 jpm 148
        $aso_resultats = $moteur->rechercherMotif();
149
        //$GLOBALS['_DEBOGAGE_'] = '<pre>'.print_r($aso_resultats, true).'</pre>';
846 jp_milcent 150
        $nbre_pages = count($aso_resultats);
151
        if ($nbre_pages <= 1) {
152
        	$retour_resultats .= '<h1>'.sprintf(MORE_LG_RESULTAT_TITRE, $nbre_pages).'</h1>'."\n";
153
        } else {
154
        	$retour_resultats .= '<h1>'.sprintf(MORE_LG_RESULTAT_TITRE_PLURIEL, $nbre_pages).'</h1>'."\n";
155
        }
156
        if ($nbre_pages == 0) {
373 jpm 157
            $retour_resultats .= '<p class="information">'.MORE_LG_RESULTAT_VIDE.'</p>'."\n";
158
        } else {
159
            $retour_resultats .= '<ul id="more_resultat">'."\n";
160
            foreach ($aso_resultats as $val) {
161
                if (!empty($val['url'])) {
162
                    $retour_resultats .= '<li>'."\n";
163
                    $retour_resultats .=    '<h2><a href="'.$val['url'].'" ';
164
                    if ($val['hreflang'] != '') {
165
                        $retour_resultats .= 'hreflang="'.$val['hreflang'].'" ';
166
                    }
167
                    if ($val['accesskey'] != '') {
168
                        $retour_resultats .= 'accesskey="'.$val['accesskey'].'" ';
169
                    }
170
                    if ($val['title'] != '') {
171
                        $retour_resultats .= 'title="'.$val['title'].'" ';
172
                    }
173
                    $retour_resultats .= '>'.$val['titre'].'</a></h2>';
174
                    $retour_resultats .= '<dl>'."\n";
175
                    //if (trim($val['poids']) != '') {
176
                    //    $retour_resultats .= '<dt>'.MORE_LG_RESULTAT_POIDS.'</dt>'."\n";
177
                    //    $retour_resultats .= '<dd>'.$val['poids'].'</dd>'."\n";
178
                    //}
179
                    if (trim($val['score']) != '') {
180
                        $retour_resultats .= '<dt>'.MORE_LG_RESULTAT_SCORE.'</dt>'."\n";
181
                        $retour_resultats .= '<dd>'.$val['score'].MORE_LG_RESULTAT_POURCENT.'</dd>'."\n";
182
                    }
183
                    if (trim($val['date_creation']) != '') {
184
                        $retour_resultats .= '<dt>'.MORE_LG_RESULTAT_DATE_CREATION.'</dt>'."\n";
185
                        $retour_resultats .= '<dd>'.$val['date_creation'].'</dd>'."\n";
186
                    }
187
                    if (trim($val['description']) != '') {
188
                        $retour_resultats .= '<dt>'.MORE_LG_RESULTAT_DESCRIPTION.'</dt>'."\n";
189
                        $retour_resultats .= '<dd>'.$val['description'].'</dd>'."\n";
190
                    }
191
                    $retour_resultats .= '</dl>'."\n";
192
                    $retour_resultats .= '</li>'."\n";
339 jpm 193
                }
217 jpm 194
            }
373 jpm 195
            $retour_resultats .= '</ul>'."\n";
217 jpm 196
        }
197
        $GLOBALS['_PAPYRUS_']['rendu']['CONTENU_NAVIGATION'] = '';
198
        $GLOBALS['_PAPYRUS_']['rendu']['CONTENU_TETE'] = '';
199
        $GLOBALS['_PAPYRUS_']['rendu']['CONTENU_CORPS'] = $retour_resultats;
200
        $GLOBALS['_PAPYRUS_']['rendu']['CONTENU_PIED'] = '';
201
        $GLOBALS['_GEN_commun']['info_menu'] = '';
202
    }
203
 
204
    // --------------------------------------------------------------------------------------------------------
205
    // Création du formulaire de l'applette
206
 
207
    // Notes : Quickform semble remplacer les & des &amp; à nouveau par des &amp; solution utiliser str_replace()...
272 jpm 208
    $more_form = new HTML_QuickForm('form_more_recherche', 'post', str_replace('&amp;', '&', $url->getUrl()));
217 jpm 209
    $tab_index = MORE_FORM_MOTIF_TAB;
272 jpm 210
    $more_squelette =& $more_form->defaultRenderer();
211
    $more_squelette->setFormTemplate("\n".'<form{attributes}>'."\n".'{content}'."\n".'</form>');
212
    $more_squelette->setElementTemplate( '{label}'."\n".
217 jpm 213
                                    '{element}'."\n".
214
                                    '<!-- BEGIN required --><span class="symbole_obligatoire">'.MORE_LG_FORM_SYMBOLE_OBLIGATOIRE.'</span><!-- END required -->'."\n".
215
                                    '<!-- BEGIN error --><span class="erreur">{error}</span><!-- END error -->'."\n");
272 jpm 216
    $more_form->accept($more_squelette);
217
    $more_form->removeAttribute('name');
217 jpm 218
 
219
    $partie_menu_debut = '<fieldset>'."\n".'<legend>'.MORE_LG_FORM_TITRE.'</legend>'."\n";
272 jpm 220
    $more_form->addElement('html', $partie_menu_debut);
217 jpm 221
 
222
    $id = 'more_motif';
467 ddelon 223
    $aso_attributs = array( 'id'=>$id, 'tabindex' => $tab_index++, 'maxlength' => MORE_FORM_MOTIF_MAXLENGTH,
846 jp_milcent 224
                            'accesskey' => MORE_LG_FORM_ACCESSKEY);
217 jpm 225
    $label = '<label for="'.$id.'">'.MORE_LG_FORM_MOTIF.'</label>';
272 jpm 226
    $more_form->addElement('text', $id, $label, $aso_attributs);
217 jpm 227
 
228
    $id = 'more_ok';
229
    $aso_attributs = array('id'=> $id, 'tabindex' => $tab_index++);
272 jpm 230
    $more_form->addElement('submit', $id, MORE_LG_FORM_VALIDER, $aso_attributs);
217 jpm 231
 
232
    $partie_entete_fin = "\n".'</fieldset>';
272 jpm 233
    $more_form->addElement('html', $partie_entete_fin);
217 jpm 234
 
235
    // Instanciation avec les valeur par défaut
272 jpm 236
    $more_form->setDefaults($_SESSION['_MOTEUR_RECHERCHE_']['rechercher']);
217 jpm 237
 
238
    // Transformation en XHTML du formulaire
272 jpm 239
    $retour .= $more_form->toHTML()."\n";
217 jpm 240
    // --------------------------------------------------------------------------------------------------------
241
 
242
    return $retour;
243
}
244
 
245
// +------------------------------------------------------------------------------------------------------+
246
// |                                            PIED du PROGRAMME                                         |
247
// +------------------------------------------------------------------------------------------------------+
248
 
249
 
250
/* +--Fin du code ----------------------------------------------------------------------------------------+
251
*
252
* $Log: not supported by cvs2svn $
862 jp_milcent 253
* Revision 1.11  2006/05/23 13:39:13  florian
254
* corection bug notice de jean pascal ;-)
255
*
850 florian 256
* Revision 1.10  2006/05/19 10:04:55  jp_milcent
257
* Ajout d'un moteur de recherche analysant les articles des sites sous Spip.
258
*
846 jp_milcent 259
* Revision 1.9  2006/04/28 12:41:49  florian
260
* corrections erreurs chemin
261
*
832 florian 262
* Revision 1.8  2006/03/02 10:49:49  ddelon
263
* Fusion branche multilinguisme dans branche principale
264
*
754 ddelon 265
* Revision 1.7.2.2  2005/12/27 15:56:00  ddelon
266
* Fusion Head vers multilinguisme (wikini double clic)
267
*
268
* Revision 1.7.2.1  2005/12/20 14:40:25  ddelon
269
* Fusion Head vers Livraison
270
*
271
* Revision 1.7  2005/09/27 09:07:32  ddelon
272
* size applette et squelettes
273
*
467 ddelon 274
* Revision 1.6  2005/05/25 13:49:22  jpm
275
* Corection erreur pour la recherche dans le contenu.
276
*
373 jpm 277
* Revision 1.5  2005/05/19 12:46:12  jpm
278
* Correction bogue accesskey.
279
* Ajout d'un id à la liste.
280
* Arrondissement des score.
281
*
368 jpm 282
* Revision 1.4  2005/04/14 17:39:34  jpm
283
* Amélioration du moteur de rechercher :
284
*  - pourcentage
285
*  - ajout d'info
286
*
339 jpm 287
* Revision 1.3  2005/02/22 19:27:21  jpm
288
* Changement de nom de variables.
289
* Suppression de l'attribut nam de la balise form via une méthode de HTML_Common.
290
*
272 jpm 291
* Revision 1.2  2005/02/22 17:44:03  jpm
292
* Suppression de référence posant problème.
293
*
268 jpm 294
* Revision 1.1  2004/12/07 10:24:01  jpm
295
* Moteur de recherche version de départ.
217 jpm 296
*
268 jpm 297
*
217 jpm 298
* +-- Fin du code ----------------------------------------------------------------------------------------+
299
*/
300
?>