xref: /dokuwiki/inc/common.php (revision 0e80bb5e347ff00c6f81627d8e39dafaaa923bc5)
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() {
59a132f948SAndreas Gohr    return PassHash::hmac('md5', session_id().$_SERVER['REMOTE_USER'], auth_cookiesalt());
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;
67443e135dSChristopher Smith    if(empty($_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/**
891015a57dSChristopher Smith * Determine basic information for a request of $id
9015fae107Sandi *
9115fae107Sandi * @author Andreas Gohr <andi@splitbrain.org>
927e87a794SChristopher Smith * @author Chris Smith <chris@jalakai.co.uk>
93f3f0262cSandi */
941015a57dSChristopher Smithfunction basicinfo($id, $htmlClient=true){
95f3f0262cSandi    global $USERINFO;
966afe8dcaSchris
97c66972f2SAdrian Lang    // set info about manager/admin status.
98c66972f2SAdrian Lang    $info['isadmin']   = false;
99c66972f2SAdrian Lang    $info['ismanager'] = false;
100c66972f2SAdrian Lang    if(isset($_SERVER['REMOTE_USER'])) {
101f3f0262cSandi        $info['userinfo']   = $USERINFO;
1021015a57dSChristopher Smith        $info['perm']       = auth_quickaclcheck($id);
103ee4c4a1bSAndreas Gohr        $info['client']     = $_SERVER['REMOTE_USER'];
10417ee7f66SAndreas Gohr
105f8cc712eSAndreas Gohr        if($info['perm'] == AUTH_ADMIN) {
106f8cc712eSAndreas Gohr            $info['isadmin']   = true;
107f8cc712eSAndreas Gohr            $info['ismanager'] = true;
108f8cc712eSAndreas Gohr        } elseif(auth_ismanager()) {
109f8cc712eSAndreas Gohr            $info['ismanager'] = true;
110f8cc712eSAndreas Gohr        }
111f8cc712eSAndreas Gohr
11217ee7f66SAndreas Gohr        // if some outside auth were used only REMOTE_USER is set
11317ee7f66SAndreas Gohr        if(!$info['userinfo']['name']) {
11417ee7f66SAndreas Gohr            $info['userinfo']['name'] = $_SERVER['REMOTE_USER'];
11517ee7f66SAndreas Gohr        }
116ee4c4a1bSAndreas Gohr
117f3f0262cSandi    } else {
1181015a57dSChristopher Smith        $info['perm']       = auth_aclcheck($id, '', null);
119ee4c4a1bSAndreas Gohr        $info['client']     = clientIP(true);
120f3f0262cSandi    }
121f3f0262cSandi
1221015a57dSChristopher Smith    $info['namespace'] = getNS($id);
1231015a57dSChristopher Smith
1241015a57dSChristopher Smith    // mobile detection
1251015a57dSChristopher Smith    if ($htmlClient) {
1261015a57dSChristopher Smith        $info['ismobile'] = clientismobile();
1271015a57dSChristopher Smith    }
1281015a57dSChristopher Smith
1291015a57dSChristopher Smith    return $info;
1301015a57dSChristopher Smith }
1311015a57dSChristopher Smith
1321015a57dSChristopher Smith/**
1331015a57dSChristopher Smith * Return info about the current document as associative
1341015a57dSChristopher Smith * array.
1351015a57dSChristopher Smith *
1361015a57dSChristopher Smith * @author Andreas Gohr <andi@splitbrain.org>
1371015a57dSChristopher Smith */
1381015a57dSChristopher Smithfunction pageinfo() {
1391015a57dSChristopher Smith    global $ID;
1401015a57dSChristopher Smith    global $REV;
1411015a57dSChristopher Smith    global $RANGE;
1421015a57dSChristopher Smith    global $lang;
1431015a57dSChristopher Smith
1441015a57dSChristopher Smith    $info = basicinfo($ID);
1451015a57dSChristopher Smith
1461015a57dSChristopher Smith    // include ID & REV not redundant, as some parts of DokuWiki may temporarily change $ID, e.g. p_wiki_xhtml
1471015a57dSChristopher Smith    // FIXME ... perhaps it would be better to ensure the temporary changes weren't necessary
1481015a57dSChristopher Smith    $info['id']  = $ID;
1491015a57dSChristopher Smith    $info['rev'] = $REV;
1501015a57dSChristopher Smith
1517e87a794SChristopher Smith    if(isset($_SERVER['REMOTE_USER'])) {
1527e87a794SChristopher Smith        $sub = new Subscription();
1537e87a794SChristopher Smith        $info['subscribed'] = $sub->user_subscription();
1547e87a794SChristopher Smith    } else {
1557e87a794SChristopher Smith        $info['subscribed'] = false;
1567e87a794SChristopher Smith    }
1577e87a794SChristopher Smith
158f3f0262cSandi    $info['locked']     = checklock($ID);
15900976812SAndreas Gohr    $info['filepath']   = fullpath(wikiFN($ID));
1602ca9d91cSBen Coburn    $info['exists']     = @file_exists($info['filepath']);
16101c9a118SAndreas Gohr    $info['currentrev'] = @filemtime($info['filepath']);
1622ca9d91cSBen Coburn    if($REV) {
1632ca9d91cSBen Coburn        //check if current revision was meant
16401c9a118SAndreas Gohr        if($info['exists'] && ($info['currentrev'] == $REV)) {
1652ca9d91cSBen Coburn            $REV = '';
1667b3a6803SAndreas Gohr        } elseif($RANGE) {
1677b3a6803SAndreas Gohr            //section editing does not work with old revisions!
1687b3a6803SAndreas Gohr            $REV   = '';
1697b3a6803SAndreas Gohr            $RANGE = '';
1707b3a6803SAndreas Gohr            msg($lang['nosecedit'], 0);
1712ca9d91cSBen Coburn        } else {
1722ca9d91cSBen Coburn            //really use old revision
17300976812SAndreas Gohr            $info['filepath'] = fullpath(wikiFN($ID, $REV));
174f3f0262cSandi            $info['exists']   = @file_exists($info['filepath']);
175f3f0262cSandi        }
176f3f0262cSandi    }
177c112d578Sandi    $info['rev'] = $REV;
178f3f0262cSandi    if($info['exists']) {
179f3f0262cSandi        $info['writable'] = (is_writable($info['filepath']) &&
180f3f0262cSandi            ($info['perm'] >= AUTH_EDIT));
181f3f0262cSandi    } else {
182f3f0262cSandi        $info['writable'] = ($info['perm'] >= AUTH_CREATE);
183f3f0262cSandi    }
18450e988b1SAndreas Gohr    $info['editable'] = ($info['writable'] && empty($info['locked']));
185f3f0262cSandi    $info['lastmod']  = @filemtime($info['filepath']);
186f3f0262cSandi
18771726d78SBen Coburn    //load page meta data
18871726d78SBen Coburn    $info['meta'] = p_get_metadata($ID);
18971726d78SBen Coburn
190652610a2Sandi    //who's the editor
191652610a2Sandi    if($REV) {
19271726d78SBen Coburn        $revinfo = getRevisionInfo($ID, $REV, 1024);
193652610a2Sandi    } else {
194*0e80bb5eSChristopher Smith        if(!empty($info['meta']['last_change']) && is_array($info['meta']['last_change'])) {
195aa27cf05SAndreas Gohr            $revinfo = $info['meta']['last_change'];
196aa27cf05SAndreas Gohr        } else {
197cd00a034SBen Coburn            $revinfo = getRevisionInfo($ID, $info['lastmod'], 1024);
198cd00a034SBen Coburn            // cache most recent changelog line in metadata if missing and still valid
199cd00a034SBen Coburn            if($revinfo !== false) {
200cd00a034SBen Coburn                $info['meta']['last_change'] = $revinfo;
201cd00a034SBen Coburn                p_set_metadata($ID, array('last_change' => $revinfo));
202cd00a034SBen Coburn            }
203cd00a034SBen Coburn        }
204cd00a034SBen Coburn    }
205cd00a034SBen Coburn    //and check for an external edit
206cd00a034SBen Coburn    if($revinfo !== false && $revinfo['date'] != $info['lastmod']) {
207cd00a034SBen Coburn        // cached changelog line no longer valid
208cd00a034SBen Coburn        $revinfo                     = false;
209cd00a034SBen Coburn        $info['meta']['last_change'] = $revinfo;
210cd00a034SBen Coburn        p_set_metadata($ID, array('last_change' => $revinfo));
211652610a2Sandi    }
212bb4866bdSchris
213652610a2Sandi    $info['ip']   = $revinfo['ip'];
214652610a2Sandi    $info['user'] = $revinfo['user'];
215652610a2Sandi    $info['sum']  = $revinfo['sum'];
21671726d78SBen Coburn    // See also $INFO['meta']['last_change'] which is the most recent log line for page $ID.
217ebf1501fSBen Coburn    // Use $INFO['meta']['last_change']['type']===DOKU_CHANGE_TYPE_MINOR_EDIT in place of $info['minor'].
21859f257aeSchris
21988f522e9Sandi    if($revinfo['user']) {
22088f522e9Sandi        $info['editor'] = $revinfo['user'];
22188f522e9Sandi    } else {
22288f522e9Sandi        $info['editor'] = $revinfo['ip'];
22388f522e9Sandi    }
224652610a2Sandi
225ee4c4a1bSAndreas Gohr    // draft
226ee4c4a1bSAndreas Gohr    $draft = getCacheName($info['client'].$ID, '.draft');
227ee4c4a1bSAndreas Gohr    if(@file_exists($draft)) {
228ee4c4a1bSAndreas Gohr        if(@filemtime($draft) < @filemtime(wikiFN($ID))) {
229ee4c4a1bSAndreas Gohr            // remove stale draft
230ee4c4a1bSAndreas Gohr            @unlink($draft);
231ee4c4a1bSAndreas Gohr        } else {
232ee4c4a1bSAndreas Gohr            $info['draft'] = $draft;
233ee4c4a1bSAndreas Gohr        }
234ee4c4a1bSAndreas Gohr    }
235ee4c4a1bSAndreas Gohr
2361015a57dSChristopher Smith    return $info;
2371015a57dSChristopher Smith}
2381015a57dSChristopher Smith
2391015a57dSChristopher Smith/**
2401015a57dSChristopher Smith * Return information about the current media item as an associative array.
2411015a57dSChristopher Smith */
2421015a57dSChristopher Smithfunction mediainfo(){
2431015a57dSChristopher Smith    global $NS;
2441015a57dSChristopher Smith    global $IMG;
2451015a57dSChristopher Smith
2461015a57dSChristopher Smith    $info = basicinfo("$NS:*");
2471015a57dSChristopher Smith    $info['image'] = $IMG;
2481c548ebeSAndreas Gohr
249f3f0262cSandi    return $info;
250f3f0262cSandi}
251f3f0262cSandi
252f3f0262cSandi/**
2532684e50aSAndreas Gohr * Build an string of URL parameters
2542684e50aSAndreas Gohr *
2552684e50aSAndreas Gohr * @author Andreas Gohr
2562684e50aSAndreas Gohr */
257b174aeaeSchrisfunction buildURLparams($params, $sep = '&amp;') {
2582684e50aSAndreas Gohr    $url = '';
2592684e50aSAndreas Gohr    $amp = false;
2602684e50aSAndreas Gohr    foreach($params as $key => $val) {
261b174aeaeSchris        if($amp) $url .= $sep;
2622684e50aSAndreas Gohr
26385e6871fSAdrian Lang        $url .= rawurlencode($key).'=';
2643a50618cSgweissbach        $url .= rawurlencode((string) $val);
2652684e50aSAndreas Gohr        $amp = true;
2662684e50aSAndreas Gohr    }
2672684e50aSAndreas Gohr    return $url;
2682684e50aSAndreas Gohr}
2692684e50aSAndreas Gohr
2702684e50aSAndreas Gohr/**
2712684e50aSAndreas Gohr * Build an string of html tag attributes
2722684e50aSAndreas Gohr *
2737bff22c0SAndreas Gohr * Skips keys starting with '_', values get HTML encoded
2747bff22c0SAndreas Gohr *
2752684e50aSAndreas Gohr * @author Andreas Gohr
2762684e50aSAndreas Gohr */
2774b030ce7SAndreas Gohrfunction buildAttributes($params, $skipempty = false) {
2782684e50aSAndreas Gohr    $url   = '';
2799063ec14SAdrian Lang    $white = false;
2802684e50aSAndreas Gohr    foreach($params as $key => $val) {
2817bff22c0SAndreas Gohr        if($key{0} == '_') continue;
282b1c94f1dSAndreas Gohr        if($val === '' && $skipempty) continue;
2839063ec14SAdrian Lang        if($white) $url .= ' ';
2847bff22c0SAndreas Gohr
2852684e50aSAndreas Gohr        $url .= $key.'="';
2862684e50aSAndreas Gohr        $url .= htmlspecialchars($val);
2872684e50aSAndreas Gohr        $url .= '"';
2889063ec14SAdrian Lang        $white = true;
2892684e50aSAndreas Gohr    }
2902684e50aSAndreas Gohr    return $url;
2912684e50aSAndreas Gohr}
2922684e50aSAndreas Gohr
2932684e50aSAndreas Gohr/**
29415fae107Sandi * This builds the breadcrumb trail and returns it as array
29515fae107Sandi *
29615fae107Sandi * @author Andreas Gohr <andi@splitbrain.org>
297f3f0262cSandi */
298f3f0262cSandifunction breadcrumbs() {
2998746e727Sandi    // we prepare the breadcrumbs early for quick session closing
3008746e727Sandi    static $crumbs = null;
3018746e727Sandi    if($crumbs != null) return $crumbs;
3028746e727Sandi
303f3f0262cSandi    global $ID;
304f3f0262cSandi    global $ACT;
305f3f0262cSandi    global $conf;
306f3f0262cSandi
307f3f0262cSandi    //first visit?
308c66972f2SAdrian Lang    $crumbs = isset($_SESSION[DOKU_COOKIE]['bc']) ? $_SESSION[DOKU_COOKIE]['bc'] : array();
309f3f0262cSandi    //we only save on show and existing wiki documents
310a77f5846Sjan    $file = wikiFN($ID);
311a77f5846Sjan    if($ACT != 'show' || !@file_exists($file)) {
312e71ce681SAndreas Gohr        $_SESSION[DOKU_COOKIE]['bc'] = $crumbs;
313f3f0262cSandi        return $crumbs;
314f3f0262cSandi    }
315a77f5846Sjan
316a77f5846Sjan    // page names
3171a84a0f3SAnika Henke    $name = noNSorNS($ID);
318fe9ec250SChris Smith    if(useHeading('navigation')) {
319a77f5846Sjan        // get page title
32067c15eceSMichael Hamann        $title = p_get_first_heading($ID, METADATA_RENDER_USING_SIMPLE_CACHE);
321a77f5846Sjan        if($title) {
322a77f5846Sjan            $name = $title;
323a77f5846Sjan        }
324a77f5846Sjan    }
325a77f5846Sjan
326f3f0262cSandi    //remove ID from array
327a77f5846Sjan    if(isset($crumbs[$ID])) {
328a77f5846Sjan        unset($crumbs[$ID]);
329f3f0262cSandi    }
330f3f0262cSandi
331f3f0262cSandi    //add to array
332a77f5846Sjan    $crumbs[$ID] = $name;
333f3f0262cSandi    //reduce size
334f3f0262cSandi    while(count($crumbs) > $conf['breadcrumbs']) {
335f3f0262cSandi        array_shift($crumbs);
336f3f0262cSandi    }
337f3f0262cSandi    //save to session
338e71ce681SAndreas Gohr    $_SESSION[DOKU_COOKIE]['bc'] = $crumbs;
339f3f0262cSandi    return $crumbs;
340f3f0262cSandi}
341f3f0262cSandi
342f3f0262cSandi/**
34315fae107Sandi * Filter for page IDs
34415fae107Sandi *
345f3f0262cSandi * This is run on a ID before it is outputted somewhere
346f3f0262cSandi * currently used to replace the colon with something else
347907f24f7SAndreas Gohr * on Windows (non-IIS) systems and to have proper URL encoding
348907f24f7SAndreas Gohr *
349907f24f7SAndreas Gohr * See discussions at https://github.com/splitbrain/dokuwiki/pull/84 and
350907f24f7SAndreas Gohr * https://github.com/splitbrain/dokuwiki/pull/173 why we use a whitelist of
351907f24f7SAndreas Gohr * unaffected servers instead of blacklisting affected servers here.
35215fae107Sandi *
35349c713a3Sandi * Urlencoding is ommitted when the second parameter is false
35449c713a3Sandi *
35515fae107Sandi * @author Andreas Gohr <andi@splitbrain.org>
356f3f0262cSandi */
35749c713a3Sandifunction idfilter($id, $ue = true) {
358f3f0262cSandi    global $conf;
359f3f0262cSandi    if($conf['useslash'] && $conf['userewrite']) {
360f3f0262cSandi        $id = strtr($id, ':', '/');
361f3f0262cSandi    } elseif(strtoupper(substr(PHP_OS, 0, 3)) === 'WIN' &&
36258bedc8aSborekb        $conf['userewrite'] &&
36358bedc8aSborekb        strpos($_SERVER['SERVER_SOFTWARE'], 'Microsoft-IIS') === false
3643272d797SAndreas Gohr    ) {
365f3f0262cSandi        $id = strtr($id, ':', ';');
366f3f0262cSandi    }
36749c713a3Sandi    if($ue) {
368b6c6979fSAndreas Gohr        $id = rawurlencode($id);
369f3f0262cSandi        $id = str_replace('%3A', ':', $id); //keep as colon
370f3f0262cSandi        $id = str_replace('%2F', '/', $id); //keep as slash
37149c713a3Sandi    }
372f3f0262cSandi    return $id;
373f3f0262cSandi}
374f3f0262cSandi
375f3f0262cSandi/**
376ed7b5f09Sandi * This builds a link to a wikipage
37715fae107Sandi *
3786c7843b5Sandi * It handles URL rewriting and adds additional parameter if
3796c7843b5Sandi * given in $more
3806c7843b5Sandi *
38115fae107Sandi * @author Andreas Gohr <andi@splitbrain.org>
382f3f0262cSandi */
38316f15a81SDominik Eckelmannfunction wl($id = '', $urlParameters = '', $absolute = false, $separator = '&amp;') {
384f3f0262cSandi    global $conf;
38516f15a81SDominik Eckelmann    if(is_array($urlParameters)) {
38616f15a81SDominik Eckelmann        $urlParameters = buildURLparams($urlParameters, $separator);
3876de3759aSAndreas Gohr    } else {
38816f15a81SDominik Eckelmann        $urlParameters = str_replace(',', $separator, $urlParameters);
3896de3759aSAndreas Gohr    }
39016f15a81SDominik Eckelmann    if($id === '') {
39116f15a81SDominik Eckelmann        $id = $conf['start'];
39216f15a81SDominik Eckelmann    }
393f3f0262cSandi    $id = idfilter($id);
39416f15a81SDominik Eckelmann    if($absolute) {
395ed7b5f09Sandi        $xlink = DOKU_URL;
396ed7b5f09Sandi    } else {
397ed7b5f09Sandi        $xlink = DOKU_BASE;
398ed7b5f09Sandi    }
399f3f0262cSandi
4006c7843b5Sandi    if($conf['userewrite'] == 2) {
4016c7843b5Sandi        $xlink .= DOKU_SCRIPT.'/'.$id;
40216f15a81SDominik Eckelmann        if($urlParameters) $xlink .= '?'.$urlParameters;
4036c7843b5Sandi    } elseif($conf['userewrite']) {
404f3f0262cSandi        $xlink .= $id;
40516f15a81SDominik Eckelmann        if($urlParameters) $xlink .= '?'.$urlParameters;
406bce3726dSAndreas Gohr    } elseif($id) {
4076c7843b5Sandi        $xlink .= DOKU_SCRIPT.'?id='.$id;
40816f15a81SDominik Eckelmann        if($urlParameters) $xlink .= $separator.$urlParameters;
409bce3726dSAndreas Gohr    } else {
410bce3726dSAndreas Gohr        $xlink .= DOKU_SCRIPT;
41116f15a81SDominik Eckelmann        if($urlParameters) $xlink .= '?'.$urlParameters;
412f3f0262cSandi    }
413f3f0262cSandi
414f3f0262cSandi    return $xlink;
415f3f0262cSandi}
416f3f0262cSandi
417f3f0262cSandi/**
418f5c2808fSBen Coburn * This builds a link to an alternate page format
419f5c2808fSBen Coburn *
420f5c2808fSBen Coburn * Handles URL rewriting if enabled. Follows the style of wl().
421f5c2808fSBen Coburn *
422f5c2808fSBen Coburn * @author Ben Coburn <btcoburn@silicodon.net>
423f5c2808fSBen Coburn */
424f5c2808fSBen Coburnfunction exportlink($id = '', $format = 'raw', $more = '', $abs = false, $sep = '&amp;') {
425f5c2808fSBen Coburn    global $conf;
426f5c2808fSBen Coburn    if(is_array($more)) {
427f5c2808fSBen Coburn        $more = buildURLparams($more, $sep);
428f5c2808fSBen Coburn    } else {
429f5c2808fSBen Coburn        $more = str_replace(',', $sep, $more);
430f5c2808fSBen Coburn    }
431f5c2808fSBen Coburn
432f5c2808fSBen Coburn    $format = rawurlencode($format);
433f5c2808fSBen Coburn    $id     = idfilter($id);
434f5c2808fSBen Coburn    if($abs) {
435f5c2808fSBen Coburn        $xlink = DOKU_URL;
436f5c2808fSBen Coburn    } else {
437f5c2808fSBen Coburn        $xlink = DOKU_BASE;
438f5c2808fSBen Coburn    }
439f5c2808fSBen Coburn
440f5c2808fSBen Coburn    if($conf['userewrite'] == 2) {
441f5c2808fSBen Coburn        $xlink .= DOKU_SCRIPT.'/'.$id.'?do=export_'.$format;
442f5c2808fSBen Coburn        if($more) $xlink .= $sep.$more;
443f5c2808fSBen Coburn    } elseif($conf['userewrite'] == 1) {
444f5c2808fSBen Coburn        $xlink .= '_export/'.$format.'/'.$id;
445f5c2808fSBen Coburn        if($more) $xlink .= '?'.$more;
446f5c2808fSBen Coburn    } else {
447f5c2808fSBen Coburn        $xlink .= DOKU_SCRIPT.'?do=export_'.$format.$sep.'id='.$id;
448f5c2808fSBen Coburn        if($more) $xlink .= $sep.$more;
449f5c2808fSBen Coburn    }
450f5c2808fSBen Coburn
451f5c2808fSBen Coburn    return $xlink;
452f5c2808fSBen Coburn}
453f5c2808fSBen Coburn
454f5c2808fSBen Coburn/**
4556de3759aSAndreas Gohr * Build a link to a media file
4566de3759aSAndreas Gohr *
4576de3759aSAndreas Gohr * Will return a link to the detail page if $direct is false
4588c08db0aSAndreas Gohr *
4598c08db0aSAndreas Gohr * The $more parameter should always be given as array, the function then
4608c08db0aSAndreas Gohr * will strip default parameters to produce even cleaner URLs
4618c08db0aSAndreas Gohr *
4623272d797SAndreas Gohr * @param string  $id     the media file id or URL
4633272d797SAndreas Gohr * @param mixed   $more   string or array with additional parameters
4643272d797SAndreas Gohr * @param bool    $direct link to detail page if false
4653272d797SAndreas Gohr * @param string  $sep    URL parameter separator
4663272d797SAndreas Gohr * @param bool    $abs    Create an absolute URL
4673272d797SAndreas Gohr * @return string
4686de3759aSAndreas Gohr */
46955b2b31bSAndreas Gohrfunction ml($id = '', $more = '', $direct = true, $sep = '&amp;', $abs = false) {
4706de3759aSAndreas Gohr    global $conf;
471b9ee6a44SKlap-in    $isexternalimage = media_isexternal($id);
472826d2766SKlap-in    if(!$isexternalimage) {
473826d2766SKlap-in        $id = cleanID($id);
474826d2766SKlap-in    }
475826d2766SKlap-in
4766de3759aSAndreas Gohr    if(is_array($more)) {
4770f4e0092SChristopher Smith        // add token for resized images
478443e135dSChristopher Smith        if(!empty($more['w']) || !empty($more['h']) || $isexternalimage){
4790f4e0092SChristopher Smith            $more['tok'] = media_get_token($id,$more['w'],$more['h']);
4800f4e0092SChristopher Smith        }
4818c08db0aSAndreas Gohr        // strip defaults for shorter URLs
4828c08db0aSAndreas Gohr        if(isset($more['cache']) && $more['cache'] == 'cache') unset($more['cache']);
483443e135dSChristopher Smith        if(empty($more['w'])) unset($more['w']);
484443e135dSChristopher Smith        if(empty($more['h'])) unset($more['h']);
4858c08db0aSAndreas Gohr        if(isset($more['id']) && $direct) unset($more['id']);
486b174aeaeSchris        $more = buildURLparams($more, $sep);
4876de3759aSAndreas Gohr    } else {
4885e7db1e2SChristopher Smith        $matches = array();
489cc036f74SKlap-in        if (preg_match_all('/\b(w|h)=(\d*)\b/',$more,$matches,PREG_SET_ORDER) || $isexternalimage){
4905e7db1e2SChristopher Smith            $resize = array('w'=>0, 'h'=>0);
4915e7db1e2SChristopher Smith            foreach ($matches as $match){
4925e7db1e2SChristopher Smith                $resize[$match[1]] = $match[2];
4935e7db1e2SChristopher Smith            }
494cc036f74SKlap-in            $more .= $more === '' ? '' : $sep;
495cc036f74SKlap-in            $more .= 'tok='.media_get_token($id,$resize['w'],$resize['h']);
4965e7db1e2SChristopher Smith        }
4978c08db0aSAndreas Gohr        $more = str_replace('cache=cache', '', $more); //skip default
4988c08db0aSAndreas Gohr        $more = str_replace(',,', ',', $more);
499b174aeaeSchris        $more = str_replace(',', $sep, $more);
5006de3759aSAndreas Gohr    }
5016de3759aSAndreas Gohr
50255b2b31bSAndreas Gohr    if($abs) {
50355b2b31bSAndreas Gohr        $xlink = DOKU_URL;
50455b2b31bSAndreas Gohr    } else {
5056de3759aSAndreas Gohr        $xlink = DOKU_BASE;
50655b2b31bSAndreas Gohr    }
5076de3759aSAndreas Gohr
5086de3759aSAndreas Gohr    // external URLs are always direct without rewriting
509826d2766SKlap-in    if($isexternalimage) {
5106de3759aSAndreas Gohr        $xlink .= 'lib/exe/fetch.php';
511cc036f74SKlap-in        $xlink .= '?'.$more;
512b174aeaeSchris        $xlink .= $sep.'media='.rawurlencode($id);
5136de3759aSAndreas Gohr        return $xlink;
5146de3759aSAndreas Gohr    }
5156de3759aSAndreas Gohr
5166de3759aSAndreas Gohr    $id = idfilter($id);
5176de3759aSAndreas Gohr
5186de3759aSAndreas Gohr    // decide on scriptname
5196de3759aSAndreas Gohr    if($direct) {
5206de3759aSAndreas Gohr        if($conf['userewrite'] == 1) {
5216de3759aSAndreas Gohr            $script = '_media';
5226de3759aSAndreas Gohr        } else {
5236de3759aSAndreas Gohr            $script = 'lib/exe/fetch.php';
5246de3759aSAndreas Gohr        }
5256de3759aSAndreas Gohr    } else {
5266de3759aSAndreas Gohr        if($conf['userewrite'] == 1) {
5276de3759aSAndreas Gohr            $script = '_detail';
5286de3759aSAndreas Gohr        } else {
5296de3759aSAndreas Gohr            $script = 'lib/exe/detail.php';
5306de3759aSAndreas Gohr        }
5316de3759aSAndreas Gohr    }
5326de3759aSAndreas Gohr
5336de3759aSAndreas Gohr    // build URL based on rewrite mode
5346de3759aSAndreas Gohr    if($conf['userewrite']) {
5356de3759aSAndreas Gohr        $xlink .= $script.'/'.$id;
5366de3759aSAndreas Gohr        if($more) $xlink .= '?'.$more;
5376de3759aSAndreas Gohr    } else {
5386de3759aSAndreas Gohr        if($more) {
539a99d3236SEsther Brunner            $xlink .= $script.'?'.$more;
540b174aeaeSchris            $xlink .= $sep.'media='.$id;
5416de3759aSAndreas Gohr        } else {
542a99d3236SEsther Brunner            $xlink .= $script.'?media='.$id;
5436de3759aSAndreas Gohr        }
5446de3759aSAndreas Gohr    }
5456de3759aSAndreas Gohr
5466de3759aSAndreas Gohr    return $xlink;
5476de3759aSAndreas Gohr}
5486de3759aSAndreas Gohr
5496de3759aSAndreas Gohr/**
55025ca5b17SAndreas Gohr * Returns the URL to the DokuWiki base script
55115fae107Sandi *
55225ca5b17SAndreas Gohr * Consider using wl() instead, unless you absoutely need the doku.php endpoint
55325ca5b17SAndreas Gohr *
55415fae107Sandi * @author Andreas Gohr <andi@splitbrain.org>
555f3f0262cSandi */
55625ca5b17SAndreas Gohrfunction script() {
557ed7b5f09Sandi    return DOKU_BASE.DOKU_SCRIPT;
558f3f0262cSandi}
559f3f0262cSandi
560f3f0262cSandi/**
56115fae107Sandi * Spamcheck against wordlist
56215fae107Sandi *
563f3f0262cSandi * Checks the wikitext against a list of blocked expressions
564f3f0262cSandi * returns true if the text contains any bad words
56515fae107Sandi *
566e403cc58SMichael Klier * Triggers COMMON_WORDBLOCK_BLOCKED
567e403cc58SMichael Klier *
568e403cc58SMichael Klier *  Action Plugins can use this event to inspect the blocked data
569e403cc58SMichael Klier *  and gain information about the user who was blocked.
570e403cc58SMichael Klier *
571e403cc58SMichael Klier *  Event data:
572e403cc58SMichael Klier *    data['matches']  - array of matches
573e403cc58SMichael Klier *    data['userinfo'] - information about the blocked user
574e403cc58SMichael Klier *      [ip]           - ip address
575e403cc58SMichael Klier *      [user]         - username (if logged in)
576e403cc58SMichael Klier *      [mail]         - mail address (if logged in)
577e403cc58SMichael Klier *      [name]         - real name (if logged in)
578e403cc58SMichael Klier *
57915fae107Sandi * @author Andreas Gohr <andi@splitbrain.org>
5806dffa0e0SAndreas Gohr * @author Michael Klier <chi@chimeric.de>
5816dffa0e0SAndreas Gohr * @param  string $text - optional text to check, if not given the globals are used
5826dffa0e0SAndreas Gohr * @return bool         - true if a spam word was found
583f3f0262cSandi */
5846dffa0e0SAndreas Gohrfunction checkwordblock($text = '') {
585f3f0262cSandi    global $TEXT;
5866dffa0e0SAndreas Gohr    global $PRE;
5876dffa0e0SAndreas Gohr    global $SUF;
588e0086ca2SAndreas Gohr    global $SUM;
589f3f0262cSandi    global $conf;
590e403cc58SMichael Klier    global $INFO;
591f3f0262cSandi
592f3f0262cSandi    if(!$conf['usewordblock']) return false;
593f3f0262cSandi
594e0086ca2SAndreas Gohr    if(!$text) $text = "$PRE $TEXT $SUF $SUM";
5956dffa0e0SAndreas Gohr
596041d1964SAndreas Gohr    // we prepare the text a tiny bit to prevent spammers circumventing URL checks
5976dffa0e0SAndreas Gohr    $text = preg_replace('!(\b)(www\.[\w.:?\-;,]+?\.[\w.:?\-;,]+?[\w/\#~:.?+=&%@\!\-.:?\-;,]+?)([.:?\-;,]*[^\w/\#~:.?+=&%@\!\-.:?\-;,])!i', '\1http://\2 \2\3', $text);
598041d1964SAndreas Gohr
599b9ac8716Schris    $wordblocks = getWordblocks();
6003e2965d7Sandi    // how many lines to read at once (to work around some PCRE limits)
6013e2965d7Sandi    if(version_compare(phpversion(), '4.3.0', '<')) {
6023e2965d7Sandi        // old versions of PCRE define a maximum of parenthesises even if no
6033e2965d7Sandi        // backreferences are used - the maximum is 99
6043e2965d7Sandi        // this is very bad performancewise and may even be too high still
6053e2965d7Sandi        $chunksize = 40;
6063e2965d7Sandi    } else {
607a51d08efSAndreas Gohr        // read file in chunks of 200 - this should work around the
6083e2965d7Sandi        // MAX_PATTERN_SIZE in modern PCRE
609a51d08efSAndreas Gohr        $chunksize = 200;
6103e2965d7Sandi    }
611b9ac8716Schris    while($blocks = array_splice($wordblocks, 0, $chunksize)) {
612f3f0262cSandi        $re = array();
61349eb6e38SAndreas Gohr        // build regexp from blocks
614f3f0262cSandi        foreach($blocks as $block) {
615f3f0262cSandi            $block = preg_replace('/#.*$/', '', $block);
616f3f0262cSandi            $block = trim($block);
617f3f0262cSandi            if(empty($block)) continue;
618f3f0262cSandi            $re[] = $block;
619f3f0262cSandi        }
620e403cc58SMichael Klier        if(count($re) && preg_match('#('.join('|', $re).')#si', $text, $matches)) {
621e403cc58SMichael Klier            // prepare event data
622e403cc58SMichael Klier            $data['matches']        = $matches;
623e403cc58SMichael Klier            $data['userinfo']['ip'] = $_SERVER['REMOTE_ADDR'];
624e403cc58SMichael Klier            if($_SERVER['REMOTE_USER']) {
625e403cc58SMichael Klier                $data['userinfo']['user'] = $_SERVER['REMOTE_USER'];
626e403cc58SMichael Klier                $data['userinfo']['name'] = $INFO['userinfo']['name'];
627e403cc58SMichael Klier                $data['userinfo']['mail'] = $INFO['userinfo']['mail'];
628e403cc58SMichael Klier            }
629e403cc58SMichael Klier            $callback = create_function('', 'return true;');
630e403cc58SMichael Klier            return trigger_event('COMMON_WORDBLOCK_BLOCKED', $data, $callback, true);
631b9ac8716Schris        }
632703f6fdeSandi    }
633f3f0262cSandi    return false;
634f3f0262cSandi}
635f3f0262cSandi
636f3f0262cSandi/**
63715fae107Sandi * Return the IP of the client
63815fae107Sandi *
6396d8affe6SAndreas Gohr * Honours X-Forwarded-For and X-Real-IP Proxy Headers
64015fae107Sandi *
6416d8affe6SAndreas Gohr * It returns a comma separated list of IPs if the above mentioned
6426d8affe6SAndreas Gohr * headers are set. If the single parameter is set, it tries to return
6436d8affe6SAndreas Gohr * a routable public address, prefering the ones suplied in the X
6446d8affe6SAndreas Gohr * headers
6456d8affe6SAndreas Gohr *
64615fae107Sandi * @author Andreas Gohr <andi@splitbrain.org>
6473272d797SAndreas Gohr * @param  boolean $single If set only a single IP is returned
6483272d797SAndreas Gohr * @return string
649f3f0262cSandi */
6506d8affe6SAndreas Gohrfunction clientIP($single = false) {
6516d8affe6SAndreas Gohr    $ip   = array();
6526d8affe6SAndreas Gohr    $ip[] = $_SERVER['REMOTE_ADDR'];
653bb4866bdSchris    if(!empty($_SERVER['HTTP_X_FORWARDED_FOR']))
6545cbeffbfSMarcel Pennewiß        $ip = array_merge($ip, explode(',', str_replace(' ', '', $_SERVER['HTTP_X_FORWARDED_FOR'])));
655bb4866bdSchris    if(!empty($_SERVER['HTTP_X_REAL_IP']))
6565cbeffbfSMarcel Pennewiß        $ip = array_merge($ip, explode(',', str_replace(' ', '', $_SERVER['HTTP_X_REAL_IP'])));
6576d8affe6SAndreas Gohr
658dc14c6d1SGuy Brand    // some IPv4/v6 regexps borrowed from Feyd
659dc14c6d1SGuy Brand    // see: http://forums.devnetwork.net/viewtopic.php?f=38&t=53479
660dc14c6d1SGuy Brand    $dec_octet   = '(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]\d|[0-9])';
661dc14c6d1SGuy Brand    $hex_digit   = '[A-Fa-f0-9]';
662dc14c6d1SGuy Brand    $h16         = "{$hex_digit}{1,4}";
663dc14c6d1SGuy Brand    $IPv4Address = "$dec_octet\\.$dec_octet\\.$dec_octet\\.$dec_octet";
664dc14c6d1SGuy Brand    $ls32        = "(?:$h16:$h16|$IPv4Address)";
665dc14c6d1SGuy Brand    $IPv6Address =
666dc14c6d1SGuy Brand        "(?:(?:{$IPv4Address})|(?:".
667dc14c6d1SGuy Brand            "(?:$h16:){6}$ls32".
668dc14c6d1SGuy Brand            "|::(?:$h16:){5}$ls32".
669dc14c6d1SGuy Brand            "|(?:$h16)?::(?:$h16:){4}$ls32".
670dc14c6d1SGuy Brand            "|(?:(?:$h16:){0,1}$h16)?::(?:$h16:){3}$ls32".
671dc14c6d1SGuy Brand            "|(?:(?:$h16:){0,2}$h16)?::(?:$h16:){2}$ls32".
672dc14c6d1SGuy Brand            "|(?:(?:$h16:){0,3}$h16)?::(?:$h16:){1}$ls32".
673dc14c6d1SGuy Brand            "|(?:(?:$h16:){0,4}$h16)?::$ls32".
674dc14c6d1SGuy Brand            "|(?:(?:$h16:){0,5}$h16)?::$h16".
675dc14c6d1SGuy Brand            "|(?:(?:$h16:){0,6}$h16)?::".
676dc14c6d1SGuy Brand            ")(?:\\/(?:12[0-8]|1[0-1][0-9]|[1-9][0-9]|[0-9]))?)";
677dc14c6d1SGuy Brand
6786d8affe6SAndreas Gohr    // remove any non-IP stuff
6796d8affe6SAndreas Gohr    $cnt   = count($ip);
6804ff28443Schris    $match = array();
6816d8affe6SAndreas Gohr    for($i = 0; $i < $cnt; $i++) {
682dc14c6d1SGuy Brand        if(preg_match("/^$IPv4Address$/", $ip[$i], $match) || preg_match("/^$IPv6Address$/", $ip[$i], $match)) {
6834ff28443Schris            $ip[$i] = $match[0];
6844ff28443Schris        } else {
6854ff28443Schris            $ip[$i] = '';
6864ff28443Schris        }
6876d8affe6SAndreas Gohr        if(empty($ip[$i])) unset($ip[$i]);
688f3f0262cSandi    }
6896d8affe6SAndreas Gohr    $ip = array_values(array_unique($ip));
6906d8affe6SAndreas Gohr    if(!$ip[0]) $ip[0] = '0.0.0.0'; // for some strange reason we don't have a IP
6916d8affe6SAndreas Gohr
6926d8affe6SAndreas Gohr    if(!$single) return join(',', $ip);
6936d8affe6SAndreas Gohr
6946d8affe6SAndreas Gohr    // decide which IP to use, trying to avoid local addresses
6956d8affe6SAndreas Gohr    $ip = array_reverse($ip);
6966d8affe6SAndreas Gohr    foreach($ip as $i) {
6972343a762SAndreas Gohr        if(preg_match('/^(::1|[fF][eE]80:|127\.|10\.|192\.168\.|172\.((1[6-9])|(2[0-9])|(3[0-1]))\.)/', $i)) {
6986d8affe6SAndreas Gohr            continue;
6996d8affe6SAndreas Gohr        } else {
7006d8affe6SAndreas Gohr            return $i;
7016d8affe6SAndreas Gohr        }
7026d8affe6SAndreas Gohr    }
7036d8affe6SAndreas Gohr    // still here? just use the first (last) address
7046d8affe6SAndreas Gohr    return $ip[0];
705f3f0262cSandi}
706f3f0262cSandi
707f3f0262cSandi/**
7081c548ebeSAndreas Gohr * Check if the browser is on a mobile device
7091c548ebeSAndreas Gohr *
7101c548ebeSAndreas Gohr * Adapted from the example code at url below
7111c548ebeSAndreas Gohr *
7121c548ebeSAndreas Gohr * @link http://www.brainhandles.com/2007/10/15/detecting-mobile-browsers/#code
7131c548ebeSAndreas Gohr */
7141c548ebeSAndreas Gohrfunction clientismobile() {
7151c548ebeSAndreas Gohr
7161c548ebeSAndreas Gohr    if(isset($_SERVER['HTTP_X_WAP_PROFILE'])) return true;
7171c548ebeSAndreas Gohr
7181c548ebeSAndreas Gohr    if(preg_match('/wap\.|\.wap/i', $_SERVER['HTTP_ACCEPT'])) return true;
7191c548ebeSAndreas Gohr
7201c548ebeSAndreas Gohr    if(!isset($_SERVER['HTTP_USER_AGENT'])) return false;
7211c548ebeSAndreas Gohr
7221c548ebeSAndreas 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';
7231c548ebeSAndreas Gohr
7241c548ebeSAndreas Gohr    if(preg_match("/$uamatches/i", $_SERVER['HTTP_USER_AGENT'])) return true;
7251c548ebeSAndreas Gohr
7261c548ebeSAndreas Gohr    return false;
7271c548ebeSAndreas Gohr}
7281c548ebeSAndreas Gohr
7291c548ebeSAndreas Gohr/**
73063211f61SGlen Harris * Convert one or more comma separated IPs to hostnames
73163211f61SGlen Harris *
73222ef1e32SAndreas Gohr * If $conf['dnslookups'] is disabled it simply returns the input string
73322ef1e32SAndreas Gohr *
73463211f61SGlen Harris * @author Glen Harris <astfgl@iamnota.org>
7353272d797SAndreas Gohr * @param  string $ips comma separated list of IP addresses
7363272d797SAndreas Gohr * @return string a comma separated list of hostnames
73763211f61SGlen Harris */
73863211f61SGlen Harrisfunction gethostsbyaddrs($ips) {
73922ef1e32SAndreas Gohr    global $conf;
74022ef1e32SAndreas Gohr    if(!$conf['dnslookups']) return $ips;
74122ef1e32SAndreas Gohr
74263211f61SGlen Harris    $hosts = array();
74363211f61SGlen Harris    $ips   = explode(',', $ips);
744551a720fSMichael Klier
745551a720fSMichael Klier    if(is_array($ips)) {
7463886270dSAndreas Gohr        foreach($ips as $ip) {
747551a720fSMichael Klier            $hosts[] = gethostbyaddr(trim($ip));
74863211f61SGlen Harris        }
749551a720fSMichael Klier        return join(',', $hosts);
750551a720fSMichael Klier    } else {
751551a720fSMichael Klier        return gethostbyaddr(trim($ips));
752551a720fSMichael Klier    }
75363211f61SGlen Harris}
75463211f61SGlen Harris
75563211f61SGlen Harris/**
75615fae107Sandi * Checks if a given page is currently locked.
75715fae107Sandi *
758f3f0262cSandi * removes stale lockfiles
75915fae107Sandi *
76015fae107Sandi * @author Andreas Gohr <andi@splitbrain.org>
761f3f0262cSandi */
762f3f0262cSandifunction checklock($id) {
763f3f0262cSandi    global $conf;
764c9b4bd1eSBen Coburn    $lock = wikiLockFN($id);
765f3f0262cSandi
766f3f0262cSandi    //no lockfile
767f3f0262cSandi    if(!@file_exists($lock)) return false;
768f3f0262cSandi
769f3f0262cSandi    //lockfile expired
770f3f0262cSandi    if((time() - filemtime($lock)) > $conf['locktime']) {
771d8186216SBen Coburn        @unlink($lock);
772f3f0262cSandi        return false;
773f3f0262cSandi    }
774f3f0262cSandi
775f3f0262cSandi    //my own lock
77685fef7e2SAndreas Gohr    list($ip, $session) = explode("\n", io_readFile($lock));
77785fef7e2SAndreas Gohr    if($ip == $_SERVER['REMOTE_USER'] || $ip == clientIP() || $session == session_id()) {
778f3f0262cSandi        return false;
779f3f0262cSandi    }
780f3f0262cSandi
781f3f0262cSandi    return $ip;
782f3f0262cSandi}
783f3f0262cSandi
784f3f0262cSandi/**
78515fae107Sandi * Lock a page for editing
78615fae107Sandi *
78715fae107Sandi * @author Andreas Gohr <andi@splitbrain.org>
788f3f0262cSandi */
789f3f0262cSandifunction lock($id) {
790544ed901SDaniel Calviño Sánchez    global $conf;
791544ed901SDaniel Calviño Sánchez
792544ed901SDaniel Calviño Sánchez    if($conf['locktime'] == 0) {
793544ed901SDaniel Calviño Sánchez        return;
794544ed901SDaniel Calviño Sánchez    }
795544ed901SDaniel Calviño Sánchez
796c9b4bd1eSBen Coburn    $lock = wikiLockFN($id);
797f3f0262cSandi    if($_SERVER['REMOTE_USER']) {
798f3f0262cSandi        io_saveFile($lock, $_SERVER['REMOTE_USER']);
799f3f0262cSandi    } else {
80085fef7e2SAndreas Gohr        io_saveFile($lock, clientIP()."\n".session_id());
801f3f0262cSandi    }
802f3f0262cSandi}
803f3f0262cSandi
804f3f0262cSandi/**
80515fae107Sandi * Unlock a page if it was locked by the user
806f3f0262cSandi *
80715fae107Sandi * @author Andreas Gohr <andi@splitbrain.org>
8083272d797SAndreas Gohr * @param string $id page id to unlock
80915fae107Sandi * @return bool true if a lock was removed
810f3f0262cSandi */
811f3f0262cSandifunction unlock($id) {
812c9b4bd1eSBen Coburn    $lock = wikiLockFN($id);
813f3f0262cSandi    if(@file_exists($lock)) {
81485fef7e2SAndreas Gohr        list($ip, $session) = explode("\n", io_readFile($lock));
81585fef7e2SAndreas Gohr        if($ip == $_SERVER['REMOTE_USER'] || $ip == clientIP() || $session == session_id()) {
816f3f0262cSandi            @unlink($lock);
817f3f0262cSandi            return true;
818f3f0262cSandi        }
819f3f0262cSandi    }
820f3f0262cSandi    return false;
821f3f0262cSandi}
822f3f0262cSandi
823f3f0262cSandi/**
824f3f0262cSandi * convert line ending to unix format
825f3f0262cSandi *
8266db7468bSAndreas Gohr * also makes sure the given text is valid UTF-8
8276db7468bSAndreas Gohr *
82815fae107Sandi * @see    formText() for 2crlf conversion
82915fae107Sandi * @author Andreas Gohr <andi@splitbrain.org>
830f3f0262cSandi */
831f3f0262cSandifunction cleanText($text) {
832f3f0262cSandi    $text = preg_replace("/(\015\012)|(\015)/", "\012", $text);
8336db7468bSAndreas Gohr
8346db7468bSAndreas Gohr    // if the text is not valid UTF-8 we simply assume latin1
8356db7468bSAndreas Gohr    // this won't break any worse than it breaks with the wrong encoding
8366db7468bSAndreas Gohr    // but might actually fix the problem in many cases
8376db7468bSAndreas Gohr    if(!utf8_check($text)) $text = utf8_encode($text);
8386db7468bSAndreas Gohr
839f3f0262cSandi    return $text;
840f3f0262cSandi}
841f3f0262cSandi
842f3f0262cSandi/**
843f3f0262cSandi * Prepares text for print in Webforms by encoding special chars.
844f3f0262cSandi * It also converts line endings to Windows format which is
845f3f0262cSandi * pseudo standard for webforms.
846f3f0262cSandi *
84715fae107Sandi * @see    cleanText() for 2unix conversion
84815fae107Sandi * @author Andreas Gohr <andi@splitbrain.org>
849f3f0262cSandi */
850f3f0262cSandifunction formText($text) {
8515b7d45a5SAndreas Gohr    $text = str_replace("\012", "\015\012", $text);
852f3f0262cSandi    return htmlspecialchars($text);
853f3f0262cSandi}
854f3f0262cSandi
855f3f0262cSandi/**
85615fae107Sandi * Returns the specified local text in raw format
85715fae107Sandi *
85815fae107Sandi * @author Andreas Gohr <andi@splitbrain.org>
859f3f0262cSandi */
8602adaf2b8SAndreas Gohrfunction rawLocale($id, $ext = 'txt') {
8612adaf2b8SAndreas Gohr    return io_readFile(localeFN($id, $ext));
862f3f0262cSandi}
863f3f0262cSandi
864f3f0262cSandi/**
865f3f0262cSandi * Returns the raw WikiText
86615fae107Sandi *
86715fae107Sandi * @author Andreas Gohr <andi@splitbrain.org>
868f3f0262cSandi */
869f3f0262cSandifunction rawWiki($id, $rev = '') {
870cc7d0c94SBen Coburn    return io_readWikiPage(wikiFN($id, $rev), $id, $rev);
871f3f0262cSandi}
872f3f0262cSandi
873f3f0262cSandi/**
8747146cee2SAndreas Gohr * Returns the pagetemplate contents for the ID's namespace
8757146cee2SAndreas Gohr *
8767b84afa2SAndreas Gohr * @triggers COMMON_PAGETPL_LOAD
8777146cee2SAndreas Gohr * @author Andreas Gohr <andi@splitbrain.org>
8787146cee2SAndreas Gohr */
879fe17917eSAdrian Langfunction pageTemplate($id) {
880a15ce62dSEsther Brunner    global $conf;
881e29549feSAndreas Gohr
882fe17917eSAdrian Lang    if(is_array($id)) $id = $id[0];
883e29549feSAndreas Gohr
8847b84afa2SAndreas Gohr    // prepare initial event data
8857b84afa2SAndreas Gohr    $data = array(
8867b84afa2SAndreas Gohr        'id'        => $id, // the id of the page to be created
8877b84afa2SAndreas Gohr        'tpl'       => '', // the text used as template
8887b84afa2SAndreas Gohr        'tplfile'   => '', // the file above text was/should be loaded from
8897b84afa2SAndreas Gohr        'doreplace' => true // should wildcard replacements be done on the text?
8907b84afa2SAndreas Gohr    );
8917b84afa2SAndreas Gohr
8927b84afa2SAndreas Gohr    $evt = new Doku_Event('COMMON_PAGETPL_LOAD', $data);
8937b84afa2SAndreas Gohr    if($evt->advise_before(true)) {
8947b84afa2SAndreas Gohr        // the before event might have loaded the content already
8957b84afa2SAndreas Gohr        if(empty($data['tpl'])) {
8967b84afa2SAndreas Gohr            // if the before event did not set a template file, try to find one
8977b84afa2SAndreas Gohr            if(empty($data['tplfile'])) {
898fe17917eSAdrian Lang                $path = dirname(wikiFN($id));
899e29549feSAndreas Gohr                if(@file_exists($path.'/_template.txt')) {
9007b84afa2SAndreas Gohr                    $data['tplfile'] = $path.'/_template.txt';
901e29549feSAndreas Gohr                } else {
902e29549feSAndreas Gohr                    // search upper namespaces for templates
903e29549feSAndreas Gohr                    $len = strlen(rtrim($conf['datadir'], '/'));
904e29549feSAndreas Gohr                    while(strlen($path) >= $len) {
905e29549feSAndreas Gohr                        if(@file_exists($path.'/__template.txt')) {
9067b84afa2SAndreas Gohr                            $data['tplfile'] = $path.'/__template.txt';
907e29549feSAndreas Gohr                            break;
908e29549feSAndreas Gohr                        }
909e29549feSAndreas Gohr                        $path = substr($path, 0, strrpos($path, '/'));
910e29549feSAndreas Gohr                    }
911e29549feSAndreas Gohr                }
9127b84afa2SAndreas Gohr            }
9137b84afa2SAndreas Gohr            // load the content
9143d7ac595SMichael Hamann            $data['tpl'] = io_readFile($data['tplfile']);
9157b84afa2SAndreas Gohr        }
916a1bbd05bSMichael Hamann        if($data['doreplace']) parsePageTemplate($data);
9177b84afa2SAndreas Gohr    }
9187b84afa2SAndreas Gohr    $evt->advise_after();
9197b84afa2SAndreas Gohr    unset($evt);
9207b84afa2SAndreas Gohr
921fe17917eSAdrian Lang    return $data['tpl'];
9222b1223ecSAdrian Lang}
9232b1223ecSAdrian Lang
9242b1223ecSAdrian Lang/**
9252b1223ecSAdrian Lang * Performs common page template replacements
9267b84afa2SAndreas Gohr * This works on data from COMMON_PAGETPL_LOAD
9272b1223ecSAdrian Lang *
9282b1223ecSAdrian Lang * @author Andreas Gohr <andi@splitbrain.org>
9292b1223ecSAdrian Lang */
930d535a2e9Sstretchyboyfunction parsePageTemplate(&$data) {
9313272d797SAndreas Gohr    /**
9323272d797SAndreas Gohr     * @var string $id        the id of the page to be created
9333272d797SAndreas Gohr     * @var string $tpl       the text used as template
9343272d797SAndreas Gohr     * @var string $tplfile   the file above text was/should be loaded from
9353272d797SAndreas Gohr     * @var bool   $doreplace should wildcard replacements be done on the text?
9363272d797SAndreas Gohr     */
937fe17917eSAdrian Lang    extract($data);
938fe17917eSAdrian Lang
939b856f7dfSAdrian Lang    global $USERINFO;
940bce53b1fSAdrian Lang    global $conf;
941e29549feSAndreas Gohr
942e29549feSAndreas Gohr    // replace placeholders
94326ece5a7SAndreas Gohr    $file = noNS($id);
94437c1acbdSAdrian Lang    $page = strtr($file, $conf['sepchar'], ' ');
94526ece5a7SAndreas Gohr
9463272d797SAndreas Gohr    $tpl = str_replace(
9473272d797SAndreas Gohr        array(
94826ece5a7SAndreas Gohr             '@ID@',
94926ece5a7SAndreas Gohr             '@NS@',
95026ece5a7SAndreas Gohr             '@FILE@',
95126ece5a7SAndreas Gohr             '@!FILE@',
95226ece5a7SAndreas Gohr             '@!FILE!@',
95326ece5a7SAndreas Gohr             '@PAGE@',
95426ece5a7SAndreas Gohr             '@!PAGE@',
95526ece5a7SAndreas Gohr             '@!!PAGE@',
95626ece5a7SAndreas Gohr             '@!PAGE!@',
95726ece5a7SAndreas Gohr             '@USER@',
95826ece5a7SAndreas Gohr             '@NAME@',
95926ece5a7SAndreas Gohr             '@MAIL@',
96026ece5a7SAndreas Gohr             '@DATE@',
96126ece5a7SAndreas Gohr        ),
96226ece5a7SAndreas Gohr        array(
96326ece5a7SAndreas Gohr             $id,
96426ece5a7SAndreas Gohr             getNS($id),
96526ece5a7SAndreas Gohr             $file,
96626ece5a7SAndreas Gohr             utf8_ucfirst($file),
96726ece5a7SAndreas Gohr             utf8_strtoupper($file),
96826ece5a7SAndreas Gohr             $page,
96926ece5a7SAndreas Gohr             utf8_ucfirst($page),
97026ece5a7SAndreas Gohr             utf8_ucwords($page),
97126ece5a7SAndreas Gohr             utf8_strtoupper($page),
97226ece5a7SAndreas Gohr             $_SERVER['REMOTE_USER'],
973b856f7dfSAdrian Lang             $USERINFO['name'],
974b856f7dfSAdrian Lang             $USERINFO['mail'],
97526ece5a7SAndreas Gohr             $conf['dformat'],
9763272d797SAndreas Gohr        ), $tpl
9773272d797SAndreas Gohr    );
97826ece5a7SAndreas Gohr
9797d644fc8SAndreas Gohr    // we need the callback to work around strftime's char limit
9807d644fc8SAndreas Gohr    $tpl         = preg_replace_callback('/%./', create_function('$m', 'return strftime($m[0]);'), $tpl);
981d535a2e9Sstretchyboy    $data['tpl'] = $tpl;
982a15ce62dSEsther Brunner    return $tpl;
9837146cee2SAndreas Gohr}
9847146cee2SAndreas Gohr
9857146cee2SAndreas Gohr/**
98615fae107Sandi * Returns the raw Wiki Text in three slices.
98715fae107Sandi *
98815fae107Sandi * The range parameter needs to have the form "from-to"
98915cfe303Sandi * and gives the range of the section in bytes - no
99015cfe303Sandi * UTF-8 awareness is needed.
991f3f0262cSandi * The returned order is prefix, section and suffix.
99215fae107Sandi *
99315fae107Sandi * @author Andreas Gohr <andi@splitbrain.org>
994f3f0262cSandi */
995f3f0262cSandifunction rawWikiSlices($range, $id, $rev = '') {
996cc7d0c94SBen Coburn    $text = io_readWikiPage(wikiFN($id, $rev), $id, $rev);
997f3f0262cSandi
99880fcb268SAdrian Lang    // Parse range
99980fcb268SAdrian Lang    list($from, $to) = explode('-', $range, 2);
100080fcb268SAdrian Lang    // Make range zero-based, use defaults if marker is missing
100180fcb268SAdrian Lang    $from = !$from ? 0 : ($from - 1);
100280fcb268SAdrian Lang    $to   = !$to ? strlen($text) : ($to - 1);
100380fcb268SAdrian Lang
100480fcb268SAdrian Lang    $slices[0] = substr($text, 0, $from);
100580fcb268SAdrian Lang    $slices[1] = substr($text, $from, $to - $from);
100615cfe303Sandi    $slices[2] = substr($text, $to);
1007f3f0262cSandi    return $slices;
1008f3f0262cSandi}
1009f3f0262cSandi
1010f3f0262cSandi/**
101115fae107Sandi * Joins wiki text slices
101215fae107Sandi *
101380fcb268SAdrian Lang * function to join the text slices.
1014f3f0262cSandi * When the pretty parameter is set to true it adds additional empty
1015f3f0262cSandi * lines between sections if needed (used on saving).
101615fae107Sandi *
101715fae107Sandi * @author Andreas Gohr <andi@splitbrain.org>
1018f3f0262cSandi */
1019f3f0262cSandifunction con($pre, $text, $suf, $pretty = false) {
1020f3f0262cSandi    if($pretty) {
102180fcb268SAdrian Lang        if($pre !== '' && substr($pre, -1) !== "\n" &&
10223272d797SAndreas Gohr            substr($text, 0, 1) !== "\n"
10233272d797SAndreas Gohr        ) {
102480fcb268SAdrian Lang            $pre .= "\n";
102580fcb268SAdrian Lang        }
102680fcb268SAdrian Lang        if($suf !== '' && substr($text, -1) !== "\n" &&
10273272d797SAndreas Gohr            substr($suf, 0, 1) !== "\n"
10283272d797SAndreas Gohr        ) {
102980fcb268SAdrian Lang            $text .= "\n";
103080fcb268SAdrian Lang        }
1031f3f0262cSandi    }
1032f3f0262cSandi
1033f3f0262cSandi    return $pre.$text.$suf;
1034f3f0262cSandi}
1035f3f0262cSandi
1036f3f0262cSandi/**
1037a701424fSBen Coburn * Saves a wikitext by calling io_writeWikiPage.
1038a701424fSBen Coburn * Also directs changelog and attic updates.
103915fae107Sandi *
104015fae107Sandi * @author Andreas Gohr <andi@splitbrain.org>
104171726d78SBen Coburn * @author Ben Coburn <btcoburn@silicodon.net>
1042f3f0262cSandi */
1043b6912aeaSAndreas Gohrfunction saveWikiText($id, $text, $summary, $minor = false) {
1044a701424fSBen Coburn    /* Note to developers:
1045a701424fSBen Coburn       This code is subtle and delicate. Test the behavior of
1046a701424fSBen Coburn       the attic and changelog with dokuwiki and external edits
1047a701424fSBen Coburn       after any changes. External edits change the wiki page
1048a701424fSBen Coburn       directly without using php or dokuwiki.
1049a701424fSBen Coburn     */
1050f3f0262cSandi    global $conf;
1051f3f0262cSandi    global $lang;
105271726d78SBen Coburn    global $REV;
1053f3f0262cSandi    // ignore if no changes were made
1054f3f0262cSandi    if($text == rawWiki($id, '')) {
1055f3f0262cSandi        return;
1056f3f0262cSandi    }
1057f3f0262cSandi
1058f3f0262cSandi    $file        = wikiFN($id);
1059a701424fSBen Coburn    $old         = @filemtime($file); // from page
1060407e65b9SAndreas Gohr    $wasRemoved  = (trim($text) == ''); // check for empty or whitespace only
1061d8186216SBen Coburn    $wasCreated  = !@file_exists($file);
106271726d78SBen Coburn    $wasReverted = ($REV == true);
1063e45b34cdSBen Coburn    $newRev      = false;
1064a701424fSBen Coburn    $oldRev      = getRevisions($id, -1, 1, 1024); // from changelog
1065a701424fSBen Coburn    $oldRev      = (int) (empty($oldRev) ? 0 : $oldRev[0]);
1066a701424fSBen Coburn    if(!@file_exists(wikiFN($id, $old)) && @file_exists($file) && $old >= $oldRev) {
106746844156SBen Coburn        // add old revision to the attic if missing
106846844156SBen Coburn        saveOldRevision($id);
106946844156SBen Coburn        // add a changelog entry if this edit came from outside dokuwiki
1070a701424fSBen Coburn        if($old > $oldRev) {
1071ebf1501fSBen Coburn            addLogEntry($old, $id, DOKU_CHANGE_TYPE_EDIT, $lang['external_edit'], '', array('ExternalEdit'=> true));
107246844156SBen Coburn            // remove soon to be stale instructions
107346844156SBen Coburn            $cache = new cache_instructions($id, $file);
107446844156SBen Coburn            $cache->removeCache();
107546844156SBen Coburn        }
107646844156SBen Coburn    }
1077f3f0262cSandi
107871726d78SBen Coburn    if($wasRemoved) {
107930725328SGabriel Birke        // Send "update" event with empty data, so plugins can react to page deletion
108030725328SGabriel Birke        $data = array(array($file, '', false), getNS($id), noNS($id), false);
108130725328SGabriel Birke        trigger_event('IO_WIKIPAGE_WRITE', $data);
1082e45b34cdSBen Coburn        // pre-save deleted revision
1083e45b34cdSBen Coburn        @touch($file);
108446844156SBen Coburn        clearstatcache();
1085e45b34cdSBen Coburn        $newRev = saveOldRevision($id);
1086e1f3d9e1SEsther Brunner        // remove empty file
1087f3f0262cSandi        @unlink($file);
1088c5f92742SMichael Hamann        // don't remove old meta info as it should be saved, plugins can use IO_WIKIPAGE_WRITE for removing their metadata...
1089c5f92742SMichael Hamann        // purge non-persistant meta data
10903d1f9ec3SMichael Klier        p_purge_metadata($id);
1091f3f0262cSandi        $del = true;
10923ce054b3Sandi        // autoset summary on deletion
10933ce054b3Sandi        if(empty($summary)) $summary = $lang['deleted'];
109453d6ccfeSandi        // remove empty namespaces
1095cc7d0c94SBen Coburn        io_sweepNS($id, 'datadir');
1096cc7d0c94SBen Coburn        io_sweepNS($id, 'mediadir');
1097f3f0262cSandi    } else {
1098cc7d0c94SBen Coburn        // save file (namespace dir is created in io_writeWikiPage)
1099cc7d0c94SBen Coburn        io_writeWikiPage($file, $text, $id);
110046844156SBen Coburn        // pre-save the revision, to keep the attic in sync
110146844156SBen Coburn        $newRev = saveOldRevision($id);
1102f3f0262cSandi        $del    = false;
1103f3f0262cSandi    }
1104f3f0262cSandi
110571726d78SBen Coburn    // select changelog line type
110671726d78SBen Coburn    $extra = '';
1107ebf1501fSBen Coburn    $type  = DOKU_CHANGE_TYPE_EDIT;
110871726d78SBen Coburn    if($wasReverted) {
1109ebf1501fSBen Coburn        $type  = DOKU_CHANGE_TYPE_REVERT;
111071726d78SBen Coburn        $extra = $REV;
11113272d797SAndreas Gohr    } else if($wasCreated) {
11123272d797SAndreas Gohr        $type = DOKU_CHANGE_TYPE_CREATE;
11133272d797SAndreas Gohr    } else if($wasRemoved) {
11143272d797SAndreas Gohr        $type = DOKU_CHANGE_TYPE_DELETE;
11153272d797SAndreas Gohr    } else if($minor && $conf['useacl'] && $_SERVER['REMOTE_USER']) {
11163272d797SAndreas Gohr        $type = DOKU_CHANGE_TYPE_MINOR_EDIT;
11173272d797SAndreas Gohr    } //minor edits only for logged in users
111871726d78SBen Coburn
1119e45b34cdSBen Coburn    addLogEntry($newRev, $id, $type, $summary, $extra);
112026a0801fSAndreas Gohr    // send notify mails
112190033e9dSAndreas Gohr    notify($id, 'admin', $old, $summary, $minor);
112290033e9dSAndreas Gohr    notify($id, 'subscribers', $old, $summary, $minor);
1123f3f0262cSandi
1124ce6b63d9Schris    // update the purgefile (timestamp of the last time anything within the wiki was changed)
112598407a7aSandi    io_saveFile($conf['cachedir'].'/purgefile', time());
11262eccbdaaSGina Haeussge
11272eccbdaaSGina Haeussge    // if useheading is enabled, purge the cache of all linking pages
1128fe9ec250SChris Smith    if(useHeading('content')) {
112907ff0babSMichael Hamann        $pages = ft_backlinks($id, true);
11302eccbdaaSGina Haeussge        foreach($pages as $page) {
11312eccbdaaSGina Haeussge            $cache = new cache_renderer($page, wikiFN($page), 'xhtml');
11322eccbdaaSGina Haeussge            $cache->removeCache();
11332eccbdaaSGina Haeussge        }
11342eccbdaaSGina Haeussge    }
1135f3f0262cSandi}
1136f3f0262cSandi
1137f3f0262cSandi/**
1138f3f0262cSandi * moves the current version to the attic and returns its
1139f3f0262cSandi * revision date
114015fae107Sandi *
114115fae107Sandi * @author Andreas Gohr <andi@splitbrain.org>
1142f3f0262cSandi */
1143f3f0262cSandifunction saveOldRevision($id) {
1144f3f0262cSandi    $oldf = wikiFN($id);
1145f3f0262cSandi    if(!@file_exists($oldf)) return '';
1146f3f0262cSandi    $date = filemtime($oldf);
1147f3f0262cSandi    $newf = wikiFN($id, $date);
1148cc7d0c94SBen Coburn    io_writeWikiPage($newf, rawWiki($id), $id, $date);
1149f3f0262cSandi    return $date;
1150f3f0262cSandi}
1151f3f0262cSandi
1152f3f0262cSandi/**
1153fde10de4SAdrian Lang * Sends a notify mail on page change or registration
115426a0801fSAndreas Gohr *
115526a0801fSAndreas Gohr * @param string     $id       The changed page
1156fde10de4SAdrian Lang * @param string     $who      Who to notify (admin|subscribers|register)
11573272d797SAndreas Gohr * @param int|string $rev Old page revision
115826a0801fSAndreas Gohr * @param string     $summary  What changed
115990033e9dSAndreas Gohr * @param boolean    $minor    Is this a minor edit?
116002a498e7Schris * @param array      $replace  Additional string substitutions, @KEY@ to be replaced by value
116115fae107Sandi *
11623272d797SAndreas Gohr * @return bool
116315fae107Sandi * @author Andreas Gohr <andi@splitbrain.org>
1164f3f0262cSandi */
116502a498e7Schrisfunction notify($id, $who, $rev = '', $summary = '', $minor = false, $replace = array()) {
1166f3f0262cSandi    global $conf;
1167b158d625SSteven Danz
11686df843eeSAndreas Gohr    // decide if there is something to do, eg. whom to mail
116926a0801fSAndreas Gohr    if($who == 'admin') {
11703272d797SAndreas Gohr        if(empty($conf['notify'])) return false; //notify enabled?
11712ed38036SAndreas Gohr        $tpl = 'mailtext';
117226a0801fSAndreas Gohr        $to  = $conf['notify'];
117326a0801fSAndreas Gohr    } elseif($who == 'subscribers') {
117484c1127cSAndreas Gohr        if(!actionOK('subscribe')) return false; //subscribers enabled?
11753272d797SAndreas Gohr        if($conf['useacl'] && $_SERVER['REMOTE_USER'] && $minor) return false; //skip minors
11768881fcc9SAdrian Lang        $data = array('id' => $id, 'addresslist' => '', 'self' => false);
11773272d797SAndreas Gohr        trigger_event(
11783272d797SAndreas Gohr            'COMMON_NOTIFY_ADDRESSLIST', $data,
1179835242b0SAndreas Gohr            array(new Subscription(), 'notifyaddresses')
11803272d797SAndreas Gohr        );
11812ed38036SAndreas Gohr        $to = $data['addresslist'];
11822ed38036SAndreas Gohr        if(empty($to)) return false;
11832ed38036SAndreas Gohr        $tpl = 'subscr_single';
118426a0801fSAndreas Gohr    } else {
11853272d797SAndreas Gohr        return false; //just to be safe
118626a0801fSAndreas Gohr    }
118726a0801fSAndreas Gohr
11886df843eeSAndreas Gohr    // prepare content
11892ed38036SAndreas Gohr    $subscription = new Subscription();
11902ed38036SAndreas Gohr    return $subscription->send_diff($to, $tpl, $id, $rev, $summary);
1191f3f0262cSandi}
11922ed38036SAndreas Gohr
119315fae107Sandi/**
119471f7bde7SAndreas Gohr * extracts the query from a search engine referrer
119515fae107Sandi *
119615fae107Sandi * @author Andreas Gohr <andi@splitbrain.org>
119771f7bde7SAndreas Gohr * @author Todd Augsburger <todd@rollerorgans.com>
1198f3f0262cSandi */
1199f3f0262cSandifunction getGoogleQuery() {
1200c66972f2SAdrian Lang    if(!isset($_SERVER['HTTP_REFERER'])) {
1201c66972f2SAdrian Lang        return '';
1202c66972f2SAdrian Lang    }
1203f3f0262cSandi    $url = parse_url($_SERVER['HTTP_REFERER']);
1204f3f0262cSandi
1205079b3ac1SAndreas Gohr    // only handle common SEs
1206079b3ac1SAndreas Gohr    if(!preg_match('/(google|bing|yahoo|ask|duckduckgo|babylon|aol|yandex)/',$url['host'])) return '';
1207e4d8a516SKazutaka Miyasaka
1208079b3ac1SAndreas Gohr    $query = array();
1209e4d8a516SKazutaka Miyasaka    // temporary workaround against PHP bug #49733
1210e4d8a516SKazutaka Miyasaka    // see http://bugs.php.net/bug.php?id=49733
1211e4d8a516SKazutaka Miyasaka    if(UTF8_MBSTRING) $enc = mb_internal_encoding();
1212f3f0262cSandi    parse_str($url['query'], $query);
1213e4d8a516SKazutaka Miyasaka    if(UTF8_MBSTRING) mb_internal_encoding($enc);
1214e4d8a516SKazutaka Miyasaka
1215c66972f2SAdrian Lang    $q = '';
1216079b3ac1SAndreas Gohr    if(isset($query['q'])){
1217079b3ac1SAndreas Gohr        $q = $query['q'];
1218079b3ac1SAndreas Gohr    }elseif(isset($query['p'])){
1219079b3ac1SAndreas Gohr        $q = $query['p'];
1220079b3ac1SAndreas Gohr    }elseif(isset($query['query'])){
1221079b3ac1SAndreas Gohr        $q = $query['query'];
1222079b3ac1SAndreas Gohr    }
1223079b3ac1SAndreas Gohr    $q = trim($q);
1224f3f0262cSandi
1225079b3ac1SAndreas Gohr    if(!$q) return '';
12266531ab03SAndreas Gohr    $q = preg_split('/[\s\'"\\\\`()\]\[?:!\.{};,#+*<>\\/]+/', $q, -1, PREG_SPLIT_NO_EMPTY);
1227f93b3b50SAndreas Gohr    return $q;
1228f3f0262cSandi}
1229f3f0262cSandi
1230f3f0262cSandi/**
1231f3f0262cSandi * Return the human readable size of a file
1232f3f0262cSandi *
1233f3f0262cSandi * @param       int $size A file size
1234f3f0262cSandi * @param       int $dec A number of decimal places
123574160ca1SGerrit Uitslag * @return string human readable size
1236f3f0262cSandi * @author      Martin Benjamin <b.martin@cybernet.ch>
1237f3f0262cSandi * @author      Aidan Lister <aidan@php.net>
1238f3f0262cSandi * @version     1.0.0
1239f3f0262cSandi */
1240f31d5b73Sandifunction filesize_h($size, $dec = 1) {
1241f3f0262cSandi    $sizes = array('B', 'KB', 'MB', 'GB');
1242f3f0262cSandi    $count = count($sizes);
1243f3f0262cSandi    $i     = 0;
1244f3f0262cSandi
1245f3f0262cSandi    while($size >= 1024 && ($i < $count - 1)) {
1246f3f0262cSandi        $size /= 1024;
1247f3f0262cSandi        $i++;
1248f3f0262cSandi    }
1249f3f0262cSandi
1250f3f0262cSandi    return round($size, $dec).' '.$sizes[$i];
1251f3f0262cSandi}
1252f3f0262cSandi
125315fae107Sandi/**
1254c57e365eSAndreas Gohr * Return the given timestamp as human readable, fuzzy age
1255c57e365eSAndreas Gohr *
1256c57e365eSAndreas Gohr * @author Andreas Gohr <gohr@cosmocode.de>
1257c57e365eSAndreas Gohr */
1258c57e365eSAndreas Gohrfunction datetime_h($dt) {
1259c57e365eSAndreas Gohr    global $lang;
1260c57e365eSAndreas Gohr
1261c57e365eSAndreas Gohr    $ago = time() - $dt;
1262c57e365eSAndreas Gohr    if($ago > 24 * 60 * 60 * 30 * 12 * 2) {
1263c57e365eSAndreas Gohr        return sprintf($lang['years'], round($ago / (24 * 60 * 60 * 30 * 12)));
1264c57e365eSAndreas Gohr    }
1265c57e365eSAndreas Gohr    if($ago > 24 * 60 * 60 * 30 * 2) {
1266c57e365eSAndreas Gohr        return sprintf($lang['months'], round($ago / (24 * 60 * 60 * 30)));
1267c57e365eSAndreas Gohr    }
1268c57e365eSAndreas Gohr    if($ago > 24 * 60 * 60 * 7 * 2) {
1269c57e365eSAndreas Gohr        return sprintf($lang['weeks'], round($ago / (24 * 60 * 60 * 7)));
1270c57e365eSAndreas Gohr    }
1271c57e365eSAndreas Gohr    if($ago > 24 * 60 * 60 * 2) {
1272c57e365eSAndreas Gohr        return sprintf($lang['days'], round($ago / (24 * 60 * 60)));
1273c57e365eSAndreas Gohr    }
1274c57e365eSAndreas Gohr    if($ago > 60 * 60 * 2) {
1275c57e365eSAndreas Gohr        return sprintf($lang['hours'], round($ago / (60 * 60)));
1276c57e365eSAndreas Gohr    }
1277c57e365eSAndreas Gohr    if($ago > 60 * 2) {
1278c57e365eSAndreas Gohr        return sprintf($lang['minutes'], round($ago / (60)));
1279c57e365eSAndreas Gohr    }
1280c57e365eSAndreas Gohr    return sprintf($lang['seconds'], $ago);
1281c57e365eSAndreas Gohr}
1282c57e365eSAndreas Gohr
1283c57e365eSAndreas Gohr/**
1284f2263577SAndreas Gohr * Wraps around strftime but provides support for fuzzy dates
1285f2263577SAndreas Gohr *
1286f2263577SAndreas Gohr * The format default to $conf['dformat']. It is passed to
1287f2263577SAndreas Gohr * strftime - %f can be used to get the value from datetime_h()
1288f2263577SAndreas Gohr *
1289f2263577SAndreas Gohr * @see datetime_h
1290f2263577SAndreas Gohr * @author Andreas Gohr <gohr@cosmocode.de>
1291f2263577SAndreas Gohr */
1292f2263577SAndreas Gohrfunction dformat($dt = null, $format = '') {
1293f2263577SAndreas Gohr    global $conf;
1294f2263577SAndreas Gohr
1295f2263577SAndreas Gohr    if(is_null($dt)) $dt = time();
1296f2263577SAndreas Gohr    $dt = (int) $dt;
1297f2263577SAndreas Gohr    if(!$format) $format = $conf['dformat'];
1298f2263577SAndreas Gohr
1299f2263577SAndreas Gohr    $format = str_replace('%f', datetime_h($dt), $format);
1300f2263577SAndreas Gohr    return strftime($format, $dt);
1301f2263577SAndreas Gohr}
1302f2263577SAndreas Gohr
1303f2263577SAndreas Gohr/**
1304c4f79b71SMichael Hamann * Formats a timestamp as ISO 8601 date
1305c4f79b71SMichael Hamann *
1306c4f79b71SMichael Hamann * @author <ungu at terong dot com>
1307c4f79b71SMichael Hamann * @link http://www.php.net/manual/en/function.date.php#54072
130863703ba5SAndreas Gohr * @param int $int_date: current date in UNIX timestamp
13093272d797SAndreas Gohr * @return string
1310c4f79b71SMichael Hamann */
1311c4f79b71SMichael Hamannfunction date_iso8601($int_date) {
1312c4f79b71SMichael Hamann    $date_mod     = date('Y-m-d\TH:i:s', $int_date);
1313c4f79b71SMichael Hamann    $pre_timezone = date('O', $int_date);
1314c4f79b71SMichael Hamann    $time_zone    = substr($pre_timezone, 0, 3).":".substr($pre_timezone, 3, 2);
1315c4f79b71SMichael Hamann    $date_mod .= $time_zone;
1316c4f79b71SMichael Hamann    return $date_mod;
1317c4f79b71SMichael Hamann}
1318c4f79b71SMichael Hamann
1319c4f79b71SMichael Hamann/**
132000a7b5adSEsther Brunner * return an obfuscated email address in line with $conf['mailguard'] setting
132100a7b5adSEsther Brunner *
132200a7b5adSEsther Brunner * @author Harry Fuecks <hfuecks@gmail.com>
132300a7b5adSEsther Brunner * @author Christopher Smith <chris@jalakai.co.uk>
132400a7b5adSEsther Brunner */
132500a7b5adSEsther Brunnerfunction obfuscate($email) {
132600a7b5adSEsther Brunner    global $conf;
132700a7b5adSEsther Brunner
132800a7b5adSEsther Brunner    switch($conf['mailguard']) {
132900a7b5adSEsther Brunner        case 'visible' :
133000a7b5adSEsther Brunner            $obfuscate = array('@' => ' [at] ', '.' => ' [dot] ', '-' => ' [dash] ');
133100a7b5adSEsther Brunner            return strtr($email, $obfuscate);
133200a7b5adSEsther Brunner
133300a7b5adSEsther Brunner        case 'hex' :
133400a7b5adSEsther Brunner            $encode = '';
133549eb6e38SAndreas Gohr            $len    = strlen($email);
133649eb6e38SAndreas Gohr            for($x = 0; $x < $len; $x++) {
133749eb6e38SAndreas Gohr                $encode .= '&#x'.bin2hex($email{$x}).';';
133849eb6e38SAndreas Gohr            }
133900a7b5adSEsther Brunner            return $encode;
134000a7b5adSEsther Brunner
134100a7b5adSEsther Brunner        case 'none' :
134200a7b5adSEsther Brunner        default :
134300a7b5adSEsther Brunner            return $email;
134400a7b5adSEsther Brunner    }
134500a7b5adSEsther Brunner}
134600a7b5adSEsther Brunner
134700a7b5adSEsther Brunner/**
134889541d4bSAndreas Gohr * Removes quoting backslashes
134989541d4bSAndreas Gohr *
135089541d4bSAndreas Gohr * @author Andreas Gohr <andi@splitbrain.org>
135189541d4bSAndreas Gohr */
135289541d4bSAndreas Gohrfunction unslash($string, $char = "'") {
135389541d4bSAndreas Gohr    return str_replace('\\'.$char, $char, $string);
135489541d4bSAndreas Gohr}
135589541d4bSAndreas Gohr
135673038c47SAndreas Gohr/**
135773038c47SAndreas Gohr * Convert php.ini shorthands to byte
135873038c47SAndreas Gohr *
135973038c47SAndreas Gohr * @author <gilthans dot NO dot SPAM at gmail dot com>
136073038c47SAndreas Gohr * @link   http://de3.php.net/manual/en/ini.core.php#79564
136173038c47SAndreas Gohr */
136273038c47SAndreas Gohrfunction php_to_byte($v) {
136373038c47SAndreas Gohr    $l   = substr($v, -1);
136473038c47SAndreas Gohr    $ret = substr($v, 0, -1);
136573038c47SAndreas Gohr    switch(strtoupper($l)) {
136674160ca1SGerrit Uitslag        /** @noinspection PhpMissingBreakStatementInspection */
136773038c47SAndreas Gohr        case 'P':
136873038c47SAndreas Gohr            $ret *= 1024;
136974160ca1SGerrit Uitslag        /** @noinspection PhpMissingBreakStatementInspection */
137073038c47SAndreas Gohr        case 'T':
137173038c47SAndreas Gohr            $ret *= 1024;
137274160ca1SGerrit Uitslag        /** @noinspection PhpMissingBreakStatementInspection */
137373038c47SAndreas Gohr        case 'G':
137473038c47SAndreas Gohr            $ret *= 1024;
137574160ca1SGerrit Uitslag        /** @noinspection PhpMissingBreakStatementInspection */
137673038c47SAndreas Gohr        case 'M':
137773038c47SAndreas Gohr            $ret *= 1024;
137873038c47SAndreas Gohr        case 'K':
137973038c47SAndreas Gohr            $ret *= 1024;
138073038c47SAndreas Gohr            break;
138149cbd23eSOtto Vainio        default;
138249cbd23eSOtto Vainio            $ret *= 10;
138349cbd23eSOtto Vainio            break;
138473038c47SAndreas Gohr    }
138573038c47SAndreas Gohr    return $ret;
138673038c47SAndreas Gohr}
138773038c47SAndreas Gohr
1388546d3a99SAndreas Gohr/**
1389546d3a99SAndreas Gohr * Wrapper around preg_quote adding the default delimiter
1390546d3a99SAndreas Gohr */
1391546d3a99SAndreas Gohrfunction preg_quote_cb($string) {
1392546d3a99SAndreas Gohr    return preg_quote($string, '/');
1393546d3a99SAndreas Gohr}
139473038c47SAndreas Gohr
1395bd2f6c2fSAndreas Gohr/**
1396bd2f6c2fSAndreas Gohr * Shorten a given string by removing data from the middle
1397bd2f6c2fSAndreas Gohr *
1398c66972f2SAdrian Lang * You can give the string in two parts, the first part $keep
1399bd2f6c2fSAndreas Gohr * will never be shortened. The second part $short will be cut
1400bd2f6c2fSAndreas Gohr * in the middle to shorten but only if at least $min chars are
1401bd2f6c2fSAndreas Gohr * left to display it. Otherwise it will be left off.
1402bd2f6c2fSAndreas Gohr *
1403bd2f6c2fSAndreas Gohr * @param string $keep   the part to keep
1404bd2f6c2fSAndreas Gohr * @param string $short  the part to shorten
1405bd2f6c2fSAndreas Gohr * @param int    $max    maximum chars you want for the whole string
1406bd2f6c2fSAndreas Gohr * @param int    $min    minimum number of chars to have left for middle shortening
1407bd2f6c2fSAndreas Gohr * @param string $char   the shortening character to use
14083272d797SAndreas Gohr * @return string
1409bd2f6c2fSAndreas Gohr */
1410a5d27328SAndreas Gohrfunction shorten($keep, $short, $max, $min = 9, $char = '…') {
1411bd2f6c2fSAndreas Gohr    $max = $max - utf8_strlen($keep);
1412bd2f6c2fSAndreas Gohr    if($max < $min) return $keep;
1413bd2f6c2fSAndreas Gohr    $len = utf8_strlen($short);
1414bd2f6c2fSAndreas Gohr    if($len <= $max) return $keep.$short;
1415bd2f6c2fSAndreas Gohr    $half = floor($max / 2);
1416bd2f6c2fSAndreas Gohr    return $keep.utf8_substr($short, 0, $half - 1).$char.utf8_substr($short, $len - $half);
1417bd2f6c2fSAndreas Gohr}
1418bd2f6c2fSAndreas Gohr
1419dc58b6f4SAndy Webber/**
1420dc58b6f4SAndy Webber * Return the users realname or e-mail address for use
1421dc58b6f4SAndy Webber * in page footer and recent changes pages
1422dc58b6f4SAndy Webber *
1423dc58b6f4SAndy Webber * @author Andy Webber <dokuwiki AT andywebber DOT com>
1424dc58b6f4SAndy Webber */
1425dc58b6f4SAndy Webberfunction editorinfo($username) {
1426dc58b6f4SAndy Webber    global $conf;
1427dc58b6f4SAndy Webber    global $auth;
1428dc58b6f4SAndy Webber
1429dc58b6f4SAndy Webber    switch($conf['showuseras']) {
1430dc58b6f4SAndy Webber        case 'username':
1431dc58b6f4SAndy Webber        case 'email':
1432dc58b6f4SAndy Webber        case 'email_link':
1433173d78c4SAndreas Gohr            if($auth) $info = $auth->getUserData($username);
1434dc58b6f4SAndy Webber            break;
1435dc58b6f4SAndy Webber        default:
1436dc58b6f4SAndy Webber            return hsc($username);
1437dc58b6f4SAndy Webber    }
1438dc58b6f4SAndy Webber
1439dc58b6f4SAndy Webber    if(isset($info) && $info) {
1440dc58b6f4SAndy Webber        switch($conf['showuseras']) {
1441dc58b6f4SAndy Webber            case 'username':
1442dc58b6f4SAndy Webber                return hsc($info['name']);
1443dc58b6f4SAndy Webber            case 'email':
1444dc58b6f4SAndy Webber                return obfuscate($info['mail']);
1445dc58b6f4SAndy Webber            case 'email_link':
1446dc58b6f4SAndy Webber                $mail = obfuscate($info['mail']);
1447dc58b6f4SAndy Webber                return '<a href="mailto:'.$mail.'">'.$mail.'</a>';
1448dc58b6f4SAndy Webber            default:
1449dc58b6f4SAndy Webber                return hsc($username);
1450dc58b6f4SAndy Webber        }
1451dc58b6f4SAndy Webber    } else {
1452dc58b6f4SAndy Webber        return hsc($username);
1453dc58b6f4SAndy Webber    }
1454066fee30SAndreas Gohr}
1455066fee30SAndreas Gohr
1456066fee30SAndreas Gohr/**
1457066fee30SAndreas Gohr * Returns the path to a image file for the currently chosen license.
1458066fee30SAndreas Gohr * When no image exists, returns an empty string
1459066fee30SAndreas Gohr *
1460066fee30SAndreas Gohr * @author Andreas Gohr <andi@splitbrain.org>
1461066fee30SAndreas Gohr * @param  string $type - type of image 'badge' or 'button'
14623272d797SAndreas Gohr * @return string
1463066fee30SAndreas Gohr */
1464066fee30SAndreas Gohrfunction license_img($type) {
1465066fee30SAndreas Gohr    global $license;
1466066fee30SAndreas Gohr    global $conf;
1467066fee30SAndreas Gohr    if(!$conf['license']) return '';
1468066fee30SAndreas Gohr    if(!is_array($license[$conf['license']])) return '';
1469066fee30SAndreas Gohr    $lic   = $license[$conf['license']];
1470066fee30SAndreas Gohr    $try   = array();
1471066fee30SAndreas Gohr    $try[] = 'lib/images/license/'.$type.'/'.$conf['license'].'.png';
1472066fee30SAndreas Gohr    $try[] = 'lib/images/license/'.$type.'/'.$conf['license'].'.gif';
1473066fee30SAndreas Gohr    if(substr($conf['license'], 0, 3) == 'cc-') {
1474066fee30SAndreas Gohr        $try[] = 'lib/images/license/'.$type.'/cc.png';
1475066fee30SAndreas Gohr    }
1476066fee30SAndreas Gohr    foreach($try as $src) {
1477066fee30SAndreas Gohr        if(@file_exists(DOKU_INC.$src)) return $src;
1478066fee30SAndreas Gohr    }
1479066fee30SAndreas Gohr    return '';
1480dc58b6f4SAndy Webber}
1481dc58b6f4SAndy Webber
148213c08e2fSMichael Klier/**
148313c08e2fSMichael Klier * Checks if the given amount of memory is available
148413c08e2fSMichael Klier *
148513c08e2fSMichael Klier * If the memory_get_usage() function is not available the
148613c08e2fSMichael Klier * function just assumes $bytes of already allocated memory
148713c08e2fSMichael Klier *
148813c08e2fSMichael Klier * @author Filip Oscadal <webmaster@illusionsoftworks.cz>
148913c08e2fSMichael Klier * @author Andreas Gohr <andi@splitbrain.org>
14903272d797SAndreas Gohr *
14913272d797SAndreas Gohr * @param  int $mem  Size of memory you want to allocate in bytes
14923272d797SAndreas Gohr * @param int  $bytes
14933272d797SAndreas Gohr * @internal param int $used already allocated memory (see above)
14943272d797SAndreas Gohr * @return bool
149513c08e2fSMichael Klier */
149613c08e2fSMichael Klierfunction is_mem_available($mem, $bytes = 1048576) {
149713c08e2fSMichael Klier    $limit = trim(ini_get('memory_limit'));
149813c08e2fSMichael Klier    if(empty($limit)) return true; // no limit set!
149913c08e2fSMichael Klier
150013c08e2fSMichael Klier    // parse limit to bytes
150113c08e2fSMichael Klier    $limit = php_to_byte($limit);
150213c08e2fSMichael Klier
150313c08e2fSMichael Klier    // get used memory if possible
150413c08e2fSMichael Klier    if(function_exists('memory_get_usage')) {
150513c08e2fSMichael Klier        $used = memory_get_usage();
150649eb6e38SAndreas Gohr    } else {
150749eb6e38SAndreas Gohr        $used = $bytes;
150813c08e2fSMichael Klier    }
150913c08e2fSMichael Klier
151013c08e2fSMichael Klier    if($used + $mem > $limit) {
151113c08e2fSMichael Klier        return false;
151213c08e2fSMichael Klier    }
151313c08e2fSMichael Klier
151413c08e2fSMichael Klier    return true;
151513c08e2fSMichael Klier}
151613c08e2fSMichael Klier
1517af2408d5SAndreas Gohr/**
1518af2408d5SAndreas Gohr * Send a HTTP redirect to the browser
1519af2408d5SAndreas Gohr *
1520af2408d5SAndreas Gohr * Works arround Microsoft IIS cookie sending bug. Exits the script.
1521af2408d5SAndreas Gohr *
1522af2408d5SAndreas Gohr * @link   http://support.microsoft.com/kb/q176113/
1523af2408d5SAndreas Gohr * @author Andreas Gohr <andi@splitbrain.org>
1524af2408d5SAndreas Gohr */
1525af2408d5SAndreas Gohrfunction send_redirect($url) {
15260181f021SAndreas Gohr    //are there any undisplayed messages? keep them in session for display
15270181f021SAndreas Gohr    global $MSG;
15280181f021SAndreas Gohr    if(isset($MSG) && count($MSG) && !defined('NOSESSION')) {
15290181f021SAndreas Gohr        //reopen session, store data and close session again
15300181f021SAndreas Gohr        @session_start();
15310181f021SAndreas Gohr        $_SESSION[DOKU_COOKIE]['msg'] = $MSG;
15320181f021SAndreas Gohr    }
15330181f021SAndreas Gohr
1534d4869846SAndreas Gohr    // always close the session
1535d4869846SAndreas Gohr    session_write_close();
1536d4869846SAndreas Gohr
1537c10dcb7dSAndreas Gohr    // work around IE bug
1538c10dcb7dSAndreas Gohr    // http://www.ianhoar.com/2008/11/16/internet-explorer-6-and-redirected-anchor-links/
1539c10dcb7dSAndreas Gohr    list($url, $hash) = explode('#', $url);
1540c10dcb7dSAndreas Gohr    if($hash) {
1541c10dcb7dSAndreas Gohr        if(strpos($url, '?')) {
1542c10dcb7dSAndreas Gohr            $url = $url.'&#'.$hash;
1543c10dcb7dSAndreas Gohr        } else {
1544c10dcb7dSAndreas Gohr            $url = $url.'?&#'.$hash;
1545c10dcb7dSAndreas Gohr        }
1546c10dcb7dSAndreas Gohr    }
1547c10dcb7dSAndreas Gohr
1548af2408d5SAndreas Gohr    // check if running on IIS < 6 with CGI-PHP
1549af2408d5SAndreas Gohr    if(isset($_SERVER['SERVER_SOFTWARE']) && isset($_SERVER['GATEWAY_INTERFACE']) &&
1550af2408d5SAndreas Gohr        (strpos($_SERVER['GATEWAY_INTERFACE'], 'CGI') !== false) &&
1551af2408d5SAndreas Gohr        (preg_match('|^Microsoft-IIS/(\d)\.\d$|', trim($_SERVER['SERVER_SOFTWARE']), $matches)) &&
15523272d797SAndreas Gohr        $matches[1] < 6
15533272d797SAndreas Gohr    ) {
1554af2408d5SAndreas Gohr        header('Refresh: 0;url='.$url);
1555af2408d5SAndreas Gohr    } else {
1556af2408d5SAndreas Gohr        header('Location: '.$url);
1557af2408d5SAndreas Gohr    }
1558af2408d5SAndreas Gohr    exit;
1559af2408d5SAndreas Gohr}
1560af2408d5SAndreas Gohr
15615b75cd1fSAdrian Lang/**
15625b75cd1fSAdrian Lang * Validate a value using a set of valid values
15635b75cd1fSAdrian Lang *
15645b75cd1fSAdrian Lang * This function checks whether a specified value is set and in the array
15655b75cd1fSAdrian Lang * $valid_values. If not, the function returns a default value or, if no
15665b75cd1fSAdrian Lang * default is specified, throws an exception.
15675b75cd1fSAdrian Lang *
15685b75cd1fSAdrian Lang * @param string $param        The name of the parameter
15695b75cd1fSAdrian Lang * @param array  $valid_values A set of valid values; Optionally a default may
15705b75cd1fSAdrian Lang *                             be marked by the key “default”.
15715b75cd1fSAdrian Lang * @param array  $array        The array containing the value (typically $_POST
15725b75cd1fSAdrian Lang *                             or $_GET)
15735b75cd1fSAdrian Lang * @param string $exc          The text of the raised exception
15745b75cd1fSAdrian Lang *
15753272d797SAndreas Gohr * @throws Exception
15763272d797SAndreas Gohr * @return mixed
15775b75cd1fSAdrian Lang * @author Adrian Lang <lang@cosmocode.de>
15785b75cd1fSAdrian Lang */
15795b75cd1fSAdrian Langfunction valid_input_set($param, $valid_values, $array, $exc = '') {
15805b75cd1fSAdrian Lang    if(isset($array[$param]) && in_array($array[$param], $valid_values)) {
15815b75cd1fSAdrian Lang        return $array[$param];
15825b75cd1fSAdrian Lang    } elseif(isset($valid_values['default'])) {
15835b75cd1fSAdrian Lang        return $valid_values['default'];
15845b75cd1fSAdrian Lang    } else {
15855b75cd1fSAdrian Lang        throw new Exception($exc);
15865b75cd1fSAdrian Lang    }
15875b75cd1fSAdrian Lang}
15885b75cd1fSAdrian Lang
158963703ba5SAndreas Gohr/**
159063703ba5SAndreas Gohr * Read a preference from the DokuWiki cookie
1591646a531aSChristopher Smith * (remembering both keys & values are urlencoded)
159263703ba5SAndreas Gohr */
1593554a8c9fSAdrian Langfunction get_doku_pref($pref, $default) {
1594646a531aSChristopher Smith    $enc_pref = urlencode($pref);
1595646a531aSChristopher Smith    if(strpos($_COOKIE['DOKU_PREFS'], $enc_pref) !== false) {
1596554a8c9fSAdrian Lang        $parts = explode('#', $_COOKIE['DOKU_PREFS']);
159763703ba5SAndreas Gohr        $cnt   = count($parts);
159863703ba5SAndreas Gohr        for($i = 0; $i < $cnt; $i += 2) {
1599646a531aSChristopher Smith            if($parts[$i] == $enc_pref) {
1600646a531aSChristopher Smith                return urldecode($parts[$i + 1]);
1601554a8c9fSAdrian Lang            }
1602554a8c9fSAdrian Lang        }
1603554a8c9fSAdrian Lang    }
1604554a8c9fSAdrian Lang    return $default;
1605554a8c9fSAdrian Lang}
1606554a8c9fSAdrian Lang
16073c94d07bSAnika Henke/**
16083c94d07bSAnika Henke * Add a preference to the DokuWiki cookie
160936ec377eSChristopher Smith * (remembering $_COOKIE['DOKU_PREFS'] is urlencoded)
16103c94d07bSAnika Henke */
16113c94d07bSAnika Henkefunction set_doku_pref($pref, $val) {
16123c94d07bSAnika Henke    global $conf;
16133c94d07bSAnika Henke    $orig = get_doku_pref($pref, false);
16143c94d07bSAnika Henke    $cookieVal = '';
16153c94d07bSAnika Henke
16163c94d07bSAnika Henke    if($orig && ($orig != $val)) {
16173c94d07bSAnika Henke        $parts = explode('#', $_COOKIE['DOKU_PREFS']);
16183c94d07bSAnika Henke        $cnt   = count($parts);
161936ec377eSChristopher Smith        // urlencode $pref for the comparison
162036ec377eSChristopher Smith        $enc_pref = rawurlencode($pref);
16213c94d07bSAnika Henke        for($i = 0; $i < $cnt; $i += 2) {
162236ec377eSChristopher Smith            if($parts[$i] == $enc_pref) {
162336ec377eSChristopher Smith                $parts[$i + 1] = rawurlencode($val);
162450f261f7SMichael Hamann                break;
16253c94d07bSAnika Henke            }
16263c94d07bSAnika Henke        }
16273c94d07bSAnika Henke        $cookieVal = implode('#', $parts);
16283c94d07bSAnika Henke    } else if (!$orig) {
162936ec377eSChristopher Smith        $cookieVal = ($_COOKIE['DOKU_PREFS'] ? $_COOKIE['DOKU_PREFS'].'#' : '').rawurlencode($pref).'#'.rawurlencode($val);
16303c94d07bSAnika Henke    }
16313c94d07bSAnika Henke
16323c94d07bSAnika Henke    if (!empty($cookieVal)) {
163375e4dd8aSGerrit Uitslag        $cookieDir = empty($conf['cookiedir']) ? DOKU_REL : $conf['cookiedir'];
163475e4dd8aSGerrit Uitslag        setcookie('DOKU_PREFS', $cookieVal, time()+365*24*3600, $cookieDir, '', ($conf['securecookie'] && is_ssl()));
16353c94d07bSAnika Henke    }
16363c94d07bSAnika Henke}
16373c94d07bSAnika Henke
1638e3776c06SMichael Hamann//Setup VIM: ex: et ts=2 :
1639