xref: /dokuwiki/inc/search.php (revision 783d2e49b2d8e12ed3bc0693b56c013215099a4c)
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 */
24f3f0262cSandifunction search(&$data,$base,$func,$opts,$dir='',$lvl=1){
25f3f0262cSandi    $dirs   = array();
26f3f0262cSandi    $files  = array();
27f3f0262cSandi
28f3f0262cSandi    //read in directories and files
29f3f0262cSandi    $dh = @opendir($base.'/'.$dir);
30f3f0262cSandi    if(!$dh) return;
31f3f0262cSandi    while(($file = readdir($dh)) !== false){
32de3dfc91Sandi        if(preg_match('/^[\._]/',$file)) continue; //skip hidden files and upper dirs
33f3f0262cSandi        if(is_dir($base.'/'.$dir.'/'.$file)){
34f3f0262cSandi            $dirs[] = $dir.'/'.$file;
35f3f0262cSandi            continue;
36f3f0262cSandi        }
37f3f0262cSandi        $files[] = $dir.'/'.$file;
38f3f0262cSandi    }
39f3f0262cSandi    closedir($dh);
40f3f0262cSandi    sort($files);
41f3f0262cSandi    sort($dirs);
42f3f0262cSandi
43f3f0262cSandi    //give directories to userfunction then recurse
44f3f0262cSandi    foreach($dirs as $dir){
45d8126df2SGina Haeussge        if (call_user_func_array($func, array(&$data,$base,$dir,'d',$lvl,$opts))){
46f3f0262cSandi            search($data,$base,$func,$opts,$dir,$lvl+1);
47f3f0262cSandi        }
48f3f0262cSandi    }
49f3f0262cSandi    //now handle the files
50f3f0262cSandi    foreach($files as $file){
51d8126df2SGina Haeussge        call_user_func_array($func, array(&$data,$base,$file,'f',$lvl,$opts));
52f3f0262cSandi    }
53f3f0262cSandi}
54f3f0262cSandi
55f3f0262cSandi/**
56d8126df2SGina Haeussge * Wrapper around call_user_func_array.
5724baa045SAndreas Gohr *
58d8126df2SGina Haeussge * @deprecated
5924baa045SAndreas Gohr */
6024baa045SAndreas Gohrfunction search_callback($func,&$data,$base,$file,$type,$lvl,$opts){
61d8126df2SGina Haeussge    return call_user_func_array($func, array(&$data,$base,$file,$type,$lvl,$opts));
6224baa045SAndreas Gohr}
6324baa045SAndreas Gohr
6424baa045SAndreas Gohr/**
65f3f0262cSandi * The following functions are userfunctions to use with the search
66f3f0262cSandi * function above. This function is called for every found file or
67f3f0262cSandi * directory. When a directory is given to the function it has to
68f3f0262cSandi * decide if this directory should be traversed (true) or not (false)
69f3f0262cSandi * The function has to accept the following parameters:
70f3f0262cSandi *
71f3f0262cSandi * &$data - Reference to the result data structure
72f3f0262cSandi * $base  - Base usually $conf['datadir']
73f3f0262cSandi * $file  - current file or directory relative to $base
74f3f0262cSandi * $type  - Type either 'd' for directory or 'f' for file
75f3f0262cSandi * $lvl   - Current recursion depht
76f3f0262cSandi * $opts  - option array as given to search()
77f3f0262cSandi *
78f3f0262cSandi * return values for files are ignored
79f3f0262cSandi *
80f3f0262cSandi * All functions should check the ACL for document READ rights
81*783d2e49SAdrian Lang * namespaces (directories) are NOT checked (when sneaky_index is 0) as this
82*783d2e49SAdrian Lang * would break the recursion (You can have an nonreadable dir over a readable
830e1a261eSMichael Klier * one deeper nested) also make sure to check the file type (for example
840e1a261eSMichael Klier * in case of lockfiles).
85f3f0262cSandi */
86f3f0262cSandi
87f3f0262cSandi/**
8863f2400bSandi * Searches for pages beginning with the given query
8963f2400bSandi *
9063f2400bSandi * @author Andreas Gohr <andi@splitbrain.org>
9163f2400bSandi */
9263f2400bSandifunction search_qsearch(&$data,$base,$file,$type,$lvl,$opts){
938705cc81SAndreas Gohr    $opts = array(
948705cc81SAndreas Gohr            'idmatch'   => '(^|:)'.preg_quote($opts['query'],'/').'/',
958705cc81SAndreas Gohr            'listfiles' => true,
968705cc81SAndreas Gohr            'pagesonly' => true,
978705cc81SAndreas Gohr            );
988705cc81SAndreas Gohr    return search_universal($data,$base,$file,$type,$lvl,$opts);
9963f2400bSandi}
10063f2400bSandi
10163f2400bSandi/**
10215fae107Sandi * Build the browsable index of pages
103f3f0262cSandi *
104*783d2e49SAdrian Lang * $opts['ns'] is the currently viewed namespace
10515fae107Sandi *
10615fae107Sandi * @author  Andreas Gohr <andi@splitbrain.org>
107f3f0262cSandi */
108f3f0262cSandifunction search_index(&$data,$base,$file,$type,$lvl,$opts){
109d1c7b6ecSAndreas Gohr    global $conf;
110*783d2e49SAdrian Lang    $opts = array(
111*783d2e49SAdrian Lang        'pagesonly' => true,
112*783d2e49SAdrian Lang        'listdirs' => true,
113*783d2e49SAdrian Lang        'listfiles' => !$opts['nofiles'],
114*783d2e49SAdrian Lang        'sneakyacl' => $conf['sneaky_index'],
115*783d2e49SAdrian Lang        // Hacky, should rather use recmatch
116*783d2e49SAdrian Lang        'depth' => preg_match('#^'.$file.'(/|$)#','/'.$opts['ns']) ? 0 : -1
117*783d2e49SAdrian Lang    );
118f3f0262cSandi
119*783d2e49SAdrian Lang    return search_universal($data, $base, $file, $type, $lvl, $opts);
120f3f0262cSandi}
121f3f0262cSandi
122f3f0262cSandi/**
12315fae107Sandi * List all namespaces
12415fae107Sandi *
12515fae107Sandi * @author  Andreas Gohr <andi@splitbrain.org>
126f3f0262cSandi */
127f3f0262cSandifunction search_namespaces(&$data,$base,$file,$type,$lvl,$opts){
1288705cc81SAndreas Gohr    $opts = array(
1298705cc81SAndreas Gohr            'listdirs' => true,
1308705cc81SAndreas Gohr            );
1318705cc81SAndreas Gohr    return search_universal($data,$base,$file,$type,$lvl,$opts);
132f3f0262cSandi}
133f3f0262cSandi
134f3f0262cSandi/**
13515fae107Sandi * List all mediafiles in a namespace
13615fae107Sandi *
13715fae107Sandi * @author  Andreas Gohr <andi@splitbrain.org>
138f3f0262cSandi */
139f3f0262cSandifunction search_media(&$data,$base,$file,$type,$lvl,$opts){
140b8219d2dSAndreas Gohr
141f3f0262cSandi    //we do nothing with directories
1421a49ac65SGina Haeussge    if($type == 'd') {
143224122cfSAndreas Gohr        if(!$opts['depth']) return true; // recurse forever
14478315408SAndreas Gohr        $depth = substr_count($file,'/');
145b8219d2dSAndreas Gohr        if($depth >= $opts['depth']) return false; // depth reached
146224122cfSAndreas Gohr        return true;
1471a49ac65SGina Haeussge    }
148f3f0262cSandi
149f3f0262cSandi    $info         = array();
150156a608cSandi    $info['id']   = pathID($file,true);
15164807c84SAndreas Gohr    if($info['id'] != cleanID($info['id'])){
15264807c84SAndreas Gohr        if($opts['showmsg'])
15364807c84SAndreas Gohr            msg(hsc($info['id']).' is not a valid file name for DokuWiki - skipped',-1);
15464807c84SAndreas Gohr        return false; // skip non-valid files
15564807c84SAndreas Gohr    }
156f3f0262cSandi
157f3f0262cSandi    //check ACL for namespace (we have no ACL for mediafiles)
158224122cfSAndreas Gohr    $info['perm'] = auth_quickaclcheck(getNS($info['id']).':*');
159224122cfSAndreas Gohr    if(!$opts['skipacl'] && $info['perm'] < AUTH_READ){
160224122cfSAndreas Gohr        return false;
161224122cfSAndreas Gohr    }
162224122cfSAndreas Gohr
163224122cfSAndreas Gohr    //check pattern filter
164224122cfSAndreas Gohr    if($opts['pattern'] && !@preg_match($opts['pattern'], $info['id'])){
165f3f0262cSandi        return false;
166f3f0262cSandi    }
167f3f0262cSandi
168f3f0262cSandi    $info['file']     = basename($file);
169f3f0262cSandi    $info['size']     = filesize($base.'/'.$file);
1705e7fa82eSAndreas Gohr    $info['mtime']    = filemtime($base.'/'.$file);
1713df72098SAndreas Gohr    $info['writable'] = is_writable($base.'/'.$file);
172f3f0262cSandi    if(preg_match("/\.(jpe?g|gif|png)$/",$file)){
173f3f0262cSandi        $info['isimg'] = true;
17423a34783SAndreas Gohr        $info['meta']  = new JpegMeta($base.'/'.$file);
175f3f0262cSandi    }else{
176f3f0262cSandi        $info['isimg'] = false;
177f3f0262cSandi    }
178224122cfSAndreas Gohr    if($opts['hash']){
179dfd343c4SAndreas Gohr        $info['hash'] = md5(io_readFile(mediaFN($info['id']),false));
180224122cfSAndreas Gohr    }
181224122cfSAndreas Gohr
182f3f0262cSandi    $data[] = $info;
183f3f0262cSandi
184f3f0262cSandi    return false;
185f3f0262cSandi}
186f3f0262cSandi
187f3f0262cSandi/**
188f3f0262cSandi * This function just lists documents (for RSS namespace export)
18915fae107Sandi *
19015fae107Sandi * @author  Andreas Gohr <andi@splitbrain.org>
191f3f0262cSandi */
192f3f0262cSandifunction search_list(&$data,$base,$file,$type,$lvl,$opts){
193f3f0262cSandi    //we do nothing with directories
194f3f0262cSandi    if($type == 'd') return false;
1950e1a261eSMichael Klier    //only search txt files
1960e1a261eSMichael Klier    if(substr($file,-4) == '.txt'){
197f3f0262cSandi        //check ACL
198f3f0262cSandi        $id = pathID($file);
199f3f0262cSandi        if(auth_quickaclcheck($id) < AUTH_READ){
200f3f0262cSandi            return false;
201f3f0262cSandi        }
2020e1a261eSMichael Klier        $data[]['id'] = $id;
203f3f0262cSandi    }
204f3f0262cSandi    return false;
205f3f0262cSandi}
206f3f0262cSandi
207f3f0262cSandi/**
208f3f0262cSandi * Quicksearch for searching matching pagenames
209f3f0262cSandi *
210f3f0262cSandi * $opts['query'] is the search query
21115fae107Sandi *
21215fae107Sandi * @author  Andreas Gohr <andi@splitbrain.org>
213f3f0262cSandi */
214f3f0262cSandifunction search_pagename(&$data,$base,$file,$type,$lvl,$opts){
215f3f0262cSandi    //we do nothing with directories
216f3f0262cSandi    if($type == 'd') return true;
217f3f0262cSandi    //only search txt files
2180e1a261eSMichael Klier    if(substr($file,-4) != '.txt') return true;
219f3f0262cSandi
220f3f0262cSandi    //simple stringmatching
221396b7edbSmatthiasgrimm    if (!empty($opts['query'])){
222f3f0262cSandi        if(strpos($file,$opts['query']) !== false){
223f3f0262cSandi            //check ACL
224f3f0262cSandi            $id = pathID($file);
225f3f0262cSandi            if(auth_quickaclcheck($id) < AUTH_READ){
226f3f0262cSandi                return false;
227f3f0262cSandi            }
228f3f0262cSandi            $data[]['id'] = $id;
229f3f0262cSandi        }
230396b7edbSmatthiasgrimm    }
231f3f0262cSandi    return true;
232f3f0262cSandi}
233f3f0262cSandi
234f3f0262cSandi/**
23558b6f612SAndreas Gohr * Just lists all documents
23658b6f612SAndreas Gohr *
2371fcfad4dSAndreas Gohr * $opts['depth']   recursion level, 0 for all
2381fcfad4dSAndreas Gohr * $opts['hash']    do md5 sum of content?
239224122cfSAndreas Gohr * $opts['skipacl'] list everything regardless of ACL
2401fcfad4dSAndreas Gohr *
24158b6f612SAndreas Gohr * @author  Andreas Gohr <andi@splitbrain.org>
24258b6f612SAndreas Gohr */
24358b6f612SAndreas Gohrfunction search_allpages(&$data,$base,$file,$type,$lvl,$opts){
24458b6f612SAndreas Gohr    //we do nothing with directories
2451fcfad4dSAndreas Gohr    if($type == 'd'){
2461fcfad4dSAndreas Gohr        if(!$opts['depth']) return true; // recurse forever
24717ff9c04SAndreas Gohr        $parts = explode('/',ltrim($file,'/'));
2481fcfad4dSAndreas Gohr        if(count($parts) == $opts['depth']) return false; // depth reached
2491fcfad4dSAndreas Gohr        return true;
2501fcfad4dSAndreas Gohr    }
2511fcfad4dSAndreas Gohr
25258b6f612SAndreas Gohr    //only search txt files
2530e1a261eSMichael Klier    if(substr($file,-4) != '.txt') return true;
25458b6f612SAndreas Gohr
2551fcfad4dSAndreas Gohr    $item['id']   = pathID($file);
256061df79cSAndreas Gohr    if(!$opts['skipacl'] && auth_quickaclcheck($item['id']) < AUTH_READ){
2571fcfad4dSAndreas Gohr        return false;
2581fcfad4dSAndreas Gohr    }
2591fcfad4dSAndreas Gohr
2601fcfad4dSAndreas Gohr    $item['rev']   = filemtime($base.'/'.$file);
261224122cfSAndreas Gohr    $item['mtime'] = $item['rev'];
2621fcfad4dSAndreas Gohr    $item['size']  = filesize($base.'/'.$file);
2631fcfad4dSAndreas Gohr    if($opts['hash']){
2641fcfad4dSAndreas Gohr        $item['hash'] = md5(trim(rawWiki($item['id'])));
2651fcfad4dSAndreas Gohr    }
2661fcfad4dSAndreas Gohr
2671fcfad4dSAndreas Gohr    $data[] = $item;
26858b6f612SAndreas Gohr    return true;
26958b6f612SAndreas Gohr}
27058b6f612SAndreas Gohr
27158b6f612SAndreas Gohr/**
272f3f0262cSandi * Search for backlinks to a given page
273f3f0262cSandi *
274f3f0262cSandi * $opts['ns']    namespace of the page
275f3f0262cSandi * $opts['name']  name of the page without namespace
27615fae107Sandi *
27715fae107Sandi * @author  Andreas Gohr <andi@splitbrain.org>
27854f4c056SAndreas Gohr * @deprecated Replaced by ft_backlinks()
279f3f0262cSandi */
280f3f0262cSandifunction search_backlinks(&$data,$base,$file,$type,$lvl,$opts){
281f3f0262cSandi    //we do nothing with directories
2820e1a261eSMichael Klier    if($type == 'd') return true;
283f3f0262cSandi    //only search txt files
2840e1a261eSMichael Klier    if(substr($file,-4) != '.txt') return true;
285f3f0262cSandi
286f3f0262cSandi    //absolute search id
287f3f0262cSandi    $sid = cleanID($opts['ns'].':'.$opts['name']);
288f3f0262cSandi
28937e34a5eSandi    //current id and namespace
290f3f0262cSandi    $cid = pathID($file);
291f3f0262cSandi    $cns = getNS($cid);
292f3f0262cSandi
293f3f0262cSandi    //check ACL
294f3f0262cSandi    if(auth_quickaclcheck($cid) < AUTH_READ){
295f3f0262cSandi        return false;
296f3f0262cSandi    }
297f3f0262cSandi
29837e34a5eSandi    //fetch instructions
29937e34a5eSandi    $instructions = p_cached_instructions($base.$file,true);
30037e34a5eSandi    if(is_null($instructions)) return false;
301f3f0262cSandi
302de3eb1d7SAdrian Lang    global $conf;
30337e34a5eSandi    //check all links for match
30437e34a5eSandi    foreach($instructions as $ins){
30537e34a5eSandi        if($ins[0] == 'internallink' || ($conf['camelcase'] && $ins[0] == 'camelcaselink') ){
30637e34a5eSandi            $mid = $ins[1][0];
30737e34a5eSandi            resolve_pageid($cns,$mid,$exists); //exists is not used
308f3f0262cSandi            if($mid == $sid){
30937e34a5eSandi                //we have a match - finish
310f3f0262cSandi                $data[]['id'] = $cid;
311f3f0262cSandi                break;
312f3f0262cSandi            }
313f3f0262cSandi        }
314f3f0262cSandi    }
315f3f0262cSandi
31637e34a5eSandi    return false;
31737e34a5eSandi}
31837e34a5eSandi
319f3f0262cSandi/**
320f3f0262cSandi * Fulltextsearch
321f3f0262cSandi *
322f3f0262cSandi * $opts['query'] is the search query
32315fae107Sandi *
32415fae107Sandi * @author  Andreas Gohr <andi@splitbrain.org>
325506fa893SAndreas Gohr * @deprecated - fulltext indexer is used instead
326f3f0262cSandi */
327f3f0262cSandifunction search_fulltext(&$data,$base,$file,$type,$lvl,$opts){
328f3f0262cSandi    //we do nothing with directories
3290e1a261eSMichael Klier    if($type == 'd') return true;
330f3f0262cSandi    //only search txt files
3310e1a261eSMichael Klier    if(substr($file,-4) != '.txt') return true;
332f3f0262cSandi
333f3f0262cSandi    //check ACL
334f3f0262cSandi    $id = pathID($file);
335f3f0262cSandi    if(auth_quickaclcheck($id) < AUTH_READ){
336f3f0262cSandi        return false;
337f3f0262cSandi    }
338f3f0262cSandi
339f3f0262cSandi    //create regexp from queries
3405ef370d2Smatthiasgrimm    $poswords = array();
3415ef370d2Smatthiasgrimm    $negwords = array();
3425ef370d2Smatthiasgrimm    $qpreg = preg_split('/\s+/',$opts['query']);
3435ef370d2Smatthiasgrimm
3445ef370d2Smatthiasgrimm    foreach($qpreg as $word){
3455ef370d2Smatthiasgrimm        switch(substr($word,0,1)){
3465ef370d2Smatthiasgrimm            case '-':
347396b7edbSmatthiasgrimm                if(strlen($word) > 1){  // catch single '-'
3485ef370d2Smatthiasgrimm                    array_push($negwords,preg_quote(substr($word,1),'#'));
349396b7edbSmatthiasgrimm                }
3505ef370d2Smatthiasgrimm                break;
3515ef370d2Smatthiasgrimm            case '+':
352396b7edbSmatthiasgrimm                if(strlen($word) > 1){  // catch single '+'
3535ef370d2Smatthiasgrimm                    array_push($poswords,preg_quote(substr($word,1),'#'));
354396b7edbSmatthiasgrimm                }
3555ef370d2Smatthiasgrimm                break;
3565ef370d2Smatthiasgrimm            default:
3575ef370d2Smatthiasgrimm                array_push($poswords,preg_quote($word,'#'));
3585ef370d2Smatthiasgrimm                break;
3595ef370d2Smatthiasgrimm        }
3605ef370d2Smatthiasgrimm    }
361248a7321Smatthiasgrimm
362248a7321Smatthiasgrimm    // a search without any posword is useless
363248a7321Smatthiasgrimm    if (!count($poswords)) return true;
3645ef370d2Smatthiasgrimm
3655a5d942dSmatthiasgrimm    $reg  = '^(?=.*?'.join(')(?=.*?',$poswords).')';
3665ef370d2Smatthiasgrimm            $reg .= count($negwords) ? '((?!'.join('|',$negwords).').)*$' : '.*$';
367b59a406bSmatthiasgrimm            search_regex($data,$base,$file,$reg,$poswords);
368b59a406bSmatthiasgrimm            return true;
369b59a406bSmatthiasgrimm            }
370b59a406bSmatthiasgrimm
371b59a406bSmatthiasgrimm            /**
372b59a406bSmatthiasgrimm             * Reference search
373b59a406bSmatthiasgrimm             * This fuction searches for existing references to a given media file
374b59a406bSmatthiasgrimm             * and returns an array with the found pages. It doesn't pay any
375b59a406bSmatthiasgrimm             * attention to ACL permissions to find every reference. The caller
376b59a406bSmatthiasgrimm             * must check if the user has the appropriate rights to see the found
377b59a406bSmatthiasgrimm             * page and eventually have to prevent the result from displaying.
378b59a406bSmatthiasgrimm             *
379b59a406bSmatthiasgrimm             * @param array  $data Reference to the result data structure
380b59a406bSmatthiasgrimm             * @param string $base Base usually $conf['datadir']
381b59a406bSmatthiasgrimm             * @param string $file current file or directory relative to $base
382b59a406bSmatthiasgrimm             * @param char   $type Type either 'd' for directory or 'f' for file
383b59a406bSmatthiasgrimm             * @param int    $lvl  Current recursion depht
384b59a406bSmatthiasgrimm             * @param mixed  $opts option array as given to search()
385b59a406bSmatthiasgrimm             *
386b59a406bSmatthiasgrimm             * $opts['query'] is the demanded media file name
387b59a406bSmatthiasgrimm             *
388b59a406bSmatthiasgrimm             * @author  Andreas Gohr <andi@splitbrain.org>
389b59a406bSmatthiasgrimm             * @author  Matthias Grimm <matthiasgrimm@users.sourceforge.net>
390b59a406bSmatthiasgrimm             */
391b59a406bSmatthiasgrimmfunction search_reference(&$data,$base,$file,$type,$lvl,$opts){
392b59a406bSmatthiasgrimm    global $conf;
393b59a406bSmatthiasgrimm
394b59a406bSmatthiasgrimm    //we do nothing with directories
395b59a406bSmatthiasgrimm    if($type == 'd') return true;
396b59a406bSmatthiasgrimm
397b59a406bSmatthiasgrimm    //only search txt files
3980e1a261eSMichael Klier    if(substr($file,-4) != '.txt') return true;
399b59a406bSmatthiasgrimm
400e28299ccSmatthiasgrimm    //we finish after 'cnt' references found. The return value
401b59a406bSmatthiasgrimm    //'false' will skip subdirectories to speed search up.
402e28299ccSmatthiasgrimm    $cnt = $conf['refshow'] > 0 ? $conf['refshow'] : 1;
403e28299ccSmatthiasgrimm    if(count($data) >= $cnt) return false;
404b59a406bSmatthiasgrimm
405d67ca2c0Smatthiasgrimm    $reg = '\{\{ *\:?'.$opts['query'].' *(\|.*)?\}\}';
406b59a406bSmatthiasgrimm    search_regex($data,$base,$file,$reg,array($opts['query']));
407b59a406bSmatthiasgrimm    return true;
408b59a406bSmatthiasgrimm}
409b59a406bSmatthiasgrimm
410b59a406bSmatthiasgrimm/* ------------- helper functions below -------------- */
411b59a406bSmatthiasgrimm
412b59a406bSmatthiasgrimm/**
413b59a406bSmatthiasgrimm * fulltext search helper
414b59a406bSmatthiasgrimm * searches a text file with a given regular expression
415b59a406bSmatthiasgrimm * no ACL checks are performed. This have to be done by
416b59a406bSmatthiasgrimm * the caller if necessary.
417b59a406bSmatthiasgrimm *
418b59a406bSmatthiasgrimm * @param array  $data  reference to array for results
419b59a406bSmatthiasgrimm * @param string $base  base directory
420b59a406bSmatthiasgrimm * @param string $file  file name to search in
421b59a406bSmatthiasgrimm * @param string $reg   regular expression to search for
422b59a406bSmatthiasgrimm * @param array  $words words that should be marked in the results
423b59a406bSmatthiasgrimm *
424b59a406bSmatthiasgrimm * @author  Andreas Gohr <andi@splitbrain.org>
425b59a406bSmatthiasgrimm * @author  Matthias Grimm <matthiasgrimm@users.sourceforge.net>
426506fa893SAndreas Gohr *
427506fa893SAndreas Gohr * @deprecated - fulltext indexer is used instead
428b59a406bSmatthiasgrimm */
429b59a406bSmatthiasgrimmfunction search_regex(&$data,$base,$file,$reg,$words){
430b59a406bSmatthiasgrimm
431b59a406bSmatthiasgrimm    //get text
432b59a406bSmatthiasgrimm    $text = io_readfile($base.'/'.$file);
433b59a406bSmatthiasgrimm    //lowercase text (u modifier does not help with case)
434b59a406bSmatthiasgrimm    $lctext = utf8_strtolower($text);
435f3f0262cSandi
436f3f0262cSandi    //do the fulltext search
437f3f0262cSandi    $matches = array();
4385ef370d2Smatthiasgrimm    if($cnt = preg_match_all('#'.$reg.'#usi',$lctext,$matches)){
439f3f0262cSandi        //this is not the best way for snippet generation but the fastest I could find
440b59a406bSmatthiasgrimm        $q = $words[0];  //use first word for snippet creation
441d5a2a500Sandi        $p = utf8_strpos($lctext,$q);
442f3f0262cSandi        $f = $p - 100;
443d5a2a500Sandi        $l = utf8_strlen($q) + 200;
444f3f0262cSandi        if($f < 0) $f = 0;
445f3f0262cSandi        $snippet = '<span class="search_sep"> ... </span>'.
446d5a2a500Sandi            htmlspecialchars(utf8_substr($text,$f,$l)).
447f3f0262cSandi            '<span class="search_sep"> ... </span>';
448b59a406bSmatthiasgrimm        $mark    = '('.join('|', $words).')';
449ed7ecb79SAnika Henke        $snippet = preg_replace('#'.$mark.'#si','<strong class="search_hit">\\1</strong>',$snippet);
450f3f0262cSandi
451f3f0262cSandi        $data[] = array(
452b59a406bSmatthiasgrimm                'id'       => pathID($file),
4535ef370d2Smatthiasgrimm                'count'    => preg_match_all('#'.$mark.'#usi',$lctext,$matches),
454b59a406bSmatthiasgrimm                'poswords' => join(' ',$words),
455f3f0262cSandi                'snippet'  => $snippet,
456f3f0262cSandi                );
457f3f0262cSandi    }
458f3f0262cSandi
459f3f0262cSandi    return true;
460f3f0262cSandi}
461f3f0262cSandi
462b59a406bSmatthiasgrimm
463f3f0262cSandi/**
46415fae107Sandi * fulltext sort
46515fae107Sandi *
466f3f0262cSandi * Callback sort function for use with usort to sort the data
467f3f0262cSandi * structure created by search_fulltext. Sorts descending by count
46815fae107Sandi *
46915fae107Sandi * @author  Andreas Gohr <andi@splitbrain.org>
470f3f0262cSandi */
471f3f0262cSandifunction sort_search_fulltext($a,$b){
472f3f0262cSandi    if($a['count'] > $b['count']){
473f3f0262cSandi        return -1;
474f3f0262cSandi    }elseif($a['count'] < $b['count']){
475f3f0262cSandi        return 1;
476f3f0262cSandi    }else{
477f3f0262cSandi        return strcmp($a['id'],$b['id']);
478f3f0262cSandi    }
479f3f0262cSandi}
480f3f0262cSandi
481f3f0262cSandi/**
482f3f0262cSandi * translates a document path to an ID
48315fae107Sandi *
48415fae107Sandi * @author  Andreas Gohr <andi@splitbrain.org>
48537e34a5eSandi * @todo    move to pageutils
486f3f0262cSandi */
487156a608cSandifunction pathID($path,$keeptxt=false){
48849c713a3Sandi    $id = utf8_decodeFN($path);
48949c713a3Sandi    $id = str_replace('/',':',$id);
490156a608cSandi    if(!$keeptxt) $id = preg_replace('#\.txt$#','',$id);
491709b1063SAdrian Lang    $id = trim($id, ':');
492f3f0262cSandi    return $id;
493f3f0262cSandi}
494f3f0262cSandi
495340756e4Sandi
4963abeade3SAndreas Gohr/**
4973abeade3SAndreas Gohr * This is a very universal callback for the search() function, replacing
4983abeade3SAndreas Gohr * many of the former individual functions at the cost of a more complex
4993abeade3SAndreas Gohr * setup.
5003abeade3SAndreas Gohr *
5013abeade3SAndreas Gohr * How the function behaves, depends on the options passed in the $opts
5023abeade3SAndreas Gohr * array, where the following settings can be used.
5033abeade3SAndreas Gohr *
5043abeade3SAndreas Gohr * depth      int     recursion depth. 0 for unlimited
5053abeade3SAndreas Gohr * keeptxt    bool    keep .txt extension for IDs
5063abeade3SAndreas Gohr * listfiles  bool    include files in listing
5073abeade3SAndreas Gohr * listdirs   bool    include namespaces in listing
5083abeade3SAndreas Gohr * pagesonly  bool    restrict files to pages
5093abeade3SAndreas Gohr * skipacl    bool    do not check for READ permission
5103abeade3SAndreas Gohr * sneakyacl  bool    don't recurse into nonreadable dirs
5113abeade3SAndreas Gohr * hash       bool    create MD5 hash for files
5123abeade3SAndreas Gohr * meta       bool    return file metadata
5133abeade3SAndreas Gohr * filematch  string  match files against this regexp
5148705cc81SAndreas Gohr * idmatch    string  match full ID against this regexp
5158705cc81SAndreas Gohr * dirmatch   string  match directory against this regexp when adding
5168705cc81SAndreas Gohr * nsmatch    string  match namespace against this regexp when adding
5178705cc81SAndreas Gohr * recmatch   string  match directory against this regexp when recursing
5183abeade3SAndreas Gohr * showmsg    bool    warn about non-ID files
5193abeade3SAndreas Gohr * showhidden bool    show hidden files too
5203abeade3SAndreas Gohr * firsthead  bool    return first heading for pages
5213abeade3SAndreas Gohr *
5223abeade3SAndreas Gohr * @author Andreas Gohr <gohr@cosmocode.de>
5233abeade3SAndreas Gohr */
5243abeade3SAndreas Gohrfunction search_universal(&$data,$base,$file,$type,$lvl,$opts){
5253abeade3SAndreas Gohr    $item   = array();
5263abeade3SAndreas Gohr    $return = true;
5273abeade3SAndreas Gohr
5283abeade3SAndreas Gohr    // get ID and check if it is a valid one
529e63d421bSAndreas Gohr    $item['id'] = pathID($file,($type == 'd' || $opts['keeptxt']));
5308537abd1SAdrian Lang    if($item['id'] != cleanID($item['id'])){
5313abeade3SAndreas Gohr        if($opts['showmsg'])
5328537abd1SAdrian Lang            msg(hsc($item['id']).' is not a valid file name for DokuWiki - skipped',-1);
5333abeade3SAndreas Gohr        return false; // skip non-valid files
5343abeade3SAndreas Gohr    }
5358705cc81SAndreas Gohr    $item['ns']  = getNS($item['id']);
5363abeade3SAndreas Gohr
5373abeade3SAndreas Gohr    if($type == 'd') {
5383abeade3SAndreas Gohr        // decide if to recursion into this directory is wanted
5393abeade3SAndreas Gohr        if(!$opts['depth']){
5403abeade3SAndreas Gohr            $return = true; // recurse forever
5413abeade3SAndreas Gohr        }else{
5423abeade3SAndreas Gohr            $depth = substr_count($file,'/');
5433abeade3SAndreas Gohr            if($depth >= $opts['depth']){
5443abeade3SAndreas Gohr                $return = false; // depth reached
5453abeade3SAndreas Gohr            }else{
5463abeade3SAndreas Gohr                $return = true;
5473abeade3SAndreas Gohr            }
5483abeade3SAndreas Gohr        }
5493abeade3SAndreas Gohr        if($return && !preg_match('/'.$opts['recmatch'].'/',$file)){
5503abeade3SAndreas Gohr            $return = false; // doesn't match
5513abeade3SAndreas Gohr        }
5523abeade3SAndreas Gohr    }
5533abeade3SAndreas Gohr
5543abeade3SAndreas Gohr    // check ACL
5553abeade3SAndreas Gohr    if(!$opts['skipacl']){
5563abeade3SAndreas Gohr        if($type == 'd'){
5573abeade3SAndreas Gohr            $item['perm'] = auth_quickaclcheck($item['id'].':*');
5583abeade3SAndreas Gohr        }else{
5593abeade3SAndreas Gohr            $item['perm'] = auth_quickaclcheck($item['id']); //FIXME check namespace for media files
5603abeade3SAndreas Gohr        }
5613abeade3SAndreas Gohr    }else{
5623abeade3SAndreas Gohr        $item['perm'] = AUTH_DELETE;
5633abeade3SAndreas Gohr    }
5643abeade3SAndreas Gohr
5653abeade3SAndreas Gohr    // are we done here maybe?
5663abeade3SAndreas Gohr    if($type == 'd'){
5673abeade3SAndreas Gohr        if(!$opts['listdirs']) return $return;
5683abeade3SAndreas Gohr        if(!$opts['skipacl'] && $opts['sneakyacl'] && $item['perm'] < AUTH_READ) return false; //neither list nor recurse
5693abeade3SAndreas Gohr        if($opts['dirmatch'] && !preg_match('/'.$opts['dirmatch'].'/',$file)) return $return;
5708705cc81SAndreas Gohr        if($opts['nsmatch'] && !preg_match('/'.$opts['nsmatch'].'/',$item['ns'])) return $return;
5713abeade3SAndreas Gohr    }else{
5723abeade3SAndreas Gohr        if(!$opts['listfiles']) return $return;
5733abeade3SAndreas Gohr        if(!$opts['skipacl'] && $item['perm'] < AUTH_READ) return $return;
5743abeade3SAndreas Gohr        if($opts['pagesonly'] && (substr($file,-4) != '.txt')) return $return;
575de3eb1d7SAdrian Lang        if(!$opts['showhidden'] && isHiddenPage($item['id'])) return $return;
5763abeade3SAndreas Gohr        if($opts['filematch'] && !preg_match('/'.$opts['filematch'].'/',$file)) return $return;
5778705cc81SAndreas Gohr        if($opts['idmatch'] && !preg_match('/'.$opts['idmatch'].'/',$item['id'])) return $return;
5783abeade3SAndreas Gohr    }
5793abeade3SAndreas Gohr
5803abeade3SAndreas Gohr    // still here? prepare the item
5813abeade3SAndreas Gohr    $item['type']  = $type;
58232d6093dSAndreas Gohr    $item['level'] = $lvl;
5833abeade3SAndreas Gohr    $item['open']  = $return;
5843abeade3SAndreas Gohr
5853abeade3SAndreas Gohr    if($opts['meta']){
5863abeade3SAndreas Gohr        $item['file']       = basename($file);
5873abeade3SAndreas Gohr        $item['size']       = filesize($base.'/'.$file);
5883abeade3SAndreas Gohr        $item['mtime']      = filemtime($base.'/'.$file);
5893abeade3SAndreas Gohr        $item['rev']        = $item['mtime'];
5903abeade3SAndreas Gohr        $item['writable']   = is_writable($base.'/'.$file);
5913abeade3SAndreas Gohr        $item['executable'] = is_executable($base.'/'.$file);
5923abeade3SAndreas Gohr    }
5933abeade3SAndreas Gohr
5943abeade3SAndreas Gohr    if($type == 'f'){
5953abeade3SAndreas Gohr        if($opts['hash']) $item['hash'] = md5(io_readFile($base.'/'.$file,false));
59667c15eceSMichael Hamann        if($opts['firsthead']) $item['title'] = p_get_first_heading($item['id'],METADATA_DONT_RENDER);
5973abeade3SAndreas Gohr    }
5983abeade3SAndreas Gohr
5993abeade3SAndreas Gohr    // finally add the item
6003abeade3SAndreas Gohr    $data[] = $item;
6013abeade3SAndreas Gohr    return $return;
6023abeade3SAndreas Gohr}
6033abeade3SAndreas Gohr
604e3776c06SMichael Hamann//Setup VIM: ex: et ts=4 :
605