xref: /dokuwiki/inc/common.php (revision 2ed38036a53a489d2fcadc46ce601f8c876fca31)
1ed7b5f09Sandi<?php
215fae107Sandi/**
315fae107Sandi * Common DokuWiki functions
415fae107Sandi *
515fae107Sandi * @license    GPL 2 (http://www.gnu.org/licenses/gpl.html)
615fae107Sandi * @author     Andreas Gohr <andi@splitbrain.org>
715fae107Sandi */
815fae107Sandi
9fa8adffeSAndreas Gohrif(!defined('DOKU_INC')) die('meh.');
10f3f0262cSandi
11f3f0262cSandi/**
12b6912aeaSAndreas Gohr * These constants are used with the recents function
13b6912aeaSAndreas Gohr */
14b6912aeaSAndreas Gohrdefine('RECENTS_SKIP_DELETED', 2);
15b6912aeaSAndreas Gohrdefine('RECENTS_SKIP_MINORS', 4);
16b6912aeaSAndreas Gohrdefine('RECENTS_SKIP_SUBSPACES', 8);
170b926329SKate Arzamastsevadefine('RECENTS_MEDIA_CHANGES', 16);
180b926329SKate Arzamastsevadefine('RECENTS_MEDIA_PAGES_MIXED', 32);
19b6912aeaSAndreas Gohr
20b6912aeaSAndreas Gohr/**
21d5197206Schris * Wrapper around htmlspecialchars()
22d5197206Schris *
23d5197206Schris * @author Andreas Gohr <andi@splitbrain.org>
24d5197206Schris * @see    htmlspecialchars()
25d5197206Schris */
26d5197206Schrisfunction hsc($string) {
27d5197206Schris    return htmlspecialchars($string, ENT_QUOTES, 'UTF-8');
28d5197206Schris}
29d5197206Schris
30d5197206Schris/**
31d5197206Schris * print a newline terminated string
32d5197206Schris *
33d5197206Schris * You can give an indention as optional parameter
34d5197206Schris *
35d5197206Schris * @author Andreas Gohr <andi@splitbrain.org>
36d5197206Schris */
3725ec097bSChris Smithfunction ptln($string, $indent = 0) {
3825ec097bSChris Smith    echo str_repeat(' ', $indent)."$string\n";
3902b0b681SAndreas Gohr}
4002b0b681SAndreas Gohr
4102b0b681SAndreas Gohr/**
4202b0b681SAndreas Gohr * strips control characters (<32) from the given string
4302b0b681SAndreas Gohr *
4402b0b681SAndreas Gohr * @author Andreas Gohr <andi@splitbrain.org>
4502b0b681SAndreas Gohr */
4602b0b681SAndreas Gohrfunction stripctl($string) {
4702b0b681SAndreas Gohr    return preg_replace('/[\x00-\x1F]+/s', '', $string);
48d5197206Schris}
49d5197206Schris
50d5197206Schris/**
51634d7150SAndreas Gohr * Return a secret token to be used for CSRF attack prevention
52634d7150SAndreas Gohr *
53634d7150SAndreas Gohr * @author  Andreas Gohr <andi@splitbrain.org>
54634d7150SAndreas Gohr * @link    http://en.wikipedia.org/wiki/Cross-site_request_forgery
55634d7150SAndreas Gohr * @link    http://christ1an.blogspot.com/2007/04/preventing-csrf-efficiently.html
56634d7150SAndreas Gohr * @return  string
57634d7150SAndreas Gohr */
58634d7150SAndreas Gohrfunction getSecurityToken() {
598071beaaSAndreas Gohr    return md5(auth_cookiesalt().session_id().$_SERVER['REMOTE_USER']);
60634d7150SAndreas Gohr}
61634d7150SAndreas Gohr
62634d7150SAndreas Gohr/**
63634d7150SAndreas Gohr * Check the secret CSRF token
64634d7150SAndreas Gohr */
65634d7150SAndreas Gohrfunction checkSecurityToken($token = null) {
667d01a0eaSTom N Harris    global $INPUT;
67df97eaacSAndreas Gohr    if(!$_SERVER['REMOTE_USER']) return true; // no logged in user, no need for a check
68df97eaacSAndreas Gohr
697d01a0eaSTom N Harris    if(is_null($token)) $token = $INPUT->str('sectok');
70634d7150SAndreas Gohr    if(getSecurityToken() != $token) {
71634d7150SAndreas Gohr        msg('Security Token did not match. Possible CSRF attack.', -1);
72634d7150SAndreas Gohr        return false;
73634d7150SAndreas Gohr    }
74634d7150SAndreas Gohr    return true;
75634d7150SAndreas Gohr}
76634d7150SAndreas Gohr
77634d7150SAndreas Gohr/**
78634d7150SAndreas Gohr * Print a hidden form field with a secret CSRF token
79634d7150SAndreas Gohr *
80634d7150SAndreas Gohr * @author  Andreas Gohr <andi@splitbrain.org>
81634d7150SAndreas Gohr */
82634d7150SAndreas Gohrfunction formSecurityToken($print = true) {
832404d0edSAnika Henke    $ret = '<div class="no"><input type="hidden" name="sectok" value="'.getSecurityToken().'" /></div>'."\n";
843272d797SAndreas Gohr    if($print) echo $ret;
85634d7150SAndreas Gohr    return $ret;
86634d7150SAndreas Gohr}
87634d7150SAndreas Gohr
88634d7150SAndreas Gohr/**
8915fae107Sandi * Return info about the current document as associative
90f3f0262cSandi * array.
9115fae107Sandi *
9215fae107Sandi * @author Andreas Gohr <andi@splitbrain.org>
93f3f0262cSandi */
94f3f0262cSandifunction pageinfo() {
95f3f0262cSandi    global $ID;
96f3f0262cSandi    global $REV;
977b3a6803SAndreas Gohr    global $RANGE;
98f3f0262cSandi    global $USERINFO;
997b3a6803SAndreas Gohr    global $lang;
100f3f0262cSandi
1016afe8dcaSchris    // include ID & REV not redundant, as some parts of DokuWiki may temporarily change $ID, e.g. p_wiki_xhtml
1026afe8dcaSchris    // FIXME ... perhaps it would be better to ensure the temporary changes weren't necessary
1036afe8dcaSchris    $info['id']  = $ID;
1046afe8dcaSchris    $info['rev'] = $REV;
1056afe8dcaSchris
106c66972f2SAdrian Lang    // set info about manager/admin status.
107c66972f2SAdrian Lang    $info['isadmin']   = false;
108c66972f2SAdrian Lang    $info['ismanager'] = false;
109c66972f2SAdrian Lang    if(isset($_SERVER['REMOTE_USER'])) {
110adec979fSAndreas Gohr        $sub = new Subscription();
111adec979fSAndreas Gohr
112f3f0262cSandi        $info['userinfo']   = $USERINFO;
113f3f0262cSandi        $info['perm']       = auth_quickaclcheck($ID);
114adec979fSAndreas Gohr        $info['subscribed'] = $sub->user_subscription();
115ee4c4a1bSAndreas Gohr        $info['client']     = $_SERVER['REMOTE_USER'];
11617ee7f66SAndreas Gohr
117f8cc712eSAndreas Gohr        if($info['perm'] == AUTH_ADMIN) {
118f8cc712eSAndreas Gohr            $info['isadmin']   = true;
119f8cc712eSAndreas Gohr            $info['ismanager'] = true;
120f8cc712eSAndreas Gohr        } elseif(auth_ismanager()) {
121f8cc712eSAndreas Gohr            $info['ismanager'] = true;
122f8cc712eSAndreas Gohr        }
123f8cc712eSAndreas Gohr
12417ee7f66SAndreas Gohr        // if some outside auth were used only REMOTE_USER is set
12517ee7f66SAndreas Gohr        if(!$info['userinfo']['name']) {
12617ee7f66SAndreas Gohr            $info['userinfo']['name'] = $_SERVER['REMOTE_USER'];
12717ee7f66SAndreas Gohr        }
128ee4c4a1bSAndreas Gohr
129f3f0262cSandi    } else {
130f3f0262cSandi        $info['perm']       = auth_aclcheck($ID, '', null);
1311380fc45SAndreas Gohr        $info['subscribed'] = false;
132ee4c4a1bSAndreas Gohr        $info['client']     = clientIP(true);
133f3f0262cSandi    }
134f3f0262cSandi
135f3f0262cSandi    $info['namespace'] = getNS($ID);
136f3f0262cSandi    $info['locked']    = checklock($ID);
13700976812SAndreas Gohr    $info['filepath']  = fullpath(wikiFN($ID));
1382ca9d91cSBen Coburn    $info['exists']    = @file_exists($info['filepath']);
1392ca9d91cSBen Coburn    if($REV) {
1402ca9d91cSBen Coburn        //check if current revision was meant
1412ca9d91cSBen Coburn        if($info['exists'] && (@filemtime($info['filepath']) == $REV)) {
1422ca9d91cSBen Coburn            $REV = '';
1437b3a6803SAndreas Gohr        } elseif($RANGE) {
1447b3a6803SAndreas Gohr            //section editing does not work with old revisions!
1457b3a6803SAndreas Gohr            $REV   = '';
1467b3a6803SAndreas Gohr            $RANGE = '';
1477b3a6803SAndreas Gohr            msg($lang['nosecedit'], 0);
1482ca9d91cSBen Coburn        } else {
1492ca9d91cSBen Coburn            //really use old revision
15000976812SAndreas Gohr            $info['filepath'] = fullpath(wikiFN($ID, $REV));
151f3f0262cSandi            $info['exists']   = @file_exists($info['filepath']);
152f3f0262cSandi        }
153f3f0262cSandi    }
154c112d578Sandi    $info['rev'] = $REV;
155f3f0262cSandi    if($info['exists']) {
156f3f0262cSandi        $info['writable'] = (is_writable($info['filepath']) &&
157f3f0262cSandi            ($info['perm'] >= AUTH_EDIT));
158f3f0262cSandi    } else {
159f3f0262cSandi        $info['writable'] = ($info['perm'] >= AUTH_CREATE);
160f3f0262cSandi    }
16150e988b1SAndreas Gohr    $info['editable'] = ($info['writable'] && empty($info['locked']));
162f3f0262cSandi    $info['lastmod']  = @filemtime($info['filepath']);
163f3f0262cSandi
16471726d78SBen Coburn    //load page meta data
16571726d78SBen Coburn    $info['meta'] = p_get_metadata($ID);
16671726d78SBen Coburn
167652610a2Sandi    //who's the editor
168652610a2Sandi    if($REV) {
16971726d78SBen Coburn        $revinfo = getRevisionInfo($ID, $REV, 1024);
170652610a2Sandi    } else {
171aa27cf05SAndreas Gohr        if(is_array($info['meta']['last_change'])) {
172aa27cf05SAndreas Gohr            $revinfo = $info['meta']['last_change'];
173aa27cf05SAndreas Gohr        } else {
174cd00a034SBen Coburn            $revinfo = getRevisionInfo($ID, $info['lastmod'], 1024);
175cd00a034SBen Coburn            // cache most recent changelog line in metadata if missing and still valid
176cd00a034SBen Coburn            if($revinfo !== false) {
177cd00a034SBen Coburn                $info['meta']['last_change'] = $revinfo;
178cd00a034SBen Coburn                p_set_metadata($ID, array('last_change' => $revinfo));
179cd00a034SBen Coburn            }
180cd00a034SBen Coburn        }
181cd00a034SBen Coburn    }
182cd00a034SBen Coburn    //and check for an external edit
183cd00a034SBen Coburn    if($revinfo !== false && $revinfo['date'] != $info['lastmod']) {
184cd00a034SBen Coburn        // cached changelog line no longer valid
185cd00a034SBen Coburn        $revinfo                     = false;
186cd00a034SBen Coburn        $info['meta']['last_change'] = $revinfo;
187cd00a034SBen Coburn        p_set_metadata($ID, array('last_change' => $revinfo));
188652610a2Sandi    }
189bb4866bdSchris
190652610a2Sandi    $info['ip']   = $revinfo['ip'];
191652610a2Sandi    $info['user'] = $revinfo['user'];
192652610a2Sandi    $info['sum']  = $revinfo['sum'];
19371726d78SBen Coburn    // See also $INFO['meta']['last_change'] which is the most recent log line for page $ID.
194ebf1501fSBen Coburn    // Use $INFO['meta']['last_change']['type']===DOKU_CHANGE_TYPE_MINOR_EDIT in place of $info['minor'].
19559f257aeSchris
19688f522e9Sandi    if($revinfo['user']) {
19788f522e9Sandi        $info['editor'] = $revinfo['user'];
19888f522e9Sandi    } else {
19988f522e9Sandi        $info['editor'] = $revinfo['ip'];
20088f522e9Sandi    }
201652610a2Sandi
202ee4c4a1bSAndreas Gohr    // draft
203ee4c4a1bSAndreas Gohr    $draft = getCacheName($info['client'].$ID, '.draft');
204ee4c4a1bSAndreas Gohr    if(@file_exists($draft)) {
205ee4c4a1bSAndreas Gohr        if(@filemtime($draft) < @filemtime(wikiFN($ID))) {
206ee4c4a1bSAndreas Gohr            // remove stale draft
207ee4c4a1bSAndreas Gohr            @unlink($draft);
208ee4c4a1bSAndreas Gohr        } else {
209ee4c4a1bSAndreas Gohr            $info['draft'] = $draft;
210ee4c4a1bSAndreas Gohr        }
211ee4c4a1bSAndreas Gohr    }
212ee4c4a1bSAndreas Gohr
2131c548ebeSAndreas Gohr    // mobile detection
2141c548ebeSAndreas Gohr    $info['ismobile'] = clientismobile();
2151c548ebeSAndreas Gohr
216f3f0262cSandi    return $info;
217f3f0262cSandi}
218f3f0262cSandi
219f3f0262cSandi/**
2202684e50aSAndreas Gohr * Build an string of URL parameters
2212684e50aSAndreas Gohr *
2222684e50aSAndreas Gohr * @author Andreas Gohr
2232684e50aSAndreas Gohr */
224b174aeaeSchrisfunction buildURLparams($params, $sep = '&amp;') {
2252684e50aSAndreas Gohr    $url = '';
2262684e50aSAndreas Gohr    $amp = false;
2272684e50aSAndreas Gohr    foreach($params as $key => $val) {
228b174aeaeSchris        if($amp) $url .= $sep;
2292684e50aSAndreas Gohr
23085e6871fSAdrian Lang        $url .= rawurlencode($key).'=';
2313a50618cSgweissbach        $url .= rawurlencode((string) $val);
2322684e50aSAndreas Gohr        $amp = true;
2332684e50aSAndreas Gohr    }
2342684e50aSAndreas Gohr    return $url;
2352684e50aSAndreas Gohr}
2362684e50aSAndreas Gohr
2372684e50aSAndreas Gohr/**
2382684e50aSAndreas Gohr * Build an string of html tag attributes
2392684e50aSAndreas Gohr *
2407bff22c0SAndreas Gohr * Skips keys starting with '_', values get HTML encoded
2417bff22c0SAndreas Gohr *
2422684e50aSAndreas Gohr * @author Andreas Gohr
2432684e50aSAndreas Gohr */
2444b030ce7SAndreas Gohrfunction buildAttributes($params, $skipempty = false) {
2452684e50aSAndreas Gohr    $url   = '';
2469063ec14SAdrian Lang    $white = false;
2472684e50aSAndreas Gohr    foreach($params as $key => $val) {
2487bff22c0SAndreas Gohr        if($key{0} == '_') continue;
249b1c94f1dSAndreas Gohr        if($val === '' && $skipempty) continue;
2509063ec14SAdrian Lang        if($white) $url .= ' ';
2517bff22c0SAndreas Gohr
2522684e50aSAndreas Gohr        $url .= $key.'="';
2532684e50aSAndreas Gohr        $url .= htmlspecialchars($val);
2542684e50aSAndreas Gohr        $url .= '"';
2559063ec14SAdrian Lang        $white = true;
2562684e50aSAndreas Gohr    }
2572684e50aSAndreas Gohr    return $url;
2582684e50aSAndreas Gohr}
2592684e50aSAndreas Gohr
2602684e50aSAndreas Gohr/**
26115fae107Sandi * This builds the breadcrumb trail and returns it as array
26215fae107Sandi *
26315fae107Sandi * @author Andreas Gohr <andi@splitbrain.org>
264f3f0262cSandi */
265f3f0262cSandifunction breadcrumbs() {
2668746e727Sandi    // we prepare the breadcrumbs early for quick session closing
2678746e727Sandi    static $crumbs = null;
2688746e727Sandi    if($crumbs != null) return $crumbs;
2698746e727Sandi
270f3f0262cSandi    global $ID;
271f3f0262cSandi    global $ACT;
272f3f0262cSandi    global $conf;
273f3f0262cSandi
274f3f0262cSandi    //first visit?
275c66972f2SAdrian Lang    $crumbs = isset($_SESSION[DOKU_COOKIE]['bc']) ? $_SESSION[DOKU_COOKIE]['bc'] : array();
276f3f0262cSandi    //we only save on show and existing wiki documents
277a77f5846Sjan    $file = wikiFN($ID);
278a77f5846Sjan    if($ACT != 'show' || !@file_exists($file)) {
279e71ce681SAndreas Gohr        $_SESSION[DOKU_COOKIE]['bc'] = $crumbs;
280f3f0262cSandi        return $crumbs;
281f3f0262cSandi    }
282a77f5846Sjan
283a77f5846Sjan    // page names
2841a84a0f3SAnika Henke    $name = noNSorNS($ID);
285fe9ec250SChris Smith    if(useHeading('navigation')) {
286a77f5846Sjan        // get page title
28767c15eceSMichael Hamann        $title = p_get_first_heading($ID, METADATA_RENDER_USING_SIMPLE_CACHE);
288a77f5846Sjan        if($title) {
289a77f5846Sjan            $name = $title;
290a77f5846Sjan        }
291a77f5846Sjan    }
292a77f5846Sjan
293f3f0262cSandi    //remove ID from array
294a77f5846Sjan    if(isset($crumbs[$ID])) {
295a77f5846Sjan        unset($crumbs[$ID]);
296f3f0262cSandi    }
297f3f0262cSandi
298f3f0262cSandi    //add to array
299a77f5846Sjan    $crumbs[$ID] = $name;
300f3f0262cSandi    //reduce size
301f3f0262cSandi    while(count($crumbs) > $conf['breadcrumbs']) {
302f3f0262cSandi        array_shift($crumbs);
303f3f0262cSandi    }
304f3f0262cSandi    //save to session
305e71ce681SAndreas Gohr    $_SESSION[DOKU_COOKIE]['bc'] = $crumbs;
306f3f0262cSandi    return $crumbs;
307f3f0262cSandi}
308f3f0262cSandi
309f3f0262cSandi/**
31015fae107Sandi * Filter for page IDs
31115fae107Sandi *
312f3f0262cSandi * This is run on a ID before it is outputted somewhere
313f3f0262cSandi * currently used to replace the colon with something else
314f3f0262cSandi * on Windows systems and to have proper URL encoding
31515fae107Sandi *
31649c713a3Sandi * Urlencoding is ommitted when the second parameter is false
31749c713a3Sandi *
31815fae107Sandi * @author Andreas Gohr <andi@splitbrain.org>
319f3f0262cSandi */
32049c713a3Sandifunction idfilter($id, $ue = true) {
321f3f0262cSandi    global $conf;
322f3f0262cSandi    if($conf['useslash'] && $conf['userewrite']) {
323f3f0262cSandi        $id = strtr($id, ':', '/');
324f3f0262cSandi    } elseif(strtoupper(substr(PHP_OS, 0, 3)) === 'WIN' &&
3253272d797SAndreas Gohr        $conf['userewrite']
3263272d797SAndreas Gohr    ) {
327f3f0262cSandi        $id = strtr($id, ':', ';');
328f3f0262cSandi    }
32949c713a3Sandi    if($ue) {
330b6c6979fSAndreas Gohr        $id = rawurlencode($id);
331f3f0262cSandi        $id = str_replace('%3A', ':', $id); //keep as colon
332f3f0262cSandi        $id = str_replace('%2F', '/', $id); //keep as slash
33349c713a3Sandi    }
334f3f0262cSandi    return $id;
335f3f0262cSandi}
336f3f0262cSandi
337f3f0262cSandi/**
338ed7b5f09Sandi * This builds a link to a wikipage
33915fae107Sandi *
3406c7843b5Sandi * It handles URL rewriting and adds additional parameter if
3416c7843b5Sandi * given in $more
3426c7843b5Sandi *
34315fae107Sandi * @author Andreas Gohr <andi@splitbrain.org>
344f3f0262cSandi */
34516f15a81SDominik Eckelmannfunction wl($id = '', $urlParameters = '', $absolute = false, $separator = '&amp;') {
346f3f0262cSandi    global $conf;
34716f15a81SDominik Eckelmann    if(is_array($urlParameters)) {
34816f15a81SDominik Eckelmann        $urlParameters = buildURLparams($urlParameters, $separator);
3496de3759aSAndreas Gohr    } else {
35016f15a81SDominik Eckelmann        $urlParameters = str_replace(',', $separator, $urlParameters);
3516de3759aSAndreas Gohr    }
35216f15a81SDominik Eckelmann    if($id === '') {
35316f15a81SDominik Eckelmann        $id = $conf['start'];
35416f15a81SDominik Eckelmann    }
355f3f0262cSandi    $id = idfilter($id);
35616f15a81SDominik Eckelmann    if($absolute) {
357ed7b5f09Sandi        $xlink = DOKU_URL;
358ed7b5f09Sandi    } else {
359ed7b5f09Sandi        $xlink = DOKU_BASE;
360ed7b5f09Sandi    }
361f3f0262cSandi
3626c7843b5Sandi    if($conf['userewrite'] == 2) {
3636c7843b5Sandi        $xlink .= DOKU_SCRIPT.'/'.$id;
36416f15a81SDominik Eckelmann        if($urlParameters) $xlink .= '?'.$urlParameters;
3656c7843b5Sandi    } elseif($conf['userewrite']) {
366f3f0262cSandi        $xlink .= $id;
36716f15a81SDominik Eckelmann        if($urlParameters) $xlink .= '?'.$urlParameters;
368bce3726dSAndreas Gohr    } elseif($id) {
3696c7843b5Sandi        $xlink .= DOKU_SCRIPT.'?id='.$id;
37016f15a81SDominik Eckelmann        if($urlParameters) $xlink .= $separator.$urlParameters;
371bce3726dSAndreas Gohr    } else {
372bce3726dSAndreas Gohr        $xlink .= DOKU_SCRIPT;
37316f15a81SDominik Eckelmann        if($urlParameters) $xlink .= '?'.$urlParameters;
374f3f0262cSandi    }
375f3f0262cSandi
376f3f0262cSandi    return $xlink;
377f3f0262cSandi}
378f3f0262cSandi
379f3f0262cSandi/**
380f5c2808fSBen Coburn * This builds a link to an alternate page format
381f5c2808fSBen Coburn *
382f5c2808fSBen Coburn * Handles URL rewriting if enabled. Follows the style of wl().
383f5c2808fSBen Coburn *
384f5c2808fSBen Coburn * @author Ben Coburn <btcoburn@silicodon.net>
385f5c2808fSBen Coburn */
386f5c2808fSBen Coburnfunction exportlink($id = '', $format = 'raw', $more = '', $abs = false, $sep = '&amp;') {
387f5c2808fSBen Coburn    global $conf;
388f5c2808fSBen Coburn    if(is_array($more)) {
389f5c2808fSBen Coburn        $more = buildURLparams($more, $sep);
390f5c2808fSBen Coburn    } else {
391f5c2808fSBen Coburn        $more = str_replace(',', $sep, $more);
392f5c2808fSBen Coburn    }
393f5c2808fSBen Coburn
394f5c2808fSBen Coburn    $format = rawurlencode($format);
395f5c2808fSBen Coburn    $id     = idfilter($id);
396f5c2808fSBen Coburn    if($abs) {
397f5c2808fSBen Coburn        $xlink = DOKU_URL;
398f5c2808fSBen Coburn    } else {
399f5c2808fSBen Coburn        $xlink = DOKU_BASE;
400f5c2808fSBen Coburn    }
401f5c2808fSBen Coburn
402f5c2808fSBen Coburn    if($conf['userewrite'] == 2) {
403f5c2808fSBen Coburn        $xlink .= DOKU_SCRIPT.'/'.$id.'?do=export_'.$format;
404f5c2808fSBen Coburn        if($more) $xlink .= $sep.$more;
405f5c2808fSBen Coburn    } elseif($conf['userewrite'] == 1) {
406f5c2808fSBen Coburn        $xlink .= '_export/'.$format.'/'.$id;
407f5c2808fSBen Coburn        if($more) $xlink .= '?'.$more;
408f5c2808fSBen Coburn    } else {
409f5c2808fSBen Coburn        $xlink .= DOKU_SCRIPT.'?do=export_'.$format.$sep.'id='.$id;
410f5c2808fSBen Coburn        if($more) $xlink .= $sep.$more;
411f5c2808fSBen Coburn    }
412f5c2808fSBen Coburn
413f5c2808fSBen Coburn    return $xlink;
414f5c2808fSBen Coburn}
415f5c2808fSBen Coburn
416f5c2808fSBen Coburn/**
4176de3759aSAndreas Gohr * Build a link to a media file
4186de3759aSAndreas Gohr *
4196de3759aSAndreas Gohr * Will return a link to the detail page if $direct is false
4208c08db0aSAndreas Gohr *
4218c08db0aSAndreas Gohr * The $more parameter should always be given as array, the function then
4228c08db0aSAndreas Gohr * will strip default parameters to produce even cleaner URLs
4238c08db0aSAndreas Gohr *
4243272d797SAndreas Gohr * @param string  $id     the media file id or URL
4253272d797SAndreas Gohr * @param mixed   $more   string or array with additional parameters
4263272d797SAndreas Gohr * @param bool    $direct link to detail page if false
4273272d797SAndreas Gohr * @param string  $sep    URL parameter separator
4283272d797SAndreas Gohr * @param bool    $abs    Create an absolute URL
4293272d797SAndreas Gohr * @return string
4306de3759aSAndreas Gohr */
43155b2b31bSAndreas Gohrfunction ml($id = '', $more = '', $direct = true, $sep = '&amp;', $abs = false) {
4326de3759aSAndreas Gohr    global $conf;
4336de3759aSAndreas Gohr    if(is_array($more)) {
4348c08db0aSAndreas Gohr        // strip defaults for shorter URLs
4358c08db0aSAndreas Gohr        if(isset($more['cache']) && $more['cache'] == 'cache') unset($more['cache']);
4368c08db0aSAndreas Gohr        if(!$more['w']) unset($more['w']);
4378c08db0aSAndreas Gohr        if(!$more['h']) unset($more['h']);
4388c08db0aSAndreas Gohr        if(isset($more['id']) && $direct) unset($more['id']);
439b174aeaeSchris        $more = buildURLparams($more, $sep);
4406de3759aSAndreas Gohr    } else {
4418c08db0aSAndreas Gohr        $more = str_replace('cache=cache', '', $more); //skip default
4428c08db0aSAndreas Gohr        $more = str_replace(',,', ',', $more);
443b174aeaeSchris        $more = str_replace(',', $sep, $more);
4446de3759aSAndreas Gohr    }
4456de3759aSAndreas Gohr
44655b2b31bSAndreas Gohr    if($abs) {
44755b2b31bSAndreas Gohr        $xlink = DOKU_URL;
44855b2b31bSAndreas Gohr    } else {
4496de3759aSAndreas Gohr        $xlink = DOKU_BASE;
45055b2b31bSAndreas Gohr    }
4516de3759aSAndreas Gohr
4526de3759aSAndreas Gohr    // external URLs are always direct without rewriting
4536de3759aSAndreas Gohr    if(preg_match('#^(https?|ftp)://#i', $id)) {
4546de3759aSAndreas Gohr        $xlink .= 'lib/exe/fetch.php';
45569d17d94SAndreas Gohr        // add hash:
45669d17d94SAndreas Gohr        $xlink .= '?hash='.substr(md5(auth_cookiesalt().$id), 0, 6);
4576de3759aSAndreas Gohr        if($more) {
45869d17d94SAndreas Gohr            $xlink .= $sep.$more;
459b174aeaeSchris            $xlink .= $sep.'media='.rawurlencode($id);
4606de3759aSAndreas Gohr        } else {
46169d17d94SAndreas Gohr            $xlink .= $sep.'media='.rawurlencode($id);
4626de3759aSAndreas Gohr        }
4636de3759aSAndreas Gohr        return $xlink;
4646de3759aSAndreas Gohr    }
4656de3759aSAndreas Gohr
4666de3759aSAndreas Gohr    $id = idfilter($id);
4676de3759aSAndreas Gohr
4686de3759aSAndreas Gohr    // decide on scriptname
4696de3759aSAndreas Gohr    if($direct) {
4706de3759aSAndreas Gohr        if($conf['userewrite'] == 1) {
4716de3759aSAndreas Gohr            $script = '_media';
4726de3759aSAndreas Gohr        } else {
4736de3759aSAndreas Gohr            $script = 'lib/exe/fetch.php';
4746de3759aSAndreas Gohr        }
4756de3759aSAndreas Gohr    } else {
4766de3759aSAndreas Gohr        if($conf['userewrite'] == 1) {
4776de3759aSAndreas Gohr            $script = '_detail';
4786de3759aSAndreas Gohr        } else {
4796de3759aSAndreas Gohr            $script = 'lib/exe/detail.php';
4806de3759aSAndreas Gohr        }
4816de3759aSAndreas Gohr    }
4826de3759aSAndreas Gohr
4836de3759aSAndreas Gohr    // build URL based on rewrite mode
4846de3759aSAndreas Gohr    if($conf['userewrite']) {
4856de3759aSAndreas Gohr        $xlink .= $script.'/'.$id;
4866de3759aSAndreas Gohr        if($more) $xlink .= '?'.$more;
4876de3759aSAndreas Gohr    } else {
4886de3759aSAndreas Gohr        if($more) {
489a99d3236SEsther Brunner            $xlink .= $script.'?'.$more;
490b174aeaeSchris            $xlink .= $sep.'media='.$id;
4916de3759aSAndreas Gohr        } else {
492a99d3236SEsther Brunner            $xlink .= $script.'?media='.$id;
4936de3759aSAndreas Gohr        }
4946de3759aSAndreas Gohr    }
4956de3759aSAndreas Gohr
4966de3759aSAndreas Gohr    return $xlink;
4976de3759aSAndreas Gohr}
4986de3759aSAndreas Gohr
4996de3759aSAndreas Gohr/**
50025ca5b17SAndreas Gohr * Returns the URL to the DokuWiki base script
50115fae107Sandi *
50225ca5b17SAndreas Gohr * Consider using wl() instead, unless you absoutely need the doku.php endpoint
50325ca5b17SAndreas Gohr *
50415fae107Sandi * @author Andreas Gohr <andi@splitbrain.org>
505f3f0262cSandi */
50625ca5b17SAndreas Gohrfunction script() {
507ed7b5f09Sandi    return DOKU_BASE.DOKU_SCRIPT;
508f3f0262cSandi}
509f3f0262cSandi
510f3f0262cSandi/**
51115fae107Sandi * Spamcheck against wordlist
51215fae107Sandi *
513f3f0262cSandi * Checks the wikitext against a list of blocked expressions
514f3f0262cSandi * returns true if the text contains any bad words
51515fae107Sandi *
516e403cc58SMichael Klier * Triggers COMMON_WORDBLOCK_BLOCKED
517e403cc58SMichael Klier *
518e403cc58SMichael Klier *  Action Plugins can use this event to inspect the blocked data
519e403cc58SMichael Klier *  and gain information about the user who was blocked.
520e403cc58SMichael Klier *
521e403cc58SMichael Klier *  Event data:
522e403cc58SMichael Klier *    data['matches']  - array of matches
523e403cc58SMichael Klier *    data['userinfo'] - information about the blocked user
524e403cc58SMichael Klier *      [ip]           - ip address
525e403cc58SMichael Klier *      [user]         - username (if logged in)
526e403cc58SMichael Klier *      [mail]         - mail address (if logged in)
527e403cc58SMichael Klier *      [name]         - real name (if logged in)
528e403cc58SMichael Klier *
52915fae107Sandi * @author Andreas Gohr <andi@splitbrain.org>
5306dffa0e0SAndreas Gohr * @author Michael Klier <chi@chimeric.de>
5316dffa0e0SAndreas Gohr * @param  string $text - optional text to check, if not given the globals are used
5326dffa0e0SAndreas Gohr * @return bool         - true if a spam word was found
533f3f0262cSandi */
5346dffa0e0SAndreas Gohrfunction checkwordblock($text = '') {
535f3f0262cSandi    global $TEXT;
5366dffa0e0SAndreas Gohr    global $PRE;
5376dffa0e0SAndreas Gohr    global $SUF;
538f3f0262cSandi    global $conf;
539e403cc58SMichael Klier    global $INFO;
540f3f0262cSandi
541f3f0262cSandi    if(!$conf['usewordblock']) return false;
542f3f0262cSandi
5436dffa0e0SAndreas Gohr    if(!$text) $text = "$PRE $TEXT $SUF";
5446dffa0e0SAndreas Gohr
545041d1964SAndreas Gohr    // we prepare the text a tiny bit to prevent spammers circumventing URL checks
5466dffa0e0SAndreas Gohr    $text = preg_replace('!(\b)(www\.[\w.:?\-;,]+?\.[\w.:?\-;,]+?[\w/\#~:.?+=&%@\!\-.:?\-;,]+?)([.:?\-;,]*[^\w/\#~:.?+=&%@\!\-.:?\-;,])!i', '\1http://\2 \2\3', $text);
547041d1964SAndreas Gohr
548b9ac8716Schris    $wordblocks = getWordblocks();
5493e2965d7Sandi    // how many lines to read at once (to work around some PCRE limits)
5503e2965d7Sandi    if(version_compare(phpversion(), '4.3.0', '<')) {
5513e2965d7Sandi        // old versions of PCRE define a maximum of parenthesises even if no
5523e2965d7Sandi        // backreferences are used - the maximum is 99
5533e2965d7Sandi        // this is very bad performancewise and may even be too high still
5543e2965d7Sandi        $chunksize = 40;
5553e2965d7Sandi    } else {
556a51d08efSAndreas Gohr        // read file in chunks of 200 - this should work around the
5573e2965d7Sandi        // MAX_PATTERN_SIZE in modern PCRE
558a51d08efSAndreas Gohr        $chunksize = 200;
5593e2965d7Sandi    }
560b9ac8716Schris    while($blocks = array_splice($wordblocks, 0, $chunksize)) {
561f3f0262cSandi        $re = array();
56249eb6e38SAndreas Gohr        // build regexp from blocks
563f3f0262cSandi        foreach($blocks as $block) {
564f3f0262cSandi            $block = preg_replace('/#.*$/', '', $block);
565f3f0262cSandi            $block = trim($block);
566f3f0262cSandi            if(empty($block)) continue;
567f3f0262cSandi            $re[] = $block;
568f3f0262cSandi        }
569e403cc58SMichael Klier        if(count($re) && preg_match('#('.join('|', $re).')#si', $text, $matches)) {
570e403cc58SMichael Klier            // prepare event data
571e403cc58SMichael Klier            $data['matches']        = $matches;
572e403cc58SMichael Klier            $data['userinfo']['ip'] = $_SERVER['REMOTE_ADDR'];
573e403cc58SMichael Klier            if($_SERVER['REMOTE_USER']) {
574e403cc58SMichael Klier                $data['userinfo']['user'] = $_SERVER['REMOTE_USER'];
575e403cc58SMichael Klier                $data['userinfo']['name'] = $INFO['userinfo']['name'];
576e403cc58SMichael Klier                $data['userinfo']['mail'] = $INFO['userinfo']['mail'];
577e403cc58SMichael Klier            }
578e403cc58SMichael Klier            $callback = create_function('', 'return true;');
579e403cc58SMichael Klier            return trigger_event('COMMON_WORDBLOCK_BLOCKED', $data, $callback, true);
580b9ac8716Schris        }
581703f6fdeSandi    }
582f3f0262cSandi    return false;
583f3f0262cSandi}
584f3f0262cSandi
585f3f0262cSandi/**
58615fae107Sandi * Return the IP of the client
58715fae107Sandi *
5886d8affe6SAndreas Gohr * Honours X-Forwarded-For and X-Real-IP Proxy Headers
58915fae107Sandi *
5906d8affe6SAndreas Gohr * It returns a comma separated list of IPs if the above mentioned
5916d8affe6SAndreas Gohr * headers are set. If the single parameter is set, it tries to return
5926d8affe6SAndreas Gohr * a routable public address, prefering the ones suplied in the X
5936d8affe6SAndreas Gohr * headers
5946d8affe6SAndreas Gohr *
59515fae107Sandi * @author Andreas Gohr <andi@splitbrain.org>
5963272d797SAndreas Gohr * @param  boolean $single If set only a single IP is returned
5973272d797SAndreas Gohr * @return string
598f3f0262cSandi */
5996d8affe6SAndreas Gohrfunction clientIP($single = false) {
6006d8affe6SAndreas Gohr    $ip   = array();
6016d8affe6SAndreas Gohr    $ip[] = $_SERVER['REMOTE_ADDR'];
602bb4866bdSchris    if(!empty($_SERVER['HTTP_X_FORWARDED_FOR']))
6035cbeffbfSMarcel Pennewiß        $ip = array_merge($ip, explode(',', str_replace(' ', '', $_SERVER['HTTP_X_FORWARDED_FOR'])));
604bb4866bdSchris    if(!empty($_SERVER['HTTP_X_REAL_IP']))
6055cbeffbfSMarcel Pennewiß        $ip = array_merge($ip, explode(',', str_replace(' ', '', $_SERVER['HTTP_X_REAL_IP'])));
6066d8affe6SAndreas Gohr
607dc14c6d1SGuy Brand    // some IPv4/v6 regexps borrowed from Feyd
608dc14c6d1SGuy Brand    // see: http://forums.devnetwork.net/viewtopic.php?f=38&t=53479
609dc14c6d1SGuy Brand    $dec_octet   = '(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]\d|[0-9])';
610dc14c6d1SGuy Brand    $hex_digit   = '[A-Fa-f0-9]';
611dc14c6d1SGuy Brand    $h16         = "{$hex_digit}{1,4}";
612dc14c6d1SGuy Brand    $IPv4Address = "$dec_octet\\.$dec_octet\\.$dec_octet\\.$dec_octet";
613dc14c6d1SGuy Brand    $ls32        = "(?:$h16:$h16|$IPv4Address)";
614dc14c6d1SGuy Brand    $IPv6Address =
615dc14c6d1SGuy Brand        "(?:(?:{$IPv4Address})|(?:".
616dc14c6d1SGuy Brand            "(?:$h16:){6}$ls32".
617dc14c6d1SGuy Brand            "|::(?:$h16:){5}$ls32".
618dc14c6d1SGuy Brand            "|(?:$h16)?::(?:$h16:){4}$ls32".
619dc14c6d1SGuy Brand            "|(?:(?:$h16:){0,1}$h16)?::(?:$h16:){3}$ls32".
620dc14c6d1SGuy Brand            "|(?:(?:$h16:){0,2}$h16)?::(?:$h16:){2}$ls32".
621dc14c6d1SGuy Brand            "|(?:(?:$h16:){0,3}$h16)?::(?:$h16:){1}$ls32".
622dc14c6d1SGuy Brand            "|(?:(?:$h16:){0,4}$h16)?::$ls32".
623dc14c6d1SGuy Brand            "|(?:(?:$h16:){0,5}$h16)?::$h16".
624dc14c6d1SGuy Brand            "|(?:(?:$h16:){0,6}$h16)?::".
625dc14c6d1SGuy Brand            ")(?:\\/(?:12[0-8]|1[0-1][0-9]|[1-9][0-9]|[0-9]))?)";
626dc14c6d1SGuy Brand
6276d8affe6SAndreas Gohr    // remove any non-IP stuff
6286d8affe6SAndreas Gohr    $cnt   = count($ip);
6294ff28443Schris    $match = array();
6306d8affe6SAndreas Gohr    for($i = 0; $i < $cnt; $i++) {
631dc14c6d1SGuy Brand        if(preg_match("/^$IPv4Address$/", $ip[$i], $match) || preg_match("/^$IPv6Address$/", $ip[$i], $match)) {
6324ff28443Schris            $ip[$i] = $match[0];
6334ff28443Schris        } else {
6344ff28443Schris            $ip[$i] = '';
6354ff28443Schris        }
6366d8affe6SAndreas Gohr        if(empty($ip[$i])) unset($ip[$i]);
637f3f0262cSandi    }
6386d8affe6SAndreas Gohr    $ip = array_values(array_unique($ip));
6396d8affe6SAndreas Gohr    if(!$ip[0]) $ip[0] = '0.0.0.0'; // for some strange reason we don't have a IP
6406d8affe6SAndreas Gohr
6416d8affe6SAndreas Gohr    if(!$single) return join(',', $ip);
6426d8affe6SAndreas Gohr
6436d8affe6SAndreas Gohr    // decide which IP to use, trying to avoid local addresses
6446d8affe6SAndreas Gohr    $ip = array_reverse($ip);
6456d8affe6SAndreas Gohr    foreach($ip as $i) {
6462343a762SAndreas Gohr        if(preg_match('/^(::1|[fF][eE]80:|127\.|10\.|192\.168\.|172\.((1[6-9])|(2[0-9])|(3[0-1]))\.)/', $i)) {
6476d8affe6SAndreas Gohr            continue;
6486d8affe6SAndreas Gohr        } else {
6496d8affe6SAndreas Gohr            return $i;
6506d8affe6SAndreas Gohr        }
6516d8affe6SAndreas Gohr    }
6526d8affe6SAndreas Gohr    // still here? just use the first (last) address
6536d8affe6SAndreas Gohr    return $ip[0];
654f3f0262cSandi}
655f3f0262cSandi
656f3f0262cSandi/**
6571c548ebeSAndreas Gohr * Check if the browser is on a mobile device
6581c548ebeSAndreas Gohr *
6591c548ebeSAndreas Gohr * Adapted from the example code at url below
6601c548ebeSAndreas Gohr *
6611c548ebeSAndreas Gohr * @link http://www.brainhandles.com/2007/10/15/detecting-mobile-browsers/#code
6621c548ebeSAndreas Gohr */
6631c548ebeSAndreas Gohrfunction clientismobile() {
6641c548ebeSAndreas Gohr
6651c548ebeSAndreas Gohr    if(isset($_SERVER['HTTP_X_WAP_PROFILE'])) return true;
6661c548ebeSAndreas Gohr
6671c548ebeSAndreas Gohr    if(preg_match('/wap\.|\.wap/i', $_SERVER['HTTP_ACCEPT'])) return true;
6681c548ebeSAndreas Gohr
6691c548ebeSAndreas Gohr    if(!isset($_SERVER['HTTP_USER_AGENT'])) return false;
6701c548ebeSAndreas Gohr
6711c548ebeSAndreas Gohr    $uamatches = 'midp|j2me|avantg|docomo|novarra|palmos|palmsource|240x320|opwv|chtml|pda|windows ce|mmp\/|blackberry|mib\/|symbian|wireless|nokia|hand|mobi|phone|cdm|up\.b|audio|SIE\-|SEC\-|samsung|HTC|mot\-|mitsu|sagem|sony|alcatel|lg|erics|vx|NEC|philips|mmm|xx|panasonic|sharp|wap|sch|rover|pocket|benq|java|pt|pg|vox|amoi|bird|compal|kg|voda|sany|kdd|dbt|sendo|sgh|gradi|jb|\d\d\di|moto';
6721c548ebeSAndreas Gohr
6731c548ebeSAndreas Gohr    if(preg_match("/$uamatches/i", $_SERVER['HTTP_USER_AGENT'])) return true;
6741c548ebeSAndreas Gohr
6751c548ebeSAndreas Gohr    return false;
6761c548ebeSAndreas Gohr}
6771c548ebeSAndreas Gohr
6781c548ebeSAndreas Gohr/**
67963211f61SGlen Harris * Convert one or more comma separated IPs to hostnames
68063211f61SGlen Harris *
68122ef1e32SAndreas Gohr * If $conf['dnslookups'] is disabled it simply returns the input string
68222ef1e32SAndreas Gohr *
68363211f61SGlen Harris * @author Glen Harris <astfgl@iamnota.org>
6843272d797SAndreas Gohr * @param  string $ips comma separated list of IP addresses
6853272d797SAndreas Gohr * @return string a comma separated list of hostnames
68663211f61SGlen Harris */
68763211f61SGlen Harrisfunction gethostsbyaddrs($ips) {
68822ef1e32SAndreas Gohr    global $conf;
68922ef1e32SAndreas Gohr    if(!$conf['dnslookups']) return $ips;
69022ef1e32SAndreas Gohr
69163211f61SGlen Harris    $hosts = array();
69263211f61SGlen Harris    $ips   = explode(',', $ips);
693551a720fSMichael Klier
694551a720fSMichael Klier    if(is_array($ips)) {
6953886270dSAndreas Gohr        foreach($ips as $ip) {
696551a720fSMichael Klier            $hosts[] = gethostbyaddr(trim($ip));
69763211f61SGlen Harris        }
698551a720fSMichael Klier        return join(',', $hosts);
699551a720fSMichael Klier    } else {
700551a720fSMichael Klier        return gethostbyaddr(trim($ips));
701551a720fSMichael Klier    }
70263211f61SGlen Harris}
70363211f61SGlen Harris
70463211f61SGlen Harris/**
70515fae107Sandi * Checks if a given page is currently locked.
70615fae107Sandi *
707f3f0262cSandi * removes stale lockfiles
70815fae107Sandi *
70915fae107Sandi * @author Andreas Gohr <andi@splitbrain.org>
710f3f0262cSandi */
711f3f0262cSandifunction checklock($id) {
712f3f0262cSandi    global $conf;
713c9b4bd1eSBen Coburn    $lock = wikiLockFN($id);
714f3f0262cSandi
715f3f0262cSandi    //no lockfile
716f3f0262cSandi    if(!@file_exists($lock)) return false;
717f3f0262cSandi
718f3f0262cSandi    //lockfile expired
719f3f0262cSandi    if((time() - filemtime($lock)) > $conf['locktime']) {
720d8186216SBen Coburn        @unlink($lock);
721f3f0262cSandi        return false;
722f3f0262cSandi    }
723f3f0262cSandi
724f3f0262cSandi    //my own lock
72585fef7e2SAndreas Gohr    list($ip, $session) = explode("\n", io_readFile($lock));
72685fef7e2SAndreas Gohr    if($ip == $_SERVER['REMOTE_USER'] || $ip == clientIP() || $session == session_id()) {
727f3f0262cSandi        return false;
728f3f0262cSandi    }
729f3f0262cSandi
730f3f0262cSandi    return $ip;
731f3f0262cSandi}
732f3f0262cSandi
733f3f0262cSandi/**
73415fae107Sandi * Lock a page for editing
73515fae107Sandi *
73615fae107Sandi * @author Andreas Gohr <andi@splitbrain.org>
737f3f0262cSandi */
738f3f0262cSandifunction lock($id) {
739544ed901SDaniel Calviño Sánchez    global $conf;
740544ed901SDaniel Calviño Sánchez
741544ed901SDaniel Calviño Sánchez    if($conf['locktime'] == 0) {
742544ed901SDaniel Calviño Sánchez        return;
743544ed901SDaniel Calviño Sánchez    }
744544ed901SDaniel Calviño Sánchez
745c9b4bd1eSBen Coburn    $lock = wikiLockFN($id);
746f3f0262cSandi    if($_SERVER['REMOTE_USER']) {
747f3f0262cSandi        io_saveFile($lock, $_SERVER['REMOTE_USER']);
748f3f0262cSandi    } else {
74985fef7e2SAndreas Gohr        io_saveFile($lock, clientIP()."\n".session_id());
750f3f0262cSandi    }
751f3f0262cSandi}
752f3f0262cSandi
753f3f0262cSandi/**
75415fae107Sandi * Unlock a page if it was locked by the user
755f3f0262cSandi *
75615fae107Sandi * @author Andreas Gohr <andi@splitbrain.org>
7573272d797SAndreas Gohr * @param string $id page id to unlock
75815fae107Sandi * @return bool true if a lock was removed
759f3f0262cSandi */
760f3f0262cSandifunction unlock($id) {
761c9b4bd1eSBen Coburn    $lock = wikiLockFN($id);
762f3f0262cSandi    if(@file_exists($lock)) {
76385fef7e2SAndreas Gohr        list($ip, $session) = explode("\n", io_readFile($lock));
76485fef7e2SAndreas Gohr        if($ip == $_SERVER['REMOTE_USER'] || $ip == clientIP() || $session == session_id()) {
765f3f0262cSandi            @unlink($lock);
766f3f0262cSandi            return true;
767f3f0262cSandi        }
768f3f0262cSandi    }
769f3f0262cSandi    return false;
770f3f0262cSandi}
771f3f0262cSandi
772f3f0262cSandi/**
773f3f0262cSandi * convert line ending to unix format
774f3f0262cSandi *
77515fae107Sandi * @see    formText() for 2crlf conversion
77615fae107Sandi * @author Andreas Gohr <andi@splitbrain.org>
777f3f0262cSandi */
778f3f0262cSandifunction cleanText($text) {
779f3f0262cSandi    $text = preg_replace("/(\015\012)|(\015)/", "\012", $text);
780f3f0262cSandi    return $text;
781f3f0262cSandi}
782f3f0262cSandi
783f3f0262cSandi/**
784f3f0262cSandi * Prepares text for print in Webforms by encoding special chars.
785f3f0262cSandi * It also converts line endings to Windows format which is
786f3f0262cSandi * pseudo standard for webforms.
787f3f0262cSandi *
78815fae107Sandi * @see    cleanText() for 2unix conversion
78915fae107Sandi * @author Andreas Gohr <andi@splitbrain.org>
790f3f0262cSandi */
791f3f0262cSandifunction formText($text) {
7925b7d45a5SAndreas Gohr    $text = str_replace("\012", "\015\012", $text);
793f3f0262cSandi    return htmlspecialchars($text);
794f3f0262cSandi}
795f3f0262cSandi
796f3f0262cSandi/**
79715fae107Sandi * Returns the specified local text in raw format
79815fae107Sandi *
79915fae107Sandi * @author Andreas Gohr <andi@splitbrain.org>
800f3f0262cSandi */
8012adaf2b8SAndreas Gohrfunction rawLocale($id, $ext = 'txt') {
8022adaf2b8SAndreas Gohr    return io_readFile(localeFN($id, $ext));
803f3f0262cSandi}
804f3f0262cSandi
805f3f0262cSandi/**
806f3f0262cSandi * Returns the raw WikiText
80715fae107Sandi *
80815fae107Sandi * @author Andreas Gohr <andi@splitbrain.org>
809f3f0262cSandi */
810f3f0262cSandifunction rawWiki($id, $rev = '') {
811cc7d0c94SBen Coburn    return io_readWikiPage(wikiFN($id, $rev), $id, $rev);
812f3f0262cSandi}
813f3f0262cSandi
814f3f0262cSandi/**
8157146cee2SAndreas Gohr * Returns the pagetemplate contents for the ID's namespace
8167146cee2SAndreas Gohr *
8177b84afa2SAndreas Gohr * @triggers COMMON_PAGETPL_LOAD
8187146cee2SAndreas Gohr * @author Andreas Gohr <andi@splitbrain.org>
8197146cee2SAndreas Gohr */
820fe17917eSAdrian Langfunction pageTemplate($id) {
821a15ce62dSEsther Brunner    global $conf;
822e29549feSAndreas Gohr
823fe17917eSAdrian Lang    if(is_array($id)) $id = $id[0];
824e29549feSAndreas Gohr
8257b84afa2SAndreas Gohr    // prepare initial event data
8267b84afa2SAndreas Gohr    $data = array(
8277b84afa2SAndreas Gohr        'id'        => $id, // the id of the page to be created
8287b84afa2SAndreas Gohr        'tpl'       => '', // the text used as template
8297b84afa2SAndreas Gohr        'tplfile'   => '', // the file above text was/should be loaded from
8307b84afa2SAndreas Gohr        'doreplace' => true // should wildcard replacements be done on the text?
8317b84afa2SAndreas Gohr    );
8327b84afa2SAndreas Gohr
8337b84afa2SAndreas Gohr    $evt = new Doku_Event('COMMON_PAGETPL_LOAD', $data);
8347b84afa2SAndreas Gohr    if($evt->advise_before(true)) {
8357b84afa2SAndreas Gohr        // the before event might have loaded the content already
8367b84afa2SAndreas Gohr        if(empty($data['tpl'])) {
8377b84afa2SAndreas Gohr            // if the before event did not set a template file, try to find one
8387b84afa2SAndreas Gohr            if(empty($data['tplfile'])) {
839fe17917eSAdrian Lang                $path = dirname(wikiFN($id));
840e29549feSAndreas Gohr                if(@file_exists($path.'/_template.txt')) {
8417b84afa2SAndreas Gohr                    $data['tplfile'] = $path.'/_template.txt';
842e29549feSAndreas Gohr                } else {
843e29549feSAndreas Gohr                    // search upper namespaces for templates
844e29549feSAndreas Gohr                    $len = strlen(rtrim($conf['datadir'], '/'));
845e29549feSAndreas Gohr                    while(strlen($path) >= $len) {
846e29549feSAndreas Gohr                        if(@file_exists($path.'/__template.txt')) {
8477b84afa2SAndreas Gohr                            $data['tplfile'] = $path.'/__template.txt';
848e29549feSAndreas Gohr                            break;
849e29549feSAndreas Gohr                        }
850e29549feSAndreas Gohr                        $path = substr($path, 0, strrpos($path, '/'));
851e29549feSAndreas Gohr                    }
852e29549feSAndreas Gohr                }
8537b84afa2SAndreas Gohr            }
8547b84afa2SAndreas Gohr            // load the content
8553d7ac595SMichael Hamann            $data['tpl'] = io_readFile($data['tplfile']);
8567b84afa2SAndreas Gohr        }
857a1bbd05bSMichael Hamann        if($data['doreplace']) parsePageTemplate($data);
8587b84afa2SAndreas Gohr    }
8597b84afa2SAndreas Gohr    $evt->advise_after();
8607b84afa2SAndreas Gohr    unset($evt);
8617b84afa2SAndreas Gohr
862fe17917eSAdrian Lang    return $data['tpl'];
8632b1223ecSAdrian Lang}
8642b1223ecSAdrian Lang
8652b1223ecSAdrian Lang/**
8662b1223ecSAdrian Lang * Performs common page template replacements
8677b84afa2SAndreas Gohr * This works on data from COMMON_PAGETPL_LOAD
8682b1223ecSAdrian Lang *
8692b1223ecSAdrian Lang * @author Andreas Gohr <andi@splitbrain.org>
8702b1223ecSAdrian Lang */
871d535a2e9Sstretchyboyfunction parsePageTemplate(&$data) {
8723272d797SAndreas Gohr    /**
8733272d797SAndreas Gohr     * @var string $id        the id of the page to be created
8743272d797SAndreas Gohr     * @var string $tpl       the text used as template
8753272d797SAndreas Gohr     * @var string $tplfile   the file above text was/should be loaded from
8763272d797SAndreas Gohr     * @var bool   $doreplace should wildcard replacements be done on the text?
8773272d797SAndreas Gohr     */
878fe17917eSAdrian Lang    extract($data);
879fe17917eSAdrian Lang
880b856f7dfSAdrian Lang    global $USERINFO;
881bce53b1fSAdrian Lang    global $conf;
882e29549feSAndreas Gohr
883e29549feSAndreas Gohr    // replace placeholders
88426ece5a7SAndreas Gohr    $file = noNS($id);
88537c1acbdSAdrian Lang    $page = strtr($file, $conf['sepchar'], ' ');
88626ece5a7SAndreas Gohr
8873272d797SAndreas Gohr    $tpl = str_replace(
8883272d797SAndreas Gohr        array(
88926ece5a7SAndreas Gohr             '@ID@',
89026ece5a7SAndreas Gohr             '@NS@',
89126ece5a7SAndreas Gohr             '@FILE@',
89226ece5a7SAndreas Gohr             '@!FILE@',
89326ece5a7SAndreas Gohr             '@!FILE!@',
89426ece5a7SAndreas Gohr             '@PAGE@',
89526ece5a7SAndreas Gohr             '@!PAGE@',
89626ece5a7SAndreas Gohr             '@!!PAGE@',
89726ece5a7SAndreas Gohr             '@!PAGE!@',
89826ece5a7SAndreas Gohr             '@USER@',
89926ece5a7SAndreas Gohr             '@NAME@',
90026ece5a7SAndreas Gohr             '@MAIL@',
90126ece5a7SAndreas Gohr             '@DATE@',
90226ece5a7SAndreas Gohr        ),
90326ece5a7SAndreas Gohr        array(
90426ece5a7SAndreas Gohr             $id,
90526ece5a7SAndreas Gohr             getNS($id),
90626ece5a7SAndreas Gohr             $file,
90726ece5a7SAndreas Gohr             utf8_ucfirst($file),
90826ece5a7SAndreas Gohr             utf8_strtoupper($file),
90926ece5a7SAndreas Gohr             $page,
91026ece5a7SAndreas Gohr             utf8_ucfirst($page),
91126ece5a7SAndreas Gohr             utf8_ucwords($page),
91226ece5a7SAndreas Gohr             utf8_strtoupper($page),
91326ece5a7SAndreas Gohr             $_SERVER['REMOTE_USER'],
914b856f7dfSAdrian Lang             $USERINFO['name'],
915b856f7dfSAdrian Lang             $USERINFO['mail'],
91626ece5a7SAndreas Gohr             $conf['dformat'],
9173272d797SAndreas Gohr        ), $tpl
9183272d797SAndreas Gohr    );
91926ece5a7SAndreas Gohr
9207d644fc8SAndreas Gohr    // we need the callback to work around strftime's char limit
9217d644fc8SAndreas Gohr    $tpl         = preg_replace_callback('/%./', create_function('$m', 'return strftime($m[0]);'), $tpl);
922d535a2e9Sstretchyboy    $data['tpl'] = $tpl;
923a15ce62dSEsther Brunner    return $tpl;
9247146cee2SAndreas Gohr}
9257146cee2SAndreas Gohr
9267146cee2SAndreas Gohr/**
92715fae107Sandi * Returns the raw Wiki Text in three slices.
92815fae107Sandi *
92915fae107Sandi * The range parameter needs to have the form "from-to"
93015cfe303Sandi * and gives the range of the section in bytes - no
93115cfe303Sandi * UTF-8 awareness is needed.
932f3f0262cSandi * The returned order is prefix, section and suffix.
93315fae107Sandi *
93415fae107Sandi * @author Andreas Gohr <andi@splitbrain.org>
935f3f0262cSandi */
936f3f0262cSandifunction rawWikiSlices($range, $id, $rev = '') {
937cc7d0c94SBen Coburn    $text = io_readWikiPage(wikiFN($id, $rev), $id, $rev);
938f3f0262cSandi
93980fcb268SAdrian Lang    // Parse range
94080fcb268SAdrian Lang    list($from, $to) = explode('-', $range, 2);
94180fcb268SAdrian Lang    // Make range zero-based, use defaults if marker is missing
94280fcb268SAdrian Lang    $from = !$from ? 0 : ($from - 1);
94380fcb268SAdrian Lang    $to   = !$to ? strlen($text) : ($to - 1);
94480fcb268SAdrian Lang
94580fcb268SAdrian Lang    $slices[0] = substr($text, 0, $from);
94680fcb268SAdrian Lang    $slices[1] = substr($text, $from, $to - $from);
94715cfe303Sandi    $slices[2] = substr($text, $to);
948f3f0262cSandi    return $slices;
949f3f0262cSandi}
950f3f0262cSandi
951f3f0262cSandi/**
95215fae107Sandi * Joins wiki text slices
95315fae107Sandi *
95480fcb268SAdrian Lang * function to join the text slices.
955f3f0262cSandi * When the pretty parameter is set to true it adds additional empty
956f3f0262cSandi * lines between sections if needed (used on saving).
95715fae107Sandi *
95815fae107Sandi * @author Andreas Gohr <andi@splitbrain.org>
959f3f0262cSandi */
960f3f0262cSandifunction con($pre, $text, $suf, $pretty = false) {
961f3f0262cSandi    if($pretty) {
96280fcb268SAdrian Lang        if($pre !== '' && substr($pre, -1) !== "\n" &&
9633272d797SAndreas Gohr            substr($text, 0, 1) !== "\n"
9643272d797SAndreas Gohr        ) {
96580fcb268SAdrian Lang            $pre .= "\n";
96680fcb268SAdrian Lang        }
96780fcb268SAdrian Lang        if($suf !== '' && substr($text, -1) !== "\n" &&
9683272d797SAndreas Gohr            substr($suf, 0, 1) !== "\n"
9693272d797SAndreas Gohr        ) {
97080fcb268SAdrian Lang            $text .= "\n";
97180fcb268SAdrian Lang        }
972f3f0262cSandi    }
973f3f0262cSandi
974f3f0262cSandi    return $pre.$text.$suf;
975f3f0262cSandi}
976f3f0262cSandi
977f3f0262cSandi/**
978a701424fSBen Coburn * Saves a wikitext by calling io_writeWikiPage.
979a701424fSBen Coburn * Also directs changelog and attic updates.
98015fae107Sandi *
98115fae107Sandi * @author Andreas Gohr <andi@splitbrain.org>
98271726d78SBen Coburn * @author Ben Coburn <btcoburn@silicodon.net>
983f3f0262cSandi */
984b6912aeaSAndreas Gohrfunction saveWikiText($id, $text, $summary, $minor = false) {
985a701424fSBen Coburn    /* Note to developers:
986a701424fSBen Coburn       This code is subtle and delicate. Test the behavior of
987a701424fSBen Coburn       the attic and changelog with dokuwiki and external edits
988a701424fSBen Coburn       after any changes. External edits change the wiki page
989a701424fSBen Coburn       directly without using php or dokuwiki.
990a701424fSBen Coburn     */
991f3f0262cSandi    global $conf;
992f3f0262cSandi    global $lang;
99371726d78SBen Coburn    global $REV;
994f3f0262cSandi    // ignore if no changes were made
995f3f0262cSandi    if($text == rawWiki($id, '')) {
996f3f0262cSandi        return;
997f3f0262cSandi    }
998f3f0262cSandi
999f3f0262cSandi    $file        = wikiFN($id);
1000a701424fSBen Coburn    $old         = @filemtime($file); // from page
1001407e65b9SAndreas Gohr    $wasRemoved  = (trim($text) == ''); // check for empty or whitespace only
1002d8186216SBen Coburn    $wasCreated  = !@file_exists($file);
100371726d78SBen Coburn    $wasReverted = ($REV == true);
1004e45b34cdSBen Coburn    $newRev      = false;
1005a701424fSBen Coburn    $oldRev      = getRevisions($id, -1, 1, 1024); // from changelog
1006a701424fSBen Coburn    $oldRev      = (int) (empty($oldRev) ? 0 : $oldRev[0]);
1007a701424fSBen Coburn    if(!@file_exists(wikiFN($id, $old)) && @file_exists($file) && $old >= $oldRev) {
100846844156SBen Coburn        // add old revision to the attic if missing
100946844156SBen Coburn        saveOldRevision($id);
101046844156SBen Coburn        // add a changelog entry if this edit came from outside dokuwiki
1011a701424fSBen Coburn        if($old > $oldRev) {
1012ebf1501fSBen Coburn            addLogEntry($old, $id, DOKU_CHANGE_TYPE_EDIT, $lang['external_edit'], '', array('ExternalEdit'=> true));
101346844156SBen Coburn            // remove soon to be stale instructions
101446844156SBen Coburn            $cache = new cache_instructions($id, $file);
101546844156SBen Coburn            $cache->removeCache();
101646844156SBen Coburn        }
101746844156SBen Coburn    }
1018f3f0262cSandi
101971726d78SBen Coburn    if($wasRemoved) {
102030725328SGabriel Birke        // Send "update" event with empty data, so plugins can react to page deletion
102130725328SGabriel Birke        $data = array(array($file, '', false), getNS($id), noNS($id), false);
102230725328SGabriel Birke        trigger_event('IO_WIKIPAGE_WRITE', $data);
1023e45b34cdSBen Coburn        // pre-save deleted revision
1024e45b34cdSBen Coburn        @touch($file);
102546844156SBen Coburn        clearstatcache();
1026e45b34cdSBen Coburn        $newRev = saveOldRevision($id);
1027e1f3d9e1SEsther Brunner        // remove empty file
1028f3f0262cSandi        @unlink($file);
1029c5f92742SMichael Hamann        // don't remove old meta info as it should be saved, plugins can use IO_WIKIPAGE_WRITE for removing their metadata...
1030c5f92742SMichael Hamann        // purge non-persistant meta data
10313d1f9ec3SMichael Klier        p_purge_metadata($id);
1032f3f0262cSandi        $del = true;
10333ce054b3Sandi        // autoset summary on deletion
10343ce054b3Sandi        if(empty($summary)) $summary = $lang['deleted'];
103553d6ccfeSandi        // remove empty namespaces
1036cc7d0c94SBen Coburn        io_sweepNS($id, 'datadir');
1037cc7d0c94SBen Coburn        io_sweepNS($id, 'mediadir');
1038f3f0262cSandi    } else {
1039cc7d0c94SBen Coburn        // save file (namespace dir is created in io_writeWikiPage)
1040cc7d0c94SBen Coburn        io_writeWikiPage($file, $text, $id);
104146844156SBen Coburn        // pre-save the revision, to keep the attic in sync
104246844156SBen Coburn        $newRev = saveOldRevision($id);
1043f3f0262cSandi        $del    = false;
1044f3f0262cSandi    }
1045f3f0262cSandi
104671726d78SBen Coburn    // select changelog line type
104771726d78SBen Coburn    $extra = '';
1048ebf1501fSBen Coburn    $type  = DOKU_CHANGE_TYPE_EDIT;
104971726d78SBen Coburn    if($wasReverted) {
1050ebf1501fSBen Coburn        $type  = DOKU_CHANGE_TYPE_REVERT;
105171726d78SBen Coburn        $extra = $REV;
10523272d797SAndreas Gohr    } else if($wasCreated) {
10533272d797SAndreas Gohr        $type = DOKU_CHANGE_TYPE_CREATE;
10543272d797SAndreas Gohr    } else if($wasRemoved) {
10553272d797SAndreas Gohr        $type = DOKU_CHANGE_TYPE_DELETE;
10563272d797SAndreas Gohr    } else if($minor && $conf['useacl'] && $_SERVER['REMOTE_USER']) {
10573272d797SAndreas Gohr        $type = DOKU_CHANGE_TYPE_MINOR_EDIT;
10583272d797SAndreas Gohr    } //minor edits only for logged in users
105971726d78SBen Coburn
1060e45b34cdSBen Coburn    addLogEntry($newRev, $id, $type, $summary, $extra);
106126a0801fSAndreas Gohr    // send notify mails
106290033e9dSAndreas Gohr    notify($id, 'admin', $old, $summary, $minor);
106390033e9dSAndreas Gohr    notify($id, 'subscribers', $old, $summary, $minor);
1064f3f0262cSandi
1065ce6b63d9Schris    // update the purgefile (timestamp of the last time anything within the wiki was changed)
106698407a7aSandi    io_saveFile($conf['cachedir'].'/purgefile', time());
10672eccbdaaSGina Haeussge
10682eccbdaaSGina Haeussge    // if useheading is enabled, purge the cache of all linking pages
1069fe9ec250SChris Smith    if(useHeading('content')) {
10702eccbdaaSGina Haeussge        $pages = ft_backlinks($id);
10712eccbdaaSGina Haeussge        foreach($pages as $page) {
10722eccbdaaSGina Haeussge            $cache = new cache_renderer($page, wikiFN($page), 'xhtml');
10732eccbdaaSGina Haeussge            $cache->removeCache();
10742eccbdaaSGina Haeussge        }
10752eccbdaaSGina Haeussge    }
1076f3f0262cSandi}
1077f3f0262cSandi
1078f3f0262cSandi/**
1079f3f0262cSandi * moves the current version to the attic and returns its
1080f3f0262cSandi * revision date
108115fae107Sandi *
108215fae107Sandi * @author Andreas Gohr <andi@splitbrain.org>
1083f3f0262cSandi */
1084f3f0262cSandifunction saveOldRevision($id) {
1085f3f0262cSandi    global $conf;
1086f3f0262cSandi    $oldf = wikiFN($id);
1087f3f0262cSandi    if(!@file_exists($oldf)) return '';
1088f3f0262cSandi    $date = filemtime($oldf);
1089f3f0262cSandi    $newf = wikiFN($id, $date);
1090cc7d0c94SBen Coburn    io_writeWikiPage($newf, rawWiki($id), $id, $date);
1091f3f0262cSandi    return $date;
1092f3f0262cSandi}
1093f3f0262cSandi
1094f3f0262cSandi/**
1095fde10de4SAdrian Lang * Sends a notify mail on page change or registration
109626a0801fSAndreas Gohr *
109726a0801fSAndreas Gohr * @param string     $id       The changed page
1098fde10de4SAdrian Lang * @param string     $who      Who to notify (admin|subscribers|register)
10993272d797SAndreas Gohr * @param int|string $rev Old page revision
110026a0801fSAndreas Gohr * @param string     $summary  What changed
110190033e9dSAndreas Gohr * @param boolean    $minor    Is this a minor edit?
110202a498e7Schris * @param array      $replace  Additional string substitutions, @KEY@ to be replaced by value
110315fae107Sandi *
11043272d797SAndreas Gohr * @return bool
110515fae107Sandi * @author Andreas Gohr <andi@splitbrain.org>
1106f3f0262cSandi */
110702a498e7Schrisfunction notify($id, $who, $rev = '', $summary = '', $minor = false, $replace = array()) {
1108f3f0262cSandi    global $lang;
1109f3f0262cSandi    global $conf;
111030d7d718SMike Frysinger    global $INFO;
111147a906eaSAndreas Gohr    global $DIFF_INLINESTYLES;
1112b158d625SSteven Danz
11136df843eeSAndreas Gohr    // decide if there is something to do, eg. whom to mail
111426a0801fSAndreas Gohr    if($who == 'admin') {
11153272d797SAndreas Gohr        if(empty($conf['notify'])) return false; //notify enabled?
1116*2ed38036SAndreas Gohr        $tpl = 'mailtext';
111726a0801fSAndreas Gohr        $to  = $conf['notify'];
111826a0801fSAndreas Gohr    } elseif($who == 'subscribers') {
111984c1127cSAndreas Gohr        if(!actionOK('subscribe')) return false; //subscribers enabled?
11203272d797SAndreas Gohr        if($conf['useacl'] && $_SERVER['REMOTE_USER'] && $minor) return false; //skip minors
11218881fcc9SAdrian Lang        $data = array('id' => $id, 'addresslist' => '', 'self' => false);
11223272d797SAndreas Gohr        trigger_event(
11233272d797SAndreas Gohr            'COMMON_NOTIFY_ADDRESSLIST', $data,
1124835242b0SAndreas Gohr            array(new Subscription(), 'notifyaddresses')
11253272d797SAndreas Gohr        );
1126*2ed38036SAndreas Gohr        $to = $data['addresslist'];
1127*2ed38036SAndreas Gohr        if(empty($to)) return false;
1128*2ed38036SAndreas Gohr        $tpl = 'subscr_single';
1129a06e4bdbSSebastian Harl    } elseif($who == 'register') {
11303272d797SAndreas Gohr        if(empty($conf['registernotify'])) return false;
1131a06e4bdbSSebastian Harl        $text = rawLocale('registermail');
1132a06e4bdbSSebastian Harl        $to   = $conf['registernotify'];
113326a0801fSAndreas Gohr    } else {
11343272d797SAndreas Gohr        return false; //just to be safe
113526a0801fSAndreas Gohr    }
113626a0801fSAndreas Gohr
11376df843eeSAndreas Gohr    // prepare content
1138a06e4bdbSSebastian Harl    if($who == 'register') {
1139a06e4bdbSSebastian Harl        $subject = $lang['mail_new_user'].' '.$summary;
1140f3f0262cSandi    } else {
1141*2ed38036SAndreas Gohr        $subscription = new Subscription();
1142*2ed38036SAndreas Gohr        return $subscription->send_diff($to, $tpl, $id, $rev, $summary);
1143f3f0262cSandi    }
1144*2ed38036SAndreas Gohr
11456df843eeSAndreas Gohr
11466df843eeSAndreas Gohr    // send mail
11476df843eeSAndreas Gohr    $mail = new Mailer();
11486df843eeSAndreas Gohr    $mail->to($to);
11496df843eeSAndreas Gohr    $mail->subject($subject);
1150b796e32eSAndreas Gohr    $mail->setBody($text, $trep, $hrep);
11519f3eca0bSAndreas Gohr    if($who == 'subscribers') {
11529f3eca0bSAndreas Gohr        $mail->setHeader(
11539f3eca0bSAndreas Gohr            'List-Unsubscribe',
11549f3eca0bSAndreas Gohr            '<'.wl($id, array('do'=> 'subscribe'), true, '&').'>',
11559f3eca0bSAndreas Gohr            false
11569f3eca0bSAndreas Gohr        );
11579f3eca0bSAndreas Gohr    }
11586df843eeSAndreas Gohr    return $mail->send();
1159f3f0262cSandi}
1160f3f0262cSandi
116115fae107Sandi/**
116271f7bde7SAndreas Gohr * extracts the query from a search engine referrer
116315fae107Sandi *
116415fae107Sandi * @author Andreas Gohr <andi@splitbrain.org>
116571f7bde7SAndreas Gohr * @author Todd Augsburger <todd@rollerorgans.com>
1166f3f0262cSandi */
1167f3f0262cSandifunction getGoogleQuery() {
1168c66972f2SAdrian Lang    if(!isset($_SERVER['HTTP_REFERER'])) {
1169c66972f2SAdrian Lang        return '';
1170c66972f2SAdrian Lang    }
1171f3f0262cSandi    $url = parse_url($_SERVER['HTTP_REFERER']);
1172f3f0262cSandi
1173079b3ac1SAndreas Gohr    // only handle common SEs
1174079b3ac1SAndreas Gohr    if(!preg_match('/(google|bing|yahoo|ask|duckduckgo|babylon|aol|yandex)/',$url['host'])) return '';
1175e4d8a516SKazutaka Miyasaka
1176079b3ac1SAndreas Gohr    $query = array();
1177e4d8a516SKazutaka Miyasaka    // temporary workaround against PHP bug #49733
1178e4d8a516SKazutaka Miyasaka    // see http://bugs.php.net/bug.php?id=49733
1179e4d8a516SKazutaka Miyasaka    if(UTF8_MBSTRING) $enc = mb_internal_encoding();
1180f3f0262cSandi    parse_str($url['query'], $query);
1181e4d8a516SKazutaka Miyasaka    if(UTF8_MBSTRING) mb_internal_encoding($enc);
1182e4d8a516SKazutaka Miyasaka
1183c66972f2SAdrian Lang    $q = '';
1184079b3ac1SAndreas Gohr    if(isset($query['q'])){
1185079b3ac1SAndreas Gohr        $q = $query['q'];
1186079b3ac1SAndreas Gohr    }elseif(isset($query['p'])){
1187079b3ac1SAndreas Gohr        $q = $query['p'];
1188079b3ac1SAndreas Gohr    }elseif(isset($query['query'])){
1189079b3ac1SAndreas Gohr        $q = $query['query'];
1190079b3ac1SAndreas Gohr    }
1191079b3ac1SAndreas Gohr    $q = trim($q);
1192f3f0262cSandi
1193079b3ac1SAndreas Gohr    if(!$q) return '';
11946531ab03SAndreas Gohr    $q = preg_split('/[\s\'"\\\\`()\]\[?:!\.{};,#+*<>\\/]+/', $q, -1, PREG_SPLIT_NO_EMPTY);
1195f93b3b50SAndreas Gohr    return $q;
1196f3f0262cSandi}
1197f3f0262cSandi
1198f3f0262cSandi/**
119915fae107Sandi * Try to set correct locale
120015fae107Sandi *
1201095bfd5cSandi * @deprecated No longer used
120215fae107Sandi * @author     Andreas Gohr <andi@splitbrain.org>
1203f3f0262cSandi */
1204f3f0262cSandifunction setCorrectLocale() {
1205f3f0262cSandi    global $conf;
1206f3f0262cSandi    global $lang;
1207f3f0262cSandi
1208f3f0262cSandi    $enc = strtoupper($lang['encoding']);
1209f3f0262cSandi    foreach($lang['locales'] as $loc) {
1210f3f0262cSandi        //try locale
1211f3f0262cSandi        if(@setlocale(LC_ALL, $loc)) return;
1212f3f0262cSandi        //try loceale with encoding
1213f3f0262cSandi        if(@setlocale(LC_ALL, "$loc.$enc")) return;
1214f3f0262cSandi    }
1215f3f0262cSandi    //still here? try to set from environment
1216f3f0262cSandi    @setlocale(LC_ALL, "");
1217f3f0262cSandi}
1218f3f0262cSandi
1219f3f0262cSandi/**
1220f3f0262cSandi * Return the human readable size of a file
1221f3f0262cSandi *
1222f3f0262cSandi * @param       int    $size   A file size
1223f3f0262cSandi * @param       int    $dec    A number of decimal places
1224f3f0262cSandi * @author      Martin Benjamin <b.martin@cybernet.ch>
1225f3f0262cSandi * @author      Aidan Lister <aidan@php.net>
1226f3f0262cSandi * @version     1.0.0
1227f3f0262cSandi */
1228f31d5b73Sandifunction filesize_h($size, $dec = 1) {
1229f3f0262cSandi    $sizes = array('B', 'KB', 'MB', 'GB');
1230f3f0262cSandi    $count = count($sizes);
1231f3f0262cSandi    $i     = 0;
1232f3f0262cSandi
1233f3f0262cSandi    while($size >= 1024 && ($i < $count - 1)) {
1234f3f0262cSandi        $size /= 1024;
1235f3f0262cSandi        $i++;
1236f3f0262cSandi    }
1237f3f0262cSandi
1238f3f0262cSandi    return round($size, $dec).' '.$sizes[$i];
1239f3f0262cSandi}
1240f3f0262cSandi
124115fae107Sandi/**
1242c57e365eSAndreas Gohr * Return the given timestamp as human readable, fuzzy age
1243c57e365eSAndreas Gohr *
1244c57e365eSAndreas Gohr * @author Andreas Gohr <gohr@cosmocode.de>
1245c57e365eSAndreas Gohr */
1246c57e365eSAndreas Gohrfunction datetime_h($dt) {
1247c57e365eSAndreas Gohr    global $lang;
1248c57e365eSAndreas Gohr
1249c57e365eSAndreas Gohr    $ago = time() - $dt;
1250c57e365eSAndreas Gohr    if($ago > 24 * 60 * 60 * 30 * 12 * 2) {
1251c57e365eSAndreas Gohr        return sprintf($lang['years'], round($ago / (24 * 60 * 60 * 30 * 12)));
1252c57e365eSAndreas Gohr    }
1253c57e365eSAndreas Gohr    if($ago > 24 * 60 * 60 * 30 * 2) {
1254c57e365eSAndreas Gohr        return sprintf($lang['months'], round($ago / (24 * 60 * 60 * 30)));
1255c57e365eSAndreas Gohr    }
1256c57e365eSAndreas Gohr    if($ago > 24 * 60 * 60 * 7 * 2) {
1257c57e365eSAndreas Gohr        return sprintf($lang['weeks'], round($ago / (24 * 60 * 60 * 7)));
1258c57e365eSAndreas Gohr    }
1259c57e365eSAndreas Gohr    if($ago > 24 * 60 * 60 * 2) {
1260c57e365eSAndreas Gohr        return sprintf($lang['days'], round($ago / (24 * 60 * 60)));
1261c57e365eSAndreas Gohr    }
1262c57e365eSAndreas Gohr    if($ago > 60 * 60 * 2) {
1263c57e365eSAndreas Gohr        return sprintf($lang['hours'], round($ago / (60 * 60)));
1264c57e365eSAndreas Gohr    }
1265c57e365eSAndreas Gohr    if($ago > 60 * 2) {
1266c57e365eSAndreas Gohr        return sprintf($lang['minutes'], round($ago / (60)));
1267c57e365eSAndreas Gohr    }
1268c57e365eSAndreas Gohr    return sprintf($lang['seconds'], $ago);
1269c57e365eSAndreas Gohr}
1270c57e365eSAndreas Gohr
1271c57e365eSAndreas Gohr/**
1272f2263577SAndreas Gohr * Wraps around strftime but provides support for fuzzy dates
1273f2263577SAndreas Gohr *
1274f2263577SAndreas Gohr * The format default to $conf['dformat']. It is passed to
1275f2263577SAndreas Gohr * strftime - %f can be used to get the value from datetime_h()
1276f2263577SAndreas Gohr *
1277f2263577SAndreas Gohr * @see datetime_h
1278f2263577SAndreas Gohr * @author Andreas Gohr <gohr@cosmocode.de>
1279f2263577SAndreas Gohr */
1280f2263577SAndreas Gohrfunction dformat($dt = null, $format = '') {
1281f2263577SAndreas Gohr    global $conf;
1282f2263577SAndreas Gohr
1283f2263577SAndreas Gohr    if(is_null($dt)) $dt = time();
1284f2263577SAndreas Gohr    $dt = (int) $dt;
1285f2263577SAndreas Gohr    if(!$format) $format = $conf['dformat'];
1286f2263577SAndreas Gohr
1287f2263577SAndreas Gohr    $format = str_replace('%f', datetime_h($dt), $format);
1288f2263577SAndreas Gohr    return strftime($format, $dt);
1289f2263577SAndreas Gohr}
1290f2263577SAndreas Gohr
1291f2263577SAndreas Gohr/**
1292c4f79b71SMichael Hamann * Formats a timestamp as ISO 8601 date
1293c4f79b71SMichael Hamann *
1294c4f79b71SMichael Hamann * @author <ungu at terong dot com>
1295c4f79b71SMichael Hamann * @link http://www.php.net/manual/en/function.date.php#54072
129663703ba5SAndreas Gohr * @param int $int_date: current date in UNIX timestamp
12973272d797SAndreas Gohr * @return string
1298c4f79b71SMichael Hamann */
1299c4f79b71SMichael Hamannfunction date_iso8601($int_date) {
1300c4f79b71SMichael Hamann    $date_mod     = date('Y-m-d\TH:i:s', $int_date);
1301c4f79b71SMichael Hamann    $pre_timezone = date('O', $int_date);
1302c4f79b71SMichael Hamann    $time_zone    = substr($pre_timezone, 0, 3).":".substr($pre_timezone, 3, 2);
1303c4f79b71SMichael Hamann    $date_mod .= $time_zone;
1304c4f79b71SMichael Hamann    return $date_mod;
1305c4f79b71SMichael Hamann}
1306c4f79b71SMichael Hamann
1307c4f79b71SMichael Hamann/**
130800a7b5adSEsther Brunner * return an obfuscated email address in line with $conf['mailguard'] setting
130900a7b5adSEsther Brunner *
131000a7b5adSEsther Brunner * @author Harry Fuecks <hfuecks@gmail.com>
131100a7b5adSEsther Brunner * @author Christopher Smith <chris@jalakai.co.uk>
131200a7b5adSEsther Brunner */
131300a7b5adSEsther Brunnerfunction obfuscate($email) {
131400a7b5adSEsther Brunner    global $conf;
131500a7b5adSEsther Brunner
131600a7b5adSEsther Brunner    switch($conf['mailguard']) {
131700a7b5adSEsther Brunner        case 'visible' :
131800a7b5adSEsther Brunner            $obfuscate = array('@' => ' [at] ', '.' => ' [dot] ', '-' => ' [dash] ');
131900a7b5adSEsther Brunner            return strtr($email, $obfuscate);
132000a7b5adSEsther Brunner
132100a7b5adSEsther Brunner        case 'hex' :
132200a7b5adSEsther Brunner            $encode = '';
132349eb6e38SAndreas Gohr            $len    = strlen($email);
132449eb6e38SAndreas Gohr            for($x = 0; $x < $len; $x++) {
132549eb6e38SAndreas Gohr                $encode .= '&#x'.bin2hex($email{$x}).';';
132649eb6e38SAndreas Gohr            }
132700a7b5adSEsther Brunner            return $encode;
132800a7b5adSEsther Brunner
132900a7b5adSEsther Brunner        case 'none' :
133000a7b5adSEsther Brunner        default :
133100a7b5adSEsther Brunner            return $email;
133200a7b5adSEsther Brunner    }
133300a7b5adSEsther Brunner}
133400a7b5adSEsther Brunner
133500a7b5adSEsther Brunner/**
133689541d4bSAndreas Gohr * Removes quoting backslashes
133789541d4bSAndreas Gohr *
133889541d4bSAndreas Gohr * @author Andreas Gohr <andi@splitbrain.org>
133989541d4bSAndreas Gohr */
134089541d4bSAndreas Gohrfunction unslash($string, $char = "'") {
134189541d4bSAndreas Gohr    return str_replace('\\'.$char, $char, $string);
134289541d4bSAndreas Gohr}
134389541d4bSAndreas Gohr
134473038c47SAndreas Gohr/**
134573038c47SAndreas Gohr * Convert php.ini shorthands to byte
134673038c47SAndreas Gohr *
134773038c47SAndreas Gohr * @author <gilthans dot NO dot SPAM at gmail dot com>
134873038c47SAndreas Gohr * @link   http://de3.php.net/manual/en/ini.core.php#79564
134973038c47SAndreas Gohr */
135073038c47SAndreas Gohrfunction php_to_byte($v) {
135173038c47SAndreas Gohr    $l   = substr($v, -1);
135273038c47SAndreas Gohr    $ret = substr($v, 0, -1);
135373038c47SAndreas Gohr    switch(strtoupper($l)) {
135473038c47SAndreas Gohr        case 'P':
135573038c47SAndreas Gohr            $ret *= 1024;
135673038c47SAndreas Gohr        case 'T':
135773038c47SAndreas Gohr            $ret *= 1024;
135873038c47SAndreas Gohr        case 'G':
135973038c47SAndreas Gohr            $ret *= 1024;
136073038c47SAndreas Gohr        case 'M':
136173038c47SAndreas Gohr            $ret *= 1024;
136273038c47SAndreas Gohr        case 'K':
136373038c47SAndreas Gohr            $ret *= 1024;
136473038c47SAndreas Gohr            break;
136549cbd23eSOtto Vainio        default;
136649cbd23eSOtto Vainio            $ret *= 10;
136749cbd23eSOtto Vainio            break;
136873038c47SAndreas Gohr    }
136973038c47SAndreas Gohr    return $ret;
137073038c47SAndreas Gohr}
137173038c47SAndreas Gohr
1372546d3a99SAndreas Gohr/**
1373546d3a99SAndreas Gohr * Wrapper around preg_quote adding the default delimiter
1374546d3a99SAndreas Gohr */
1375546d3a99SAndreas Gohrfunction preg_quote_cb($string) {
1376546d3a99SAndreas Gohr    return preg_quote($string, '/');
1377546d3a99SAndreas Gohr}
137873038c47SAndreas Gohr
1379bd2f6c2fSAndreas Gohr/**
1380bd2f6c2fSAndreas Gohr * Shorten a given string by removing data from the middle
1381bd2f6c2fSAndreas Gohr *
1382c66972f2SAdrian Lang * You can give the string in two parts, the first part $keep
1383bd2f6c2fSAndreas Gohr * will never be shortened. The second part $short will be cut
1384bd2f6c2fSAndreas Gohr * in the middle to shorten but only if at least $min chars are
1385bd2f6c2fSAndreas Gohr * left to display it. Otherwise it will be left off.
1386bd2f6c2fSAndreas Gohr *
1387bd2f6c2fSAndreas Gohr * @param string $keep   the part to keep
1388bd2f6c2fSAndreas Gohr * @param string $short  the part to shorten
1389bd2f6c2fSAndreas Gohr * @param int    $max    maximum chars you want for the whole string
1390bd2f6c2fSAndreas Gohr * @param int    $min    minimum number of chars to have left for middle shortening
1391bd2f6c2fSAndreas Gohr * @param string $char   the shortening character to use
13923272d797SAndreas Gohr * @return string
1393bd2f6c2fSAndreas Gohr */
1394a5d27328SAndreas Gohrfunction shorten($keep, $short, $max, $min = 9, $char = '…') {
1395bd2f6c2fSAndreas Gohr    $max = $max - utf8_strlen($keep);
1396bd2f6c2fSAndreas Gohr    if($max < $min) return $keep;
1397bd2f6c2fSAndreas Gohr    $len = utf8_strlen($short);
1398bd2f6c2fSAndreas Gohr    if($len <= $max) return $keep.$short;
1399bd2f6c2fSAndreas Gohr    $half = floor($max / 2);
1400bd2f6c2fSAndreas Gohr    return $keep.utf8_substr($short, 0, $half - 1).$char.utf8_substr($short, $len - $half);
1401bd2f6c2fSAndreas Gohr}
1402bd2f6c2fSAndreas Gohr
1403dc58b6f4SAndy Webber/**
1404dc58b6f4SAndy Webber * Return the users realname or e-mail address for use
1405dc58b6f4SAndy Webber * in page footer and recent changes pages
1406dc58b6f4SAndy Webber *
1407dc58b6f4SAndy Webber * @author Andy Webber <dokuwiki AT andywebber DOT com>
1408dc58b6f4SAndy Webber */
1409dc58b6f4SAndy Webberfunction editorinfo($username) {
1410dc58b6f4SAndy Webber    global $conf;
1411dc58b6f4SAndy Webber    global $auth;
1412dc58b6f4SAndy Webber
1413dc58b6f4SAndy Webber    switch($conf['showuseras']) {
1414dc58b6f4SAndy Webber        case 'username':
1415dc58b6f4SAndy Webber        case 'email':
1416dc58b6f4SAndy Webber        case 'email_link':
1417173d78c4SAndreas Gohr            if($auth) $info = $auth->getUserData($username);
1418dc58b6f4SAndy Webber            break;
1419dc58b6f4SAndy Webber        default:
1420dc58b6f4SAndy Webber            return hsc($username);
1421dc58b6f4SAndy Webber    }
1422dc58b6f4SAndy Webber
1423dc58b6f4SAndy Webber    if(isset($info) && $info) {
1424dc58b6f4SAndy Webber        switch($conf['showuseras']) {
1425dc58b6f4SAndy Webber            case 'username':
1426dc58b6f4SAndy Webber                return hsc($info['name']);
1427dc58b6f4SAndy Webber            case 'email':
1428dc58b6f4SAndy Webber                return obfuscate($info['mail']);
1429dc58b6f4SAndy Webber            case 'email_link':
1430dc58b6f4SAndy Webber                $mail = obfuscate($info['mail']);
1431dc58b6f4SAndy Webber                return '<a href="mailto:'.$mail.'">'.$mail.'</a>';
1432dc58b6f4SAndy Webber            default:
1433dc58b6f4SAndy Webber                return hsc($username);
1434dc58b6f4SAndy Webber        }
1435dc58b6f4SAndy Webber    } else {
1436dc58b6f4SAndy Webber        return hsc($username);
1437dc58b6f4SAndy Webber    }
1438066fee30SAndreas Gohr}
1439066fee30SAndreas Gohr
1440066fee30SAndreas Gohr/**
1441066fee30SAndreas Gohr * Returns the path to a image file for the currently chosen license.
1442066fee30SAndreas Gohr * When no image exists, returns an empty string
1443066fee30SAndreas Gohr *
1444066fee30SAndreas Gohr * @author Andreas Gohr <andi@splitbrain.org>
1445066fee30SAndreas Gohr * @param  string $type - type of image 'badge' or 'button'
14463272d797SAndreas Gohr * @return string
1447066fee30SAndreas Gohr */
1448066fee30SAndreas Gohrfunction license_img($type) {
1449066fee30SAndreas Gohr    global $license;
1450066fee30SAndreas Gohr    global $conf;
1451066fee30SAndreas Gohr    if(!$conf['license']) return '';
1452066fee30SAndreas Gohr    if(!is_array($license[$conf['license']])) return '';
1453066fee30SAndreas Gohr    $lic   = $license[$conf['license']];
1454066fee30SAndreas Gohr    $try   = array();
1455066fee30SAndreas Gohr    $try[] = 'lib/images/license/'.$type.'/'.$conf['license'].'.png';
1456066fee30SAndreas Gohr    $try[] = 'lib/images/license/'.$type.'/'.$conf['license'].'.gif';
1457066fee30SAndreas Gohr    if(substr($conf['license'], 0, 3) == 'cc-') {
1458066fee30SAndreas Gohr        $try[] = 'lib/images/license/'.$type.'/cc.png';
1459066fee30SAndreas Gohr    }
1460066fee30SAndreas Gohr    foreach($try as $src) {
1461066fee30SAndreas Gohr        if(@file_exists(DOKU_INC.$src)) return $src;
1462066fee30SAndreas Gohr    }
1463066fee30SAndreas Gohr    return '';
1464dc58b6f4SAndy Webber}
1465dc58b6f4SAndy Webber
146613c08e2fSMichael Klier/**
146713c08e2fSMichael Klier * Checks if the given amount of memory is available
146813c08e2fSMichael Klier *
146913c08e2fSMichael Klier * If the memory_get_usage() function is not available the
147013c08e2fSMichael Klier * function just assumes $bytes of already allocated memory
147113c08e2fSMichael Klier *
147213c08e2fSMichael Klier * @author Filip Oscadal <webmaster@illusionsoftworks.cz>
147313c08e2fSMichael Klier * @author Andreas Gohr <andi@splitbrain.org>
14743272d797SAndreas Gohr *
14753272d797SAndreas Gohr * @param  int $mem  Size of memory you want to allocate in bytes
14763272d797SAndreas Gohr * @param int  $bytes
14773272d797SAndreas Gohr * @internal param int $used already allocated memory (see above)
14783272d797SAndreas Gohr * @return bool
147913c08e2fSMichael Klier */
148013c08e2fSMichael Klierfunction is_mem_available($mem, $bytes = 1048576) {
148113c08e2fSMichael Klier    $limit = trim(ini_get('memory_limit'));
148213c08e2fSMichael Klier    if(empty($limit)) return true; // no limit set!
148313c08e2fSMichael Klier
148413c08e2fSMichael Klier    // parse limit to bytes
148513c08e2fSMichael Klier    $limit = php_to_byte($limit);
148613c08e2fSMichael Klier
148713c08e2fSMichael Klier    // get used memory if possible
148813c08e2fSMichael Klier    if(function_exists('memory_get_usage')) {
148913c08e2fSMichael Klier        $used = memory_get_usage();
149049eb6e38SAndreas Gohr    } else {
149149eb6e38SAndreas Gohr        $used = $bytes;
149213c08e2fSMichael Klier    }
149313c08e2fSMichael Klier
149413c08e2fSMichael Klier    if($used + $mem > $limit) {
149513c08e2fSMichael Klier        return false;
149613c08e2fSMichael Klier    }
149713c08e2fSMichael Klier
149813c08e2fSMichael Klier    return true;
149913c08e2fSMichael Klier}
150013c08e2fSMichael Klier
1501af2408d5SAndreas Gohr/**
1502af2408d5SAndreas Gohr * Send a HTTP redirect to the browser
1503af2408d5SAndreas Gohr *
1504af2408d5SAndreas Gohr * Works arround Microsoft IIS cookie sending bug. Exits the script.
1505af2408d5SAndreas Gohr *
1506af2408d5SAndreas Gohr * @link   http://support.microsoft.com/kb/q176113/
1507af2408d5SAndreas Gohr * @author Andreas Gohr <andi@splitbrain.org>
1508af2408d5SAndreas Gohr */
1509af2408d5SAndreas Gohrfunction send_redirect($url) {
15100181f021SAndreas Gohr    //are there any undisplayed messages? keep them in session for display
15110181f021SAndreas Gohr    global $MSG;
15120181f021SAndreas Gohr    if(isset($MSG) && count($MSG) && !defined('NOSESSION')) {
15130181f021SAndreas Gohr        //reopen session, store data and close session again
15140181f021SAndreas Gohr        @session_start();
15150181f021SAndreas Gohr        $_SESSION[DOKU_COOKIE]['msg'] = $MSG;
15160181f021SAndreas Gohr    }
15170181f021SAndreas Gohr
1518d4869846SAndreas Gohr    // always close the session
1519d4869846SAndreas Gohr    session_write_close();
1520d4869846SAndreas Gohr
1521c10dcb7dSAndreas Gohr    // work around IE bug
1522c10dcb7dSAndreas Gohr    // http://www.ianhoar.com/2008/11/16/internet-explorer-6-and-redirected-anchor-links/
1523c10dcb7dSAndreas Gohr    list($url, $hash) = explode('#', $url);
1524c10dcb7dSAndreas Gohr    if($hash) {
1525c10dcb7dSAndreas Gohr        if(strpos($url, '?')) {
1526c10dcb7dSAndreas Gohr            $url = $url.'&#'.$hash;
1527c10dcb7dSAndreas Gohr        } else {
1528c10dcb7dSAndreas Gohr            $url = $url.'?&#'.$hash;
1529c10dcb7dSAndreas Gohr        }
1530c10dcb7dSAndreas Gohr    }
1531c10dcb7dSAndreas Gohr
1532af2408d5SAndreas Gohr    // check if running on IIS < 6 with CGI-PHP
1533af2408d5SAndreas Gohr    if(isset($_SERVER['SERVER_SOFTWARE']) && isset($_SERVER['GATEWAY_INTERFACE']) &&
1534af2408d5SAndreas Gohr        (strpos($_SERVER['GATEWAY_INTERFACE'], 'CGI') !== false) &&
1535af2408d5SAndreas Gohr        (preg_match('|^Microsoft-IIS/(\d)\.\d$|', trim($_SERVER['SERVER_SOFTWARE']), $matches)) &&
15363272d797SAndreas Gohr        $matches[1] < 6
15373272d797SAndreas Gohr    ) {
1538af2408d5SAndreas Gohr        header('Refresh: 0;url='.$url);
1539af2408d5SAndreas Gohr    } else {
1540af2408d5SAndreas Gohr        header('Location: '.$url);
1541af2408d5SAndreas Gohr    }
1542af2408d5SAndreas Gohr    exit;
1543af2408d5SAndreas Gohr}
1544af2408d5SAndreas Gohr
15455b75cd1fSAdrian Lang/**
15465b75cd1fSAdrian Lang * Validate a value using a set of valid values
15475b75cd1fSAdrian Lang *
15485b75cd1fSAdrian Lang * This function checks whether a specified value is set and in the array
15495b75cd1fSAdrian Lang * $valid_values. If not, the function returns a default value or, if no
15505b75cd1fSAdrian Lang * default is specified, throws an exception.
15515b75cd1fSAdrian Lang *
15525b75cd1fSAdrian Lang * @param string $param        The name of the parameter
15535b75cd1fSAdrian Lang * @param array  $valid_values A set of valid values; Optionally a default may
15545b75cd1fSAdrian Lang *                             be marked by the key “default”.
15555b75cd1fSAdrian Lang * @param array  $array        The array containing the value (typically $_POST
15565b75cd1fSAdrian Lang *                             or $_GET)
15575b75cd1fSAdrian Lang * @param string $exc          The text of the raised exception
15585b75cd1fSAdrian Lang *
15593272d797SAndreas Gohr * @throws Exception
15603272d797SAndreas Gohr * @return mixed
15615b75cd1fSAdrian Lang * @author Adrian Lang <lang@cosmocode.de>
15625b75cd1fSAdrian Lang */
15635b75cd1fSAdrian Langfunction valid_input_set($param, $valid_values, $array, $exc = '') {
15645b75cd1fSAdrian Lang    if(isset($array[$param]) && in_array($array[$param], $valid_values)) {
15655b75cd1fSAdrian Lang        return $array[$param];
15665b75cd1fSAdrian Lang    } elseif(isset($valid_values['default'])) {
15675b75cd1fSAdrian Lang        return $valid_values['default'];
15685b75cd1fSAdrian Lang    } else {
15695b75cd1fSAdrian Lang        throw new Exception($exc);
15705b75cd1fSAdrian Lang    }
15715b75cd1fSAdrian Lang}
15725b75cd1fSAdrian Lang
157363703ba5SAndreas Gohr/**
157463703ba5SAndreas Gohr * Read a preference from the DokuWiki cookie
157563703ba5SAndreas Gohr */
1576554a8c9fSAdrian Langfunction get_doku_pref($pref, $default) {
1577554a8c9fSAdrian Lang    if(strpos($_COOKIE['DOKU_PREFS'], $pref) !== false) {
1578554a8c9fSAdrian Lang        $parts = explode('#', $_COOKIE['DOKU_PREFS']);
157963703ba5SAndreas Gohr        $cnt   = count($parts);
158063703ba5SAndreas Gohr        for($i = 0; $i < $cnt; $i += 2) {
1581554a8c9fSAdrian Lang            if($parts[$i] == $pref) {
1582554a8c9fSAdrian Lang                return $parts[$i + 1];
1583554a8c9fSAdrian Lang            }
1584554a8c9fSAdrian Lang        }
1585554a8c9fSAdrian Lang    }
1586554a8c9fSAdrian Lang    return $default;
1587554a8c9fSAdrian Lang}
1588554a8c9fSAdrian Lang
1589e3776c06SMichael Hamann//Setup VIM: ex: et ts=2 :
1590