Subversion Repositories Applications.papyrus

Rev

Rev 1688 | 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
// +------------------------------------------------------------------------------------------------------+
1935 aperonnet 24
// CVS : $Id: more_recherche.class.php,v 1.12.2.1 2008-10-22 07:45:46 aperonnet Exp $
217 jpm 25
/**
26
* Classe permettant d'effectuer des recherches sur les métas informations des menus.
27
*
28
* Permet de rechercher et classer les menus en fonction d'une chaine.
29
*
30
*@package Applette
31
*@subpackage Moteur_Recherche
32
//Auteur original :
33
*@author        Jean-Pascal MILCENT <jpm@tela-botanica.org>
34
//Autres auteurs :
35
*@author        aucun
36
*@copyright     Tela-Botanica 2000-2004
1935 aperonnet 37
*@version       $Revision: 1.12.2.1 $ $Date: 2008-10-22 07:45:46 $
217 jpm 38
// +------------------------------------------------------------------------------------------------------+
39
*/
40
 
41
// +------------------------------------------------------------------------------------------------------+
42
// |                                            ENTETE du PROGRAMME                                       |
43
// +------------------------------------------------------------------------------------------------------+
44
 
45
 
46
// +------------------------------------------------------------------------------------------------------+
47
// |                                            CORPS du PROGRAMME                                        |
48
// +------------------------------------------------------------------------------------------------------+
49
 
1678 jp_milcent 50
class More_Recherche {
217 jpm 51
    var $motif = '';
52
    var $moteurs_recherches = array();
53
    var $resultats = array();
54
 
55
    // Constructeur
1678 jp_milcent 56
    function More_Recherche($motif) {
217 jpm 57
        $this->setMotif($motif);
58
    }
59
 
60
    // Accesseurs
61
    function getMotif() {
62
        return $this->motif;
63
    }
64
    function setMotif($motif) {
65
        $this->motif = $motif;
66
    }
67
    function getMoteurs() {
68
        return $this->moteurs_recherches;
69
    }
70
    function getMoteur($id) {
71
        return $this->moteurs_recherches[$id];
72
    }
73
    function setMoteur($val) {
74
        $id_nouveau = count($this->moteurs_recherches);
75
        $this->moteurs_recherches[$id_nouveau] = $val;
76
    }
77
    function getResultats() {
78
        return $this->resultats;
79
    }
80
    function setResultats($val) {
81
        $this->resultats = $val;
82
    }
83
    function setResultat($aso_page) {
84
        $id_nouveau = count($this->resultats);
85
        $this->resultats[$id_nouveau] = $aso_page;
86
    }
87
 
88
    // Méthodes
89
 
90
    function ajouterRecherche(&$objet_recherche) {
91
        return $this->setMoteur($objet_recherche);
92
    }
846 jp_milcent 93
 
217 jpm 94
    function rechercherMotif() {
95
        foreach ($this->getMoteurs() as $cle => $val) {
846 jp_milcent 96
            $this->setResultats(array_merge((array)$this->getResultats(),(array)$val->rechercherMotif($this->getMotif())));
217 jpm 97
        }
98
        $aso_resultats = $this->getResultats();
1935 aperonnet 99
        if(!function_exists('comparer'))
100
        {
101
	        function comparer($a, $b) {
102
	            if ($a['poids'] > $b['poids']) {
103
	                return -1;
104
	            }
105
	            if ($a['poids'] < $b['poids']) {
106
	                return +1;
107
	            }
108
	            if ($a['poids'] = $b['poids']) {
109
	                return 0;
110
	            }
111
	        }
217 jpm 112
        }
113
        usort($aso_resultats, 'comparer');
373 jpm 114
        $pds_max = 0;
115
        if (isset($aso_resultats[0]['poids'])) {
116
            $pds_max = $aso_resultats[0]['poids'];
117
        }
339 jpm 118
        for ($i = 0 ; $i < count($aso_resultats) ; $i++) {
368 jpm 119
            $aso_resultats[$i]['score'] = round((100 / $pds_max) * $aso_resultats[$i]['poids'], 1);
339 jpm 120
        }
121
 
217 jpm 122
        return $aso_resultats;
123
    }
339 jpm 124
 
846 jp_milcent 125
    /** Renvoie le nombre d'occurences total de la présence de chaque mot.
126
	*
127
	* @param  string	le motif à rechercher.
128
	* @param  string	le texte dans lequel effectuer la recherche.
129
	* @return integer	le nombre de fois où les mots sont trouvés.
130
	*/
851 jp_milcent 131
	function retournerOccurenceMotif($motif, &$texte, $mode = MORE_MODE)
846 jp_milcent 132
	{
133
		$nbre_correspondance = 0;
1146 jp_milcent 134
		$nbre_correspondance_total = 0;
1183 jp_milcent 135
		$motif = $this->traiterMotif($motif, 'simple');
136
		// Si demande de recherche d'expression complète
137
		if (preg_match('/^".+"$/', $motif)) {
138
			$mode = 2;
139
 
851 jp_milcent 140
		}
1183 jp_milcent 141
		$motif = $this->traiterMotif($motif, 'recherche');
142
		switch ($mode) {
143
			case '1' :
144
				// Découpage en mot
145
				$tab_motif = explode(' ', $motif);
146
				break;
147
			case '2' :
148
				// La chaine saisie par l'utilisateur est recherchée tel quel
149
				$tab_motif[] = $motif;
150
				break;
151
			default:
152
				$e = 'Mode pour le moteur de recherche inconnu : '.$mode.
153
				trigger_error($e, E_USER_ERROR);
154
		}
846 jp_milcent 155
		// Nous recherchons chaque mot
1034 jp_milcent 156
		$compteur_mot = 0;
846 jp_milcent 157
		foreach ($tab_motif as $mot) {
158
			//$nbre_correspondance += preg_match_all('/'.$mot.'/i', $texte, $tab_morceaux);
1183 jp_milcent 159
			$nbre_correspondance = substr_count(strtolower($texte), strtolower($mot));
1034 jp_milcent 160
			if ($nbre_correspondance > 0) {
161
				$compteur_mot++;
162
			}
163
			$nbre_correspondance_total += $nbre_correspondance;
846 jp_milcent 164
		}
1034 jp_milcent 165
		// Si tous les mots recherchés sont présents nous renvoyons le poids de la page.
166
		if ($compteur_mot == count($tab_motif)) {
167
			return $nbre_correspondance_total;
168
		} else {
169
			return 0;
170
		}
846 jp_milcent 171
	}
172
 
1183 jp_milcent 173
	function traiterMotif($motif, $type = 0)
174
    {
175
    	switch ($type) {
176
			case 'simple' :
177
				return trim(stripslashes($motif));
178
				break;
179
			case 'recherche' :
180
				if (preg_match('/^"(.+)"$/', $motif, $match)) {
181
					$motif = $match[1];
182
				}
183
				return $motif;
184
				break;
185
			case 'url' :
186
				$motif = trim(stripslashes($motif));
187
				if (preg_match('/^"(.+)"$/', $motif, $match)) {
188
					$motif = $match[1];
189
				}
190
				return urlencode($motif);
191
				break;
192
			default:
193
				return $motif;
194
		}
195
    }
196
 
339 jpm 197
    function traduireMois($mois_numerique)
198
    {
199
        switch ($mois_numerique) {
200
            case '01' :
832 florian 201
                return 'janvier';
339 jpm 202
            case '02' :
832 florian 203
                return 'février';
339 jpm 204
            case '03' :
205
                return 'mars';
206
            case '04' :
207
                return 'avril';
208
            case '05' :
209
                return 'mai';
210
            case '06' :
211
                return 'juin';
212
            case '07' :
213
                return 'juillet';
214
            case '08' :
215
                return 'août';
216
            case '09' :
217
                return 'septembre';
218
            case '10' :
219
                return 'octobre';
220
            case '11' :
221
                return 'novembre';
222
            case '12' :
223
                return 'décembre';
224
            default:
225
                return '';
226
        }
227
    }
217 jpm 228
}
229
 
230
/* +--Fin du code ----------------------------------------------------------------------------------------+
231
*
232
* $Log: not supported by cvs2svn $
1935 aperonnet 233
* Revision 1.12  2007-10-29 18:29:30  jp_milcent
234
* Ajout d'un préfixe devant les classes de l'applette pour éviter les conflits avec d'autres classes provenant des applis clientes.
235
*
1678 jp_milcent 236
* Revision 1.11  2007-01-02 18:49:22  jp_milcent
237
* Amélioration de la gestion du motif.
238
* Ajout de la gestion des expressions complête via l'utilisation de guillemets.
239
*
1183 jp_milcent 240
* Revision 1.10  2006/12/12 13:54:41  jp_milcent
241
* Correction bogue : variable non initialisée.
242
*
1146 jp_milcent 243
* Revision 1.9  2006/10/17 09:21:40  jp_milcent
244
* Mise en commun des spécifications de la recherche.
245
*
1034 jp_milcent 246
* Revision 1.8  2006/05/23 14:18:19  jp_milcent
247
* Ajout de la gestion du mode de recherche au moteur de recherche de Papyrus.
248
* Soit on recherche chaque mot du motif, soit le motif entier.
249
*
851 jp_milcent 250
* Revision 1.7  2006/05/19 10:04:55  jp_milcent
251
* Ajout d'un moteur de recherche analysant les articles des sites sous Spip.
252
*
846 jp_milcent 253
* Revision 1.6  2006/04/28 12:41:49  florian
254
* corrections erreurs chemin
255
*
832 florian 256
* Revision 1.5  2005/09/20 17:01:22  ddelon
257
* php5 et bugs divers
258
*
443 ddelon 259
* Revision 1.4  2005/05/25 13:49:22  jpm
260
* Corection erreur pour la recherche dans le contenu.
261
*
373 jpm 262
* Revision 1.3  2005/05/19 12:46:12  jpm
263
* Correction bogue accesskey.
264
* Ajout d'un id à la liste.
265
* Arrondissement des score.
266
*
368 jpm 267
* Revision 1.2  2005/04/14 17:39:34  jpm
268
* Amélioration du moteur de rechercher :
269
*  - pourcentage
270
*  - ajout d'info
271
*
339 jpm 272
* Revision 1.1  2004/12/07 10:24:06  jpm
273
* Moteur de recherche version de départ.
274
*
217 jpm 275
*
276
* +-- Fin du code ----------------------------------------------------------------------------------------+
277
*/
278
?>