xref: /dokuwiki/inc/fulltext.php (revision 91bb5faaff4ff41771606c58f608afd76263b8c7)
1f5eb7cf0SAndreas Gohr<?php
2f5eb7cf0SAndreas Gohr/**
3f5eb7cf0SAndreas Gohr * DokuWiki fulltextsearch functions using the index
4f5eb7cf0SAndreas Gohr *
5f5eb7cf0SAndreas Gohr * @license    GPL 2 (http://www.gnu.org/licenses/gpl.html)
6f5eb7cf0SAndreas Gohr * @author     Andreas Gohr <andi@splitbrain.org>
7f5eb7cf0SAndreas Gohr */
8f5eb7cf0SAndreas Gohr
9f5eb7cf0SAndreas Gohr  if(!defined('DOKU_INC')) define('DOKU_INC',realpath(dirname(__FILE__).'/../').'/');
10f5eb7cf0SAndreas Gohr  require_once(DOKU_INC.'inc/indexer.php');
11f5eb7cf0SAndreas Gohr
12f5eb7cf0SAndreas Gohr
13f5eb7cf0SAndreas Gohr/**
14f5eb7cf0SAndreas Gohr * The fulltext search
15f5eb7cf0SAndreas Gohr *
16f5eb7cf0SAndreas Gohr * Returns a list of matching documents for the given query
17506fa893SAndreas Gohr *
18f5eb7cf0SAndreas Gohr */
19506fa893SAndreas Gohrfunction ft_pageSearch($query,&$poswords){
20f5eb7cf0SAndreas Gohr    $q = ft_queryParser($query);
21506fa893SAndreas Gohr    // use this for higlighting later:
22506fa893SAndreas Gohr    $poswords = join(' ',$q['and']);
23506fa893SAndreas Gohr
24f5eb7cf0SAndreas Gohr    // lookup all words found in the query
25f5eb7cf0SAndreas Gohr    $words  = array_merge($q['and'],$q['not']);
26f5eb7cf0SAndreas Gohr    if(!count($words)) return array();
27f5eb7cf0SAndreas Gohr    $result = idx_lookup($words);
28f5eb7cf0SAndreas Gohr
29f5eb7cf0SAndreas Gohr    // merge search results with query
30f5eb7cf0SAndreas Gohr    foreach($q['and'] as $pos => $w){
31f5eb7cf0SAndreas Gohr        $q['and'][$pos] = $result[$w];
32f5eb7cf0SAndreas Gohr    }
33f5eb7cf0SAndreas Gohr    // create a list of unwanted docs
34f5eb7cf0SAndreas Gohr    $not = array();
35f5eb7cf0SAndreas Gohr    foreach($q['not'] as $pos => $w){
36f5eb7cf0SAndreas Gohr        $not = array_merge($not,array_keys($result[$w]));
37f5eb7cf0SAndreas Gohr    }
38f5eb7cf0SAndreas Gohr
39506fa893SAndreas Gohr    // combine and-words
40f5eb7cf0SAndreas Gohr    if(count($q['and']) > 1){
41f5eb7cf0SAndreas Gohr        $docs = ft_resultCombine($q['and']);
42f5eb7cf0SAndreas Gohr    }else{
43f5eb7cf0SAndreas Gohr        $docs = $q['and'][0];
44f5eb7cf0SAndreas Gohr    }
45f5eb7cf0SAndreas Gohr    if(!count($docs)) return array();
46f5eb7cf0SAndreas Gohr
47f5eb7cf0SAndreas Gohr    // remove negative matches
48f5eb7cf0SAndreas Gohr    foreach($not as $n){
49f5eb7cf0SAndreas Gohr        unset($docs[$n]);
50f5eb7cf0SAndreas Gohr    }
51f5eb7cf0SAndreas Gohr
52f5eb7cf0SAndreas Gohr    if(!count($docs)) return array();
53f5eb7cf0SAndreas Gohr    // handle phrases
54f5eb7cf0SAndreas Gohr    if(count($q['phrases'])){
55f5eb7cf0SAndreas Gohr        //build a regexp
56f5eb7cf0SAndreas Gohr        $q['phrases'] = array_map('utf8_strtolower',$q['phrases']);
57f5eb7cf0SAndreas Gohr        $q['phrases'] = array_map('preg_quote',$q['phrases']);
58f5eb7cf0SAndreas Gohr        $regex = '('.join('|',$q['phrases']).')';
59f5eb7cf0SAndreas Gohr        // check the source of all documents for the exact phrases
60f5eb7cf0SAndreas Gohr        foreach(array_keys($docs) as $id){
61f5eb7cf0SAndreas Gohr            $text  = utf8_strtolower(rawWiki($id));
62506fa893SAndreas Gohr            if(!preg_match('/'.$regex.'/usi',$text)){
63f5eb7cf0SAndreas Gohr                unset($docs[$id]); // no hit - remove
64f5eb7cf0SAndreas Gohr            }
65f5eb7cf0SAndreas Gohr        }
66f5eb7cf0SAndreas Gohr    }
67f5eb7cf0SAndreas Gohr
68f5eb7cf0SAndreas Gohr    if(!count($docs)) return array();
69f5eb7cf0SAndreas Gohr
7063773904SAndreas Gohr    // check ACL permissions
7163773904SAndreas Gohr    foreach(array_keys($docs) as $doc){
7263773904SAndreas Gohr        if(auth_quickaclcheck($doc) < AUTH_READ){
7363773904SAndreas Gohr            unset($docs[$doc]);
7463773904SAndreas Gohr        }
7563773904SAndreas Gohr    }
7663773904SAndreas Gohr
7763773904SAndreas Gohr    if(!count($docs)) return array();
7863773904SAndreas Gohr
79f5eb7cf0SAndreas Gohr    // if there are any hits left, sort them by count
80f5eb7cf0SAndreas Gohr    arsort($docs);
81f5eb7cf0SAndreas Gohr
82f5eb7cf0SAndreas Gohr    return $docs;
83f5eb7cf0SAndreas Gohr}
84f5eb7cf0SAndreas Gohr
85f5eb7cf0SAndreas Gohr/**
8654f4c056SAndreas Gohr * Returns the backlinks for a given page
8754f4c056SAndreas Gohr *
8854f4c056SAndreas Gohr * Does a quick lookup with the fulltext index, then
8954f4c056SAndreas Gohr * evaluates the instructions of the found pages
9054f4c056SAndreas Gohr */
9154f4c056SAndreas Gohrfunction ft_backlinks($id){
9254f4c056SAndreas Gohr    global $conf;
9354f4c056SAndreas Gohr    $result = array();
9454f4c056SAndreas Gohr
9554f4c056SAndreas Gohr    // quick lookup of the pagename
9654f4c056SAndreas Gohr    $page    = noNS($id);
973cbaa9a4SAndreas Gohr    $sw      = array(); // we don't use stopwords here
983cbaa9a4SAndreas Gohr    $matches = idx_lookup(idx_tokenizer($page,$sw));  //pagename may contain specials (_ or .)
993cbaa9a4SAndreas Gohr    $docs = ft_resultCombine(array_values($matches));
1003cbaa9a4SAndreas Gohr    if(!count($docs)) return $result;
10154f4c056SAndreas Gohr    require_once(DOKU_INC.'inc/parserutils.php');
10254f4c056SAndreas Gohr
10354f4c056SAndreas Gohr    // check instructions for matching links
1043cbaa9a4SAndreas Gohr    foreach(array_keys($docs) as $match){
10554f4c056SAndreas Gohr        $instructions = p_cached_instructions(wikiFN($match),true);
10654f4c056SAndreas Gohr        if(is_null($instructions)) continue;
10754f4c056SAndreas Gohr
10854f4c056SAndreas Gohr        $match_ns =  getNS($match);
10954f4c056SAndreas Gohr
11054f4c056SAndreas Gohr        foreach($instructions as $ins){
11154f4c056SAndreas Gohr            if($ins[0] == 'internallink' || ($conf['camelcase'] && $ins[0] == 'camelcaselink') ){
11254f4c056SAndreas Gohr                $link = $ins[1][0];
11354f4c056SAndreas Gohr                resolve_pageid($match_ns,$link,$exists); //exists is not used
11454f4c056SAndreas Gohr                if($link == $id){
11554f4c056SAndreas Gohr                    //we have a match - finish
11654f4c056SAndreas Gohr                    $result[] = $match;
11754f4c056SAndreas Gohr                    break;
11854f4c056SAndreas Gohr                }
11954f4c056SAndreas Gohr            }
12054f4c056SAndreas Gohr        }
12154f4c056SAndreas Gohr    }
12254f4c056SAndreas Gohr
12363773904SAndreas Gohr    if(!count($result)) return $result;
12463773904SAndreas Gohr
12563773904SAndreas Gohr    // check ACL permissions
12663773904SAndreas Gohr    foreach(array_keys($result) as $idx){
12763773904SAndreas Gohr        if(auth_quickaclcheck($result[$idx]) < AUTH_READ){
12863773904SAndreas Gohr            unset($result[$idx]);
12963773904SAndreas Gohr        }
13063773904SAndreas Gohr    }
13163773904SAndreas Gohr
13254f4c056SAndreas Gohr    sort($result);
13354f4c056SAndreas Gohr    return $result;
13454f4c056SAndreas Gohr}
13554f4c056SAndreas Gohr
13654f4c056SAndreas Gohr/**
137506fa893SAndreas Gohr * Quicksearch for pagenames
138506fa893SAndreas Gohr *
139506fa893SAndreas Gohr * By default it only matches the pagename and ignores the
140506fa893SAndreas Gohr * namespace. This can be changed with the second parameter
141506fa893SAndreas Gohr *
142506fa893SAndreas Gohr * @author Andreas Gohr <andi@splitbrain.org>
143506fa893SAndreas Gohr */
144506fa893SAndreas Gohrfunction ft_pageLookup($id,$pageonly=true){
145506fa893SAndreas Gohr    global $conf;
146506fa893SAndreas Gohr    $id    = preg_quote($id,'/');
147506fa893SAndreas Gohr    $pages = file($conf['cachedir'].'/page.idx');
148506fa893SAndreas Gohr    $pages = array_values(preg_grep('/'.$id.'/',$pages));
149506fa893SAndreas Gohr
150506fa893SAndreas Gohr    $cnt = count($pages);
151506fa893SAndreas Gohr    for($i=0; $i<$cnt; $i++){
152506fa893SAndreas Gohr        if($pageonly){
153506fa893SAndreas Gohr            if(!preg_match('/'.$id.'/',noNS($pages[$i]))){
154506fa893SAndreas Gohr                unset($pages[$i]);
155506fa893SAndreas Gohr                continue;
156506fa893SAndreas Gohr            }
157506fa893SAndreas Gohr        }
158506fa893SAndreas Gohr        if(!@file_exists(wikiFN($pages[$i]))){
159506fa893SAndreas Gohr            unset($pages[$i]);
160506fa893SAndreas Gohr            continue;
161506fa893SAndreas Gohr        }
162506fa893SAndreas Gohr    }
16363773904SAndreas Gohr
16463773904SAndreas Gohr    if(!count($pages)) return array();
16563773904SAndreas Gohr
16663773904SAndreas Gohr    // check ACL permissions
16763773904SAndreas Gohr    foreach(array_keys($pages) as $idx){
16863773904SAndreas Gohr        if(auth_quickaclcheck($pages[$idx]) < AUTH_READ){
16963773904SAndreas Gohr            unset($pages[$idx]);
17063773904SAndreas Gohr        }
17163773904SAndreas Gohr    }
17263773904SAndreas Gohr
173506fa893SAndreas Gohr    sort($pages);
174506fa893SAndreas Gohr    return $pages;
175506fa893SAndreas Gohr}
176506fa893SAndreas Gohr
177506fa893SAndreas Gohr/**
178506fa893SAndreas Gohr * Creates a snippet extract
179506fa893SAndreas Gohr *
180506fa893SAndreas Gohr * @author Andreas Gohr <andi@splitbrain.org>
181506fa893SAndreas Gohr */
182506fa893SAndreas Gohrfunction ft_snippet($id,$poswords){
183506fa893SAndreas Gohr    $poswords = preg_quote($poswords,'#');
184506fa893SAndreas Gohr    $re       = '('.str_replace(' ','|',$poswords).')';
185506fa893SAndreas Gohr    $text     = rawWiki($id);
186506fa893SAndreas Gohr    //FIXME caseinsensitive matching doesn't work with UTF-8!?
187506fa893SAndreas Gohr    preg_match_all('#(.{0,50})'.$re.'(.{0,50})#iu',$text,$matches,PREG_SET_ORDER);
188506fa893SAndreas Gohr
189506fa893SAndreas Gohr    $cnt = 0;
190506fa893SAndreas Gohr    $snippet = '';
191506fa893SAndreas Gohr    foreach($matches as $match){
192506fa893SAndreas Gohr        $snippet .= '...'.htmlspecialchars($match[1]);
193506fa893SAndreas Gohr        $snippet .= '<span class="search_hit">';
194506fa893SAndreas Gohr        $snippet .= htmlspecialchars($match[2]);
195506fa893SAndreas Gohr        $snippet .= '</span>';
196506fa893SAndreas Gohr        $snippet .= htmlspecialchars($match[3]).'... ';
197506fa893SAndreas Gohr        if($cnt++ == 2) break;
198506fa893SAndreas Gohr    }
199506fa893SAndreas Gohr
200506fa893SAndreas Gohr    return $snippet;
201506fa893SAndreas Gohr}
202506fa893SAndreas Gohr
203506fa893SAndreas Gohr/**
204f5eb7cf0SAndreas Gohr * Combine found documents and sum up their scores
205f5eb7cf0SAndreas Gohr *
206f5eb7cf0SAndreas Gohr * This function is used to combine searched words with a logical
207f5eb7cf0SAndreas Gohr * AND. Only documents available in all arrays are returned.
208f5eb7cf0SAndreas Gohr *
209f5eb7cf0SAndreas Gohr * based upon PEAR's PHP_Compat function for array_intersect_key()
210f5eb7cf0SAndreas Gohr *
211f5eb7cf0SAndreas Gohr * @param array $args An array of page arrays
212f5eb7cf0SAndreas Gohr */
213f5eb7cf0SAndreas Gohrfunction ft_resultCombine($args){
214f5eb7cf0SAndreas Gohr    $array_count = count($args);
215134f4ab2SAndreas Gohr    if($array_count == 1){
216134f4ab2SAndreas Gohr        return $args[0];
217134f4ab2SAndreas Gohr    }
218134f4ab2SAndreas Gohr
219f5eb7cf0SAndreas Gohr    $result = array();
220f5eb7cf0SAndreas Gohr    foreach ($args[0] as $key1 => $value1) {
221f5eb7cf0SAndreas Gohr        for ($i = 1; $i !== $array_count; $i++) {
222f5eb7cf0SAndreas Gohr            foreach ($args[$i] as $key2 => $value2) {
223f5eb7cf0SAndreas Gohr                if ((string) $key1 === (string) $key2) {
224f5eb7cf0SAndreas Gohr                    if(!isset($result[$key1])) $result[$key1] = $value1;
225f5eb7cf0SAndreas Gohr                    $result[$key1] += $value2;
226f5eb7cf0SAndreas Gohr                }
227f5eb7cf0SAndreas Gohr            }
228f5eb7cf0SAndreas Gohr        }
229f5eb7cf0SAndreas Gohr    }
230f5eb7cf0SAndreas Gohr    return $result;
231f5eb7cf0SAndreas Gohr}
232f5eb7cf0SAndreas Gohr
233f5eb7cf0SAndreas Gohr/**
234f5eb7cf0SAndreas Gohr * Builds an array of search words from a query
235f5eb7cf0SAndreas Gohr *
236f5eb7cf0SAndreas Gohr * @todo support OR and parenthesises?
23793a60ad2SAndreas Gohr * @todo add namespace handling
238f5eb7cf0SAndreas Gohr */
239f5eb7cf0SAndreas Gohrfunction ft_queryParser($query){
240f5eb7cf0SAndreas Gohr    global $conf;
241f5eb7cf0SAndreas Gohr    $swfile   = DOKU_INC.'inc/lang/'.$conf['lang'].'/stopwords.txt';
242f5eb7cf0SAndreas Gohr    if(@file_exists($swfile)){
243f5eb7cf0SAndreas Gohr        $stopwords = file($swfile);
244f5eb7cf0SAndreas Gohr    }else{
245f5eb7cf0SAndreas Gohr        $stopwords = array();
246f5eb7cf0SAndreas Gohr    }
247f5eb7cf0SAndreas Gohr
248f5eb7cf0SAndreas Gohr    $q = array();
249f5eb7cf0SAndreas Gohr    $q['query']   = $query;
250f5eb7cf0SAndreas Gohr    $q['phrases'] = array();
251f5eb7cf0SAndreas Gohr    $q['and']     = array();
252f5eb7cf0SAndreas Gohr    $q['not']     = array();
253f5eb7cf0SAndreas Gohr
254f5eb7cf0SAndreas Gohr    // handle phrase searches
255f5eb7cf0SAndreas Gohr    while(preg_match('/"(.*?)"/',$query,$match)){
25693a60ad2SAndreas Gohr        $q['phrases'][] = $match[1];
257f5eb7cf0SAndreas Gohr        $q['and'] = array_merge(idx_tokenizer($match[0],$stopwords));
258f5eb7cf0SAndreas Gohr        $query = preg_replace('/"(.*?)"/','',$query,1);
259f5eb7cf0SAndreas Gohr    }
260f5eb7cf0SAndreas Gohr
261f5eb7cf0SAndreas Gohr    $words = explode(' ',$query);
262f5eb7cf0SAndreas Gohr    foreach($words as $w){
263f5eb7cf0SAndreas Gohr        if($w{0} == '-'){
264f5eb7cf0SAndreas Gohr            $token = idx_tokenizer($w,$stopwords);
265f5eb7cf0SAndreas Gohr            if(count($token)) $q['not'] = array_merge($q['not'],$token);
266f5eb7cf0SAndreas Gohr        }else{
26793a60ad2SAndreas Gohr            // asian "words" need to be searched as phrases
268*91bb5faaSAndreas Gohr            if(@preg_match_all('/('.IDX_ASIAN.'+)/u',$w,$matches)){
26993a60ad2SAndreas Gohr                $q['phrases'] = array_merge($q['phrases'],$matches[1]);
27093a60ad2SAndreas Gohr
27193a60ad2SAndreas Gohr            }
272f5eb7cf0SAndreas Gohr            $token = idx_tokenizer($w,$stopwords);
273f5eb7cf0SAndreas Gohr            if(count($token)) $q['and'] = array_merge($q['and'],$token);
274f5eb7cf0SAndreas Gohr        }
275f5eb7cf0SAndreas Gohr    }
276f5eb7cf0SAndreas Gohr
277f5eb7cf0SAndreas Gohr    return $q;
278f5eb7cf0SAndreas Gohr}
279f5eb7cf0SAndreas Gohr
280506fa893SAndreas Gohr//Setup VIM: ex: et ts=4 enc=utf-8 :
281