xref: /dokuwiki/inc/fulltext.php (revision 7ae265d3e681ebbb637211616aac15b18b8689a1)
1<?php
2/**
3 * DokuWiki fulltextsearch functions using the index
4 *
5 * @license    GPL 2 (http://www.gnu.org/licenses/gpl.html)
6 * @author     Andreas Gohr <andi@splitbrain.org>
7 */
8
9if(!defined('DOKU_INC')) die('meh.');
10
11/**
12 * create snippets for the first few results only
13 */
14if(!defined('FT_SNIPPET_NUMBER')) define('FT_SNIPPET_NUMBER',15);
15
16/**
17 * The fulltext search
18 *
19 * Returns a list of matching documents for the given query
20 *
21 * refactored into ft_pageSearch(), _ft_pageSearch() and trigger_event()
22 *
23 */
24function ft_pageSearch($query,&$highlight){
25
26    $data['query'] = $query;
27    $data['highlight'] =& $highlight;
28
29    return trigger_event('SEARCH_QUERY_FULLPAGE', $data, '_ft_pageSearch');
30}
31
32/**
33 * Returns a list of matching documents for the given query
34 *
35 * @author Andreas Gohr <andi@splitbrain.org>
36 * @author Kazutaka Miyasaka <kazmiya@gmail.com>
37 */
38function _ft_pageSearch(&$data) {
39    // parse the given query
40    $q = ft_queryParser($data['query']);
41    $data['highlight'] = $q['highlight'];
42
43    if (empty($q['parsed_ary'])) return array();
44
45    // lookup all words found in the query
46    $lookup = idx_lookup($q['words']);
47
48    // get all pages in this dokuwiki site (!: includes nonexistent pages)
49    $pages_all = array();
50    foreach (idx_getIndex('page', '') as $id) {
51        $pages_all[trim($id)] = 0; // base: 0 hit
52    }
53
54    // process the query
55    $stack = array();
56    foreach ($q['parsed_ary'] as $token) {
57        switch (substr($token, 0, 3)) {
58            case 'W+:':
59            case 'W-:':
60            case 'W_:': // word
61                $word    = substr($token, 3);
62                $stack[] = (array) $lookup[$word];
63                break;
64            case 'P+:':
65            case 'P-:': // phrase
66                $phrase = substr($token, 3);
67                // since phrases are always parsed as ((W1)(W2)...(P)),
68                // the end($stack) always points the pages that contain
69                // all words in this phrase
70                $pages  = end($stack);
71                $pages_matched = array();
72                foreach(array_keys($pages) as $id){
73                    $text = utf8_strtolower(rawWiki($id));
74                    if (strpos($text, $phrase) !== false) {
75                        $pages_matched[$id] = 0; // phrase: always 0 hit
76                    }
77                }
78                $stack[] = $pages_matched;
79                break;
80            case 'N+:':
81            case 'N-:': // namespace
82                $ns = substr($token, 3);
83                $pages_matched = array();
84                foreach (array_keys($pages_all) as $id) {
85                    if (strpos($id, $ns) === 0) {
86                        $pages_matched[$id] = 0; // namespace: always 0 hit
87                    }
88                }
89                $stack[] = $pages_matched;
90                break;
91            case 'AND': // and operation
92                list($pages1, $pages2) = array_splice($stack, -2);
93                $stack[] = ft_resultCombine(array($pages1, $pages2));
94                break;
95            case 'OR':  // or operation
96                list($pages1, $pages2) = array_splice($stack, -2);
97                $stack[] = ft_resultUnite(array($pages1, $pages2));
98                break;
99            case 'NOT': // not operation (unary)
100                $pages   = array_pop($stack);
101                $stack[] = ft_resultComplement(array($pages_all, $pages));
102                break;
103        }
104    }
105    $docs = array_pop($stack);
106
107    if (empty($docs)) return array();
108
109    // check: settings, acls, existence
110    foreach (array_keys($docs) as $id) {
111        if (isHiddenPage($id) || auth_quickaclcheck($id) < AUTH_READ || !page_exists($id, '', false)) {
112            unset($docs[$id]);
113        }
114    }
115
116    // sort docs by count
117    arsort($docs);
118
119    return $docs;
120}
121
122/**
123 * Returns the backlinks for a given page
124 *
125 * Does a quick lookup with the fulltext index, then
126 * evaluates the instructions of the found pages
127 */
128function ft_backlinks($id){
129    global $conf;
130    $swfile   = DOKU_INC.'inc/lang/'.$conf['lang'].'/stopwords.txt';
131    $stopwords = @file_exists($swfile) ? file($swfile) : array();
132
133    $result = array();
134
135    // quick lookup of the pagename
136    $page    = noNS($id);
137    $matches = idx_lookup(idx_tokenizer($page,$stopwords));  // pagename may contain specials (_ or .)
138    $docs    = array_keys(ft_resultCombine(array_values($matches)));
139    $docs    = array_filter($docs,'isVisiblePage'); // discard hidden pages
140    if(!count($docs)) return $result;
141
142    // check metadata for matching links
143    foreach($docs as $match){
144        // metadata relation reference links are already resolved
145        $links = p_get_metadata($match,'relation references');
146        if (isset($links[$id])) $result[] = $match;
147    }
148
149    if(!count($result)) return $result;
150
151    // check ACL permissions
152    foreach(array_keys($result) as $idx){
153        if(auth_quickaclcheck($result[$idx]) < AUTH_READ){
154            unset($result[$idx]);
155        }
156    }
157
158    sort($result);
159    return $result;
160}
161
162/**
163 * Returns the pages that use a given media file
164 *
165 * Does a quick lookup with the fulltext index, then
166 * evaluates the instructions of the found pages
167 *
168 * Aborts after $max found results
169 */
170function ft_mediause($id,$max){
171    global $conf;
172    $swfile   = DOKU_INC.'inc/lang/'.$conf['lang'].'/stopwords.txt';
173    $stopwords = @file_exists($swfile) ? file($swfile) : array();
174
175    if(!$max) $max = 1; // need to find at least one
176
177    $result = array();
178
179    // quick lookup of the mediafile
180    $media   = noNS($id);
181    $matches = idx_lookup(idx_tokenizer($media,$stopwords));
182    $docs    = array_keys(ft_resultCombine(array_values($matches)));
183    if(!count($docs)) return $result;
184
185    // go through all found pages
186    $found = 0;
187    $pcre  = preg_quote($media,'/');
188    foreach($docs as $doc){
189        $ns = getNS($doc);
190        preg_match_all('/\{\{([^|}]*'.$pcre.'[^|}]*)(|[^}]+)?\}\}/i',rawWiki($doc),$matches);
191        foreach($matches[1] as $img){
192            $img = trim($img);
193            if(preg_match('/^https?:\/\//i',$img)) continue; // skip external images
194                list($img) = explode('?',$img);                  // remove any parameters
195            resolve_mediaid($ns,$img,$exists);               // resolve the possibly relative img
196
197            if($img == $id){                                 // we have a match
198                $result[] = $doc;
199                $found++;
200                break;
201            }
202        }
203        if($found >= $max) break;
204    }
205
206    sort($result);
207    return $result;
208}
209
210
211
212/**
213 * Quicksearch for pagenames
214 *
215 * By default it only matches the pagename and ignores the
216 * namespace. This can be changed with the second parameter.
217 * The third parameter allows to search in titles as well.
218 *
219 * The function always returns titles as well
220 *
221 * @triggers SEARCH_QUERY_PAGELOOKUP
222 * @author Andreas Gohr <andi@splitbrain.org>
223 * @author Adrian Lang <lang@cosmocode.de>
224 */
225function ft_pageLookup($id, $in_ns=false, $in_title=false){
226    $data = compact('id', 'in_ns', 'in_title');
227    $data['has_titles'] = true; // for plugin backward compatibility check
228    return trigger_event('SEARCH_QUERY_PAGELOOKUP', $data, '_ft_pageLookup');
229}
230
231function _ft_pageLookup(&$data){
232    global $conf;
233    // split out original parameters
234    $id = $data['id'];
235    if (preg_match('/(?:^| )@(\w+)/', $id, $matches)) {
236        $ns = cleanID($matches[1]) . ':';
237        $id = str_replace($matches[0], '', $id);
238    }
239
240    $in_ns    = $data['in_ns'];
241    $in_title = $data['in_title'];
242
243    $pages  = array_map('rtrim', idx_getIndex('page', ''));
244    $titles = array_map('rtrim', idx_getIndex('title', ''));
245    // check for corrupt title index #FS2076
246    if(count($pages) != count($titles)){
247        $titles = array_fill(0,count($pages),'');
248        @unlink($conf['indexdir'].'/title.idx'); // will be rebuilt in inc/init.php
249    }
250    $pages = array_combine($pages, $titles);
251
252    $cleaned = cleanID($id);
253    if ($id !== '' && $cleaned !== '') {
254        foreach ($pages as $p_id => $p_title) {
255            if ((strpos($in_ns ? $p_id : noNSorNS($p_id), $cleaned) === false) &&
256                (!$in_title || (stripos($p_title, $id) === false)) ) {
257                unset($pages[$p_id]);
258            }
259        }
260    }
261    if (isset($ns)) {
262        foreach (array_keys($pages) as $p_id) {
263            if (strpos($p_id, $ns) !== 0) {
264                unset($pages[$p_id]);
265            }
266        }
267    }
268
269    // discard hidden pages
270    // discard nonexistent pages
271    // check ACL permissions
272    foreach(array_keys($pages) as $idx){
273        if(!isVisiblePage($idx) || !page_exists($idx) ||
274           auth_quickaclcheck($idx) < AUTH_READ) {
275            unset($pages[$idx]);
276        }
277    }
278
279    uksort($pages,'ft_pagesorter');
280    return $pages;
281}
282
283/**
284 * Sort pages based on their namespace level first, then on their string
285 * values. This makes higher hierarchy pages rank higher than lower hierarchy
286 * pages.
287 */
288function ft_pagesorter($a, $b){
289    $ac = count(explode(':',$a));
290    $bc = count(explode(':',$b));
291    if($ac < $bc){
292        return -1;
293    }elseif($ac > $bc){
294        return 1;
295    }
296    return strcmp ($a,$b);
297}
298
299/**
300 * Creates a snippet extract
301 *
302 * @author Andreas Gohr <andi@splitbrain.org>
303 * @triggers FULLTEXT_SNIPPET_CREATE
304 */
305function ft_snippet($id,$highlight){
306    $text = rawWiki($id);
307    $evdata = array(
308            'id'        => $id,
309            'text'      => &$text,
310            'highlight' => &$highlight,
311            'snippet'   => '',
312            );
313
314    $evt = new Doku_Event('FULLTEXT_SNIPPET_CREATE',$evdata);
315    if ($evt->advise_before()) {
316        $match = array();
317        $snippets = array();
318        $utf8_offset = $offset = $end = 0;
319        $len = utf8_strlen($text);
320
321        // build a regexp from the phrases to highlight
322        $re1 = '('.join('|',array_map('ft_snippet_re_preprocess', array_map('preg_quote_cb',array_filter((array) $highlight)))).')';
323        $re2 = "$re1.{0,75}(?!\\1)$re1";
324        $re3 = "$re1.{0,45}(?!\\1)$re1.{0,45}(?!\\1)(?!\\2)$re1";
325
326        for ($cnt=4; $cnt--;) {
327            if (0) {
328            } else if (preg_match('/'.$re3.'/iu',$text,$match,PREG_OFFSET_CAPTURE,$offset)) {
329            } else if (preg_match('/'.$re2.'/iu',$text,$match,PREG_OFFSET_CAPTURE,$offset)) {
330            } else if (preg_match('/'.$re1.'/iu',$text,$match,PREG_OFFSET_CAPTURE,$offset)) {
331            } else {
332                break;
333            }
334
335            list($str,$idx) = $match[0];
336
337            // convert $idx (a byte offset) into a utf8 character offset
338            $utf8_idx = utf8_strlen(substr($text,0,$idx));
339            $utf8_len = utf8_strlen($str);
340
341            // establish context, 100 bytes surrounding the match string
342            // first look to see if we can go 100 either side,
343            // then drop to 50 adding any excess if the other side can't go to 50,
344            $pre = min($utf8_idx-$utf8_offset,100);
345            $post = min($len-$utf8_idx-$utf8_len,100);
346
347            if ($pre>50 && $post>50) {
348                $pre = $post = 50;
349            } else if ($pre>50) {
350                $pre = min($pre,100-$post);
351            } else if ($post>50) {
352                $post = min($post, 100-$pre);
353            } else {
354                // both are less than 50, means the context is the whole string
355                // make it so and break out of this loop - there is no need for the
356                // complex snippet calculations
357                $snippets = array($text);
358                break;
359            }
360
361            // establish context start and end points, try to append to previous
362            // context if possible
363            $start = $utf8_idx - $pre;
364            $append = ($start < $end) ? $end : false;  // still the end of the previous context snippet
365            $end = $utf8_idx + $utf8_len + $post;      // now set it to the end of this context
366
367            if ($append) {
368                $snippets[count($snippets)-1] .= utf8_substr($text,$append,$end-$append);
369            } else {
370                $snippets[] = utf8_substr($text,$start,$end-$start);
371            }
372
373            // set $offset for next match attempt
374            //   substract strlen to avoid splitting a potential search success,
375            //   this is an approximation as the search pattern may match strings
376            //   of varying length and it will fail if the context snippet
377            //   boundary breaks a matching string longer than the current match
378            $utf8_offset = $utf8_idx + $post;
379            $offset = $idx + strlen(utf8_substr($text,$utf8_idx,$post));
380            $offset = utf8_correctIdx($text,$offset);
381        }
382
383        $m = "\1";
384        $snippets = preg_replace('/'.$re1.'/iu',$m.'$1'.$m,$snippets);
385        $snippet = preg_replace('/'.$m.'([^'.$m.']*?)'.$m.'/iu','<strong class="search_hit">$1</strong>',hsc(join('... ',$snippets)));
386
387        $evdata['snippet'] = $snippet;
388    }
389    $evt->advise_after();
390    unset($evt);
391
392    return $evdata['snippet'];
393}
394
395/**
396 * Wraps a search term in regex boundary checks.
397 */
398function ft_snippet_re_preprocess($term) {
399    if(substr($term,0,2) == '\\*'){
400        $term = substr($term,2);
401    }else{
402        $term = '\b'.$term;
403    }
404
405    if(substr($term,-2,2) == '\\*'){
406        $term = substr($term,0,-2);
407    }else{
408        $term = $term.'\b';
409    }
410    return $term;
411}
412
413/**
414 * Combine found documents and sum up their scores
415 *
416 * This function is used to combine searched words with a logical
417 * AND. Only documents available in all arrays are returned.
418 *
419 * based upon PEAR's PHP_Compat function for array_intersect_key()
420 *
421 * @param array $args An array of page arrays
422 */
423function ft_resultCombine($args){
424    $array_count = count($args);
425    if($array_count == 1){
426        return $args[0];
427    }
428
429    $result = array();
430    if ($array_count > 1) {
431        foreach ($args[0] as $key => $value) {
432            $result[$key] = $value;
433            for ($i = 1; $i !== $array_count; $i++) {
434                if (!isset($args[$i][$key])) {
435                    unset($result[$key]);
436                    break;
437                }
438                $result[$key] += $args[$i][$key];
439            }
440        }
441    }
442    return $result;
443}
444
445/**
446 * Unites found documents and sum up their scores
447 *
448 * based upon ft_resultCombine() function
449 *
450 * @param array $args An array of page arrays
451 * @author Kazutaka Miyasaka <kazmiya@gmail.com>
452 */
453function ft_resultUnite($args) {
454    $array_count = count($args);
455    if ($array_count === 1) {
456        return $args[0];
457    }
458
459    $result = $args[0];
460    for ($i = 1; $i !== $array_count; $i++) {
461        foreach (array_keys($args[$i]) as $id) {
462            $result[$id] += $args[$i][$id];
463        }
464    }
465    return $result;
466}
467
468/**
469 * Computes the difference of documents using page id for comparison
470 *
471 * nearly identical to PHP5's array_diff_key()
472 *
473 * @param array $args An array of page arrays
474 * @author Kazutaka Miyasaka <kazmiya@gmail.com>
475 */
476function ft_resultComplement($args) {
477    $array_count = count($args);
478    if ($array_count === 1) {
479        return $args[0];
480    }
481
482    $result = $args[0];
483    foreach (array_keys($result) as $id) {
484        for ($i = 1; $i !== $array_count; $i++) {
485            if (isset($args[$i][$id])) unset($result[$id]);
486        }
487    }
488    return $result;
489}
490
491/**
492 * Parses a search query and builds an array of search formulas
493 *
494 * @author Andreas Gohr <andi@splitbrain.org>
495 * @author Kazutaka Miyasaka <kazmiya@gmail.com>
496 */
497function ft_queryParser($query){
498    global $conf;
499    $swfile    = DOKU_INC.'inc/lang/'.$conf['lang'].'/stopwords.txt';
500    $stopwords = @file_exists($swfile) ? file($swfile) : array();
501
502    /**
503     * parse a search query and transform it into intermediate representation
504     *
505     * in a search query, you can use the following expressions:
506     *
507     *   words:
508     *     include
509     *     -exclude
510     *   phrases:
511     *     "phrase to be included"
512     *     -"phrase you want to exclude"
513     *   namespaces:
514     *     @include:namespace (or ns:include:namespace)
515     *     ^exclude:namespace (or -ns:exclude:namespace)
516     *   groups:
517     *     ()
518     *     -()
519     *   operators:
520     *     and ('and' is the default operator: you can always omit this)
521     *     or  (or pipe symbol '|', lower precedence than 'and')
522     *
523     * e.g. a query [ aa "bb cc" @dd:ee ] means "search pages which contain
524     *      a word 'aa', a phrase 'bb cc' and are within a namespace 'dd:ee'".
525     *      this query is equivalent to [ -(-aa or -"bb cc" or -ns:dd:ee) ]
526     *      as long as you don't mind hit counts.
527     *
528     * intermediate representation consists of the following parts:
529     *
530     *   ( )           - group
531     *   AND           - logical and
532     *   OR            - logical or
533     *   NOT           - logical not
534     *   W+:, W-:, W_: - word      (underscore: no need to highlight)
535     *   P+:, P-:      - phrase    (minus sign: logically in NOT group)
536     *   N+:, N-:      - namespace
537     */
538    $parsed_query = '';
539    $parens_level = 0;
540    $terms = preg_split('/(-?".*?")/u', utf8_strtolower($query), -1, PREG_SPLIT_DELIM_CAPTURE | PREG_SPLIT_NO_EMPTY);
541
542    foreach ($terms as $term) {
543        $parsed = '';
544        if (preg_match('/^(-?)"(.+)"$/u', $term, $matches)) {
545            // phrase-include and phrase-exclude
546            $not = $matches[1] ? 'NOT' : '';
547            $parsed = $not.ft_termParser($matches[2], $stopwords, false, true);
548        } else {
549            // fix incomplete phrase
550            $term = str_replace('"', ' ', $term);
551
552            // fix parentheses
553            $term = str_replace(')'  , ' ) ', $term);
554            $term = str_replace('('  , ' ( ', $term);
555            $term = str_replace('- (', ' -(', $term);
556
557            // treat pipe symbols as 'OR' operators
558            $term = str_replace('|', ' or ', $term);
559
560            // treat ideographic spaces (U+3000) as search term separators
561            // FIXME: some more separators?
562            $term = preg_replace('/[ \x{3000}]+/u', ' ',  $term);
563            $term = trim($term);
564            if ($term === '') continue;
565
566            $tokens = explode(' ', $term);
567            foreach ($tokens as $token) {
568                if ($token === '(') {
569                    // parenthesis-include-open
570                    $parsed .= '(';
571                    ++$parens_level;
572                } elseif ($token === '-(') {
573                    // parenthesis-exclude-open
574                    $parsed .= 'NOT(';
575                    ++$parens_level;
576                } elseif ($token === ')') {
577                    // parenthesis-any-close
578                    if ($parens_level === 0) continue;
579                    $parsed .= ')';
580                    $parens_level--;
581                } elseif ($token === 'and') {
582                    // logical-and (do nothing)
583                } elseif ($token === 'or') {
584                    // logical-or
585                    $parsed .= 'OR';
586                } elseif (preg_match('/^(?:\^|-ns:)(.+)$/u', $token, $matches)) {
587                    // namespace-exclude
588                    $parsed .= 'NOT(N+:'.$matches[1].')';
589                } elseif (preg_match('/^(?:@|ns:)(.+)$/u', $token, $matches)) {
590                    // namespace-include
591                    $parsed .= '(N+:'.$matches[1].')';
592                } elseif (preg_match('/^-(.+)$/', $token, $matches)) {
593                    // word-exclude
594                    $parsed .= 'NOT('.ft_termParser($matches[1], $stopwords).')';
595                } else {
596                    // word-include
597                    $parsed .= ft_termParser($token, $stopwords);
598                }
599            }
600        }
601        $parsed_query .= $parsed;
602    }
603
604    // cleanup (very sensitive)
605    $parsed_query .= str_repeat(')', $parens_level);
606    do {
607        $parsed_query_old = $parsed_query;
608        $parsed_query = preg_replace('/(NOT)?\(\)/u', '', $parsed_query);
609    } while ($parsed_query !== $parsed_query_old);
610    $parsed_query = preg_replace('/(NOT|OR)+\)/u', ')'      , $parsed_query);
611    $parsed_query = preg_replace('/(OR)+/u'      , 'OR'     , $parsed_query);
612    $parsed_query = preg_replace('/\(OR/u'       , '('      , $parsed_query);
613    $parsed_query = preg_replace('/^OR|OR$/u'    , ''       , $parsed_query);
614    $parsed_query = preg_replace('/\)(NOT)?\(/u' , ')AND$1(', $parsed_query);
615
616    // adjustment: make highlightings right
617    $parens_level     = 0;
618    $notgrp_levels    = array();
619    $parsed_query_new = '';
620    $tokens = preg_split('/(NOT\(|[()])/u', $parsed_query, -1, PREG_SPLIT_DELIM_CAPTURE | PREG_SPLIT_NO_EMPTY);
621    foreach ($tokens as $token) {
622        if ($token === 'NOT(') {
623            $notgrp_levels[] = ++$parens_level;
624        } elseif ($token === '(') {
625            ++$parens_level;
626        } elseif ($token === ')') {
627            if ($parens_level-- === end($notgrp_levels)) array_pop($notgrp_levels);
628        } elseif (count($notgrp_levels) % 2 === 1) {
629            // turn highlight-flag off if terms are logically in "NOT" group
630            $token = preg_replace('/([WPN])\+\:/u', '$1-:', $token);
631        }
632        $parsed_query_new .= $token;
633    }
634    $parsed_query = $parsed_query_new;
635
636    /**
637     * convert infix notation string into postfix (Reverse Polish notation) array
638     * by Shunting-yard algorithm
639     *
640     * see: http://en.wikipedia.org/wiki/Reverse_Polish_notation
641     * see: http://en.wikipedia.org/wiki/Shunting-yard_algorithm
642     */
643    $parsed_ary     = array();
644    $ope_stack      = array();
645    $ope_precedence = array(')' => 1, 'OR' => 2, 'AND' => 3, 'NOT' => 4, '(' => 5);
646    $ope_regex      = '/([()]|OR|AND|NOT)/u';
647
648    $tokens = preg_split($ope_regex, $parsed_query, -1, PREG_SPLIT_DELIM_CAPTURE | PREG_SPLIT_NO_EMPTY);
649    foreach ($tokens as $token) {
650        if (preg_match($ope_regex, $token)) {
651            // operator
652            $last_ope = end($ope_stack);
653            while ($ope_precedence[$token] <= $ope_precedence[$last_ope] && $last_ope != '(') {
654                $parsed_ary[] = array_pop($ope_stack);
655                $last_ope = end($ope_stack);
656            }
657            if ($token == ')') {
658                array_pop($ope_stack); // this array_pop always deletes '('
659            } else {
660                $ope_stack[] = $token;
661            }
662        } else {
663            // operand
664            $token_decoded = str_replace(array('OP', 'CP'), array('(', ')'), $token);
665            $parsed_ary[] = $token_decoded;
666        }
667    }
668    $parsed_ary = array_values(array_merge($parsed_ary, array_reverse($ope_stack)));
669
670    // cleanup: each double "NOT" in RPN array actually does nothing
671    $parsed_ary_count = count($parsed_ary);
672    for ($i = 1; $i < $parsed_ary_count; ++$i) {
673        if ($parsed_ary[$i] === 'NOT' && $parsed_ary[$i - 1] === 'NOT') {
674            unset($parsed_ary[$i], $parsed_ary[$i - 1]);
675        }
676    }
677    $parsed_ary = array_values($parsed_ary);
678
679    // build return value
680    $q = array();
681    $q['query']      = $query;
682    $q['parsed_str'] = $parsed_query;
683    $q['parsed_ary'] = $parsed_ary;
684
685    foreach ($q['parsed_ary'] as $token) {
686        if ($token[2] !== ':') continue;
687        $body = substr($token, 3);
688
689        switch (substr($token, 0, 3)) {
690            case 'N+:':
691                     $q['ns'][]        = $body; // for backward compatibility
692                     break;
693            case 'N-:':
694                     $q['notns'][]     = $body; // for backward compatibility
695                     break;
696            case 'W_:':
697                     $q['words'][]     = $body;
698                     break;
699            case 'W-:':
700                     $q['words'][]     = $body;
701                     $q['not'][]       = $body; // for backward compatibility
702                     break;
703            case 'W+:':
704                     $q['words'][]     = $body;
705                     $q['highlight'][] = $body;
706                     $q['and'][]       = $body; // for backward compatibility
707                     break;
708            case 'P-:':
709                     $q['phrases'][]   = $body;
710                     break;
711            case 'P+:':
712                     $q['phrases'][]   = $body;
713                     $q['highlight'][] = $body;
714                     break;
715        }
716    }
717    foreach (array('words', 'phrases', 'highlight', 'ns', 'notns', 'and', 'not') as $key) {
718        $q[$key] = empty($q[$key]) ? array() : array_values(array_unique($q[$key]));
719    }
720
721    return $q;
722}
723
724/**
725 * Transforms given search term into intermediate representation
726 *
727 * This function is used in ft_queryParser() and not for general purpose use.
728 *
729 * @author Kazutaka Miyasaka <kazmiya@gmail.com>
730 */
731function ft_termParser($term, &$stopwords, $consider_asian = true, $phrase_mode = false) {
732    $parsed = '';
733    if ($consider_asian) {
734        // successive asian characters need to be searched as a phrase
735        $words = preg_split('/('.IDX_ASIAN.'+)/u', $term, -1, PREG_SPLIT_DELIM_CAPTURE | PREG_SPLIT_NO_EMPTY);
736        foreach ($words as $word) {
737            if (preg_match('/'.IDX_ASIAN.'/u', $word)) $phrase_mode = true;
738            $parsed .= ft_termParser($word, $stopwords, false, $phrase_mode);
739        }
740    } else {
741        $term_noparen = str_replace(array('(', ')'), ' ', $term);
742        $words = idx_tokenizer($term_noparen, $stopwords, true);
743
744        // W_: no need to highlight
745        if (empty($words)) {
746            $parsed = '()'; // important: do not remove
747        } elseif ($words[0] === $term) {
748            $parsed = '(W+:'.$words[0].')';
749        } elseif ($phrase_mode) {
750            $term_encoded = str_replace(array('(', ')'), array('OP', 'CP'), $term);
751            $parsed = '((W_:'.implode(')(W_:', $words).')(P+:'.$term_encoded.'))';
752        } else {
753            $parsed = '((W+:'.implode(')(W+:', $words).'))';
754        }
755    }
756    return $parsed;
757}
758
759//Setup VIM: ex: et ts=4 enc=utf-8 :
760