xref: /dokuwiki/inc/search.php (revision 8451f4ad87cd104e80eb42532adebd7b2882e62e)
1ed7b5f09Sandi<?php
215fae107Sandi/**
315fae107Sandi * DokuWiki search functions
415fae107Sandi *
515fae107Sandi * @license    GPL 2 (http://www.gnu.org/licenses/gpl.html)
615fae107Sandi * @author     Andreas Gohr <andi@splitbrain.org>
715fae107Sandi */
8f3f0262cSandi
9fa8adffeSAndreas Gohrif(!defined('DOKU_INC')) die('meh.');
10f3f0262cSandi
11f3f0262cSandi/**
1215fae107Sandi * recurse direcory
1315fae107Sandi *
14f3f0262cSandi * This function recurses into a given base directory
15f3f0262cSandi * and calls the supplied function for each file and directory
1615fae107Sandi *
1724baa045SAndreas Gohr * @param   array ref $data The results of the search are stored here
1824baa045SAndreas Gohr * @param   string    $base Where to start the search
1924baa045SAndreas Gohr * @param   callback  $func Callback (function name or arayy with object,method)
2024baa045SAndreas Gohr * @param   string    $dir  Current directory beyond $base
2124baa045SAndreas Gohr * @param   int       $lvl  Recursion Level
2215fae107Sandi * @author  Andreas Gohr <andi@splitbrain.org>
23f3f0262cSandi */
24abc306f4SKate Arzamastsevafunction search(&$data,$base,$func,$opts,$dir='',$lvl=1,$sort=false){
25f3f0262cSandi    $dirs   = array();
26f3f0262cSandi    $files  = array();
27abc306f4SKate Arzamastseva    $filepaths = array();
28f3f0262cSandi
29f3f0262cSandi    //read in directories and files
30f3f0262cSandi    $dh = @opendir($base.'/'.$dir);
31f3f0262cSandi    if(!$dh) return;
32f3f0262cSandi    while(($file = readdir($dh)) !== false){
33de3dfc91Sandi        if(preg_match('/^[\._]/',$file)) continue; //skip hidden files and upper dirs
34f3f0262cSandi        if(is_dir($base.'/'.$dir.'/'.$file)){
35f3f0262cSandi            $dirs[] = $dir.'/'.$file;
36f3f0262cSandi            continue;
37f3f0262cSandi        }
38f3f0262cSandi        $files[] = $dir.'/'.$file;
39abc306f4SKate Arzamastseva        $filepaths[] = $base.'/'.$dir.'/'.$file;
40f3f0262cSandi    }
41f3f0262cSandi    closedir($dh);
42abc306f4SKate Arzamastseva    if ($sort == 'date') {
43d971ea8bSKate Arzamastseva        @array_multisort(array_map('filemtime', $filepaths), SORT_NUMERIC, SORT_DESC, $files);
44abc306f4SKate Arzamastseva    } else {
45f3f0262cSandi        sort($files);
46abc306f4SKate Arzamastseva    }
47f3f0262cSandi    sort($dirs);
48f3f0262cSandi
49f3f0262cSandi    //give directories to userfunction then recurse
50f3f0262cSandi    foreach($dirs as $dir){
51d8126df2SGina Haeussge        if (call_user_func_array($func, array(&$data,$base,$dir,'d',$lvl,$opts))){
52f3f0262cSandi            search($data,$base,$func,$opts,$dir,$lvl+1);
53f3f0262cSandi        }
54f3f0262cSandi    }
55f3f0262cSandi    //now handle the files
56f3f0262cSandi    foreach($files as $file){
57d8126df2SGina Haeussge        call_user_func_array($func, array(&$data,$base,$file,'f',$lvl,$opts));
58f3f0262cSandi    }
59f3f0262cSandi}
60f3f0262cSandi
61f3f0262cSandi/**
62d8126df2SGina Haeussge * Wrapper around call_user_func_array.
6324baa045SAndreas Gohr *
64d8126df2SGina Haeussge * @deprecated
6524baa045SAndreas Gohr */
6624baa045SAndreas Gohrfunction search_callback($func,&$data,$base,$file,$type,$lvl,$opts){
67d8126df2SGina Haeussge    return call_user_func_array($func, array(&$data,$base,$file,$type,$lvl,$opts));
6824baa045SAndreas Gohr}
6924baa045SAndreas Gohr
7024baa045SAndreas Gohr/**
71f3f0262cSandi * The following functions are userfunctions to use with the search
72f3f0262cSandi * function above. This function is called for every found file or
73f3f0262cSandi * directory. When a directory is given to the function it has to
74f3f0262cSandi * decide if this directory should be traversed (true) or not (false)
75f3f0262cSandi * The function has to accept the following parameters:
76f3f0262cSandi *
77f3f0262cSandi * &$data - Reference to the result data structure
78f3f0262cSandi * $base  - Base usually $conf['datadir']
79f3f0262cSandi * $file  - current file or directory relative to $base
80f3f0262cSandi * $type  - Type either 'd' for directory or 'f' for file
81f3f0262cSandi * $lvl   - Current recursion depht
82f3f0262cSandi * $opts  - option array as given to search()
83f3f0262cSandi *
84f3f0262cSandi * return values for files are ignored
85f3f0262cSandi *
86f3f0262cSandi * All functions should check the ACL for document READ rights
87783d2e49SAdrian Lang * namespaces (directories) are NOT checked (when sneaky_index is 0) as this
88783d2e49SAdrian Lang * would break the recursion (You can have an nonreadable dir over a readable
890e1a261eSMichael Klier * one deeper nested) also make sure to check the file type (for example
900e1a261eSMichael Klier * in case of lockfiles).
91f3f0262cSandi */
92f3f0262cSandi
93f3f0262cSandi/**
9463f2400bSandi * Searches for pages beginning with the given query
9563f2400bSandi *
9663f2400bSandi * @author Andreas Gohr <andi@splitbrain.org>
9763f2400bSandi */
9863f2400bSandifunction search_qsearch(&$data,$base,$file,$type,$lvl,$opts){
998705cc81SAndreas Gohr    $opts = array(
1008705cc81SAndreas Gohr            'idmatch'   => '(^|:)'.preg_quote($opts['query'],'/').'/',
1018705cc81SAndreas Gohr            'listfiles' => true,
1028705cc81SAndreas Gohr            'pagesonly' => true,
1038705cc81SAndreas Gohr            );
1048705cc81SAndreas Gohr    return search_universal($data,$base,$file,$type,$lvl,$opts);
10563f2400bSandi}
10663f2400bSandi
10763f2400bSandi/**
10815fae107Sandi * Build the browsable index of pages
109f3f0262cSandi *
110783d2e49SAdrian Lang * $opts['ns'] is the currently viewed namespace
11115fae107Sandi *
11215fae107Sandi * @author  Andreas Gohr <andi@splitbrain.org>
113f3f0262cSandi */
114f3f0262cSandifunction search_index(&$data,$base,$file,$type,$lvl,$opts){
115d1c7b6ecSAndreas Gohr    global $conf;
116783d2e49SAdrian Lang    $opts = array(
117783d2e49SAdrian Lang        'pagesonly' => true,
118783d2e49SAdrian Lang        'listdirs' => true,
119783d2e49SAdrian Lang        'listfiles' => !$opts['nofiles'],
120783d2e49SAdrian Lang        'sneakyacl' => $conf['sneaky_index'],
121783d2e49SAdrian Lang        // Hacky, should rather use recmatch
1221c6c1c6cSMichael Hamann        'depth' => preg_match('#^'.preg_quote($file, '#').'(/|$)#','/'.$opts['ns']) ? 0 : -1
123783d2e49SAdrian Lang    );
124f3f0262cSandi
125783d2e49SAdrian Lang    return search_universal($data, $base, $file, $type, $lvl, $opts);
126f3f0262cSandi}
127f3f0262cSandi
128f3f0262cSandi/**
12915fae107Sandi * List all namespaces
13015fae107Sandi *
13115fae107Sandi * @author  Andreas Gohr <andi@splitbrain.org>
132f3f0262cSandi */
133f3f0262cSandifunction search_namespaces(&$data,$base,$file,$type,$lvl,$opts){
1348705cc81SAndreas Gohr    $opts = array(
1358705cc81SAndreas Gohr            'listdirs' => true,
1368705cc81SAndreas Gohr            );
1378705cc81SAndreas Gohr    return search_universal($data,$base,$file,$type,$lvl,$opts);
138f3f0262cSandi}
139f3f0262cSandi
140f3f0262cSandi/**
14115fae107Sandi * List all mediafiles in a namespace
14215fae107Sandi *
14315fae107Sandi * @author  Andreas Gohr <andi@splitbrain.org>
144f3f0262cSandi */
145f3f0262cSandifunction search_media(&$data,$base,$file,$type,$lvl,$opts){
146b8219d2dSAndreas Gohr
147f3f0262cSandi    //we do nothing with directories
1481a49ac65SGina Haeussge    if($type == 'd') {
149224122cfSAndreas Gohr        if(!$opts['depth']) return true; // recurse forever
15078315408SAndreas Gohr        $depth = substr_count($file,'/');
151b8219d2dSAndreas Gohr        if($depth >= $opts['depth']) return false; // depth reached
152224122cfSAndreas Gohr        return true;
1531a49ac65SGina Haeussge    }
154f3f0262cSandi
155f3f0262cSandi    $info         = array();
156156a608cSandi    $info['id']   = pathID($file,true);
15764807c84SAndreas Gohr    if($info['id'] != cleanID($info['id'])){
15864807c84SAndreas Gohr        if($opts['showmsg'])
15964807c84SAndreas Gohr            msg(hsc($info['id']).' is not a valid file name for DokuWiki - skipped',-1);
16064807c84SAndreas Gohr        return false; // skip non-valid files
16164807c84SAndreas Gohr    }
162f3f0262cSandi
163f3f0262cSandi    //check ACL for namespace (we have no ACL for mediafiles)
164224122cfSAndreas Gohr    $info['perm'] = auth_quickaclcheck(getNS($info['id']).':*');
165224122cfSAndreas Gohr    if(!$opts['skipacl'] && $info['perm'] < AUTH_READ){
166224122cfSAndreas Gohr        return false;
167224122cfSAndreas Gohr    }
168224122cfSAndreas Gohr
169224122cfSAndreas Gohr    //check pattern filter
170224122cfSAndreas Gohr    if($opts['pattern'] && !@preg_match($opts['pattern'], $info['id'])){
171f3f0262cSandi        return false;
172f3f0262cSandi    }
173f3f0262cSandi
1743009a773SAndreas Gohr    $info['file']     = utf8_basename($file);
175f3f0262cSandi    $info['size']     = filesize($base.'/'.$file);
1765e7fa82eSAndreas Gohr    $info['mtime']    = filemtime($base.'/'.$file);
1773df72098SAndreas Gohr    $info['writable'] = is_writable($base.'/'.$file);
178f3f0262cSandi    if(preg_match("/\.(jpe?g|gif|png)$/",$file)){
179f3f0262cSandi        $info['isimg'] = true;
18023a34783SAndreas Gohr        $info['meta']  = new JpegMeta($base.'/'.$file);
181f3f0262cSandi    }else{
182f3f0262cSandi        $info['isimg'] = false;
183f3f0262cSandi    }
184224122cfSAndreas Gohr    if($opts['hash']){
185dfd343c4SAndreas Gohr        $info['hash'] = md5(io_readFile(mediaFN($info['id']),false));
186224122cfSAndreas Gohr    }
187224122cfSAndreas Gohr
188f3f0262cSandi    $data[] = $info;
189f3f0262cSandi
190f3f0262cSandi    return false;
191f3f0262cSandi}
192f3f0262cSandi
193f3f0262cSandi/**
194f3f0262cSandi * This function just lists documents (for RSS namespace export)
19515fae107Sandi *
19615fae107Sandi * @author  Andreas Gohr <andi@splitbrain.org>
197f3f0262cSandi */
198f3f0262cSandifunction search_list(&$data,$base,$file,$type,$lvl,$opts){
199f3f0262cSandi    //we do nothing with directories
200f3f0262cSandi    if($type == 'd') return false;
2010e1a261eSMichael Klier    //only search txt files
2020e1a261eSMichael Klier    if(substr($file,-4) == '.txt'){
203f3f0262cSandi        //check ACL
204f3f0262cSandi        $id = pathID($file);
205f3f0262cSandi        if(auth_quickaclcheck($id) < AUTH_READ){
206f3f0262cSandi            return false;
207f3f0262cSandi        }
2080e1a261eSMichael Klier        $data[]['id'] = $id;
209f3f0262cSandi    }
210f3f0262cSandi    return false;
211f3f0262cSandi}
212f3f0262cSandi
213f3f0262cSandi/**
214f3f0262cSandi * Quicksearch for searching matching pagenames
215f3f0262cSandi *
216f3f0262cSandi * $opts['query'] is the search query
21715fae107Sandi *
21815fae107Sandi * @author  Andreas Gohr <andi@splitbrain.org>
219f3f0262cSandi */
220f3f0262cSandifunction search_pagename(&$data,$base,$file,$type,$lvl,$opts){
221f3f0262cSandi    //we do nothing with directories
222f3f0262cSandi    if($type == 'd') return true;
223f3f0262cSandi    //only search txt files
2240e1a261eSMichael Klier    if(substr($file,-4) != '.txt') return true;
225f3f0262cSandi
226f3f0262cSandi    //simple stringmatching
227396b7edbSmatthiasgrimm    if (!empty($opts['query'])){
228f3f0262cSandi        if(strpos($file,$opts['query']) !== false){
229f3f0262cSandi            //check ACL
230f3f0262cSandi            $id = pathID($file);
231f3f0262cSandi            if(auth_quickaclcheck($id) < AUTH_READ){
232f3f0262cSandi                return false;
233f3f0262cSandi            }
234f3f0262cSandi            $data[]['id'] = $id;
235f3f0262cSandi        }
236396b7edbSmatthiasgrimm    }
237f3f0262cSandi    return true;
238f3f0262cSandi}
239f3f0262cSandi
240f3f0262cSandi/**
24158b6f612SAndreas Gohr * Just lists all documents
24258b6f612SAndreas Gohr *
2431fcfad4dSAndreas Gohr * $opts['depth']   recursion level, 0 for all
2441fcfad4dSAndreas Gohr * $opts['hash']    do md5 sum of content?
245224122cfSAndreas Gohr * $opts['skipacl'] list everything regardless of ACL
2461fcfad4dSAndreas Gohr *
24758b6f612SAndreas Gohr * @author  Andreas Gohr <andi@splitbrain.org>
24858b6f612SAndreas Gohr */
24958b6f612SAndreas Gohrfunction search_allpages(&$data,$base,$file,$type,$lvl,$opts){
250*8451f4adSGuillaume Turri    if(isset($opts['depth']) && $opts['depth']){
251c647387eSGuillaume Turri        $parts = explode('/',ltrim($file,'/'));
252c647387eSGuillaume Turri        if(($type == 'd' && count($parts) > $opts['depth'])
253c647387eSGuillaume Turri          || ($type != 'd' && count($parts) > $opts['depth'] + 1)){
254c647387eSGuillaume Turri            return false; // depth reached
255c647387eSGuillaume Turri        }
256c647387eSGuillaume Turri    }
257c647387eSGuillaume Turri
25858b6f612SAndreas Gohr    //we do nothing with directories
2591fcfad4dSAndreas Gohr    if($type == 'd'){
2601fcfad4dSAndreas Gohr        return true;
2611fcfad4dSAndreas Gohr    }
2621fcfad4dSAndreas Gohr
26358b6f612SAndreas Gohr    //only search txt files
2640e1a261eSMichael Klier    if(substr($file,-4) != '.txt') return true;
26558b6f612SAndreas Gohr
2661fcfad4dSAndreas Gohr    $item['id']   = pathID($file);
267061df79cSAndreas Gohr    if(!$opts['skipacl'] && auth_quickaclcheck($item['id']) < AUTH_READ){
2681fcfad4dSAndreas Gohr        return false;
2691fcfad4dSAndreas Gohr    }
2701fcfad4dSAndreas Gohr
2711fcfad4dSAndreas Gohr    $item['rev']   = filemtime($base.'/'.$file);
272224122cfSAndreas Gohr    $item['mtime'] = $item['rev'];
2731fcfad4dSAndreas Gohr    $item['size']  = filesize($base.'/'.$file);
2741fcfad4dSAndreas Gohr    if($opts['hash']){
2751fcfad4dSAndreas Gohr        $item['hash'] = md5(trim(rawWiki($item['id'])));
2761fcfad4dSAndreas Gohr    }
2771fcfad4dSAndreas Gohr
2781fcfad4dSAndreas Gohr    $data[] = $item;
27958b6f612SAndreas Gohr    return true;
28058b6f612SAndreas Gohr}
28158b6f612SAndreas Gohr
28258b6f612SAndreas Gohr/**
283f3f0262cSandi * Search for backlinks to a given page
284f3f0262cSandi *
285f3f0262cSandi * $opts['ns']    namespace of the page
286f3f0262cSandi * $opts['name']  name of the page without namespace
28715fae107Sandi *
28815fae107Sandi * @author  Andreas Gohr <andi@splitbrain.org>
28954f4c056SAndreas Gohr * @deprecated Replaced by ft_backlinks()
290f3f0262cSandi */
291f3f0262cSandifunction search_backlinks(&$data,$base,$file,$type,$lvl,$opts){
292f3f0262cSandi    //we do nothing with directories
2930e1a261eSMichael Klier    if($type == 'd') return true;
294f3f0262cSandi    //only search txt files
2950e1a261eSMichael Klier    if(substr($file,-4) != '.txt') return true;
296f3f0262cSandi
297f3f0262cSandi    //absolute search id
298f3f0262cSandi    $sid = cleanID($opts['ns'].':'.$opts['name']);
299f3f0262cSandi
30037e34a5eSandi    //current id and namespace
301f3f0262cSandi    $cid = pathID($file);
302f3f0262cSandi    $cns = getNS($cid);
303f3f0262cSandi
304f3f0262cSandi    //check ACL
305f3f0262cSandi    if(auth_quickaclcheck($cid) < AUTH_READ){
306f3f0262cSandi        return false;
307f3f0262cSandi    }
308f3f0262cSandi
30937e34a5eSandi    //fetch instructions
31037e34a5eSandi    $instructions = p_cached_instructions($base.$file,true);
31137e34a5eSandi    if(is_null($instructions)) return false;
312f3f0262cSandi
313de3eb1d7SAdrian Lang    global $conf;
31437e34a5eSandi    //check all links for match
31537e34a5eSandi    foreach($instructions as $ins){
31637e34a5eSandi        if($ins[0] == 'internallink' || ($conf['camelcase'] && $ins[0] == 'camelcaselink') ){
31737e34a5eSandi            $mid = $ins[1][0];
31837e34a5eSandi            resolve_pageid($cns,$mid,$exists); //exists is not used
319f3f0262cSandi            if($mid == $sid){
32037e34a5eSandi                //we have a match - finish
321f3f0262cSandi                $data[]['id'] = $cid;
322f3f0262cSandi                break;
323f3f0262cSandi            }
324f3f0262cSandi        }
325f3f0262cSandi    }
326f3f0262cSandi
32737e34a5eSandi    return false;
32837e34a5eSandi}
32937e34a5eSandi
330f3f0262cSandi/**
331f3f0262cSandi * Fulltextsearch
332f3f0262cSandi *
333f3f0262cSandi * $opts['query'] is the search query
33415fae107Sandi *
33515fae107Sandi * @author  Andreas Gohr <andi@splitbrain.org>
336506fa893SAndreas Gohr * @deprecated - fulltext indexer is used instead
337f3f0262cSandi */
338f3f0262cSandifunction search_fulltext(&$data,$base,$file,$type,$lvl,$opts){
339f3f0262cSandi    //we do nothing with directories
3400e1a261eSMichael Klier    if($type == 'd') return true;
341f3f0262cSandi    //only search txt files
3420e1a261eSMichael Klier    if(substr($file,-4) != '.txt') return true;
343f3f0262cSandi
344f3f0262cSandi    //check ACL
345f3f0262cSandi    $id = pathID($file);
346f3f0262cSandi    if(auth_quickaclcheck($id) < AUTH_READ){
347f3f0262cSandi        return false;
348f3f0262cSandi    }
349f3f0262cSandi
350f3f0262cSandi    //create regexp from queries
3515ef370d2Smatthiasgrimm    $poswords = array();
3525ef370d2Smatthiasgrimm    $negwords = array();
3535ef370d2Smatthiasgrimm    $qpreg = preg_split('/\s+/',$opts['query']);
3545ef370d2Smatthiasgrimm
3555ef370d2Smatthiasgrimm    foreach($qpreg as $word){
3565ef370d2Smatthiasgrimm        switch(substr($word,0,1)){
3575ef370d2Smatthiasgrimm            case '-':
358396b7edbSmatthiasgrimm                if(strlen($word) > 1){  // catch single '-'
3595ef370d2Smatthiasgrimm                    array_push($negwords,preg_quote(substr($word,1),'#'));
360396b7edbSmatthiasgrimm                }
3615ef370d2Smatthiasgrimm                break;
3625ef370d2Smatthiasgrimm            case '+':
363396b7edbSmatthiasgrimm                if(strlen($word) > 1){  // catch single '+'
3645ef370d2Smatthiasgrimm                    array_push($poswords,preg_quote(substr($word,1),'#'));
365396b7edbSmatthiasgrimm                }
3665ef370d2Smatthiasgrimm                break;
3675ef370d2Smatthiasgrimm            default:
3685ef370d2Smatthiasgrimm                array_push($poswords,preg_quote($word,'#'));
3695ef370d2Smatthiasgrimm                break;
3705ef370d2Smatthiasgrimm        }
3715ef370d2Smatthiasgrimm    }
372248a7321Smatthiasgrimm
373248a7321Smatthiasgrimm    // a search without any posword is useless
374248a7321Smatthiasgrimm    if (!count($poswords)) return true;
3755ef370d2Smatthiasgrimm
3765a5d942dSmatthiasgrimm    $reg  = '^(?=.*?'.join(')(?=.*?',$poswords).')';
3775ef370d2Smatthiasgrimm            $reg .= count($negwords) ? '((?!'.join('|',$negwords).').)*$' : '.*$';
378b59a406bSmatthiasgrimm            search_regex($data,$base,$file,$reg,$poswords);
379b59a406bSmatthiasgrimm            return true;
380b59a406bSmatthiasgrimm            }
381b59a406bSmatthiasgrimm
382b59a406bSmatthiasgrimm            /**
383b59a406bSmatthiasgrimm             * Reference search
384b59a406bSmatthiasgrimm             * This fuction searches for existing references to a given media file
385b59a406bSmatthiasgrimm             * and returns an array with the found pages. It doesn't pay any
386b59a406bSmatthiasgrimm             * attention to ACL permissions to find every reference. The caller
387b59a406bSmatthiasgrimm             * must check if the user has the appropriate rights to see the found
388b59a406bSmatthiasgrimm             * page and eventually have to prevent the result from displaying.
389b59a406bSmatthiasgrimm             *
390b59a406bSmatthiasgrimm             * @param array  $data Reference to the result data structure
391b59a406bSmatthiasgrimm             * @param string $base Base usually $conf['datadir']
392b59a406bSmatthiasgrimm             * @param string $file current file or directory relative to $base
393b59a406bSmatthiasgrimm             * @param char   $type Type either 'd' for directory or 'f' for file
394b59a406bSmatthiasgrimm             * @param int    $lvl  Current recursion depht
395b59a406bSmatthiasgrimm             * @param mixed  $opts option array as given to search()
396b59a406bSmatthiasgrimm             *
397b59a406bSmatthiasgrimm             * $opts['query'] is the demanded media file name
398b59a406bSmatthiasgrimm             *
399b59a406bSmatthiasgrimm             * @author  Andreas Gohr <andi@splitbrain.org>
400b59a406bSmatthiasgrimm             * @author  Matthias Grimm <matthiasgrimm@users.sourceforge.net>
401b59a406bSmatthiasgrimm             */
402b59a406bSmatthiasgrimmfunction search_reference(&$data,$base,$file,$type,$lvl,$opts){
403b59a406bSmatthiasgrimm    global $conf;
404b59a406bSmatthiasgrimm
405b59a406bSmatthiasgrimm    //we do nothing with directories
406b59a406bSmatthiasgrimm    if($type == 'd') return true;
407b59a406bSmatthiasgrimm
408b59a406bSmatthiasgrimm    //only search txt files
4090e1a261eSMichael Klier    if(substr($file,-4) != '.txt') return true;
410b59a406bSmatthiasgrimm
411e28299ccSmatthiasgrimm    //we finish after 'cnt' references found. The return value
412b59a406bSmatthiasgrimm    //'false' will skip subdirectories to speed search up.
413e28299ccSmatthiasgrimm    $cnt = $conf['refshow'] > 0 ? $conf['refshow'] : 1;
414e28299ccSmatthiasgrimm    if(count($data) >= $cnt) return false;
415b59a406bSmatthiasgrimm
416d67ca2c0Smatthiasgrimm    $reg = '\{\{ *\:?'.$opts['query'].' *(\|.*)?\}\}';
417b59a406bSmatthiasgrimm    search_regex($data,$base,$file,$reg,array($opts['query']));
418b59a406bSmatthiasgrimm    return true;
419b59a406bSmatthiasgrimm}
420b59a406bSmatthiasgrimm
421b59a406bSmatthiasgrimm/* ------------- helper functions below -------------- */
422b59a406bSmatthiasgrimm
423b59a406bSmatthiasgrimm/**
424b59a406bSmatthiasgrimm * fulltext search helper
425b59a406bSmatthiasgrimm * searches a text file with a given regular expression
426b59a406bSmatthiasgrimm * no ACL checks are performed. This have to be done by
427b59a406bSmatthiasgrimm * the caller if necessary.
428b59a406bSmatthiasgrimm *
429b59a406bSmatthiasgrimm * @param array  $data  reference to array for results
430b59a406bSmatthiasgrimm * @param string $base  base directory
431b59a406bSmatthiasgrimm * @param string $file  file name to search in
432b59a406bSmatthiasgrimm * @param string $reg   regular expression to search for
433b59a406bSmatthiasgrimm * @param array  $words words that should be marked in the results
434b59a406bSmatthiasgrimm *
435b59a406bSmatthiasgrimm * @author  Andreas Gohr <andi@splitbrain.org>
436b59a406bSmatthiasgrimm * @author  Matthias Grimm <matthiasgrimm@users.sourceforge.net>
437506fa893SAndreas Gohr *
438506fa893SAndreas Gohr * @deprecated - fulltext indexer is used instead
439b59a406bSmatthiasgrimm */
440b59a406bSmatthiasgrimmfunction search_regex(&$data,$base,$file,$reg,$words){
441b59a406bSmatthiasgrimm
442b59a406bSmatthiasgrimm    //get text
443b59a406bSmatthiasgrimm    $text = io_readfile($base.'/'.$file);
444b59a406bSmatthiasgrimm    //lowercase text (u modifier does not help with case)
445b59a406bSmatthiasgrimm    $lctext = utf8_strtolower($text);
446f3f0262cSandi
447f3f0262cSandi    //do the fulltext search
448f3f0262cSandi    $matches = array();
4495ef370d2Smatthiasgrimm    if($cnt = preg_match_all('#'.$reg.'#usi',$lctext,$matches)){
450f3f0262cSandi        //this is not the best way for snippet generation but the fastest I could find
451b59a406bSmatthiasgrimm        $q = $words[0];  //use first word for snippet creation
452d5a2a500Sandi        $p = utf8_strpos($lctext,$q);
453f3f0262cSandi        $f = $p - 100;
454d5a2a500Sandi        $l = utf8_strlen($q) + 200;
455f3f0262cSandi        if($f < 0) $f = 0;
456f3f0262cSandi        $snippet = '<span class="search_sep"> ... </span>'.
457d5a2a500Sandi            htmlspecialchars(utf8_substr($text,$f,$l)).
458f3f0262cSandi            '<span class="search_sep"> ... </span>';
459b59a406bSmatthiasgrimm        $mark    = '('.join('|', $words).')';
460ed7ecb79SAnika Henke        $snippet = preg_replace('#'.$mark.'#si','<strong class="search_hit">\\1</strong>',$snippet);
461f3f0262cSandi
462f3f0262cSandi        $data[] = array(
463b59a406bSmatthiasgrimm                'id'       => pathID($file),
4645ef370d2Smatthiasgrimm                'count'    => preg_match_all('#'.$mark.'#usi',$lctext,$matches),
465b59a406bSmatthiasgrimm                'poswords' => join(' ',$words),
466f3f0262cSandi                'snippet'  => $snippet,
467f3f0262cSandi                );
468f3f0262cSandi    }
469f3f0262cSandi
470f3f0262cSandi    return true;
471f3f0262cSandi}
472f3f0262cSandi
473b59a406bSmatthiasgrimm
474f3f0262cSandi/**
47515fae107Sandi * fulltext sort
47615fae107Sandi *
477f3f0262cSandi * Callback sort function for use with usort to sort the data
478f3f0262cSandi * structure created by search_fulltext. Sorts descending by count
47915fae107Sandi *
48015fae107Sandi * @author  Andreas Gohr <andi@splitbrain.org>
481f3f0262cSandi */
482f3f0262cSandifunction sort_search_fulltext($a,$b){
483f3f0262cSandi    if($a['count'] > $b['count']){
484f3f0262cSandi        return -1;
485f3f0262cSandi    }elseif($a['count'] < $b['count']){
486f3f0262cSandi        return 1;
487f3f0262cSandi    }else{
488f3f0262cSandi        return strcmp($a['id'],$b['id']);
489f3f0262cSandi    }
490f3f0262cSandi}
491f3f0262cSandi
492f3f0262cSandi/**
493f3f0262cSandi * translates a document path to an ID
49415fae107Sandi *
49515fae107Sandi * @author  Andreas Gohr <andi@splitbrain.org>
49637e34a5eSandi * @todo    move to pageutils
497f3f0262cSandi */
498156a608cSandifunction pathID($path,$keeptxt=false){
49949c713a3Sandi    $id = utf8_decodeFN($path);
50049c713a3Sandi    $id = str_replace('/',':',$id);
501156a608cSandi    if(!$keeptxt) $id = preg_replace('#\.txt$#','',$id);
502709b1063SAdrian Lang    $id = trim($id, ':');
503f3f0262cSandi    return $id;
504f3f0262cSandi}
505f3f0262cSandi
506340756e4Sandi
5073abeade3SAndreas Gohr/**
5083abeade3SAndreas Gohr * This is a very universal callback for the search() function, replacing
5093abeade3SAndreas Gohr * many of the former individual functions at the cost of a more complex
5103abeade3SAndreas Gohr * setup.
5113abeade3SAndreas Gohr *
5123abeade3SAndreas Gohr * How the function behaves, depends on the options passed in the $opts
5133abeade3SAndreas Gohr * array, where the following settings can be used.
5143abeade3SAndreas Gohr *
5153abeade3SAndreas Gohr * depth      int     recursion depth. 0 for unlimited
5163abeade3SAndreas Gohr * keeptxt    bool    keep .txt extension for IDs
5173abeade3SAndreas Gohr * listfiles  bool    include files in listing
5183abeade3SAndreas Gohr * listdirs   bool    include namespaces in listing
5193abeade3SAndreas Gohr * pagesonly  bool    restrict files to pages
5203abeade3SAndreas Gohr * skipacl    bool    do not check for READ permission
5213abeade3SAndreas Gohr * sneakyacl  bool    don't recurse into nonreadable dirs
5223abeade3SAndreas Gohr * hash       bool    create MD5 hash for files
5233abeade3SAndreas Gohr * meta       bool    return file metadata
5243abeade3SAndreas Gohr * filematch  string  match files against this regexp
5258705cc81SAndreas Gohr * idmatch    string  match full ID against this regexp
5268705cc81SAndreas Gohr * dirmatch   string  match directory against this regexp when adding
5278705cc81SAndreas Gohr * nsmatch    string  match namespace against this regexp when adding
5288705cc81SAndreas Gohr * recmatch   string  match directory against this regexp when recursing
5293abeade3SAndreas Gohr * showmsg    bool    warn about non-ID files
5303abeade3SAndreas Gohr * showhidden bool    show hidden files too
5313abeade3SAndreas Gohr * firsthead  bool    return first heading for pages
5323abeade3SAndreas Gohr *
5333abeade3SAndreas Gohr * @author Andreas Gohr <gohr@cosmocode.de>
5343abeade3SAndreas Gohr */
5353abeade3SAndreas Gohrfunction search_universal(&$data,$base,$file,$type,$lvl,$opts){
5363abeade3SAndreas Gohr    $item   = array();
5373abeade3SAndreas Gohr    $return = true;
5383abeade3SAndreas Gohr
5393abeade3SAndreas Gohr    // get ID and check if it is a valid one
540e63d421bSAndreas Gohr    $item['id'] = pathID($file,($type == 'd' || $opts['keeptxt']));
5418537abd1SAdrian Lang    if($item['id'] != cleanID($item['id'])){
5423abeade3SAndreas Gohr        if($opts['showmsg'])
5438537abd1SAdrian Lang            msg(hsc($item['id']).' is not a valid file name for DokuWiki - skipped',-1);
5443abeade3SAndreas Gohr        return false; // skip non-valid files
5453abeade3SAndreas Gohr    }
5468705cc81SAndreas Gohr    $item['ns']  = getNS($item['id']);
5473abeade3SAndreas Gohr
5483abeade3SAndreas Gohr    if($type == 'd') {
5493abeade3SAndreas Gohr        // decide if to recursion into this directory is wanted
5503abeade3SAndreas Gohr        if(!$opts['depth']){
5513abeade3SAndreas Gohr            $return = true; // recurse forever
5523abeade3SAndreas Gohr        }else{
5533abeade3SAndreas Gohr            $depth = substr_count($file,'/');
5543abeade3SAndreas Gohr            if($depth >= $opts['depth']){
5553abeade3SAndreas Gohr                $return = false; // depth reached
5563abeade3SAndreas Gohr            }else{
5573abeade3SAndreas Gohr                $return = true;
5583abeade3SAndreas Gohr            }
5593abeade3SAndreas Gohr        }
5603abeade3SAndreas Gohr        if($return && !preg_match('/'.$opts['recmatch'].'/',$file)){
5613abeade3SAndreas Gohr            $return = false; // doesn't match
5623abeade3SAndreas Gohr        }
5633abeade3SAndreas Gohr    }
5643abeade3SAndreas Gohr
5653abeade3SAndreas Gohr    // check ACL
5663abeade3SAndreas Gohr    if(!$opts['skipacl']){
5673abeade3SAndreas Gohr        if($type == 'd'){
5683abeade3SAndreas Gohr            $item['perm'] = auth_quickaclcheck($item['id'].':*');
5693abeade3SAndreas Gohr        }else{
5703abeade3SAndreas Gohr            $item['perm'] = auth_quickaclcheck($item['id']); //FIXME check namespace for media files
5713abeade3SAndreas Gohr        }
5723abeade3SAndreas Gohr    }else{
5733abeade3SAndreas Gohr        $item['perm'] = AUTH_DELETE;
5743abeade3SAndreas Gohr    }
5753abeade3SAndreas Gohr
5763abeade3SAndreas Gohr    // are we done here maybe?
5773abeade3SAndreas Gohr    if($type == 'd'){
5783abeade3SAndreas Gohr        if(!$opts['listdirs']) return $return;
5793abeade3SAndreas Gohr        if(!$opts['skipacl'] && $opts['sneakyacl'] && $item['perm'] < AUTH_READ) return false; //neither list nor recurse
5803abeade3SAndreas Gohr        if($opts['dirmatch'] && !preg_match('/'.$opts['dirmatch'].'/',$file)) return $return;
5818705cc81SAndreas Gohr        if($opts['nsmatch'] && !preg_match('/'.$opts['nsmatch'].'/',$item['ns'])) return $return;
5823abeade3SAndreas Gohr    }else{
5833abeade3SAndreas Gohr        if(!$opts['listfiles']) return $return;
5843abeade3SAndreas Gohr        if(!$opts['skipacl'] && $item['perm'] < AUTH_READ) return $return;
5853abeade3SAndreas Gohr        if($opts['pagesonly'] && (substr($file,-4) != '.txt')) return $return;
586de3eb1d7SAdrian Lang        if(!$opts['showhidden'] && isHiddenPage($item['id'])) return $return;
5873abeade3SAndreas Gohr        if($opts['filematch'] && !preg_match('/'.$opts['filematch'].'/',$file)) return $return;
5888705cc81SAndreas Gohr        if($opts['idmatch'] && !preg_match('/'.$opts['idmatch'].'/',$item['id'])) return $return;
5893abeade3SAndreas Gohr    }
5903abeade3SAndreas Gohr
5913abeade3SAndreas Gohr    // still here? prepare the item
5923abeade3SAndreas Gohr    $item['type']  = $type;
59332d6093dSAndreas Gohr    $item['level'] = $lvl;
5943abeade3SAndreas Gohr    $item['open']  = $return;
5953abeade3SAndreas Gohr
5963abeade3SAndreas Gohr    if($opts['meta']){
5973009a773SAndreas Gohr        $item['file']       = utf8_basename($file);
5983abeade3SAndreas Gohr        $item['size']       = filesize($base.'/'.$file);
5993abeade3SAndreas Gohr        $item['mtime']      = filemtime($base.'/'.$file);
6003abeade3SAndreas Gohr        $item['rev']        = $item['mtime'];
6013abeade3SAndreas Gohr        $item['writable']   = is_writable($base.'/'.$file);
6023abeade3SAndreas Gohr        $item['executable'] = is_executable($base.'/'.$file);
6033abeade3SAndreas Gohr    }
6043abeade3SAndreas Gohr
6053abeade3SAndreas Gohr    if($type == 'f'){
6063abeade3SAndreas Gohr        if($opts['hash']) $item['hash'] = md5(io_readFile($base.'/'.$file,false));
60767c15eceSMichael Hamann        if($opts['firsthead']) $item['title'] = p_get_first_heading($item['id'],METADATA_DONT_RENDER);
6083abeade3SAndreas Gohr    }
6093abeade3SAndreas Gohr
6103abeade3SAndreas Gohr    // finally add the item
6113abeade3SAndreas Gohr    $data[] = $item;
6123abeade3SAndreas Gohr    return $return;
6133abeade3SAndreas Gohr}
6143abeade3SAndreas Gohr
615e3776c06SMichael Hamann//Setup VIM: ex: et ts=4 :
616