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: 22ad81d431SAndreas Gohr $poswords = str_replace('*','',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 470dc92c6fSAndreas Gohr // create a list of hidden pages in the result 480dc92c6fSAndreas Gohr $hidden = array(); 490dc92c6fSAndreas Gohr $hidden = array_filter(array_keys($docs),'isHiddenPage'); 500dc92c6fSAndreas Gohr $not = array_merge($not,$hidden); 510dc92c6fSAndreas Gohr 52d0ab54f6SMichael Klier chi@chimeric.de // filter unmatched namespaces 53d0ab54f6SMichael Klier chi@chimeric.de if(!empty($q['ns'])) { 54a219c1f0SMichael Klier chi@chimeric.de $pattern = implode('|^',$q['ns']); 55d0ab54f6SMichael Klier chi@chimeric.de foreach($docs as $key => $val) { 56a219c1f0SMichael Klier chi@chimeric.de if(!preg_match('/^'.$pattern.'/',$key)) { 57d0ab54f6SMichael Klier chi@chimeric.de unset($docs[$key]); 58d0ab54f6SMichael Klier chi@chimeric.de } 59d0ab54f6SMichael Klier chi@chimeric.de } 60d0ab54f6SMichael Klier chi@chimeric.de } 61d0ab54f6SMichael Klier chi@chimeric.de 62f5eb7cf0SAndreas Gohr // remove negative matches 63f5eb7cf0SAndreas Gohr foreach($not as $n){ 64f5eb7cf0SAndreas Gohr unset($docs[$n]); 65f5eb7cf0SAndreas Gohr } 66f5eb7cf0SAndreas Gohr 67f5eb7cf0SAndreas Gohr if(!count($docs)) return array(); 68f5eb7cf0SAndreas Gohr // handle phrases 69f5eb7cf0SAndreas Gohr if(count($q['phrases'])){ 70f5eb7cf0SAndreas Gohr //build a regexp 71f5eb7cf0SAndreas Gohr $q['phrases'] = array_map('utf8_strtolower',$q['phrases']); 72f5eb7cf0SAndreas Gohr $q['phrases'] = array_map('preg_quote',$q['phrases']); 73f5eb7cf0SAndreas Gohr $regex = '('.join('|',$q['phrases']).')'; 74f5eb7cf0SAndreas Gohr // check the source of all documents for the exact phrases 75f5eb7cf0SAndreas Gohr foreach(array_keys($docs) as $id){ 76f5eb7cf0SAndreas Gohr $text = utf8_strtolower(rawWiki($id)); 77506fa893SAndreas Gohr if(!preg_match('/'.$regex.'/usi',$text)){ 78f5eb7cf0SAndreas Gohr unset($docs[$id]); // no hit - remove 79f5eb7cf0SAndreas Gohr } 80f5eb7cf0SAndreas Gohr } 81f5eb7cf0SAndreas Gohr } 82f5eb7cf0SAndreas Gohr 83f5eb7cf0SAndreas Gohr if(!count($docs)) return array(); 84f5eb7cf0SAndreas Gohr 8563773904SAndreas Gohr // check ACL permissions 8663773904SAndreas Gohr foreach(array_keys($docs) as $doc){ 8763773904SAndreas Gohr if(auth_quickaclcheck($doc) < AUTH_READ){ 8863773904SAndreas Gohr unset($docs[$doc]); 8963773904SAndreas Gohr } 9063773904SAndreas Gohr } 9163773904SAndreas Gohr 9263773904SAndreas Gohr if(!count($docs)) return array(); 9363773904SAndreas Gohr 94f5eb7cf0SAndreas Gohr // if there are any hits left, sort them by count 95f5eb7cf0SAndreas Gohr arsort($docs); 96f5eb7cf0SAndreas Gohr 97f5eb7cf0SAndreas Gohr return $docs; 98f5eb7cf0SAndreas Gohr} 99f5eb7cf0SAndreas Gohr 100f5eb7cf0SAndreas Gohr/** 10154f4c056SAndreas Gohr * Returns the backlinks for a given page 10254f4c056SAndreas Gohr * 10354f4c056SAndreas Gohr * Does a quick lookup with the fulltext index, then 10454f4c056SAndreas Gohr * evaluates the instructions of the found pages 10554f4c056SAndreas Gohr */ 10654f4c056SAndreas Gohrfunction ft_backlinks($id){ 10754f4c056SAndreas Gohr global $conf; 10854f4c056SAndreas Gohr $result = array(); 10954f4c056SAndreas Gohr 11054f4c056SAndreas Gohr // quick lookup of the pagename 11154f4c056SAndreas Gohr $page = noNS($id); 1123cbaa9a4SAndreas Gohr $sw = array(); // we don't use stopwords here 1133cbaa9a4SAndreas Gohr $matches = idx_lookup(idx_tokenizer($page,$sw)); // pagename may contain specials (_ or .) 1140dc92c6fSAndreas Gohr $docs = array_keys(ft_resultCombine(array_values($matches))); 1150dc92c6fSAndreas Gohr $docs = array_filter($docs,'isVisiblePage'); // discard hidden pages 1163cbaa9a4SAndreas Gohr if(!count($docs)) return $result; 11754f4c056SAndreas Gohr require_once(DOKU_INC.'inc/parserutils.php'); 11854f4c056SAndreas Gohr 119*10ffc9ddSAndreas Gohr // check metadata for matching links 1200dc92c6fSAndreas Gohr foreach($docs as $match){ 121*10ffc9ddSAndreas Gohr // metadata relation reference links are already resolved 1223be6e394Schris $links = p_get_metadata($match,"relation references"); 1233be6e394Schris if (isset($links[$id])) $result[] = $match; 12454f4c056SAndreas Gohr } 12554f4c056SAndreas Gohr 12663773904SAndreas Gohr if(!count($result)) return $result; 12763773904SAndreas Gohr 12863773904SAndreas Gohr // check ACL permissions 12963773904SAndreas Gohr foreach(array_keys($result) as $idx){ 13063773904SAndreas Gohr if(auth_quickaclcheck($result[$idx]) < AUTH_READ){ 13163773904SAndreas Gohr unset($result[$idx]); 13263773904SAndreas Gohr } 13363773904SAndreas Gohr } 13463773904SAndreas Gohr 13554f4c056SAndreas Gohr sort($result); 13654f4c056SAndreas Gohr return $result; 13754f4c056SAndreas Gohr} 13854f4c056SAndreas Gohr 13954f4c056SAndreas Gohr/** 140506fa893SAndreas Gohr * Quicksearch for pagenames 141506fa893SAndreas Gohr * 142506fa893SAndreas Gohr * By default it only matches the pagename and ignores the 143506fa893SAndreas Gohr * namespace. This can be changed with the second parameter 144506fa893SAndreas Gohr * 145506fa893SAndreas Gohr * @author Andreas Gohr <andi@splitbrain.org> 146506fa893SAndreas Gohr */ 147506fa893SAndreas Gohrfunction ft_pageLookup($id,$pageonly=true){ 148506fa893SAndreas Gohr global $conf; 149506fa893SAndreas Gohr $id = preg_quote($id,'/'); 150506fa893SAndreas Gohr $pages = file($conf['cachedir'].'/page.idx'); 151506fa893SAndreas Gohr $pages = array_values(preg_grep('/'.$id.'/',$pages)); 152506fa893SAndreas Gohr 153506fa893SAndreas Gohr $cnt = count($pages); 154506fa893SAndreas Gohr for($i=0; $i<$cnt; $i++){ 155506fa893SAndreas Gohr if($pageonly){ 156506fa893SAndreas Gohr if(!preg_match('/'.$id.'/',noNS($pages[$i]))){ 157506fa893SAndreas Gohr unset($pages[$i]); 158506fa893SAndreas Gohr continue; 159506fa893SAndreas Gohr } 160506fa893SAndreas Gohr } 161506fa893SAndreas Gohr if(!@file_exists(wikiFN($pages[$i]))){ 162506fa893SAndreas Gohr unset($pages[$i]); 163506fa893SAndreas Gohr continue; 164506fa893SAndreas Gohr } 165506fa893SAndreas Gohr } 16663773904SAndreas Gohr 1670dc92c6fSAndreas Gohr $pages = array_filter($pages,'isVisiblePage'); // discard hidden pages 16863773904SAndreas Gohr if(!count($pages)) return array(); 16963773904SAndreas Gohr 17063773904SAndreas Gohr // check ACL permissions 17163773904SAndreas Gohr foreach(array_keys($pages) as $idx){ 17263773904SAndreas Gohr if(auth_quickaclcheck($pages[$idx]) < AUTH_READ){ 17363773904SAndreas Gohr unset($pages[$idx]); 17463773904SAndreas Gohr } 17563773904SAndreas Gohr } 17663773904SAndreas Gohr 177506fa893SAndreas Gohr sort($pages); 178506fa893SAndreas Gohr return $pages; 179506fa893SAndreas Gohr} 180506fa893SAndreas Gohr 181506fa893SAndreas Gohr/** 182506fa893SAndreas Gohr * Creates a snippet extract 183506fa893SAndreas Gohr * 184506fa893SAndreas Gohr * @author Andreas Gohr <andi@splitbrain.org> 185506fa893SAndreas Gohr */ 186506fa893SAndreas Gohrfunction ft_snippet($id,$poswords){ 187506fa893SAndreas Gohr $poswords = preg_quote($poswords,'#'); 188506fa893SAndreas Gohr $re = '('.str_replace(' ','|',$poswords).')'; 189506fa893SAndreas Gohr $text = rawWiki($id); 190bd2cb6fcSchris 191ced0762eSchris $match = array(); 192ced0762eSchris $snippets = array(); 1939ee93076Schris $utf8_offset = $offset = $end = 0; 194ced0762eSchris $len = utf8_strlen($text); 1959ee93076Schris 196ced0762eSchris for ($cnt=3; $cnt--;) { 197ced0762eSchris if (!preg_match('#'.$re.'#iu',$text,$match,PREG_OFFSET_CAPTURE,$offset)) break; 198ced0762eSchris 199ced0762eSchris list($str,$idx) = $match[0]; 200ced0762eSchris 201ced0762eSchris // convert $idx (a byte offset) into a utf8 character offset 202ced0762eSchris $utf8_idx = utf8_strlen(substr($text,0,$idx)); 203ced0762eSchris $utf8_len = utf8_strlen($str); 204ced0762eSchris 205ced0762eSchris // establish context, 100 bytes surrounding the match string 206ced0762eSchris // first look to see if we can go 100 either side, 207ced0762eSchris // then drop to 50 adding any excess if the other side can't go to 50, 208ced0762eSchris $pre = min($utf8_idx-$utf8_offset,100); 209ced0762eSchris $post = min($len-$utf8_idx-$utf8_len,100); 210ced0762eSchris 211ced0762eSchris if ($pre>50 && $post>50) { 212ced0762eSchris $pre = $post = 50; 213ced0762eSchris } else if ($pre>50) { 214ced0762eSchris $pre = min($pre,100-$post); 215ced0762eSchris } else if ($post>50) { 216ced0762eSchris $post = min($post, 100-$pre); 217ced0762eSchris } else { 218ced0762eSchris // both are less than 50, means the context is the whole string 219*10ffc9ddSAndreas Gohr // make it so and break out of this loop - there is no need for the 220*10ffc9ddSAndreas Gohr // complex snippet calculations 221ced0762eSchris $snippets = array($text); 222ced0762eSchris break; 223ced0762eSchris } 224ced0762eSchris 225*10ffc9ddSAndreas Gohr // establish context start and end points, try to append to previous 226*10ffc9ddSAndreas Gohr // context if possible 2279ee93076Schris $start = $utf8_idx - $pre; 228ced0762eSchris $append = ($start < $end) ? $end : false; // still the end of the previous context snippet 2299ee93076Schris $end = $utf8_idx + $utf8_len + $post; // now set it to the end of this context 230ced0762eSchris 231ced0762eSchris if ($append) { 232ced0762eSchris $snippets[count($snippets)-1] .= utf8_substr($text,$append,$end-$append); 233ced0762eSchris } else { 234ced0762eSchris $snippets[] = utf8_substr($text,$start,$end-$start); 235ced0762eSchris } 236ced0762eSchris 237ced0762eSchris // set $offset for next match attempt 238*10ffc9ddSAndreas Gohr // substract strlen to avoid splitting a potential search success, 239*10ffc9ddSAndreas Gohr // this is an approximation as the search pattern may match strings 240*10ffc9ddSAndreas Gohr // of varying length and it will fail if the context snippet 241ced0762eSchris // boundary breaks a matching string longer than the current match 2429ee93076Schris $utf8_offset = $utf8_idx + $post; 2439ee93076Schris $offset = $idx + strlen(utf8_substr($text,$utf8_idx,$post)); 2449ee93076Schris $offset = utf8_correctIdx($text,$offset); 2459ee93076Schris } 2469ee93076Schris 247ced0762eSchris $m = "\1"; 248ced0762eSchris $snippets = preg_replace('#'.$re.'#iu',$m.'$1'.$m,$snippets); 249ced0762eSchris $snippet = preg_replace('#'.$m.'([^'.$m.']*?)'.$m.'#iu','<span class="search_hit">$1</span>',hsc(join('... ',$snippets))); 250bd2cb6fcSchris 2515953e889Schris return $snippet; 252506fa893SAndreas Gohr} 253506fa893SAndreas Gohr 254506fa893SAndreas Gohr/** 255f5eb7cf0SAndreas Gohr * Combine found documents and sum up their scores 256f5eb7cf0SAndreas Gohr * 257f5eb7cf0SAndreas Gohr * This function is used to combine searched words with a logical 258f5eb7cf0SAndreas Gohr * AND. Only documents available in all arrays are returned. 259f5eb7cf0SAndreas Gohr * 260f5eb7cf0SAndreas Gohr * based upon PEAR's PHP_Compat function for array_intersect_key() 261f5eb7cf0SAndreas Gohr * 262f5eb7cf0SAndreas Gohr * @param array $args An array of page arrays 263f5eb7cf0SAndreas Gohr */ 264f5eb7cf0SAndreas Gohrfunction ft_resultCombine($args){ 265f5eb7cf0SAndreas Gohr $array_count = count($args); 266134f4ab2SAndreas Gohr if($array_count == 1){ 267134f4ab2SAndreas Gohr return $args[0]; 268134f4ab2SAndreas Gohr } 269134f4ab2SAndreas Gohr 270f5eb7cf0SAndreas Gohr $result = array(); 271f5eb7cf0SAndreas Gohr foreach ($args[0] as $key1 => $value1) { 272f5eb7cf0SAndreas Gohr for ($i = 1; $i !== $array_count; $i++) { 273f5eb7cf0SAndreas Gohr foreach ($args[$i] as $key2 => $value2) { 274f5eb7cf0SAndreas Gohr if ((string) $key1 === (string) $key2) { 275f5eb7cf0SAndreas Gohr if(!isset($result[$key1])) $result[$key1] = $value1; 276f5eb7cf0SAndreas Gohr $result[$key1] += $value2; 277f5eb7cf0SAndreas Gohr } 278f5eb7cf0SAndreas Gohr } 279f5eb7cf0SAndreas Gohr } 280f5eb7cf0SAndreas Gohr } 281f5eb7cf0SAndreas Gohr return $result; 282f5eb7cf0SAndreas Gohr} 283f5eb7cf0SAndreas Gohr 284f5eb7cf0SAndreas Gohr/** 285f5eb7cf0SAndreas Gohr * Builds an array of search words from a query 286f5eb7cf0SAndreas Gohr * 287f5eb7cf0SAndreas Gohr * @todo support OR and parenthesises? 288f5eb7cf0SAndreas Gohr */ 289f5eb7cf0SAndreas Gohrfunction ft_queryParser($query){ 290f5eb7cf0SAndreas Gohr global $conf; 291f5eb7cf0SAndreas Gohr $swfile = DOKU_INC.'inc/lang/'.$conf['lang'].'/stopwords.txt'; 292f5eb7cf0SAndreas Gohr if(@file_exists($swfile)){ 293f5eb7cf0SAndreas Gohr $stopwords = file($swfile); 294f5eb7cf0SAndreas Gohr }else{ 295f5eb7cf0SAndreas Gohr $stopwords = array(); 296f5eb7cf0SAndreas Gohr } 297f5eb7cf0SAndreas Gohr 298f5eb7cf0SAndreas Gohr $q = array(); 299f5eb7cf0SAndreas Gohr $q['query'] = $query; 300a219c1f0SMichael Klier chi@chimeric.de $q['ns'] = array(); 301f5eb7cf0SAndreas Gohr $q['phrases'] = array(); 302f5eb7cf0SAndreas Gohr $q['and'] = array(); 303f5eb7cf0SAndreas Gohr $q['not'] = array(); 304f5eb7cf0SAndreas Gohr 305d0ab54f6SMichael Klier chi@chimeric.de // strip namespace from query 306a219c1f0SMichael Klier chi@chimeric.de if(preg_match('/([^@]*)@(.*)/',$query,$match)) { 307d0ab54f6SMichael Klier chi@chimeric.de $query = $match[1]; 308a219c1f0SMichael Klier chi@chimeric.de $q['ns'] = explode('@',preg_replace("/ /",'',$match[2])); 309d0ab54f6SMichael Klier chi@chimeric.de } 310d0ab54f6SMichael Klier chi@chimeric.de 311f5eb7cf0SAndreas Gohr // handle phrase searches 312f5eb7cf0SAndreas Gohr while(preg_match('/"(.*?)"/',$query,$match)){ 31393a60ad2SAndreas Gohr $q['phrases'][] = $match[1]; 314f5eb7cf0SAndreas Gohr $q['and'] = array_merge(idx_tokenizer($match[0],$stopwords)); 315f5eb7cf0SAndreas Gohr $query = preg_replace('/"(.*?)"/','',$query,1); 316f5eb7cf0SAndreas Gohr } 317f5eb7cf0SAndreas Gohr 318f5eb7cf0SAndreas Gohr $words = explode(' ',$query); 319f5eb7cf0SAndreas Gohr foreach($words as $w){ 320f5eb7cf0SAndreas Gohr if($w{0} == '-'){ 321ad81d431SAndreas Gohr $token = idx_tokenizer($w,$stopwords,true); 322f5eb7cf0SAndreas Gohr if(count($token)) $q['not'] = array_merge($q['not'],$token); 323f5eb7cf0SAndreas Gohr }else{ 32493a60ad2SAndreas Gohr // asian "words" need to be searched as phrases 32591bb5faaSAndreas Gohr if(@preg_match_all('/('.IDX_ASIAN.'+)/u',$w,$matches)){ 32693a60ad2SAndreas Gohr $q['phrases'] = array_merge($q['phrases'],$matches[1]); 32793a60ad2SAndreas Gohr 32893a60ad2SAndreas Gohr } 329ad81d431SAndreas Gohr $token = idx_tokenizer($w,$stopwords,true); 330f5eb7cf0SAndreas Gohr if(count($token)) $q['and'] = array_merge($q['and'],$token); 331f5eb7cf0SAndreas Gohr } 332f5eb7cf0SAndreas Gohr } 333f5eb7cf0SAndreas Gohr 334f5eb7cf0SAndreas Gohr return $q; 335f5eb7cf0SAndreas Gohr} 336f5eb7cf0SAndreas Gohr 337506fa893SAndreas Gohr//Setup VIM: ex: et ts=4 enc=utf-8 : 338