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 90db5771eSMichael Großeuse dokuwiki\Cache\CacheInstructions; 100db5771eSMichael Großeuse dokuwiki\Cache\CacheRenderer; 110c3a5702SAndreas Gohruse dokuwiki\ChangeLog\PageChangeLog; 12704a815fSMichael Großeuse dokuwiki\Subscriptions\PageSubscriptionSender; 1375d66495SMichael Großeuse dokuwiki\Subscriptions\SubscriberManager; 14e1d9dcc8SAndreas Gohruse dokuwiki\Extension\AuthPlugin; 15e1d9dcc8SAndreas Gohruse dokuwiki\Extension\Event; 160c3a5702SAndreas Gohr 17f3f0262cSandi/** 18b6912aeaSAndreas Gohr * These constants are used with the recents function 19b6912aeaSAndreas Gohr */ 20b6912aeaSAndreas Gohrdefine('RECENTS_SKIP_DELETED', 2); 21b6912aeaSAndreas Gohrdefine('RECENTS_SKIP_MINORS', 4); 22b6912aeaSAndreas Gohrdefine('RECENTS_SKIP_SUBSPACES', 8); 230b926329SKate Arzamastsevadefine('RECENTS_MEDIA_CHANGES', 16); 240b926329SKate Arzamastsevadefine('RECENTS_MEDIA_PAGES_MIXED', 32); 2508e9b52fSPhydefine('RECENTS_ONLY_CREATION', 64); 26b6912aeaSAndreas Gohr 27b6912aeaSAndreas Gohr/** 28d5197206Schris * Wrapper around htmlspecialchars() 29d5197206Schris * 30d5197206Schris * @author Andreas Gohr <andi@splitbrain.org> 31d5197206Schris * @see htmlspecialchars() 32140cfbcdSGerrit Uitslag * 33140cfbcdSGerrit Uitslag * @param string $string the string being converted 34140cfbcdSGerrit Uitslag * @return string converted string 35d5197206Schris */ 36d5197206Schrisfunction hsc($string) { 37d5197206Schris return htmlspecialchars($string, ENT_QUOTES, 'UTF-8'); 38d5197206Schris} 39d5197206Schris 40d5197206Schris/** 415b571377SAndreas Gohr * Checks if the given input is blank 425b571377SAndreas Gohr * 435b571377SAndreas Gohr * This is similar to empty() but will return false for "0". 445b571377SAndreas Gohr * 4567234204SAndreas Gohr * Please note: when you pass uninitialized variables, they will implicitly be created 4667234204SAndreas Gohr * with a NULL value without warning. 4767234204SAndreas Gohr * 4867234204SAndreas Gohr * To avoid this it's recommended to guard the call with isset like this: 4967234204SAndreas Gohr * 5067234204SAndreas Gohr * (isset($foo) && !blank($foo)) 5167234204SAndreas Gohr * (!isset($foo) || blank($foo)) 5267234204SAndreas Gohr * 535b571377SAndreas Gohr * @param $in 545b571377SAndreas Gohr * @param bool $trim Consider a string of whitespace to be blank 555b571377SAndreas Gohr * @return bool 565b571377SAndreas Gohr */ 575b571377SAndreas Gohrfunction blank(&$in, $trim = false) { 585b571377SAndreas Gohr if(is_null($in)) return true; 595b571377SAndreas Gohr if(is_array($in)) return empty($in); 605b571377SAndreas Gohr if($in === "\0") return true; 615b571377SAndreas Gohr if($trim && trim($in) === '') return true; 625b571377SAndreas Gohr if(strlen($in) > 0) return false; 635b571377SAndreas Gohr return empty($in); 645b571377SAndreas Gohr} 655b571377SAndreas Gohr 665b571377SAndreas Gohr/** 67d5197206Schris * print a newline terminated string 68d5197206Schris * 69d5197206Schris * You can give an indention as optional parameter 70d5197206Schris * 71d5197206Schris * @author Andreas Gohr <andi@splitbrain.org> 72140cfbcdSGerrit Uitslag * 73140cfbcdSGerrit Uitslag * @param string $string line of text 74140cfbcdSGerrit Uitslag * @param int $indent number of spaces indention 75d5197206Schris */ 7625ec097bSChris Smithfunction ptln($string, $indent = 0) { 7725ec097bSChris Smith echo str_repeat(' ', $indent)."$string\n"; 7802b0b681SAndreas Gohr} 7902b0b681SAndreas Gohr 8002b0b681SAndreas Gohr/** 8102b0b681SAndreas Gohr * strips control characters (<32) from the given string 8202b0b681SAndreas Gohr * 8302b0b681SAndreas Gohr * @author Andreas Gohr <andi@splitbrain.org> 84140cfbcdSGerrit Uitslag * 8542ea7f44SGerrit Uitslag * @param string $string being stripped 86140cfbcdSGerrit Uitslag * @return string 8702b0b681SAndreas Gohr */ 8802b0b681SAndreas Gohrfunction stripctl($string) { 8902b0b681SAndreas Gohr return preg_replace('/[\x00-\x1F]+/s', '', $string); 90d5197206Schris} 91d5197206Schris 92d5197206Schris/** 93634d7150SAndreas Gohr * Return a secret token to be used for CSRF attack prevention 94634d7150SAndreas Gohr * 95634d7150SAndreas Gohr * @author Andreas Gohr <andi@splitbrain.org> 96634d7150SAndreas Gohr * @link http://en.wikipedia.org/wiki/Cross-site_request_forgery 97634d7150SAndreas Gohr * @link http://christ1an.blogspot.com/2007/04/preventing-csrf-efficiently.html 9842ea7f44SGerrit Uitslag * 99634d7150SAndreas Gohr * @return string 100634d7150SAndreas Gohr */ 101634d7150SAndreas Gohrfunction getSecurityToken() { 102585bf44eSChristopher Smith /** @var Input $INPUT */ 103585bf44eSChristopher Smith global $INPUT; 1043680e2cdSAndreas Gohr 1053680e2cdSAndreas Gohr $user = $INPUT->server->str('REMOTE_USER'); 1063680e2cdSAndreas Gohr $session = session_id(); 1073680e2cdSAndreas Gohr 1083680e2cdSAndreas Gohr // CSRF checks are only for logged in users - do not generate for anonymous 1093680e2cdSAndreas Gohr if(trim($user) == '' || trim($session) == '') return ''; 110c3cc6e05SAndreas Gohr return \dokuwiki\PassHash::hmac('md5', $session.$user, auth_cookiesalt()); 111634d7150SAndreas Gohr} 112634d7150SAndreas Gohr 113634d7150SAndreas Gohr/** 114634d7150SAndreas Gohr * Check the secret CSRF token 115140cfbcdSGerrit Uitslag * 116140cfbcdSGerrit Uitslag * @param null|string $token security token or null to read it from request variable 117140cfbcdSGerrit Uitslag * @return bool success if the token matched 118634d7150SAndreas Gohr */ 119634d7150SAndreas Gohrfunction checkSecurityToken($token = null) { 120585bf44eSChristopher Smith /** @var Input $INPUT */ 1217d01a0eaSTom N Harris global $INPUT; 122585bf44eSChristopher Smith if(!$INPUT->server->str('REMOTE_USER')) return true; // no logged in user, no need for a check 123df97eaacSAndreas Gohr 1247d01a0eaSTom N Harris if(is_null($token)) $token = $INPUT->str('sectok'); 125634d7150SAndreas Gohr if(getSecurityToken() != $token) { 126634d7150SAndreas Gohr msg('Security Token did not match. Possible CSRF attack.', -1); 127634d7150SAndreas Gohr return false; 128634d7150SAndreas Gohr } 129634d7150SAndreas Gohr return true; 130634d7150SAndreas Gohr} 131634d7150SAndreas Gohr 132634d7150SAndreas Gohr/** 133634d7150SAndreas Gohr * Print a hidden form field with a secret CSRF token 134634d7150SAndreas Gohr * 135634d7150SAndreas Gohr * @author Andreas Gohr <andi@splitbrain.org> 136140cfbcdSGerrit Uitslag * 137140cfbcdSGerrit Uitslag * @param bool $print if true print the field, otherwise html of the field is returned 13842ea7f44SGerrit Uitslag * @return string html of hidden form field 139634d7150SAndreas Gohr */ 140634d7150SAndreas Gohrfunction formSecurityToken($print = true) { 1412404d0edSAnika Henke $ret = '<div class="no"><input type="hidden" name="sectok" value="'.getSecurityToken().'" /></div>'."\n"; 1423272d797SAndreas Gohr if($print) echo $ret; 143634d7150SAndreas Gohr return $ret; 144634d7150SAndreas Gohr} 145634d7150SAndreas Gohr 146634d7150SAndreas Gohr/** 1471015a57dSChristopher Smith * Determine basic information for a request of $id 14815fae107Sandi * 14915fae107Sandi * @author Andreas Gohr <andi@splitbrain.org> 1507e87a794SChristopher Smith * @author Chris Smith <chris@jalakai.co.uk> 151140cfbcdSGerrit Uitslag * 152140cfbcdSGerrit Uitslag * @param string $id pageid 153140cfbcdSGerrit Uitslag * @param bool $htmlClient add info about whether is mobile browser 154140cfbcdSGerrit Uitslag * @return array with info for a request of $id 155140cfbcdSGerrit Uitslag * 156f3f0262cSandi */ 1571015a57dSChristopher Smithfunction basicinfo($id, $htmlClient=true){ 158f3f0262cSandi global $USERINFO; 159585bf44eSChristopher Smith /* @var Input $INPUT */ 160585bf44eSChristopher Smith global $INPUT; 1616afe8dcaSchris 162c66972f2SAdrian Lang // set info about manager/admin status. 16359bc3b48SGerrit Uitslag $info = array(); 164c66972f2SAdrian Lang $info['isadmin'] = false; 165c66972f2SAdrian Lang $info['ismanager'] = false; 166585bf44eSChristopher Smith if($INPUT->server->has('REMOTE_USER')) { 167f3f0262cSandi $info['userinfo'] = $USERINFO; 1681015a57dSChristopher Smith $info['perm'] = auth_quickaclcheck($id); 169585bf44eSChristopher Smith $info['client'] = $INPUT->server->str('REMOTE_USER'); 17017ee7f66SAndreas Gohr 171f8cc712eSAndreas Gohr if($info['perm'] == AUTH_ADMIN) { 172f8cc712eSAndreas Gohr $info['isadmin'] = true; 173f8cc712eSAndreas Gohr $info['ismanager'] = true; 174f8cc712eSAndreas Gohr } elseif(auth_ismanager()) { 175f8cc712eSAndreas Gohr $info['ismanager'] = true; 176f8cc712eSAndreas Gohr } 177f8cc712eSAndreas Gohr 17817ee7f66SAndreas Gohr // if some outside auth were used only REMOTE_USER is set 17917ee7f66SAndreas Gohr if(!$info['userinfo']['name']) { 180585bf44eSChristopher Smith $info['userinfo']['name'] = $INPUT->server->str('REMOTE_USER'); 18117ee7f66SAndreas Gohr } 182ee4c4a1bSAndreas Gohr 183f3f0262cSandi } else { 1841015a57dSChristopher Smith $info['perm'] = auth_aclcheck($id, '', null); 185ee4c4a1bSAndreas Gohr $info['client'] = clientIP(true); 186f3f0262cSandi } 187f3f0262cSandi 1881015a57dSChristopher Smith $info['namespace'] = getNS($id); 1891015a57dSChristopher Smith 1901015a57dSChristopher Smith // mobile detection 1911015a57dSChristopher Smith if ($htmlClient) { 1921015a57dSChristopher Smith $info['ismobile'] = clientismobile(); 1931015a57dSChristopher Smith } 1941015a57dSChristopher Smith 1951015a57dSChristopher Smith return $info; 1961015a57dSChristopher Smith } 1971015a57dSChristopher Smith 1981015a57dSChristopher Smith/** 1991015a57dSChristopher Smith * Return info about the current document as associative 2001015a57dSChristopher Smith * array. 2011015a57dSChristopher Smith * 2021015a57dSChristopher Smith * @author Andreas Gohr <andi@splitbrain.org> 203140cfbcdSGerrit Uitslag * 204140cfbcdSGerrit Uitslag * @return array with info about current document 2051015a57dSChristopher Smith */ 2061015a57dSChristopher Smithfunction pageinfo() { 2071015a57dSChristopher Smith global $ID; 2081015a57dSChristopher Smith global $REV; 2091015a57dSChristopher Smith global $RANGE; 2101015a57dSChristopher Smith global $lang; 211585bf44eSChristopher Smith /* @var Input $INPUT */ 212585bf44eSChristopher Smith global $INPUT; 2131015a57dSChristopher Smith 2141015a57dSChristopher Smith $info = basicinfo($ID); 2151015a57dSChristopher Smith 2161015a57dSChristopher Smith // include ID & REV not redundant, as some parts of DokuWiki may temporarily change $ID, e.g. p_wiki_xhtml 2171015a57dSChristopher Smith // FIXME ... perhaps it would be better to ensure the temporary changes weren't necessary 2181015a57dSChristopher Smith $info['id'] = $ID; 2191015a57dSChristopher Smith $info['rev'] = $REV; 2201015a57dSChristopher Smith 22175d66495SMichael Große $subManager = new SubscriberManager(); 22275d66495SMichael Große $info['subscribed'] = $subManager->userSubscription(); 2237e87a794SChristopher Smith 224f3f0262cSandi $info['locked'] = checklock($ID); 225317a04c4SSatoshi Sahara $info['filepath'] = wikiFN($ID); 22679e79377SAndreas Gohr $info['exists'] = file_exists($info['filepath']); 22701c9a118SAndreas Gohr $info['currentrev'] = @filemtime($info['filepath']); 2282ca9d91cSBen Coburn if($REV) { 2292ca9d91cSBen Coburn //check if current revision was meant 23001c9a118SAndreas Gohr if($info['exists'] && ($info['currentrev'] == $REV)) { 2312ca9d91cSBen Coburn $REV = ''; 2327b3a6803SAndreas Gohr } elseif($RANGE) { 2337b3a6803SAndreas Gohr //section editing does not work with old revisions! 2347b3a6803SAndreas Gohr $REV = ''; 2357b3a6803SAndreas Gohr $RANGE = ''; 2367b3a6803SAndreas Gohr msg($lang['nosecedit'], 0); 2372ca9d91cSBen Coburn } else { 2382ca9d91cSBen Coburn //really use old revision 239317a04c4SSatoshi Sahara $info['filepath'] = wikiFN($ID, $REV); 24079e79377SAndreas Gohr $info['exists'] = file_exists($info['filepath']); 241f3f0262cSandi } 242f3f0262cSandi } 243c112d578Sandi $info['rev'] = $REV; 244f3f0262cSandi if($info['exists']) { 245f3f0262cSandi $info['writable'] = (is_writable($info['filepath']) && 246f3f0262cSandi ($info['perm'] >= AUTH_EDIT)); 247f3f0262cSandi } else { 248f3f0262cSandi $info['writable'] = ($info['perm'] >= AUTH_CREATE); 249f3f0262cSandi } 25050e988b1SAndreas Gohr $info['editable'] = ($info['writable'] && empty($info['locked'])); 251f3f0262cSandi $info['lastmod'] = @filemtime($info['filepath']); 252f3f0262cSandi 25371726d78SBen Coburn //load page meta data 25471726d78SBen Coburn $info['meta'] = p_get_metadata($ID); 25571726d78SBen Coburn 256652610a2Sandi //who's the editor 257047bad06SGerrit Uitslag $pagelog = new PageChangeLog($ID, 1024); 258652610a2Sandi if($REV) { 259f523c971SGerrit Uitslag $revinfo = $pagelog->getRevisionInfo($REV); 260652610a2Sandi } else { 2610e80bb5eSChristopher Smith if(!empty($info['meta']['last_change']) && is_array($info['meta']['last_change'])) { 262aa27cf05SAndreas Gohr $revinfo = $info['meta']['last_change']; 263aa27cf05SAndreas Gohr } else { 264f523c971SGerrit Uitslag $revinfo = $pagelog->getRevisionInfo($info['lastmod']); 265cd00a034SBen Coburn // cache most recent changelog line in metadata if missing and still valid 266cd00a034SBen Coburn if($revinfo !== false) { 267cd00a034SBen Coburn $info['meta']['last_change'] = $revinfo; 268cd00a034SBen Coburn p_set_metadata($ID, array('last_change' => $revinfo)); 269cd00a034SBen Coburn } 270cd00a034SBen Coburn } 271cd00a034SBen Coburn } 272cd00a034SBen Coburn //and check for an external edit 273cd00a034SBen Coburn if($revinfo !== false && $revinfo['date'] != $info['lastmod']) { 274cd00a034SBen Coburn // cached changelog line no longer valid 275cd00a034SBen Coburn $revinfo = false; 276cd00a034SBen Coburn $info['meta']['last_change'] = $revinfo; 277cd00a034SBen Coburn p_set_metadata($ID, array('last_change' => $revinfo)); 278652610a2Sandi } 279bb4866bdSchris 2800a444b5aSPhy if($revinfo !== false){ 281652610a2Sandi $info['ip'] = $revinfo['ip']; 282652610a2Sandi $info['user'] = $revinfo['user']; 283652610a2Sandi $info['sum'] = $revinfo['sum']; 28471726d78SBen Coburn // See also $INFO['meta']['last_change'] which is the most recent log line for page $ID. 285ebf1501fSBen Coburn // Use $INFO['meta']['last_change']['type']===DOKU_CHANGE_TYPE_MINOR_EDIT in place of $info['minor']. 28659f257aeSchris 28788f522e9Sandi if($revinfo['user']) { 28888f522e9Sandi $info['editor'] = $revinfo['user']; 28988f522e9Sandi } else { 29088f522e9Sandi $info['editor'] = $revinfo['ip']; 29188f522e9Sandi } 2920a444b5aSPhy }else{ 2930a444b5aSPhy $info['ip'] = null; 2940a444b5aSPhy $info['user'] = null; 2950a444b5aSPhy $info['sum'] = null; 2960a444b5aSPhy $info['editor'] = null; 2970a444b5aSPhy } 298652610a2Sandi 299ee4c4a1bSAndreas Gohr // draft 3000aabe6f8SMichael Große $draft = new \dokuwiki\Draft($ID, $info['client']); 3010aabe6f8SMichael Große if ($draft->isDraftAvailable()) { 3020aabe6f8SMichael Große $info['draft'] = $draft->getDraftFilename(); 303ee4c4a1bSAndreas Gohr } 304ee4c4a1bSAndreas Gohr 3051015a57dSChristopher Smith return $info; 3061015a57dSChristopher Smith} 3071015a57dSChristopher Smith 3081015a57dSChristopher Smith/** 3090c39d46cSMichael Große * Initialize and/or fill global $JSINFO with some basic info to be given to javascript 3100c39d46cSMichael Große */ 3110c39d46cSMichael Großefunction jsinfo() { 3120c39d46cSMichael Große global $JSINFO, $ID, $INFO, $ACT; 3130c39d46cSMichael Große 3140c39d46cSMichael Große if (!is_array($JSINFO)) { 3150c39d46cSMichael Große $JSINFO = []; 3160c39d46cSMichael Große } 3170c39d46cSMichael Große //export minimal info to JS, plugins can add more 3180c39d46cSMichael Große $JSINFO['id'] = $ID; 31968491db9SPhy $JSINFO['namespace'] = isset($INFO) ? (string) $INFO['namespace'] : ''; 3200c39d46cSMichael Große $JSINFO['ACT'] = act_clean($ACT); 3210c39d46cSMichael Große $JSINFO['useHeadingNavigation'] = (int) useHeading('navigation'); 3220c39d46cSMichael Große $JSINFO['useHeadingContent'] = (int) useHeading('content'); 3230c39d46cSMichael Große} 3240c39d46cSMichael Große 3250c39d46cSMichael Große/** 3261015a57dSChristopher Smith * Return information about the current media item as an associative array. 327140cfbcdSGerrit Uitslag * 328140cfbcdSGerrit Uitslag * @return array with info about current media item 3291015a57dSChristopher Smith */ 3301015a57dSChristopher Smithfunction mediainfo(){ 3311015a57dSChristopher Smith global $NS; 3321015a57dSChristopher Smith global $IMG; 3331015a57dSChristopher Smith 3341015a57dSChristopher Smith $info = basicinfo("$NS:*"); 3351015a57dSChristopher Smith $info['image'] = $IMG; 3361c548ebeSAndreas Gohr 337f3f0262cSandi return $info; 338f3f0262cSandi} 339f3f0262cSandi 340f3f0262cSandi/** 3412684e50aSAndreas Gohr * Build an string of URL parameters 3422684e50aSAndreas Gohr * 3432684e50aSAndreas Gohr * @author Andreas Gohr 344140cfbcdSGerrit Uitslag * 345140cfbcdSGerrit Uitslag * @param array $params array with key-value pairs 346140cfbcdSGerrit Uitslag * @param string $sep series of pairs are separated by this character 347140cfbcdSGerrit Uitslag * @return string query string 3482684e50aSAndreas Gohr */ 349b174aeaeSchrisfunction buildURLparams($params, $sep = '&') { 3502684e50aSAndreas Gohr $url = ''; 3512684e50aSAndreas Gohr $amp = false; 3522684e50aSAndreas Gohr foreach($params as $key => $val) { 353b174aeaeSchris if($amp) $url .= $sep; 3542684e50aSAndreas Gohr 35585e6871fSAdrian Lang $url .= rawurlencode($key).'='; 3563a50618cSgweissbach $url .= rawurlencode((string) $val); 3572684e50aSAndreas Gohr $amp = true; 3582684e50aSAndreas Gohr } 3592684e50aSAndreas Gohr return $url; 3602684e50aSAndreas Gohr} 3612684e50aSAndreas Gohr 3622684e50aSAndreas Gohr/** 3632684e50aSAndreas Gohr * Build an string of html tag attributes 3642684e50aSAndreas Gohr * 3657bff22c0SAndreas Gohr * Skips keys starting with '_', values get HTML encoded 3667bff22c0SAndreas Gohr * 3672684e50aSAndreas Gohr * @author Andreas Gohr 368140cfbcdSGerrit Uitslag * 369140cfbcdSGerrit Uitslag * @param array $params array with (attribute name-attribute value) pairs 370246d3337SMichael Große * @param bool $skipEmptyStrings skip empty string values? 371140cfbcdSGerrit Uitslag * @return string 3722684e50aSAndreas Gohr */ 373246d3337SMichael Großefunction buildAttributes($params, $skipEmptyStrings = false) { 3742684e50aSAndreas Gohr $url = ''; 3759063ec14SAdrian Lang $white = false; 3762684e50aSAndreas Gohr foreach($params as $key => $val) { 3772401f18dSSyntaxseed if($key[0] == '_') continue; 378246d3337SMichael Große if($val === '' && $skipEmptyStrings) continue; 3799063ec14SAdrian Lang if($white) $url .= ' '; 3807bff22c0SAndreas Gohr 3812684e50aSAndreas Gohr $url .= $key.'="'; 3822684e50aSAndreas Gohr $url .= htmlspecialchars($val); 3832684e50aSAndreas Gohr $url .= '"'; 3849063ec14SAdrian Lang $white = true; 3852684e50aSAndreas Gohr } 3862684e50aSAndreas Gohr return $url; 3872684e50aSAndreas Gohr} 3882684e50aSAndreas Gohr 3892684e50aSAndreas Gohr/** 39015fae107Sandi * This builds the breadcrumb trail and returns it as array 39115fae107Sandi * 39215fae107Sandi * @author Andreas Gohr <andi@splitbrain.org> 393140cfbcdSGerrit Uitslag * 394e3710957SGerrit Uitslag * @return string[] with the data: array(pageid=>name, ... ) 395f3f0262cSandi */ 396f3f0262cSandifunction breadcrumbs() { 3978746e727Sandi // we prepare the breadcrumbs early for quick session closing 3988746e727Sandi static $crumbs = null; 3998746e727Sandi if($crumbs != null) return $crumbs; 4008746e727Sandi 401f3f0262cSandi global $ID; 402f3f0262cSandi global $ACT; 403f3f0262cSandi global $conf; 4040ea5ebb4SB_S666 global $INFO; 405f3f0262cSandi 406f3f0262cSandi //first visit? 407c66972f2SAdrian Lang $crumbs = isset($_SESSION[DOKU_COOKIE]['bc']) ? $_SESSION[DOKU_COOKIE]['bc'] : array(); 4085603d3c1SHenry Pan //we only save on show and existing visible readable wiki documents 409a77f5846Sjan $file = wikiFN($ID); 4105603d3c1SHenry Pan if($ACT != 'show' || $INFO['perm'] < AUTH_READ || isHiddenPage($ID) || !file_exists($file)) { 411e71ce681SAndreas Gohr $_SESSION[DOKU_COOKIE]['bc'] = $crumbs; 412f3f0262cSandi return $crumbs; 413f3f0262cSandi } 414a77f5846Sjan 415a77f5846Sjan // page names 4161a84a0f3SAnika Henke $name = noNSorNS($ID); 417fe9ec250SChris Smith if(useHeading('navigation')) { 418a77f5846Sjan // get page title 41967c15eceSMichael Hamann $title = p_get_first_heading($ID, METADATA_RENDER_USING_SIMPLE_CACHE); 420a77f5846Sjan if($title) { 421a77f5846Sjan $name = $title; 422a77f5846Sjan } 423a77f5846Sjan } 424a77f5846Sjan 425f3f0262cSandi //remove ID from array 426a77f5846Sjan if(isset($crumbs[$ID])) { 427a77f5846Sjan unset($crumbs[$ID]); 428f3f0262cSandi } 429f3f0262cSandi 430f3f0262cSandi //add to array 431a77f5846Sjan $crumbs[$ID] = $name; 432f3f0262cSandi //reduce size 433f3f0262cSandi while(count($crumbs) > $conf['breadcrumbs']) { 434f3f0262cSandi array_shift($crumbs); 435f3f0262cSandi } 436f3f0262cSandi //save to session 437e71ce681SAndreas Gohr $_SESSION[DOKU_COOKIE]['bc'] = $crumbs; 438f3f0262cSandi return $crumbs; 439f3f0262cSandi} 440f3f0262cSandi 441f3f0262cSandi/** 44215fae107Sandi * Filter for page IDs 44315fae107Sandi * 444f3f0262cSandi * This is run on a ID before it is outputted somewhere 445f3f0262cSandi * currently used to replace the colon with something else 446907f24f7SAndreas Gohr * on Windows (non-IIS) systems and to have proper URL encoding 447907f24f7SAndreas Gohr * 448907f24f7SAndreas Gohr * See discussions at https://github.com/splitbrain/dokuwiki/pull/84 and 449907f24f7SAndreas Gohr * https://github.com/splitbrain/dokuwiki/pull/173 why we use a whitelist of 450907f24f7SAndreas Gohr * unaffected servers instead of blacklisting affected servers here. 45115fae107Sandi * 45249c713a3Sandi * Urlencoding is ommitted when the second parameter is false 45349c713a3Sandi * 45415fae107Sandi * @author Andreas Gohr <andi@splitbrain.org> 455140cfbcdSGerrit Uitslag * 456140cfbcdSGerrit Uitslag * @param string $id pageid being filtered 457140cfbcdSGerrit Uitslag * @param bool $ue apply urlencoding? 458140cfbcdSGerrit Uitslag * @return string 459f3f0262cSandi */ 46049c713a3Sandifunction idfilter($id, $ue = true) { 461f3f0262cSandi global $conf; 462585bf44eSChristopher Smith /* @var Input $INPUT */ 463585bf44eSChristopher Smith global $INPUT; 464585bf44eSChristopher Smith 465f3f0262cSandi if($conf['useslash'] && $conf['userewrite']) { 466f3f0262cSandi $id = strtr($id, ':', '/'); 467f3f0262cSandi } elseif(strtoupper(substr(PHP_OS, 0, 3)) === 'WIN' && 46858bedc8aSborekb $conf['userewrite'] && 469585bf44eSChristopher Smith strpos($INPUT->server->str('SERVER_SOFTWARE'), 'Microsoft-IIS') === false 4703272d797SAndreas Gohr ) { 471f3f0262cSandi $id = strtr($id, ':', ';'); 472f3f0262cSandi } 47349c713a3Sandi if($ue) { 474b6c6979fSAndreas Gohr $id = rawurlencode($id); 475f3f0262cSandi $id = str_replace('%3A', ':', $id); //keep as colon 476edd95259SGerrit Uitslag $id = str_replace('%3B', ';', $id); //keep as semicolon 477f3f0262cSandi $id = str_replace('%2F', '/', $id); //keep as slash 47849c713a3Sandi } 479f3f0262cSandi return $id; 480f3f0262cSandi} 481f3f0262cSandi 482f3f0262cSandi/** 483ed7b5f09Sandi * This builds a link to a wikipage 48415fae107Sandi * 4854bc480e5SAndreas Gohr * It handles URL rewriting and adds additional parameters 4866c7843b5Sandi * 48715fae107Sandi * @author Andreas Gohr <andi@splitbrain.org> 4884bc480e5SAndreas Gohr * 4894bc480e5SAndreas Gohr * @param string $id page id, defaults to start page 4904bc480e5SAndreas Gohr * @param string|array $urlParameters URL parameters, associative array recommended 4914bc480e5SAndreas Gohr * @param bool $absolute request an absolute URL instead of relative 4924bc480e5SAndreas Gohr * @param string $separator parameter separator 4934bc480e5SAndreas Gohr * @return string 494f3f0262cSandi */ 49516f15a81SDominik Eckelmannfunction wl($id = '', $urlParameters = '', $absolute = false, $separator = '&') { 496f3f0262cSandi global $conf; 49716f15a81SDominik Eckelmann if(is_array($urlParameters)) { 4984bde2196Slisps if(isset($urlParameters['rev']) && !$urlParameters['rev']) unset($urlParameters['rev']); 49964159a61SAndreas Gohr if(isset($urlParameters['at']) && $conf['date_at_format']) { 50064159a61SAndreas Gohr $urlParameters['at'] = date($conf['date_at_format'], $urlParameters['at']); 50164159a61SAndreas Gohr } 50216f15a81SDominik Eckelmann $urlParameters = buildURLparams($urlParameters, $separator); 5036de3759aSAndreas Gohr } else { 50416f15a81SDominik Eckelmann $urlParameters = str_replace(',', $separator, $urlParameters); 5056de3759aSAndreas Gohr } 50616f15a81SDominik Eckelmann if($id === '') { 50716f15a81SDominik Eckelmann $id = $conf['start']; 50816f15a81SDominik Eckelmann } 509f3f0262cSandi $id = idfilter($id); 51016f15a81SDominik Eckelmann if($absolute) { 511ed7b5f09Sandi $xlink = DOKU_URL; 512ed7b5f09Sandi } else { 513ed7b5f09Sandi $xlink = DOKU_BASE; 514ed7b5f09Sandi } 515f3f0262cSandi 5166c7843b5Sandi if($conf['userewrite'] == 2) { 5176c7843b5Sandi $xlink .= DOKU_SCRIPT.'/'.$id; 51816f15a81SDominik Eckelmann if($urlParameters) $xlink .= '?'.$urlParameters; 5196c7843b5Sandi } elseif($conf['userewrite']) { 520f3f0262cSandi $xlink .= $id; 52116f15a81SDominik Eckelmann if($urlParameters) $xlink .= '?'.$urlParameters; 52240b5fb5bSPhy } elseif($id !== '') { 5236c7843b5Sandi $xlink .= DOKU_SCRIPT.'?id='.$id; 52416f15a81SDominik Eckelmann if($urlParameters) $xlink .= $separator.$urlParameters; 525bce3726dSAndreas Gohr } else { 526bce3726dSAndreas Gohr $xlink .= DOKU_SCRIPT; 52716f15a81SDominik Eckelmann if($urlParameters) $xlink .= '?'.$urlParameters; 528f3f0262cSandi } 529f3f0262cSandi 530f3f0262cSandi return $xlink; 531f3f0262cSandi} 532f3f0262cSandi 533f3f0262cSandi/** 534f5c2808fSBen Coburn * This builds a link to an alternate page format 535f5c2808fSBen Coburn * 536f5c2808fSBen Coburn * Handles URL rewriting if enabled. Follows the style of wl(). 537f5c2808fSBen Coburn * 538f5c2808fSBen Coburn * @author Ben Coburn <btcoburn@silicodon.net> 5394bc480e5SAndreas Gohr * @param string $id page id, defaults to start page 5404bc480e5SAndreas Gohr * @param string $format the export renderer to use 5414bc480e5SAndreas Gohr * @param string|array $urlParameters URL parameters, associative array recommended 5424bc480e5SAndreas Gohr * @param bool $abs request an absolute URL instead of relative 5434bc480e5SAndreas Gohr * @param string $sep parameter separator 5444bc480e5SAndreas Gohr * @return string 545f5c2808fSBen Coburn */ 5464bc480e5SAndreas Gohrfunction exportlink($id = '', $format = 'raw', $urlParameters = '', $abs = false, $sep = '&') { 547f5c2808fSBen Coburn global $conf; 5484bc480e5SAndreas Gohr if(is_array($urlParameters)) { 5494bc480e5SAndreas Gohr $urlParameters = buildURLparams($urlParameters, $sep); 550f5c2808fSBen Coburn } else { 5514bc480e5SAndreas Gohr $urlParameters = str_replace(',', $sep, $urlParameters); 552f5c2808fSBen Coburn } 553f5c2808fSBen Coburn 554f5c2808fSBen Coburn $format = rawurlencode($format); 555f5c2808fSBen Coburn $id = idfilter($id); 556f5c2808fSBen Coburn if($abs) { 557f5c2808fSBen Coburn $xlink = DOKU_URL; 558f5c2808fSBen Coburn } else { 559f5c2808fSBen Coburn $xlink = DOKU_BASE; 560f5c2808fSBen Coburn } 561f5c2808fSBen Coburn 562f5c2808fSBen Coburn if($conf['userewrite'] == 2) { 563f5c2808fSBen Coburn $xlink .= DOKU_SCRIPT.'/'.$id.'?do=export_'.$format; 5644bc480e5SAndreas Gohr if($urlParameters) $xlink .= $sep.$urlParameters; 565f5c2808fSBen Coburn } elseif($conf['userewrite'] == 1) { 566f5c2808fSBen Coburn $xlink .= '_export/'.$format.'/'.$id; 5674bc480e5SAndreas Gohr if($urlParameters) $xlink .= '?'.$urlParameters; 568f5c2808fSBen Coburn } else { 569f5c2808fSBen Coburn $xlink .= DOKU_SCRIPT.'?do=export_'.$format.$sep.'id='.$id; 5704bc480e5SAndreas Gohr if($urlParameters) $xlink .= $sep.$urlParameters; 571f5c2808fSBen Coburn } 572f5c2808fSBen Coburn 573f5c2808fSBen Coburn return $xlink; 574f5c2808fSBen Coburn} 575f5c2808fSBen Coburn 576f5c2808fSBen Coburn/** 5776de3759aSAndreas Gohr * Build a link to a media file 5786de3759aSAndreas Gohr * 5796de3759aSAndreas Gohr * Will return a link to the detail page if $direct is false 5808c08db0aSAndreas Gohr * 5818c08db0aSAndreas Gohr * The $more parameter should always be given as array, the function then 5828c08db0aSAndreas Gohr * will strip default parameters to produce even cleaner URLs 5838c08db0aSAndreas Gohr * 5843272d797SAndreas Gohr * @param string $id the media file id or URL 5853272d797SAndreas Gohr * @param mixed $more string or array with additional parameters 5863272d797SAndreas Gohr * @param bool $direct link to detail page if false 5873272d797SAndreas Gohr * @param string $sep URL parameter separator 5883272d797SAndreas Gohr * @param bool $abs Create an absolute URL 5893272d797SAndreas Gohr * @return string 5906de3759aSAndreas Gohr */ 59155b2b31bSAndreas Gohrfunction ml($id = '', $more = '', $direct = true, $sep = '&', $abs = false) { 5926de3759aSAndreas Gohr global $conf; 593b9ee6a44SKlap-in $isexternalimage = media_isexternal($id); 594826d2766SKlap-in if(!$isexternalimage) { 595826d2766SKlap-in $id = cleanID($id); 596826d2766SKlap-in } 597826d2766SKlap-in 5986de3759aSAndreas Gohr if(is_array($more)) { 5990f4e0092SChristopher Smith // add token for resized images 600443e135dSChristopher Smith if(!empty($more['w']) || !empty($more['h']) || $isexternalimage){ 6010f4e0092SChristopher Smith $more['tok'] = media_get_token($id,$more['w'],$more['h']); 6020f4e0092SChristopher Smith } 6038c08db0aSAndreas Gohr // strip defaults for shorter URLs 6048c08db0aSAndreas Gohr if(isset($more['cache']) && $more['cache'] == 'cache') unset($more['cache']); 605443e135dSChristopher Smith if(empty($more['w'])) unset($more['w']); 606443e135dSChristopher Smith if(empty($more['h'])) unset($more['h']); 6078c08db0aSAndreas Gohr if(isset($more['id']) && $direct) unset($more['id']); 60878b874e6Slisps if(isset($more['rev']) && !$more['rev']) unset($more['rev']); 609b174aeaeSchris $more = buildURLparams($more, $sep); 6106de3759aSAndreas Gohr } else { 6115e7db1e2SChristopher Smith $matches = array(); 612cc036f74SKlap-in if (preg_match_all('/\b(w|h)=(\d*)\b/',$more,$matches,PREG_SET_ORDER) || $isexternalimage){ 6135e7db1e2SChristopher Smith $resize = array('w'=>0, 'h'=>0); 6145e7db1e2SChristopher Smith foreach ($matches as $match){ 6155e7db1e2SChristopher Smith $resize[$match[1]] = $match[2]; 6165e7db1e2SChristopher Smith } 617cc036f74SKlap-in $more .= $more === '' ? '' : $sep; 618cc036f74SKlap-in $more .= 'tok='.media_get_token($id,$resize['w'],$resize['h']); 6195e7db1e2SChristopher Smith } 6208c08db0aSAndreas Gohr $more = str_replace('cache=cache', '', $more); //skip default 6218c08db0aSAndreas Gohr $more = str_replace(',,', ',', $more); 622b174aeaeSchris $more = str_replace(',', $sep, $more); 6236de3759aSAndreas Gohr } 6246de3759aSAndreas Gohr 62555b2b31bSAndreas Gohr if($abs) { 62655b2b31bSAndreas Gohr $xlink = DOKU_URL; 62755b2b31bSAndreas Gohr } else { 6286de3759aSAndreas Gohr $xlink = DOKU_BASE; 62955b2b31bSAndreas Gohr } 6306de3759aSAndreas Gohr 6316de3759aSAndreas Gohr // external URLs are always direct without rewriting 632826d2766SKlap-in if($isexternalimage) { 6336de3759aSAndreas Gohr $xlink .= 'lib/exe/fetch.php'; 634cc036f74SKlap-in $xlink .= '?'.$more; 635b174aeaeSchris $xlink .= $sep.'media='.rawurlencode($id); 6366de3759aSAndreas Gohr return $xlink; 6376de3759aSAndreas Gohr } 6386de3759aSAndreas Gohr 6396de3759aSAndreas Gohr $id = idfilter($id); 6406de3759aSAndreas Gohr 6416de3759aSAndreas Gohr // decide on scriptname 6426de3759aSAndreas Gohr if($direct) { 6436de3759aSAndreas Gohr if($conf['userewrite'] == 1) { 6446de3759aSAndreas Gohr $script = '_media'; 6456de3759aSAndreas Gohr } else { 6466de3759aSAndreas Gohr $script = 'lib/exe/fetch.php'; 6476de3759aSAndreas Gohr } 6486de3759aSAndreas Gohr } else { 6496de3759aSAndreas Gohr if($conf['userewrite'] == 1) { 6506de3759aSAndreas Gohr $script = '_detail'; 6516de3759aSAndreas Gohr } else { 6526de3759aSAndreas Gohr $script = 'lib/exe/detail.php'; 6536de3759aSAndreas Gohr } 6546de3759aSAndreas Gohr } 6556de3759aSAndreas Gohr 6566de3759aSAndreas Gohr // build URL based on rewrite mode 6576de3759aSAndreas Gohr if($conf['userewrite']) { 6586de3759aSAndreas Gohr $xlink .= $script.'/'.$id; 6596de3759aSAndreas Gohr if($more) $xlink .= '?'.$more; 6606de3759aSAndreas Gohr } else { 6616de3759aSAndreas Gohr if($more) { 662a99d3236SEsther Brunner $xlink .= $script.'?'.$more; 663b174aeaeSchris $xlink .= $sep.'media='.$id; 6646de3759aSAndreas Gohr } else { 665a99d3236SEsther Brunner $xlink .= $script.'?media='.$id; 6666de3759aSAndreas Gohr } 6676de3759aSAndreas Gohr } 6686de3759aSAndreas Gohr 6696de3759aSAndreas Gohr return $xlink; 6706de3759aSAndreas Gohr} 6716de3759aSAndreas Gohr 6726de3759aSAndreas Gohr/** 67325ca5b17SAndreas Gohr * Returns the URL to the DokuWiki base script 67415fae107Sandi * 67525ca5b17SAndreas Gohr * Consider using wl() instead, unless you absoutely need the doku.php endpoint 67625ca5b17SAndreas Gohr * 67715fae107Sandi * @author Andreas Gohr <andi@splitbrain.org> 678140cfbcdSGerrit Uitslag * 679140cfbcdSGerrit Uitslag * @return string 680f3f0262cSandi */ 68125ca5b17SAndreas Gohrfunction script() { 682ed7b5f09Sandi return DOKU_BASE.DOKU_SCRIPT; 683f3f0262cSandi} 684f3f0262cSandi 685f3f0262cSandi/** 68615fae107Sandi * Spamcheck against wordlist 68715fae107Sandi * 688f3f0262cSandi * Checks the wikitext against a list of blocked expressions 689f3f0262cSandi * returns true if the text contains any bad words 69015fae107Sandi * 691e403cc58SMichael Klier * Triggers COMMON_WORDBLOCK_BLOCKED 692e403cc58SMichael Klier * 693e403cc58SMichael Klier * Action Plugins can use this event to inspect the blocked data 694e403cc58SMichael Klier * and gain information about the user who was blocked. 695e403cc58SMichael Klier * 696e403cc58SMichael Klier * Event data: 697e403cc58SMichael Klier * data['matches'] - array of matches 698e403cc58SMichael Klier * data['userinfo'] - information about the blocked user 699e403cc58SMichael Klier * [ip] - ip address 700e403cc58SMichael Klier * [user] - username (if logged in) 701e403cc58SMichael Klier * [mail] - mail address (if logged in) 702e403cc58SMichael Klier * [name] - real name (if logged in) 703e403cc58SMichael Klier * 70415fae107Sandi * @author Andreas Gohr <andi@splitbrain.org> 7056dffa0e0SAndreas Gohr * @author Michael Klier <chi@chimeric.de> 706140cfbcdSGerrit Uitslag * 7076dffa0e0SAndreas Gohr * @param string $text - optional text to check, if not given the globals are used 7086dffa0e0SAndreas Gohr * @return bool - true if a spam word was found 709f3f0262cSandi */ 7106dffa0e0SAndreas Gohrfunction checkwordblock($text = '') { 711f3f0262cSandi global $TEXT; 7126dffa0e0SAndreas Gohr global $PRE; 7136dffa0e0SAndreas Gohr global $SUF; 714e0086ca2SAndreas Gohr global $SUM; 715f3f0262cSandi global $conf; 716e403cc58SMichael Klier global $INFO; 717585bf44eSChristopher Smith /* @var Input $INPUT */ 718585bf44eSChristopher Smith global $INPUT; 719f3f0262cSandi 720f3f0262cSandi if(!$conf['usewordblock']) return false; 721f3f0262cSandi 722e0086ca2SAndreas Gohr if(!$text) $text = "$PRE $TEXT $SUF $SUM"; 7236dffa0e0SAndreas Gohr 724041d1964SAndreas Gohr // we prepare the text a tiny bit to prevent spammers circumventing URL checks 72564159a61SAndreas Gohr // phpcs:disable Generic.Files.LineLength.TooLong 72664159a61SAndreas Gohr $text = preg_replace( 72764159a61SAndreas Gohr '!(\b)(www\.[\w.:?\-;,]+?\.[\w.:?\-;,]+?[\w/\#~:.?+=&%@\!\-.:?\-;,]+?)([.:?\-;,]*[^\w/\#~:.?+=&%@\!\-.:?\-;,])!i', 72864159a61SAndreas Gohr '\1http://\2 \2\3', 72964159a61SAndreas Gohr $text 73064159a61SAndreas Gohr ); 73164159a61SAndreas Gohr // phpcs:enable 732041d1964SAndreas Gohr 733b9ac8716Schris $wordblocks = getWordblocks(); 7343e2965d7Sandi // how many lines to read at once (to work around some PCRE limits) 7353e2965d7Sandi if(version_compare(phpversion(), '4.3.0', '<')) { 7363e2965d7Sandi // old versions of PCRE define a maximum of parenthesises even if no 7373e2965d7Sandi // backreferences are used - the maximum is 99 7383e2965d7Sandi // this is very bad performancewise and may even be too high still 7393e2965d7Sandi $chunksize = 40; 7403e2965d7Sandi } else { 741a51d08efSAndreas Gohr // read file in chunks of 200 - this should work around the 7423e2965d7Sandi // MAX_PATTERN_SIZE in modern PCRE 743a51d08efSAndreas Gohr $chunksize = 200; 7443e2965d7Sandi } 745b9ac8716Schris while($blocks = array_splice($wordblocks, 0, $chunksize)) { 746f3f0262cSandi $re = array(); 74749eb6e38SAndreas Gohr // build regexp from blocks 748f3f0262cSandi foreach($blocks as $block) { 749f3f0262cSandi $block = preg_replace('/#.*$/', '', $block); 750f3f0262cSandi $block = trim($block); 751f3f0262cSandi if(empty($block)) continue; 752f3f0262cSandi $re[] = $block; 753f3f0262cSandi } 754e403cc58SMichael Klier if(count($re) && preg_match('#('.join('|', $re).')#si', $text, $matches)) { 755e403cc58SMichael Klier // prepare event data 75659bc3b48SGerrit Uitslag $data = array(); 757e403cc58SMichael Klier $data['matches'] = $matches; 758585bf44eSChristopher Smith $data['userinfo']['ip'] = $INPUT->server->str('REMOTE_ADDR'); 759585bf44eSChristopher Smith if($INPUT->server->str('REMOTE_USER')) { 760585bf44eSChristopher Smith $data['userinfo']['user'] = $INPUT->server->str('REMOTE_USER'); 761e403cc58SMichael Klier $data['userinfo']['name'] = $INFO['userinfo']['name']; 762e403cc58SMichael Klier $data['userinfo']['mail'] = $INFO['userinfo']['mail']; 763e403cc58SMichael Klier } 764bad6fc0dSAndreas Gohr $callback = function () { 765bad6fc0dSAndreas Gohr return true; 766bad6fc0dSAndreas Gohr }; 767cbb44eabSAndreas Gohr return Event::createAndTrigger('COMMON_WORDBLOCK_BLOCKED', $data, $callback, true); 768b9ac8716Schris } 769703f6fdeSandi } 770f3f0262cSandi return false; 771f3f0262cSandi} 772f3f0262cSandi 773f3f0262cSandi/** 77415fae107Sandi * Return the IP of the client 77515fae107Sandi * 7766d8affe6SAndreas Gohr * Honours X-Forwarded-For and X-Real-IP Proxy Headers 77715fae107Sandi * 7786d8affe6SAndreas Gohr * It returns a comma separated list of IPs if the above mentioned 7796d8affe6SAndreas Gohr * headers are set. If the single parameter is set, it tries to return 7806d8affe6SAndreas Gohr * a routable public address, prefering the ones suplied in the X 7816d8affe6SAndreas Gohr * headers 7826d8affe6SAndreas Gohr * 78315fae107Sandi * @author Andreas Gohr <andi@splitbrain.org> 784140cfbcdSGerrit Uitslag * 7853272d797SAndreas Gohr * @param boolean $single If set only a single IP is returned 7863272d797SAndreas Gohr * @return string 787f3f0262cSandi */ 7886d8affe6SAndreas Gohrfunction clientIP($single = false) { 789585bf44eSChristopher Smith /* @var Input $INPUT */ 790925105e8SPhy global $INPUT, $conf; 791585bf44eSChristopher Smith 7926d8affe6SAndreas Gohr $ip = array(); 793585bf44eSChristopher Smith $ip[] = $INPUT->server->str('REMOTE_ADDR'); 794585bf44eSChristopher Smith if($INPUT->server->str('HTTP_X_FORWARDED_FOR')) { 795585bf44eSChristopher Smith $ip = array_merge($ip, explode(',', str_replace(' ', '', $INPUT->server->str('HTTP_X_FORWARDED_FOR')))); 796585bf44eSChristopher Smith } 797585bf44eSChristopher Smith if($INPUT->server->str('HTTP_X_REAL_IP')) { 798585bf44eSChristopher Smith $ip = array_merge($ip, explode(',', str_replace(' ', '', $INPUT->server->str('HTTP_X_REAL_IP')))); 799585bf44eSChristopher Smith } 8006d8affe6SAndreas Gohr 801dc14c6d1SGuy Brand // some IPv4/v6 regexps borrowed from Feyd 802dc14c6d1SGuy Brand // see: http://forums.devnetwork.net/viewtopic.php?f=38&t=53479 803dc14c6d1SGuy Brand $dec_octet = '(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]\d|[0-9])'; 804dc14c6d1SGuy Brand $hex_digit = '[A-Fa-f0-9]'; 805dc14c6d1SGuy Brand $h16 = "{$hex_digit}{1,4}"; 806dc14c6d1SGuy Brand $IPv4Address = "$dec_octet\\.$dec_octet\\.$dec_octet\\.$dec_octet"; 807dc14c6d1SGuy Brand $ls32 = "(?:$h16:$h16|$IPv4Address)"; 808dc14c6d1SGuy Brand $IPv6Address = 809dc14c6d1SGuy Brand "(?:(?:{$IPv4Address})|(?:". 810dc14c6d1SGuy Brand "(?:$h16:){6}$ls32". 811dc14c6d1SGuy Brand "|::(?:$h16:){5}$ls32". 812dc14c6d1SGuy Brand "|(?:$h16)?::(?:$h16:){4}$ls32". 813dc14c6d1SGuy Brand "|(?:(?:$h16:){0,1}$h16)?::(?:$h16:){3}$ls32". 814dc14c6d1SGuy Brand "|(?:(?:$h16:){0,2}$h16)?::(?:$h16:){2}$ls32". 815dc14c6d1SGuy Brand "|(?:(?:$h16:){0,3}$h16)?::(?:$h16:){1}$ls32". 816dc14c6d1SGuy Brand "|(?:(?:$h16:){0,4}$h16)?::$ls32". 817dc14c6d1SGuy Brand "|(?:(?:$h16:){0,5}$h16)?::$h16". 818dc14c6d1SGuy Brand "|(?:(?:$h16:){0,6}$h16)?::". 819dc14c6d1SGuy Brand ")(?:\\/(?:12[0-8]|1[0-1][0-9]|[1-9][0-9]|[0-9]))?)"; 820dc14c6d1SGuy Brand 8216d8affe6SAndreas Gohr // remove any non-IP stuff 8226d8affe6SAndreas Gohr $cnt = count($ip); 8234ff28443Schris $match = array(); 8246d8affe6SAndreas Gohr for($i = 0; $i < $cnt; $i++) { 825dc14c6d1SGuy Brand if(preg_match("/^$IPv4Address$/", $ip[$i], $match) || preg_match("/^$IPv6Address$/", $ip[$i], $match)) { 8264ff28443Schris $ip[$i] = $match[0]; 8274ff28443Schris } else { 8284ff28443Schris $ip[$i] = ''; 8294ff28443Schris } 8306d8affe6SAndreas Gohr if(empty($ip[$i])) unset($ip[$i]); 831f3f0262cSandi } 8326d8affe6SAndreas Gohr $ip = array_values(array_unique($ip)); 8336d8affe6SAndreas Gohr if(!$ip[0]) $ip[0] = '0.0.0.0'; // for some strange reason we don't have a IP 8346d8affe6SAndreas Gohr 8356d8affe6SAndreas Gohr if(!$single) return join(',', $ip); 8366d8affe6SAndreas Gohr 837925105e8SPhy // skip trusted local addresses 8386d8affe6SAndreas Gohr foreach($ip as $i) { 839925105e8SPhy if(!empty($conf['trustedproxy']) && preg_match('/'.$conf['trustedproxy'].'/', $i)) { 8406d8affe6SAndreas Gohr continue; 8416d8affe6SAndreas Gohr } else { 8426d8affe6SAndreas Gohr return $i; 8436d8affe6SAndreas Gohr } 8446d8affe6SAndreas Gohr } 845925105e8SPhy 846925105e8SPhy // still here? just use the last address 847925105e8SPhy // this case all ips in the list are trusted 848925105e8SPhy return $ip[count($ip)-1]; 849f3f0262cSandi} 850f3f0262cSandi 851f3f0262cSandi/** 8521c548ebeSAndreas Gohr * Check if the browser is on a mobile device 8531c548ebeSAndreas Gohr * 8541c548ebeSAndreas Gohr * Adapted from the example code at url below 8551c548ebeSAndreas Gohr * 8561c548ebeSAndreas Gohr * @link http://www.brainhandles.com/2007/10/15/detecting-mobile-browsers/#code 857140cfbcdSGerrit Uitslag * 85864159a61SAndreas Gohr * @deprecated 2018-04-27 you probably want media queries instead anyway 859140cfbcdSGerrit Uitslag * @return bool if true, client is mobile browser; otherwise false 8601c548ebeSAndreas Gohr */ 8611c548ebeSAndreas Gohrfunction clientismobile() { 862585bf44eSChristopher Smith /* @var Input $INPUT */ 863585bf44eSChristopher Smith global $INPUT; 8641c548ebeSAndreas Gohr 865585bf44eSChristopher Smith if($INPUT->server->has('HTTP_X_WAP_PROFILE')) return true; 8661c548ebeSAndreas Gohr 867585bf44eSChristopher Smith if(preg_match('/wap\.|\.wap/i', $INPUT->server->str('HTTP_ACCEPT'))) return true; 8681c548ebeSAndreas Gohr 869585bf44eSChristopher Smith if(!$INPUT->server->has('HTTP_USER_AGENT')) return false; 8701c548ebeSAndreas Gohr 87164159a61SAndreas Gohr $uamatches = join( 87264159a61SAndreas Gohr '|', 87364159a61SAndreas Gohr [ 87464159a61SAndreas Gohr 'midp', 'j2me', 'avantg', 'docomo', 'novarra', 'palmos', 'palmsource', '240x320', 'opwv', 87564159a61SAndreas Gohr 'chtml', 'pda', 'windows ce', 'mmp\/', 'blackberry', 'mib\/', 'symbian', 'wireless', 'nokia', 87664159a61SAndreas Gohr 'hand', 'mobi', 'phone', 'cdm', 'up\.b', 'audio', 'SIE\-', 'SEC\-', 'samsung', 'HTC', 'mot\-', 87764159a61SAndreas Gohr 'mitsu', 'sagem', 'sony', 'alcatel', 'lg', 'erics', 'vx', 'NEC', 'philips', 'mmm', 'xx', 87864159a61SAndreas Gohr 'panasonic', 'sharp', 'wap', 'sch', 'rover', 'pocket', 'benq', 'java', 'pt', 'pg', 'vox', 87964159a61SAndreas Gohr 'amoi', 'bird', 'compal', 'kg', 'voda', 'sany', 'kdd', 'dbt', 'sendo', 'sgh', 'gradi', 'jb', 88064159a61SAndreas Gohr '\d\d\di', 'moto' 88164159a61SAndreas Gohr ] 88264159a61SAndreas Gohr ); 8831c548ebeSAndreas Gohr 884585bf44eSChristopher Smith if(preg_match("/$uamatches/i", $INPUT->server->str('HTTP_USER_AGENT'))) return true; 8851c548ebeSAndreas Gohr 8861c548ebeSAndreas Gohr return false; 8871c548ebeSAndreas Gohr} 8881c548ebeSAndreas Gohr 8891c548ebeSAndreas Gohr/** 8906efc45a2SDmitry Katsubo * check if a given link is interwiki link 8916efc45a2SDmitry Katsubo * 8926efc45a2SDmitry Katsubo * @param string $link the link, e.g. "wiki>page" 8936efc45a2SDmitry Katsubo * @return bool 8946efc45a2SDmitry Katsubo */ 8956efc45a2SDmitry Katsubofunction link_isinterwiki($link){ 8966efc45a2SDmitry Katsubo if (preg_match('/^[a-zA-Z0-9\.]+>/u',$link)) return true; 8976efc45a2SDmitry Katsubo return false; 8986efc45a2SDmitry Katsubo} 8996efc45a2SDmitry Katsubo 9006efc45a2SDmitry Katsubo/** 90163211f61SGlen Harris * Convert one or more comma separated IPs to hostnames 90263211f61SGlen Harris * 90322ef1e32SAndreas Gohr * If $conf['dnslookups'] is disabled it simply returns the input string 90422ef1e32SAndreas Gohr * 90563211f61SGlen Harris * @author Glen Harris <astfgl@iamnota.org> 906140cfbcdSGerrit Uitslag * 9073272d797SAndreas Gohr * @param string $ips comma separated list of IP addresses 9083272d797SAndreas Gohr * @return string a comma separated list of hostnames 90963211f61SGlen Harris */ 91063211f61SGlen Harrisfunction gethostsbyaddrs($ips) { 91122ef1e32SAndreas Gohr global $conf; 91222ef1e32SAndreas Gohr if(!$conf['dnslookups']) return $ips; 91322ef1e32SAndreas Gohr 91463211f61SGlen Harris $hosts = array(); 91563211f61SGlen Harris $ips = explode(',', $ips); 916551a720fSMichael Klier 917551a720fSMichael Klier if(is_array($ips)) { 9183886270dSAndreas Gohr foreach($ips as $ip) { 919551a720fSMichael Klier $hosts[] = gethostbyaddr(trim($ip)); 92063211f61SGlen Harris } 921551a720fSMichael Klier return join(',', $hosts); 922551a720fSMichael Klier } else { 923551a720fSMichael Klier return gethostbyaddr(trim($ips)); 924551a720fSMichael Klier } 92563211f61SGlen Harris} 92663211f61SGlen Harris 92763211f61SGlen Harris/** 92815fae107Sandi * Checks if a given page is currently locked. 92915fae107Sandi * 930f3f0262cSandi * removes stale lockfiles 93115fae107Sandi * 93215fae107Sandi * @author Andreas Gohr <andi@splitbrain.org> 933140cfbcdSGerrit Uitslag * 934140cfbcdSGerrit Uitslag * @param string $id page id 935140cfbcdSGerrit Uitslag * @return bool page is locked? 936f3f0262cSandi */ 937f3f0262cSandifunction checklock($id) { 938f3f0262cSandi global $conf; 939585bf44eSChristopher Smith /* @var Input $INPUT */ 940585bf44eSChristopher Smith global $INPUT; 941585bf44eSChristopher Smith 942c9b4bd1eSBen Coburn $lock = wikiLockFN($id); 943f3f0262cSandi 944f3f0262cSandi //no lockfile 94579e79377SAndreas Gohr if(!file_exists($lock)) return false; 946f3f0262cSandi 947f3f0262cSandi //lockfile expired 948f3f0262cSandi if((time() - filemtime($lock)) > $conf['locktime']) { 949d8186216SBen Coburn @unlink($lock); 950f3f0262cSandi return false; 951f3f0262cSandi } 952f3f0262cSandi 953f3f0262cSandi //my own lock 9546d2af55dSChristopher Smith @list($ip, $session) = explode("\n", io_readFile($lock)); 9550712fefaSAndreas Gohr if($ip == $INPUT->server->str('REMOTE_USER') || $ip == clientIP() || (session_id() && $session == session_id())) { 956f3f0262cSandi return false; 957f3f0262cSandi } 958f3f0262cSandi 959f3f0262cSandi return $ip; 960f3f0262cSandi} 961f3f0262cSandi 962f3f0262cSandi/** 96315fae107Sandi * Lock a page for editing 96415fae107Sandi * 96515fae107Sandi * @author Andreas Gohr <andi@splitbrain.org> 966140cfbcdSGerrit Uitslag * 967140cfbcdSGerrit Uitslag * @param string $id page id to lock 968f3f0262cSandi */ 969f3f0262cSandifunction lock($id) { 970544ed901SDaniel Calviño Sánchez global $conf; 971585bf44eSChristopher Smith /* @var Input $INPUT */ 972585bf44eSChristopher Smith global $INPUT; 973544ed901SDaniel Calviño Sánchez 974544ed901SDaniel Calviño Sánchez if($conf['locktime'] == 0) { 975544ed901SDaniel Calviño Sánchez return; 976544ed901SDaniel Calviño Sánchez } 977544ed901SDaniel Calviño Sánchez 978c9b4bd1eSBen Coburn $lock = wikiLockFN($id); 979585bf44eSChristopher Smith if($INPUT->server->str('REMOTE_USER')) { 980585bf44eSChristopher Smith io_saveFile($lock, $INPUT->server->str('REMOTE_USER')); 981f3f0262cSandi } else { 98285fef7e2SAndreas Gohr io_saveFile($lock, clientIP()."\n".session_id()); 983f3f0262cSandi } 984f3f0262cSandi} 985f3f0262cSandi 986f3f0262cSandi/** 98715fae107Sandi * Unlock a page if it was locked by the user 988f3f0262cSandi * 98915fae107Sandi * @author Andreas Gohr <andi@splitbrain.org> 990140cfbcdSGerrit Uitslag * 9913272d797SAndreas Gohr * @param string $id page id to unlock 99215fae107Sandi * @return bool true if a lock was removed 993f3f0262cSandi */ 994f3f0262cSandifunction unlock($id) { 995585bf44eSChristopher Smith /* @var Input $INPUT */ 996585bf44eSChristopher Smith global $INPUT; 997585bf44eSChristopher Smith 998c9b4bd1eSBen Coburn $lock = wikiLockFN($id); 99979e79377SAndreas Gohr if(file_exists($lock)) { 10006d2af55dSChristopher Smith @list($ip, $session) = explode("\n", io_readFile($lock)); 1001585bf44eSChristopher Smith if($ip == $INPUT->server->str('REMOTE_USER') || $ip == clientIP() || $session == session_id()) { 1002f3f0262cSandi @unlink($lock); 1003f3f0262cSandi return true; 1004f3f0262cSandi } 1005f3f0262cSandi } 1006f3f0262cSandi return false; 1007f3f0262cSandi} 1008f3f0262cSandi 1009f3f0262cSandi/** 1010f3f0262cSandi * convert line ending to unix format 1011f3f0262cSandi * 10126db7468bSAndreas Gohr * also makes sure the given text is valid UTF-8 10136db7468bSAndreas Gohr * 101415fae107Sandi * @see formText() for 2crlf conversion 101515fae107Sandi * @author Andreas Gohr <andi@splitbrain.org> 1016140cfbcdSGerrit Uitslag * 1017140cfbcdSGerrit Uitslag * @param string $text 1018140cfbcdSGerrit Uitslag * @return string 1019f3f0262cSandi */ 1020f3f0262cSandifunction cleanText($text) { 1021f3f0262cSandi $text = preg_replace("/(\015\012)|(\015)/", "\012", $text); 10226db7468bSAndreas Gohr 10236db7468bSAndreas Gohr // if the text is not valid UTF-8 we simply assume latin1 10246db7468bSAndreas Gohr // this won't break any worse than it breaks with the wrong encoding 10256db7468bSAndreas Gohr // but might actually fix the problem in many cases 10268cbc5ee8SAndreas Gohr if(!\dokuwiki\Utf8\Clean::isUtf8($text)) $text = utf8_encode($text); 10276db7468bSAndreas Gohr 1028f3f0262cSandi return $text; 1029f3f0262cSandi} 1030f3f0262cSandi 1031f3f0262cSandi/** 1032f3f0262cSandi * Prepares text for print in Webforms by encoding special chars. 1033f3f0262cSandi * It also converts line endings to Windows format which is 1034f3f0262cSandi * pseudo standard for webforms. 1035f3f0262cSandi * 103615fae107Sandi * @see cleanText() for 2unix conversion 103715fae107Sandi * @author Andreas Gohr <andi@splitbrain.org> 1038140cfbcdSGerrit Uitslag * 1039140cfbcdSGerrit Uitslag * @param string $text 1040140cfbcdSGerrit Uitslag * @return string 1041f3f0262cSandi */ 1042f3f0262cSandifunction formText($text) { 10435b7d45a5SAndreas Gohr $text = str_replace("\012", "\015\012", $text); 1044f3f0262cSandi return htmlspecialchars($text); 1045f3f0262cSandi} 1046f3f0262cSandi 1047f3f0262cSandi/** 104815fae107Sandi * Returns the specified local text in raw format 104915fae107Sandi * 105015fae107Sandi * @author Andreas Gohr <andi@splitbrain.org> 1051140cfbcdSGerrit Uitslag * 1052140cfbcdSGerrit Uitslag * @param string $id page id 1053140cfbcdSGerrit Uitslag * @param string $ext extension of file being read, default 'txt' 1054140cfbcdSGerrit Uitslag * @return string 1055f3f0262cSandi */ 10562adaf2b8SAndreas Gohrfunction rawLocale($id, $ext = 'txt') { 10572adaf2b8SAndreas Gohr return io_readFile(localeFN($id, $ext)); 1058f3f0262cSandi} 1059f3f0262cSandi 1060f3f0262cSandi/** 1061f3f0262cSandi * Returns the raw WikiText 106215fae107Sandi * 106315fae107Sandi * @author Andreas Gohr <andi@splitbrain.org> 1064140cfbcdSGerrit Uitslag * 1065140cfbcdSGerrit Uitslag * @param string $id page id 1066e0c26282SGerrit Uitslag * @param string|int $rev timestamp when a revision of wikitext is desired 1067140cfbcdSGerrit Uitslag * @return string 1068f3f0262cSandi */ 1069f3f0262cSandifunction rawWiki($id, $rev = '') { 1070cc7d0c94SBen Coburn return io_readWikiPage(wikiFN($id, $rev), $id, $rev); 1071f3f0262cSandi} 1072f3f0262cSandi 1073f3f0262cSandi/** 10747146cee2SAndreas Gohr * Returns the pagetemplate contents for the ID's namespace 10757146cee2SAndreas Gohr * 10767b84afa2SAndreas Gohr * @triggers COMMON_PAGETPL_LOAD 10777146cee2SAndreas Gohr * @author Andreas Gohr <andi@splitbrain.org> 1078140cfbcdSGerrit Uitslag * 1079140cfbcdSGerrit Uitslag * @param string $id the id of the page to be created 1080140cfbcdSGerrit Uitslag * @return string parsed pagetemplate content 10817146cee2SAndreas Gohr */ 1082fe17917eSAdrian Langfunction pageTemplate($id) { 1083a15ce62dSEsther Brunner global $conf; 1084e29549feSAndreas Gohr 1085fe17917eSAdrian Lang if(is_array($id)) $id = $id[0]; 1086e29549feSAndreas Gohr 10877b84afa2SAndreas Gohr // prepare initial event data 10887b84afa2SAndreas Gohr $data = array( 10897b84afa2SAndreas Gohr 'id' => $id, // the id of the page to be created 10907b84afa2SAndreas Gohr 'tpl' => '', // the text used as template 10917b84afa2SAndreas Gohr 'tplfile' => '', // the file above text was/should be loaded from 10927b84afa2SAndreas Gohr 'doreplace' => true // should wildcard replacements be done on the text? 10937b84afa2SAndreas Gohr ); 10947b84afa2SAndreas Gohr 1095e1d9dcc8SAndreas Gohr $evt = new Event('COMMON_PAGETPL_LOAD', $data); 10967b84afa2SAndreas Gohr if($evt->advise_before(true)) { 10977b84afa2SAndreas Gohr // the before event might have loaded the content already 10987b84afa2SAndreas Gohr if(empty($data['tpl'])) { 10997b84afa2SAndreas Gohr // if the before event did not set a template file, try to find one 11007b84afa2SAndreas Gohr if(empty($data['tplfile'])) { 1101fe17917eSAdrian Lang $path = dirname(wikiFN($id)); 110279e79377SAndreas Gohr if(file_exists($path.'/_template.txt')) { 11037b84afa2SAndreas Gohr $data['tplfile'] = $path.'/_template.txt'; 1104e29549feSAndreas Gohr } else { 1105e29549feSAndreas Gohr // search upper namespaces for templates 1106e29549feSAndreas Gohr $len = strlen(rtrim($conf['datadir'], '/')); 1107e29549feSAndreas Gohr while(strlen($path) >= $len) { 110879e79377SAndreas Gohr if(file_exists($path.'/__template.txt')) { 11097b84afa2SAndreas Gohr $data['tplfile'] = $path.'/__template.txt'; 1110e29549feSAndreas Gohr break; 1111e29549feSAndreas Gohr } 1112e29549feSAndreas Gohr $path = substr($path, 0, strrpos($path, '/')); 1113e29549feSAndreas Gohr } 1114e29549feSAndreas Gohr } 11157b84afa2SAndreas Gohr } 11167b84afa2SAndreas Gohr // load the content 11173d7ac595SMichael Hamann $data['tpl'] = io_readFile($data['tplfile']); 11187b84afa2SAndreas Gohr } 1119a1bbd05bSMichael Hamann if($data['doreplace']) parsePageTemplate($data); 11207b84afa2SAndreas Gohr } 11217b84afa2SAndreas Gohr $evt->advise_after(); 11227b84afa2SAndreas Gohr unset($evt); 11237b84afa2SAndreas Gohr 1124fe17917eSAdrian Lang return $data['tpl']; 11252b1223ecSAdrian Lang} 11262b1223ecSAdrian Lang 11272b1223ecSAdrian Lang/** 11282b1223ecSAdrian Lang * Performs common page template replacements 11297b84afa2SAndreas Gohr * This works on data from COMMON_PAGETPL_LOAD 11302b1223ecSAdrian Lang * 11312b1223ecSAdrian Lang * @author Andreas Gohr <andi@splitbrain.org> 1132140cfbcdSGerrit Uitslag * 1133140cfbcdSGerrit Uitslag * @param array $data array with event data 1134140cfbcdSGerrit Uitslag * @return string 11352b1223ecSAdrian Lang */ 1136d535a2e9Sstretchyboyfunction parsePageTemplate(&$data) { 11373272d797SAndreas Gohr /** 11383272d797SAndreas Gohr * @var string $id the id of the page to be created 11393272d797SAndreas Gohr * @var string $tpl the text used as template 11403272d797SAndreas Gohr * @var string $tplfile the file above text was/should be loaded from 11413272d797SAndreas Gohr * @var bool $doreplace should wildcard replacements be done on the text? 11423272d797SAndreas Gohr */ 1143fe17917eSAdrian Lang extract($data); 1144fe17917eSAdrian Lang 1145b856f7dfSAdrian Lang global $USERINFO; 1146bce53b1fSAdrian Lang global $conf; 1147585bf44eSChristopher Smith /* @var Input $INPUT */ 1148585bf44eSChristopher Smith global $INPUT; 1149e29549feSAndreas Gohr 1150e29549feSAndreas Gohr // replace placeholders 115126ece5a7SAndreas Gohr $file = noNS($id); 115237c1acbdSAdrian Lang $page = strtr($file, $conf['sepchar'], ' '); 115326ece5a7SAndreas Gohr 11543272d797SAndreas Gohr $tpl = str_replace( 11553272d797SAndreas Gohr array( 115626ece5a7SAndreas Gohr '@ID@', 115726ece5a7SAndreas Gohr '@NS@', 11588a7bcf66SShota Miyazaki '@CURNS@', 1159a3db0ab0SSimon Lees '@!CURNS@', 1160a3db0ab0SSimon Lees '@!!CURNS@', 1161a3db0ab0SSimon Lees '@!CURNS!@', 116226ece5a7SAndreas Gohr '@FILE@', 116326ece5a7SAndreas Gohr '@!FILE@', 116426ece5a7SAndreas Gohr '@!FILE!@', 116526ece5a7SAndreas Gohr '@PAGE@', 116626ece5a7SAndreas Gohr '@!PAGE@', 116726ece5a7SAndreas Gohr '@!!PAGE@', 116826ece5a7SAndreas Gohr '@!PAGE!@', 116926ece5a7SAndreas Gohr '@USER@', 117026ece5a7SAndreas Gohr '@NAME@', 117126ece5a7SAndreas Gohr '@MAIL@', 117226ece5a7SAndreas Gohr '@DATE@', 117326ece5a7SAndreas Gohr ), 117426ece5a7SAndreas Gohr array( 117526ece5a7SAndreas Gohr $id, 117626ece5a7SAndreas Gohr getNS($id), 11778a7bcf66SShota Miyazaki curNS($id), 1178c1ec88ceSAndreas Gohr \dokuwiki\Utf8\PhpString::ucfirst(curNS($id)), 1179c1ec88ceSAndreas Gohr \dokuwiki\Utf8\PhpString::ucwords(curNS($id)), 1180c1ec88ceSAndreas Gohr \dokuwiki\Utf8\PhpString::strtoupper(curNS($id)), 118126ece5a7SAndreas Gohr $file, 11828cbc5ee8SAndreas Gohr \dokuwiki\Utf8\PhpString::ucfirst($file), 11838cbc5ee8SAndreas Gohr \dokuwiki\Utf8\PhpString::strtoupper($file), 118426ece5a7SAndreas Gohr $page, 11858cbc5ee8SAndreas Gohr \dokuwiki\Utf8\PhpString::ucfirst($page), 11868cbc5ee8SAndreas Gohr \dokuwiki\Utf8\PhpString::ucwords($page), 11878cbc5ee8SAndreas Gohr \dokuwiki\Utf8\PhpString::strtoupper($page), 1188585bf44eSChristopher Smith $INPUT->server->str('REMOTE_USER'), 11893e9ae63dSPhy $USERINFO ? $USERINFO['name'] : '', 11903e9ae63dSPhy $USERINFO ? $USERINFO['mail'] : '', 119126ece5a7SAndreas Gohr $conf['dformat'], 11923272d797SAndreas Gohr ), $tpl 11933272d797SAndreas Gohr ); 119426ece5a7SAndreas Gohr 11957d644fc8SAndreas Gohr // we need the callback to work around strftime's char limit 1196bad6fc0dSAndreas Gohr $tpl = preg_replace_callback( 1197bad6fc0dSAndreas Gohr '/%./', 1198bad6fc0dSAndreas Gohr function ($m) { 1199bad6fc0dSAndreas Gohr return strftime($m[0]); 1200bad6fc0dSAndreas Gohr }, 1201bad6fc0dSAndreas Gohr $tpl 1202bad6fc0dSAndreas Gohr ); 1203d535a2e9Sstretchyboy $data['tpl'] = $tpl; 1204a15ce62dSEsther Brunner return $tpl; 12057146cee2SAndreas Gohr} 12067146cee2SAndreas Gohr 12077146cee2SAndreas Gohr/** 120815fae107Sandi * Returns the raw Wiki Text in three slices. 120915fae107Sandi * 121015fae107Sandi * The range parameter needs to have the form "from-to" 121115cfe303Sandi * and gives the range of the section in bytes - no 121215cfe303Sandi * UTF-8 awareness is needed. 1213f3f0262cSandi * The returned order is prefix, section and suffix. 121415fae107Sandi * 121515fae107Sandi * @author Andreas Gohr <andi@splitbrain.org> 1216140cfbcdSGerrit Uitslag * 1217140cfbcdSGerrit Uitslag * @param string $range in form "from-to" 1218140cfbcdSGerrit Uitslag * @param string $id page id 1219140cfbcdSGerrit Uitslag * @param string $rev optional, the revision timestamp 122042ea7f44SGerrit Uitslag * @return string[] with three slices 1221f3f0262cSandi */ 1222f3f0262cSandifunction rawWikiSlices($range, $id, $rev = '') { 1223cc7d0c94SBen Coburn $text = io_readWikiPage(wikiFN($id, $rev), $id, $rev); 1224f3f0262cSandi 122580fcb268SAdrian Lang // Parse range 122680fcb268SAdrian Lang list($from, $to) = explode('-', $range, 2); 122780fcb268SAdrian Lang // Make range zero-based, use defaults if marker is missing 122880fcb268SAdrian Lang $from = !$from ? 0 : ($from - 1); 122980fcb268SAdrian Lang $to = !$to ? strlen($text) : ($to - 1); 123080fcb268SAdrian Lang 123159bc3b48SGerrit Uitslag $slices = array(); 123280fcb268SAdrian Lang $slices[0] = substr($text, 0, $from); 123380fcb268SAdrian Lang $slices[1] = substr($text, $from, $to - $from); 123415cfe303Sandi $slices[2] = substr($text, $to); 1235f3f0262cSandi return $slices; 1236f3f0262cSandi} 1237f3f0262cSandi 1238f3f0262cSandi/** 123915fae107Sandi * Joins wiki text slices 124015fae107Sandi * 124180fcb268SAdrian Lang * function to join the text slices. 1242f3f0262cSandi * When the pretty parameter is set to true it adds additional empty 1243f3f0262cSandi * lines between sections if needed (used on saving). 124415fae107Sandi * 124515fae107Sandi * @author Andreas Gohr <andi@splitbrain.org> 1246140cfbcdSGerrit Uitslag * 1247140cfbcdSGerrit Uitslag * @param string $pre prefix 1248140cfbcdSGerrit Uitslag * @param string $text text in the middle 1249140cfbcdSGerrit Uitslag * @param string $suf suffix 1250140cfbcdSGerrit Uitslag * @param bool $pretty add additional empty lines between sections 1251140cfbcdSGerrit Uitslag * @return string 1252f3f0262cSandi */ 1253f3f0262cSandifunction con($pre, $text, $suf, $pretty = false) { 1254f3f0262cSandi if($pretty) { 125580fcb268SAdrian Lang if($pre !== '' && substr($pre, -1) !== "\n" && 12563272d797SAndreas Gohr substr($text, 0, 1) !== "\n" 12573272d797SAndreas Gohr ) { 125880fcb268SAdrian Lang $pre .= "\n"; 125980fcb268SAdrian Lang } 126080fcb268SAdrian Lang if($suf !== '' && substr($text, -1) !== "\n" && 12613272d797SAndreas Gohr substr($suf, 0, 1) !== "\n" 12623272d797SAndreas Gohr ) { 126380fcb268SAdrian Lang $text .= "\n"; 126480fcb268SAdrian Lang } 1265f3f0262cSandi } 1266f3f0262cSandi 1267f3f0262cSandi return $pre.$text.$suf; 1268f3f0262cSandi} 1269f3f0262cSandi 1270f3f0262cSandi/** 1271b24d9195SAndreas Gohr * Checks if the current page version is newer than the last entry in the page's 1272b24d9195SAndreas Gohr * changelog. If so, we assume it has been an external edit and we create an 1273b24d9195SAndreas Gohr * attic copy and add a proper changelog line. 1274b24d9195SAndreas Gohr * 1275b24d9195SAndreas Gohr * This check is only executed when the page is about to be saved again from the 1276b24d9195SAndreas Gohr * wiki, triggered in @see saveWikiText() 1277b24d9195SAndreas Gohr * 1278b24d9195SAndreas Gohr * @param string $id the page ID 1279b24d9195SAndreas Gohr */ 1280b24d9195SAndreas Gohrfunction detectExternalEdit($id) { 1281b24d9195SAndreas Gohr global $lang; 1282b24d9195SAndreas Gohr 12838c7319beSGerrit Uitslag $fileLastMod = wikiFN($id); 12848c7319beSGerrit Uitslag $lastMod = @filemtime($fileLastMod); // from page 1285b24d9195SAndreas Gohr $pagelog = new PageChangeLog($id, 1024); 12868c7319beSGerrit Uitslag $lastRev = $pagelog->getRevisions(-1, 1); // from changelog 12878c7319beSGerrit Uitslag $lastRev = (int) (empty($lastRev) ? 0 : $lastRev[0]); 1288b24d9195SAndreas Gohr 12898c7319beSGerrit Uitslag if(!file_exists(wikiFN($id, $lastMod)) && file_exists($fileLastMod) && $lastMod >= $lastRev) { 1290b24d9195SAndreas Gohr // add old revision to the attic if missing 1291b24d9195SAndreas Gohr saveOldRevision($id); 1292b24d9195SAndreas Gohr // add a changelog entry if this edit came from outside dokuwiki 12938c7319beSGerrit Uitslag if($lastMod > $lastRev) { 12948c7319beSGerrit Uitslag $fileLastRev = wikiFN($id, $lastRev); 12958c7319beSGerrit Uitslag $revinfo = $pagelog->getRevisionInfo($lastRev); 12963c48b1d0SGerrit Uitslag if(empty($lastRev) || !file_exists($fileLastRev) || $revinfo['type'] == DOKU_CHANGE_TYPE_DELETE) { 12974b5aebc1SGerrit Uitslag $filesize_old = 0; 12984b5aebc1SGerrit Uitslag } else { 12998c7319beSGerrit Uitslag $filesize_old = io_getSizeFile($fileLastRev); 13004b5aebc1SGerrit Uitslag } 13018c7319beSGerrit Uitslag $filesize_new = filesize($fileLastMod); 13022966355bSGerrit Uitslag $sizechange = $filesize_new - $filesize_old; 13032966355bSGerrit Uitslag 130464159a61SAndreas Gohr addLogEntry( 130564159a61SAndreas Gohr $lastMod, 130664159a61SAndreas Gohr $id, 130764159a61SAndreas Gohr DOKU_CHANGE_TYPE_EDIT, 130864159a61SAndreas Gohr $lang['external_edit'], 130964159a61SAndreas Gohr '', 131064159a61SAndreas Gohr array('ExternalEdit' => true), 131164159a61SAndreas Gohr $sizechange 131264159a61SAndreas Gohr ); 1313b24d9195SAndreas Gohr // remove soon to be stale instructions 13140db5771eSMichael Große $cache = new CacheInstructions($id, $fileLastMod); 1315b24d9195SAndreas Gohr $cache->removeCache(); 1316b24d9195SAndreas Gohr } 1317b24d9195SAndreas Gohr } 1318b24d9195SAndreas Gohr} 1319b24d9195SAndreas Gohr 1320b24d9195SAndreas Gohr/** 1321a701424fSBen Coburn * Saves a wikitext by calling io_writeWikiPage. 1322a701424fSBen Coburn * Also directs changelog and attic updates. 132315fae107Sandi * 132415fae107Sandi * @author Andreas Gohr <andi@splitbrain.org> 132571726d78SBen Coburn * @author Ben Coburn <btcoburn@silicodon.net> 1326140cfbcdSGerrit Uitslag * 1327140cfbcdSGerrit Uitslag * @param string $id page id 1328140cfbcdSGerrit Uitslag * @param string $text wikitext being saved 1329140cfbcdSGerrit Uitslag * @param string $summary summary of text update 1330140cfbcdSGerrit Uitslag * @param bool $minor mark this saved version as minor update 1331f3f0262cSandi */ 1332b6912aeaSAndreas Gohrfunction saveWikiText($id, $text, $summary, $minor = false) { 1333a701424fSBen Coburn /* Note to developers: 1334a701424fSBen Coburn This code is subtle and delicate. Test the behavior of 1335a701424fSBen Coburn the attic and changelog with dokuwiki and external edits 1336a701424fSBen Coburn after any changes. External edits change the wiki page 1337a701424fSBen Coburn directly without using php or dokuwiki. 1338a701424fSBen Coburn */ 1339f3f0262cSandi global $conf; 1340f3f0262cSandi global $lang; 134171726d78SBen Coburn global $REV; 1342585bf44eSChristopher Smith /* @var Input $INPUT */ 1343585bf44eSChristopher Smith global $INPUT; 1344585bf44eSChristopher Smith 1345b24d9195SAndreas Gohr // prepare data for event 1346b24d9195SAndreas Gohr $svdta = array(); 1347b24d9195SAndreas Gohr $svdta['id'] = $id; 1348b24d9195SAndreas Gohr $svdta['file'] = wikiFN($id); 1349b24d9195SAndreas Gohr $svdta['revertFrom'] = $REV; 1350b24d9195SAndreas Gohr $svdta['oldRevision'] = @filemtime($svdta['file']); 1351b24d9195SAndreas Gohr $svdta['newRevision'] = 0; 1352b24d9195SAndreas Gohr $svdta['newContent'] = $text; 1353b24d9195SAndreas Gohr $svdta['oldContent'] = rawWiki($id); 1354b24d9195SAndreas Gohr $svdta['summary'] = $summary; 1355b24d9195SAndreas Gohr $svdta['contentChanged'] = ($svdta['newContent'] != $svdta['oldContent']); 1356b24d9195SAndreas Gohr $svdta['changeInfo'] = ''; 1357b24d9195SAndreas Gohr $svdta['changeType'] = DOKU_CHANGE_TYPE_EDIT; 13582966355bSGerrit Uitslag $svdta['sizechange'] = null; 1359b24d9195SAndreas Gohr 1360b24d9195SAndreas Gohr // select changelog line type 1361b24d9195SAndreas Gohr if($REV) { 1362b24d9195SAndreas Gohr $svdta['changeType'] = DOKU_CHANGE_TYPE_REVERT; 1363b24d9195SAndreas Gohr $svdta['changeInfo'] = $REV; 1364b24d9195SAndreas Gohr } else if(!file_exists($svdta['file'])) { 1365b24d9195SAndreas Gohr $svdta['changeType'] = DOKU_CHANGE_TYPE_CREATE; 1366b24d9195SAndreas Gohr } else if(trim($text) == '') { 1367b24d9195SAndreas Gohr // empty or whitespace only content deletes 1368b24d9195SAndreas Gohr $svdta['changeType'] = DOKU_CHANGE_TYPE_DELETE; 1369b24d9195SAndreas Gohr // autoset summary on deletion 1370655ddc1dSGerrit Uitslag if(blank($svdta['summary'])) { 1371655ddc1dSGerrit Uitslag $svdta['summary'] = $lang['deleted']; 1372655ddc1dSGerrit Uitslag } 1373b24d9195SAndreas Gohr } else if($minor && $conf['useacl'] && $INPUT->server->str('REMOTE_USER')) { 1374b24d9195SAndreas Gohr //minor edits only for logged in users 1375b24d9195SAndreas Gohr $svdta['changeType'] = DOKU_CHANGE_TYPE_MINOR_EDIT; 1376f3f0262cSandi } 1377f3f0262cSandi 1378e1d9dcc8SAndreas Gohr $event = new Event('COMMON_WIKIPAGE_SAVE', $svdta); 1379b24d9195SAndreas Gohr if(!$event->advise_before()) return; 1380f3f0262cSandi 1381b24d9195SAndreas Gohr // if the content has not been changed, no save happens (plugins may override this) 1382b24d9195SAndreas Gohr if(!$svdta['contentChanged']) return; 1383b24d9195SAndreas Gohr 1384b24d9195SAndreas Gohr detectExternalEdit($id); 1385f3f0262cSandi 13864b5aebc1SGerrit Uitslag if( 13874b5aebc1SGerrit Uitslag $svdta['changeType'] == DOKU_CHANGE_TYPE_CREATE || 13884b5aebc1SGerrit Uitslag ($svdta['changeType'] == DOKU_CHANGE_TYPE_REVERT && !file_exists($svdta['file'])) 13894b5aebc1SGerrit Uitslag ) { 1390ac3ed4afSGerrit Uitslag $filesize_old = 0; 1391ac3ed4afSGerrit Uitslag } else { 13922966355bSGerrit Uitslag $filesize_old = filesize($svdta['file']); 1393ac3ed4afSGerrit Uitslag } 1394b24d9195SAndreas Gohr if($svdta['changeType'] == DOKU_CHANGE_TYPE_DELETE) { 139530725328SGabriel Birke // Send "update" event with empty data, so plugins can react to page deletion 1396b24d9195SAndreas Gohr $data = array(array($svdta['file'], '', false), getNS($id), noNS($id), false); 1397cbb44eabSAndreas Gohr Event::createAndTrigger('IO_WIKIPAGE_WRITE', $data); 1398e45b34cdSBen Coburn // pre-save deleted revision 1399b24d9195SAndreas Gohr @touch($svdta['file']); 140046844156SBen Coburn clearstatcache(); 14012d69eb44SMichael Hamann $svdta['newRevision'] = saveOldRevision($id); 1402e1f3d9e1SEsther Brunner // remove empty file 1403b24d9195SAndreas Gohr @unlink($svdta['file']); 1404ac3ed4afSGerrit Uitslag $filesize_new = 0; 140564159a61SAndreas Gohr // don't remove old meta info as it should be saved, plugins can use 140664159a61SAndreas Gohr // IO_WIKIPAGE_WRITE for removing their metadata... 1407c5f92742SMichael Hamann // purge non-persistant meta data 14083d1f9ec3SMichael Klier p_purge_metadata($id); 140953d6ccfeSandi // remove empty namespaces 1410cc7d0c94SBen Coburn io_sweepNS($id, 'datadir'); 1411cc7d0c94SBen Coburn io_sweepNS($id, 'mediadir'); 1412f3f0262cSandi } else { 1413cc7d0c94SBen Coburn // save file (namespace dir is created in io_writeWikiPage) 141433d979e7SMichael Große io_writeWikiPage($svdta['file'], $svdta['newContent'], $id); 141546844156SBen Coburn // pre-save the revision, to keep the attic in sync 1416b24d9195SAndreas Gohr $svdta['newRevision'] = saveOldRevision($id); 14172966355bSGerrit Uitslag $filesize_new = filesize($svdta['file']); 1418f3f0262cSandi } 14192966355bSGerrit Uitslag $svdta['sizechange'] = $filesize_new - $filesize_old; 1420f3f0262cSandi 1421b24d9195SAndreas Gohr $event->advise_after(); 142271726d78SBen Coburn 142364159a61SAndreas Gohr addLogEntry( 142464159a61SAndreas Gohr $svdta['newRevision'], 142564159a61SAndreas Gohr $svdta['id'], 142664159a61SAndreas Gohr $svdta['changeType'], 142764159a61SAndreas Gohr $svdta['summary'], 142864159a61SAndreas Gohr $svdta['changeInfo'], 142964159a61SAndreas Gohr null, 143064159a61SAndreas Gohr $svdta['sizechange'] 143164159a61SAndreas Gohr ); 1432ac3ed4afSGerrit Uitslag 143326a0801fSAndreas Gohr // send notify mails 143483734cddSPhy notify($svdta['id'], 'admin', $svdta['oldRevision'], $svdta['summary'], $minor, $svdta['newRevision']); 143583734cddSPhy notify($svdta['id'], 'subscribers', $svdta['oldRevision'], $svdta['summary'], $minor, $svdta['newRevision']); 1436f3f0262cSandi 1437ce6b63d9Schris // update the purgefile (timestamp of the last time anything within the wiki was changed) 143898407a7aSandi io_saveFile($conf['cachedir'].'/purgefile', time()); 14392eccbdaaSGina Haeussge 14402eccbdaaSGina Haeussge // if useheading is enabled, purge the cache of all linking pages 1441fe9ec250SChris Smith if(useHeading('content')) { 144207ff0babSMichael Hamann $pages = ft_backlinks($id, true); 14432eccbdaaSGina Haeussge foreach($pages as $page) { 14440db5771eSMichael Große $cache = new CacheRenderer($page, wikiFN($page), 'xhtml'); 14452eccbdaaSGina Haeussge $cache->removeCache(); 14462eccbdaaSGina Haeussge } 14472eccbdaaSGina Haeussge } 1448f3f0262cSandi} 1449f3f0262cSandi 1450f3f0262cSandi/** 1451f3f0262cSandi * moves the current version to the attic and returns its 1452f3f0262cSandi * revision date 145315fae107Sandi * 145415fae107Sandi * @author Andreas Gohr <andi@splitbrain.org> 1455140cfbcdSGerrit Uitslag * 1456140cfbcdSGerrit Uitslag * @param string $id page id 1457140cfbcdSGerrit Uitslag * @return int|string revision timestamp 1458f3f0262cSandi */ 1459f3f0262cSandifunction saveOldRevision($id) { 1460f3f0262cSandi $oldf = wikiFN($id); 146179e79377SAndreas Gohr if(!file_exists($oldf)) return ''; 1462f3f0262cSandi $date = filemtime($oldf); 1463f3f0262cSandi $newf = wikiFN($id, $date); 1464cc7d0c94SBen Coburn io_writeWikiPage($newf, rawWiki($id), $id, $date); 1465f3f0262cSandi return $date; 1466f3f0262cSandi} 1467f3f0262cSandi 1468f3f0262cSandi/** 1469fde10de4SAdrian Lang * Sends a notify mail on page change or registration 147026a0801fSAndreas Gohr * 147126a0801fSAndreas Gohr * @param string $id The changed page 1472fde10de4SAdrian Lang * @param string $who Who to notify (admin|subscribers|register) 14733272d797SAndreas Gohr * @param int|string $rev Old page revision 147426a0801fSAndreas Gohr * @param string $summary What changed 147590033e9dSAndreas Gohr * @param boolean $minor Is this a minor edit? 147642ea7f44SGerrit Uitslag * @param string[] $replace Additional string substitutions, @KEY@ to be replaced by value 147783734cddSPhy * @param int|string $current_rev New page revision 14783272d797SAndreas Gohr * @return bool 1479140cfbcdSGerrit Uitslag * 148015fae107Sandi * @author Andreas Gohr <andi@splitbrain.org> 1481f3f0262cSandi */ 148283734cddSPhyfunction notify($id, $who, $rev = '', $summary = '', $minor = false, $replace = array(), $current_rev = false) { 1483f3f0262cSandi global $conf; 1484585bf44eSChristopher Smith /* @var Input $INPUT */ 1485585bf44eSChristopher Smith global $INPUT; 1486b158d625SSteven Danz 14876df843eeSAndreas Gohr // decide if there is something to do, eg. whom to mail 148826a0801fSAndreas Gohr if($who == 'admin') { 14893272d797SAndreas Gohr if(empty($conf['notify'])) return false; //notify enabled? 14902ed38036SAndreas Gohr $tpl = 'mailtext'; 149126a0801fSAndreas Gohr $to = $conf['notify']; 149226a0801fSAndreas Gohr } elseif($who == 'subscribers') { 149384c1127cSAndreas Gohr if(!actionOK('subscribe')) return false; //subscribers enabled? 1494585bf44eSChristopher Smith if($conf['useacl'] && $INPUT->server->str('REMOTE_USER') && $minor) return false; //skip minors 14950bb37868SGerrit Uitslag $data = array('id' => $id, 'addresslist' => '', 'self' => false, 'replacements' => $replace); 1496cbb44eabSAndreas Gohr Event::createAndTrigger( 14973272d797SAndreas Gohr 'COMMON_NOTIFY_ADDRESSLIST', $data, 1498*c8cc4053SAndreas Gohr array(new SubscriberManager(), 'notifyAddresses') 14993272d797SAndreas Gohr ); 15002ed38036SAndreas Gohr $to = $data['addresslist']; 15012ed38036SAndreas Gohr if(empty($to)) return false; 15022ed38036SAndreas Gohr $tpl = 'subscr_single'; 150326a0801fSAndreas Gohr } else { 15043272d797SAndreas Gohr return false; //just to be safe 150526a0801fSAndreas Gohr } 150626a0801fSAndreas Gohr 15076df843eeSAndreas Gohr // prepare content 1508704a815fSMichael Große $subscription = new PageSubscriptionSender(); 150983734cddSPhy return $subscription->sendPageDiff($to, $tpl, $id, $rev, $summary, $current_rev); 1510f3f0262cSandi} 15112ed38036SAndreas Gohr 151215fae107Sandi/** 151371f7bde7SAndreas Gohr * extracts the query from a search engine referrer 151415fae107Sandi * 151515fae107Sandi * @author Andreas Gohr <andi@splitbrain.org> 151671f7bde7SAndreas Gohr * @author Todd Augsburger <todd@rollerorgans.com> 1517140cfbcdSGerrit Uitslag * 1518140cfbcdSGerrit Uitslag * @return array|string 1519f3f0262cSandi */ 1520f3f0262cSandifunction getGoogleQuery() { 1521585bf44eSChristopher Smith /* @var Input $INPUT */ 1522585bf44eSChristopher Smith global $INPUT; 1523585bf44eSChristopher Smith 1524585bf44eSChristopher Smith if(!$INPUT->server->has('HTTP_REFERER')) { 1525c66972f2SAdrian Lang return ''; 1526c66972f2SAdrian Lang } 1527585bf44eSChristopher Smith $url = parse_url($INPUT->server->str('HTTP_REFERER')); 1528f3f0262cSandi 1529079b3ac1SAndreas Gohr // only handle common SEs 1530079b3ac1SAndreas Gohr if(!preg_match('/(google|bing|yahoo|ask|duckduckgo|babylon|aol|yandex)/',$url['host'])) return ''; 1531e4d8a516SKazutaka Miyasaka 1532079b3ac1SAndreas Gohr $query = array(); 1533f3f0262cSandi parse_str($url['query'], $query); 1534e4d8a516SKazutaka Miyasaka 1535c66972f2SAdrian Lang $q = ''; 1536079b3ac1SAndreas Gohr if(isset($query['q'])){ 1537079b3ac1SAndreas Gohr $q = $query['q']; 1538079b3ac1SAndreas Gohr }elseif(isset($query['p'])){ 1539079b3ac1SAndreas Gohr $q = $query['p']; 1540079b3ac1SAndreas Gohr }elseif(isset($query['query'])){ 1541079b3ac1SAndreas Gohr $q = $query['query']; 1542079b3ac1SAndreas Gohr } 1543079b3ac1SAndreas Gohr $q = trim($q); 1544f3f0262cSandi 1545079b3ac1SAndreas Gohr if(!$q) return ''; 1546c7dc833bSPhy // ignore if query includes a full URL 1547c7dc833bSPhy if(strpos($q, '//') !== false) return ''; 15486531ab03SAndreas Gohr $q = preg_split('/[\s\'"\\\\`()\]\[?:!\.{};,#+*<>\\/]+/', $q, -1, PREG_SPLIT_NO_EMPTY); 1549f93b3b50SAndreas Gohr return $q; 1550f3f0262cSandi} 1551f3f0262cSandi 1552f3f0262cSandi/** 1553f3f0262cSandi * Return the human readable size of a file 1554f3f0262cSandi * 1555f3f0262cSandi * @param int $size A file size 1556f3f0262cSandi * @param int $dec A number of decimal places 155774160ca1SGerrit Uitslag * @return string human readable size 1558140cfbcdSGerrit Uitslag * 1559f3f0262cSandi * @author Martin Benjamin <b.martin@cybernet.ch> 1560f3f0262cSandi * @author Aidan Lister <aidan@php.net> 1561f3f0262cSandi * @version 1.0.0 1562f3f0262cSandi */ 1563f31d5b73Sandifunction filesize_h($size, $dec = 1) { 1564f3f0262cSandi $sizes = array('B', 'KB', 'MB', 'GB'); 1565f3f0262cSandi $count = count($sizes); 1566f3f0262cSandi $i = 0; 1567f3f0262cSandi 1568f3f0262cSandi while($size >= 1024 && ($i < $count - 1)) { 1569f3f0262cSandi $size /= 1024; 1570f3f0262cSandi $i++; 1571f3f0262cSandi } 1572f3f0262cSandi 1573ef08383eSAndreas Gohr return round($size, $dec)."\xC2\xA0".$sizes[$i]; //non-breaking space 1574f3f0262cSandi} 1575f3f0262cSandi 157615fae107Sandi/** 1577c57e365eSAndreas Gohr * Return the given timestamp as human readable, fuzzy age 1578c57e365eSAndreas Gohr * 1579c57e365eSAndreas Gohr * @author Andreas Gohr <gohr@cosmocode.de> 1580140cfbcdSGerrit Uitslag * 1581140cfbcdSGerrit Uitslag * @param int $dt timestamp 1582140cfbcdSGerrit Uitslag * @return string 1583c57e365eSAndreas Gohr */ 1584c57e365eSAndreas Gohrfunction datetime_h($dt) { 1585c57e365eSAndreas Gohr global $lang; 1586c57e365eSAndreas Gohr 1587c57e365eSAndreas Gohr $ago = time() - $dt; 1588c57e365eSAndreas Gohr if($ago > 24 * 60 * 60 * 30 * 12 * 2) { 1589c57e365eSAndreas Gohr return sprintf($lang['years'], round($ago / (24 * 60 * 60 * 30 * 12))); 1590c57e365eSAndreas Gohr } 1591c57e365eSAndreas Gohr if($ago > 24 * 60 * 60 * 30 * 2) { 1592c57e365eSAndreas Gohr return sprintf($lang['months'], round($ago / (24 * 60 * 60 * 30))); 1593c57e365eSAndreas Gohr } 1594c57e365eSAndreas Gohr if($ago > 24 * 60 * 60 * 7 * 2) { 1595c57e365eSAndreas Gohr return sprintf($lang['weeks'], round($ago / (24 * 60 * 60 * 7))); 1596c57e365eSAndreas Gohr } 1597c57e365eSAndreas Gohr if($ago > 24 * 60 * 60 * 2) { 1598c57e365eSAndreas Gohr return sprintf($lang['days'], round($ago / (24 * 60 * 60))); 1599c57e365eSAndreas Gohr } 1600c57e365eSAndreas Gohr if($ago > 60 * 60 * 2) { 1601c57e365eSAndreas Gohr return sprintf($lang['hours'], round($ago / (60 * 60))); 1602c57e365eSAndreas Gohr } 1603c57e365eSAndreas Gohr if($ago > 60 * 2) { 1604c57e365eSAndreas Gohr return sprintf($lang['minutes'], round($ago / (60))); 1605c57e365eSAndreas Gohr } 1606c57e365eSAndreas Gohr return sprintf($lang['seconds'], $ago); 1607c57e365eSAndreas Gohr} 1608c57e365eSAndreas Gohr 1609c57e365eSAndreas Gohr/** 1610f2263577SAndreas Gohr * Wraps around strftime but provides support for fuzzy dates 1611f2263577SAndreas Gohr * 1612f2263577SAndreas Gohr * The format default to $conf['dformat']. It is passed to 1613f2263577SAndreas Gohr * strftime - %f can be used to get the value from datetime_h() 1614f2263577SAndreas Gohr * 1615f2263577SAndreas Gohr * @see datetime_h 1616f2263577SAndreas Gohr * @author Andreas Gohr <gohr@cosmocode.de> 1617140cfbcdSGerrit Uitslag * 1618140cfbcdSGerrit Uitslag * @param int|null $dt timestamp when given, null will take current timestamp 1619140cfbcdSGerrit Uitslag * @param string $format empty default to $conf['dformat'], or provide format as recognized by strftime() 1620140cfbcdSGerrit Uitslag * @return string 1621f2263577SAndreas Gohr */ 1622f2263577SAndreas Gohrfunction dformat($dt = null, $format = '') { 1623f2263577SAndreas Gohr global $conf; 1624f2263577SAndreas Gohr 1625f2263577SAndreas Gohr if(is_null($dt)) $dt = time(); 1626f2263577SAndreas Gohr $dt = (int) $dt; 1627f2263577SAndreas Gohr if(!$format) $format = $conf['dformat']; 1628f2263577SAndreas Gohr 1629f2263577SAndreas Gohr $format = str_replace('%f', datetime_h($dt), $format); 1630f2263577SAndreas Gohr return strftime($format, $dt); 1631f2263577SAndreas Gohr} 1632f2263577SAndreas Gohr 1633f2263577SAndreas Gohr/** 1634c4f79b71SMichael Hamann * Formats a timestamp as ISO 8601 date 1635c4f79b71SMichael Hamann * 1636c4f79b71SMichael Hamann * @author <ungu at terong dot com> 163759752844SAnders Sandblad * @link http://php.net/manual/en/function.date.php#54072 1638140cfbcdSGerrit Uitslag * 16397e8500eeSGerrit Uitslag * @param int $int_date current date in UNIX timestamp 16403272d797SAndreas Gohr * @return string 1641c4f79b71SMichael Hamann */ 1642c4f79b71SMichael Hamannfunction date_iso8601($int_date) { 1643c4f79b71SMichael Hamann $date_mod = date('Y-m-d\TH:i:s', $int_date); 1644c4f79b71SMichael Hamann $pre_timezone = date('O', $int_date); 1645c4f79b71SMichael Hamann $time_zone = substr($pre_timezone, 0, 3).":".substr($pre_timezone, 3, 2); 1646c4f79b71SMichael Hamann $date_mod .= $time_zone; 1647c4f79b71SMichael Hamann return $date_mod; 1648c4f79b71SMichael Hamann} 1649c4f79b71SMichael Hamann 1650c4f79b71SMichael Hamann/** 165100a7b5adSEsther Brunner * return an obfuscated email address in line with $conf['mailguard'] setting 165200a7b5adSEsther Brunner * 165300a7b5adSEsther Brunner * @author Harry Fuecks <hfuecks@gmail.com> 165400a7b5adSEsther Brunner * @author Christopher Smith <chris@jalakai.co.uk> 1655140cfbcdSGerrit Uitslag * 1656140cfbcdSGerrit Uitslag * @param string $email email address 1657140cfbcdSGerrit Uitslag * @return string 165800a7b5adSEsther Brunner */ 165900a7b5adSEsther Brunnerfunction obfuscate($email) { 166000a7b5adSEsther Brunner global $conf; 166100a7b5adSEsther Brunner 166200a7b5adSEsther Brunner switch($conf['mailguard']) { 166300a7b5adSEsther Brunner case 'visible' : 166400a7b5adSEsther Brunner $obfuscate = array('@' => ' [at] ', '.' => ' [dot] ', '-' => ' [dash] '); 166500a7b5adSEsther Brunner return strtr($email, $obfuscate); 166600a7b5adSEsther Brunner 166700a7b5adSEsther Brunner case 'hex' : 1668c1ec88ceSAndreas Gohr return \dokuwiki\Utf8\Conversion::toHtml($email, true); 166900a7b5adSEsther Brunner 167000a7b5adSEsther Brunner case 'none' : 167100a7b5adSEsther Brunner default : 167200a7b5adSEsther Brunner return $email; 167300a7b5adSEsther Brunner } 167400a7b5adSEsther Brunner} 167500a7b5adSEsther Brunner 167600a7b5adSEsther Brunner/** 167789541d4bSAndreas Gohr * Removes quoting backslashes 167889541d4bSAndreas Gohr * 167989541d4bSAndreas Gohr * @author Andreas Gohr <andi@splitbrain.org> 1680140cfbcdSGerrit Uitslag * 1681140cfbcdSGerrit Uitslag * @param string $string 1682140cfbcdSGerrit Uitslag * @param string $char backslashed character 1683140cfbcdSGerrit Uitslag * @return string 168489541d4bSAndreas Gohr */ 168589541d4bSAndreas Gohrfunction unslash($string, $char = "'") { 168689541d4bSAndreas Gohr return str_replace('\\'.$char, $char, $string); 168789541d4bSAndreas Gohr} 168889541d4bSAndreas Gohr 168973038c47SAndreas Gohr/** 169073038c47SAndreas Gohr * Convert php.ini shorthands to byte 169173038c47SAndreas Gohr * 1692a81f3d99SAndreas Gohr * On 32 bit systems values >= 2GB will fail! 1693140cfbcdSGerrit Uitslag * 1694a81f3d99SAndreas Gohr * -1 (infinite size) will be reported as -1 1695a81f3d99SAndreas Gohr * 1696a81f3d99SAndreas Gohr * @link https://www.php.net/manual/en/faq.using.php#faq.using.shorthandbytes 1697a81f3d99SAndreas Gohr * @param string $value PHP size shorthand 1698a81f3d99SAndreas Gohr * @return int 169973038c47SAndreas Gohr */ 1700a81f3d99SAndreas Gohrfunction php_to_byte($value) { 1701f5c0c80bSAndreas Gohr switch (strtoupper(substr($value,-1))) { 170273038c47SAndreas Gohr case 'G': 1703a81f3d99SAndreas Gohr $ret = intval(substr($value, 0, -1)) * 1024 * 1024 * 1024; 170473038c47SAndreas Gohr break; 170573038c47SAndreas Gohr case 'M': 1706a81f3d99SAndreas Gohr $ret = intval(substr($value, 0, -1)) * 1024 * 1024; 1707a81f3d99SAndreas Gohr break; 170873038c47SAndreas Gohr case 'K': 1709a81f3d99SAndreas Gohr $ret = intval(substr($value, 0, -1)) * 1024; 171073038c47SAndreas Gohr break; 17119eeeb775SAndreas Gohr default: 1712a81f3d99SAndreas Gohr $ret = intval($value); 171349cbd23eSOtto Vainio break; 171473038c47SAndreas Gohr } 171573038c47SAndreas Gohr return $ret; 171673038c47SAndreas Gohr} 171773038c47SAndreas Gohr 1718546d3a99SAndreas Gohr/** 1719546d3a99SAndreas Gohr * Wrapper around preg_quote adding the default delimiter 1720140cfbcdSGerrit Uitslag * 1721140cfbcdSGerrit Uitslag * @param string $string 1722140cfbcdSGerrit Uitslag * @return string 1723546d3a99SAndreas Gohr */ 1724546d3a99SAndreas Gohrfunction preg_quote_cb($string) { 1725546d3a99SAndreas Gohr return preg_quote($string, '/'); 1726546d3a99SAndreas Gohr} 172773038c47SAndreas Gohr 1728bd2f6c2fSAndreas Gohr/** 1729bd2f6c2fSAndreas Gohr * Shorten a given string by removing data from the middle 1730bd2f6c2fSAndreas Gohr * 1731c66972f2SAdrian Lang * You can give the string in two parts, the first part $keep 1732bd2f6c2fSAndreas Gohr * will never be shortened. The second part $short will be cut 1733bd2f6c2fSAndreas Gohr * in the middle to shorten but only if at least $min chars are 1734bd2f6c2fSAndreas Gohr * left to display it. Otherwise it will be left off. 1735bd2f6c2fSAndreas Gohr * 1736bd2f6c2fSAndreas Gohr * @param string $keep the part to keep 1737bd2f6c2fSAndreas Gohr * @param string $short the part to shorten 1738bd2f6c2fSAndreas Gohr * @param int $max maximum chars you want for the whole string 1739bd2f6c2fSAndreas Gohr * @param int $min minimum number of chars to have left for middle shortening 1740bd2f6c2fSAndreas Gohr * @param string $char the shortening character to use 17413272d797SAndreas Gohr * @return string 1742bd2f6c2fSAndreas Gohr */ 1743a5d27328SAndreas Gohrfunction shorten($keep, $short, $max, $min = 9, $char = '…') { 17448cbc5ee8SAndreas Gohr $max = $max - \dokuwiki\Utf8\PhpString::strlen($keep); 1745bd2f6c2fSAndreas Gohr if($max < $min) return $keep; 17468cbc5ee8SAndreas Gohr $len = \dokuwiki\Utf8\PhpString::strlen($short); 1747bd2f6c2fSAndreas Gohr if($len <= $max) return $keep.$short; 1748bd2f6c2fSAndreas Gohr $half = floor($max / 2); 17496ce3e5f8SAndreas Gohr return $keep . 17506ce3e5f8SAndreas Gohr \dokuwiki\Utf8\PhpString::substr($short, 0, $half - 1) . 17516ce3e5f8SAndreas Gohr $char . 17526ce3e5f8SAndreas Gohr \dokuwiki\Utf8\PhpString::substr($short, $len - $half); 1753bd2f6c2fSAndreas Gohr} 1754bd2f6c2fSAndreas Gohr 1755dc58b6f4SAndy Webber/** 1756dc58b6f4SAndy Webber * Return the users real name or e-mail address for use 1757dc58b6f4SAndy Webber * in page footer and recent changes pages 1758dc58b6f4SAndy Webber * 1759b4b6c9a1SGerrit Uitslag * @param string|null $username or null when currently logged-in user should be used 176015f3bc49SGerrit Uitslag * @param bool $textonly true returns only plain text, true allows returning html 1761c0953023SGerrit Uitslag * @return string html or plain text(not escaped) of formatted user name 176215f3bc49SGerrit Uitslag * 1763dc58b6f4SAndy Webber * @author Andy Webber <dokuwiki AT andywebber DOT com> 1764dc58b6f4SAndy Webber */ 176515f3bc49SGerrit Uitslagfunction editorinfo($username, $textonly = false) { 1766cd4635eeSGerrit Uitslag return userlink($username, $textonly); 1767dc58b6f4SAndy Webber} 1768dc58b6f4SAndy Webber 176960a396c8SGerrit Uitslag/** 177060a396c8SGerrit Uitslag * Returns users realname w/o link 177160a396c8SGerrit Uitslag * 1772f168548cSGerrit Uitslag * @param string|null $username or null when currently logged-in user should be used 177315f3bc49SGerrit Uitslag * @param bool $textonly true returns only plain text, true allows returning html 1774c0953023SGerrit Uitslag * @return string html or plain text(not escaped) of formatted user name 177560a396c8SGerrit Uitslag * 177660a396c8SGerrit Uitslag * @triggers COMMON_USER_LINK 177760a396c8SGerrit Uitslag */ 1778cd4635eeSGerrit Uitslagfunction userlink($username = null, $textonly = false) { 177960a396c8SGerrit Uitslag global $conf, $INFO; 1780e1d9dcc8SAndreas Gohr /** @var AuthPlugin $auth */ 178160a396c8SGerrit Uitslag global $auth; 178230f6ec4bSGerrit Uitslag /** @var Input $INPUT */ 178330f6ec4bSGerrit Uitslag global $INPUT; 178460a396c8SGerrit Uitslag 178560a396c8SGerrit Uitslag // prepare initial event data 178660a396c8SGerrit Uitslag $data = array( 178760a396c8SGerrit Uitslag 'username' => $username, // the unique user name 178860a396c8SGerrit Uitslag 'name' => '', 178960a396c8SGerrit Uitslag 'link' => array( //setting 'link' to false disables linking 179060a396c8SGerrit Uitslag 'target' => '', 179160a396c8SGerrit Uitslag 'pre' => '', 179260a396c8SGerrit Uitslag 'suf' => '', 179360a396c8SGerrit Uitslag 'style' => '', 179460a396c8SGerrit Uitslag 'more' => '', 179560a396c8SGerrit Uitslag 'url' => '', 179660a396c8SGerrit Uitslag 'title' => '', 179760a396c8SGerrit Uitslag 'class' => '' 179860a396c8SGerrit Uitslag ), 17994d5fc927SGerrit Uitslag 'userlink' => '', // formatted user name as will be returned 180015f3bc49SGerrit Uitslag 'textonly' => $textonly 180160a396c8SGerrit Uitslag ); 180262c8004eSGerrit Uitslag if($username === null) { 180330f6ec4bSGerrit Uitslag $data['username'] = $username = $INPUT->server->str('REMOTE_USER'); 180415f3bc49SGerrit Uitslag if($textonly){ 180515f3bc49SGerrit Uitslag $data['name'] = $INFO['userinfo']['name']. ' (' . $INPUT->server->str('REMOTE_USER') . ')'; 180615f3bc49SGerrit Uitslag }else { 180764159a61SAndreas Gohr $data['name'] = '<bdi>' . hsc($INFO['userinfo']['name']) . '</bdi> '. 180864159a61SAndreas Gohr '(<bdi>' . hsc($INPUT->server->str('REMOTE_USER')) . '</bdi>)'; 180960a396c8SGerrit Uitslag } 181015f3bc49SGerrit Uitslag } 181160a396c8SGerrit Uitslag 1812e1d9dcc8SAndreas Gohr $evt = new Event('COMMON_USER_LINK', $data); 181360a396c8SGerrit Uitslag if($evt->advise_before(true)) { 181460a396c8SGerrit Uitslag if(empty($data['name'])) { 181560a396c8SGerrit Uitslag if($auth) $info = $auth->getUserData($username); 181665833968SGerrit Uitslag if($conf['showuseras'] != 'loginname' && isset($info) && $info) { 1817dc58b6f4SAndy Webber switch($conf['showuseras']) { 1818dc58b6f4SAndy Webber case 'username': 18197f081821SGerrit Uitslag case 'username_link': 182015f3bc49SGerrit Uitslag $data['name'] = $textonly ? $info['name'] : hsc($info['name']); 182160a396c8SGerrit Uitslag break; 1822dc58b6f4SAndy Webber case 'email': 1823dc58b6f4SAndy Webber case 'email_link': 182460a396c8SGerrit Uitslag $data['name'] = obfuscate($info['mail']); 182560a396c8SGerrit Uitslag break; 1826dc58b6f4SAndy Webber } 182765833968SGerrit Uitslag } else { 182865833968SGerrit Uitslag $data['name'] = $textonly ? $data['username'] : hsc($data['username']); 182960a396c8SGerrit Uitslag } 183060a396c8SGerrit Uitslag } 18317f081821SGerrit Uitslag 18327f081821SGerrit Uitslag /** @var Doku_Renderer_xhtml $xhtml_renderer */ 18337f081821SGerrit Uitslag static $xhtml_renderer = null; 18347f081821SGerrit Uitslag 183515f3bc49SGerrit Uitslag if(!$data['textonly'] && empty($data['link']['url'])) { 18367f081821SGerrit Uitslag 18377f081821SGerrit Uitslag if(in_array($conf['showuseras'], array('email_link', 'username_link'))) { 183860a396c8SGerrit Uitslag if(!isset($info)) { 183960a396c8SGerrit Uitslag if($auth) $info = $auth->getUserData($username); 184060a396c8SGerrit Uitslag } 184160a396c8SGerrit Uitslag if(isset($info) && $info) { 18427f081821SGerrit Uitslag if($conf['showuseras'] == 'email_link') { 184360a396c8SGerrit Uitslag $data['link']['url'] = 'mailto:' . obfuscate($info['mail']); 1844dc58b6f4SAndy Webber } else { 18457f081821SGerrit Uitslag if(is_null($xhtml_renderer)) { 18467f081821SGerrit Uitslag $xhtml_renderer = p_get_renderer('xhtml'); 18477f081821SGerrit Uitslag } 18487f081821SGerrit Uitslag if(empty($xhtml_renderer->interwiki)) { 18497f081821SGerrit Uitslag $xhtml_renderer->interwiki = getInterwiki(); 18507f081821SGerrit Uitslag } 18517f081821SGerrit Uitslag $shortcut = 'user'; 1852533772e1SGerrit Uitslag $exists = null; 18536496c33fSGerrit Uitslag $data['link']['url'] = $xhtml_renderer->_resolveInterWiki($shortcut, $username, $exists); 18542a2a43c4SGerrit Uitslag $data['link']['class'] .= ' interwiki iw_user'; 18556496c33fSGerrit Uitslag if($exists !== null) { 18566496c33fSGerrit Uitslag if($exists) { 18576496c33fSGerrit Uitslag $data['link']['class'] .= ' wikilink1'; 18586496c33fSGerrit Uitslag } else { 18596496c33fSGerrit Uitslag $data['link']['class'] .= ' wikilink2'; 18606496c33fSGerrit Uitslag $data['link']['rel'] = 'nofollow'; 18616496c33fSGerrit Uitslag } 18626496c33fSGerrit Uitslag } 1863dc58b6f4SAndy Webber } 1864dc58b6f4SAndy Webber } else { 186515f3bc49SGerrit Uitslag $data['textonly'] = true; 1866dc58b6f4SAndy Webber } 186760a396c8SGerrit Uitslag 186860a396c8SGerrit Uitslag } else { 186915f3bc49SGerrit Uitslag $data['textonly'] = true; 187060a396c8SGerrit Uitslag } 187160a396c8SGerrit Uitslag } 187260a396c8SGerrit Uitslag 187315f3bc49SGerrit Uitslag if($data['textonly']) { 18744d5fc927SGerrit Uitslag $data['userlink'] = $data['name']; 187560a396c8SGerrit Uitslag } else { 187660a396c8SGerrit Uitslag $data['link']['name'] = $data['name']; 187760a396c8SGerrit Uitslag if(is_null($xhtml_renderer)) { 187860a396c8SGerrit Uitslag $xhtml_renderer = p_get_renderer('xhtml'); 187960a396c8SGerrit Uitslag } 18804d5fc927SGerrit Uitslag $data['userlink'] = $xhtml_renderer->_formatLink($data['link']); 188160a396c8SGerrit Uitslag } 188260a396c8SGerrit Uitslag } 188360a396c8SGerrit Uitslag $evt->advise_after(); 188460a396c8SGerrit Uitslag unset($evt); 188560a396c8SGerrit Uitslag 18864d5fc927SGerrit Uitslag return $data['userlink']; 1887066fee30SAndreas Gohr} 1888066fee30SAndreas Gohr 1889066fee30SAndreas Gohr/** 1890066fee30SAndreas Gohr * Returns the path to a image file for the currently chosen license. 1891066fee30SAndreas Gohr * When no image exists, returns an empty string 1892066fee30SAndreas Gohr * 1893066fee30SAndreas Gohr * @author Andreas Gohr <andi@splitbrain.org> 1894140cfbcdSGerrit Uitslag * 1895066fee30SAndreas Gohr * @param string $type - type of image 'badge' or 'button' 18963272d797SAndreas Gohr * @return string 1897066fee30SAndreas Gohr */ 1898066fee30SAndreas Gohrfunction license_img($type) { 1899066fee30SAndreas Gohr global $license; 1900066fee30SAndreas Gohr global $conf; 1901066fee30SAndreas Gohr if(!$conf['license']) return ''; 1902066fee30SAndreas Gohr if(!is_array($license[$conf['license']])) return ''; 1903066fee30SAndreas Gohr $try = array(); 1904066fee30SAndreas Gohr $try[] = 'lib/images/license/'.$type.'/'.$conf['license'].'.png'; 1905066fee30SAndreas Gohr $try[] = 'lib/images/license/'.$type.'/'.$conf['license'].'.gif'; 1906066fee30SAndreas Gohr if(substr($conf['license'], 0, 3) == 'cc-') { 1907066fee30SAndreas Gohr $try[] = 'lib/images/license/'.$type.'/cc.png'; 1908066fee30SAndreas Gohr } 1909066fee30SAndreas Gohr foreach($try as $src) { 191079e79377SAndreas Gohr if(file_exists(DOKU_INC.$src)) return $src; 1911066fee30SAndreas Gohr } 1912066fee30SAndreas Gohr return ''; 1913dc58b6f4SAndy Webber} 1914dc58b6f4SAndy Webber 191513c08e2fSMichael Klier/** 191613c08e2fSMichael Klier * Checks if the given amount of memory is available 191713c08e2fSMichael Klier * 191813c08e2fSMichael Klier * If the memory_get_usage() function is not available the 191913c08e2fSMichael Klier * function just assumes $bytes of already allocated memory 192013c08e2fSMichael Klier * 192113c08e2fSMichael Klier * @author Filip Oscadal <webmaster@illusionsoftworks.cz> 192213c08e2fSMichael Klier * @author Andreas Gohr <andi@splitbrain.org> 19233272d797SAndreas Gohr * 19243272d797SAndreas Gohr * @param int $mem Size of memory you want to allocate in bytes 1925140cfbcdSGerrit Uitslag * @param int $bytes already allocated memory (see above) 19263272d797SAndreas Gohr * @return bool 192713c08e2fSMichael Klier */ 192813c08e2fSMichael Klierfunction is_mem_available($mem, $bytes = 1048576) { 192913c08e2fSMichael Klier $limit = trim(ini_get('memory_limit')); 193013c08e2fSMichael Klier if(empty($limit)) return true; // no limit set! 1931985d6187SElenchus if($limit == -1) return true; // unlimited 193213c08e2fSMichael Klier 193313c08e2fSMichael Klier // parse limit to bytes 193413c08e2fSMichael Klier $limit = php_to_byte($limit); 193513c08e2fSMichael Klier 193613c08e2fSMichael Klier // get used memory if possible 193713c08e2fSMichael Klier if(function_exists('memory_get_usage')) { 193813c08e2fSMichael Klier $used = memory_get_usage(); 193949eb6e38SAndreas Gohr } else { 194049eb6e38SAndreas Gohr $used = $bytes; 194113c08e2fSMichael Klier } 194213c08e2fSMichael Klier 194313c08e2fSMichael Klier if($used + $mem > $limit) { 194413c08e2fSMichael Klier return false; 194513c08e2fSMichael Klier } 194613c08e2fSMichael Klier 194713c08e2fSMichael Klier return true; 194813c08e2fSMichael Klier} 194913c08e2fSMichael Klier 1950af2408d5SAndreas Gohr/** 1951af2408d5SAndreas Gohr * Send a HTTP redirect to the browser 1952af2408d5SAndreas Gohr * 1953af2408d5SAndreas Gohr * Works arround Microsoft IIS cookie sending bug. Exits the script. 1954af2408d5SAndreas Gohr * 1955af2408d5SAndreas Gohr * @link http://support.microsoft.com/kb/q176113/ 1956af2408d5SAndreas Gohr * @author Andreas Gohr <andi@splitbrain.org> 1957140cfbcdSGerrit Uitslag * 1958140cfbcdSGerrit Uitslag * @param string $url url being directed to 1959af2408d5SAndreas Gohr */ 1960af2408d5SAndreas Gohrfunction send_redirect($url) { 196198ca30d2SAndreas Gohr $url = stripctl($url); // defend against HTTP Response Splitting 196298ca30d2SAndreas Gohr 1963585bf44eSChristopher Smith /* @var Input $INPUT */ 1964585bf44eSChristopher Smith global $INPUT; 1965585bf44eSChristopher Smith 19660181f021SAndreas Gohr //are there any undisplayed messages? keep them in session for display 19670181f021SAndreas Gohr global $MSG; 19680181f021SAndreas Gohr if(isset($MSG) && count($MSG) && !defined('NOSESSION')) { 19690181f021SAndreas Gohr //reopen session, store data and close session again 19700181f021SAndreas Gohr @session_start(); 19710181f021SAndreas Gohr $_SESSION[DOKU_COOKIE]['msg'] = $MSG; 19720181f021SAndreas Gohr } 19730181f021SAndreas Gohr 1974d4869846SAndreas Gohr // always close the session 1975d4869846SAndreas Gohr session_write_close(); 1976d4869846SAndreas Gohr 1977af2408d5SAndreas Gohr // check if running on IIS < 6 with CGI-PHP 1978585bf44eSChristopher Smith if($INPUT->server->has('SERVER_SOFTWARE') && $INPUT->server->has('GATEWAY_INTERFACE') && 1979585bf44eSChristopher Smith (strpos($INPUT->server->str('GATEWAY_INTERFACE'), 'CGI') !== false) && 1980585bf44eSChristopher Smith (preg_match('|^Microsoft-IIS/(\d)\.\d$|', trim($INPUT->server->str('SERVER_SOFTWARE')), $matches)) && 19813272d797SAndreas Gohr $matches[1] < 6 19823272d797SAndreas Gohr ) { 1983af2408d5SAndreas Gohr header('Refresh: 0;url='.$url); 1984af2408d5SAndreas Gohr } else { 1985af2408d5SAndreas Gohr header('Location: '.$url); 1986af2408d5SAndreas Gohr } 198781781cb6SAndreas Gohr 1988572dc222SLarsDW223 // no exits during unit tests 198927c0c399SAndreas Gohr if(defined('DOKU_UNITTEST')) { 199027c0c399SAndreas Gohr // pass info about the redirect back to the test suite 199127c0c399SAndreas Gohr $testRequest = TestRequest::getRunning(); 199227c0c399SAndreas Gohr if($testRequest !== null) { 199327c0c399SAndreas Gohr $testRequest->addData('send_redirect', $url); 199427c0c399SAndreas Gohr } 1995572dc222SLarsDW223 return; 1996572dc222SLarsDW223 } 199727c0c399SAndreas Gohr 1998af2408d5SAndreas Gohr exit; 1999af2408d5SAndreas Gohr} 2000af2408d5SAndreas Gohr 20015b75cd1fSAdrian Lang/** 20025b75cd1fSAdrian Lang * Validate a value using a set of valid values 20035b75cd1fSAdrian Lang * 20045b75cd1fSAdrian Lang * This function checks whether a specified value is set and in the array 20055b75cd1fSAdrian Lang * $valid_values. If not, the function returns a default value or, if no 20065b75cd1fSAdrian Lang * default is specified, throws an exception. 20075b75cd1fSAdrian Lang * 20085b75cd1fSAdrian Lang * @param string $param The name of the parameter 20095b75cd1fSAdrian Lang * @param array $valid_values A set of valid values; Optionally a default may 20105b75cd1fSAdrian Lang * be marked by the key “default”. 20115b75cd1fSAdrian Lang * @param array $array The array containing the value (typically $_POST 20125b75cd1fSAdrian Lang * or $_GET) 20135b75cd1fSAdrian Lang * @param string $exc The text of the raised exception 20145b75cd1fSAdrian Lang * 20153272d797SAndreas Gohr * @throws Exception 20163272d797SAndreas Gohr * @return mixed 20175b75cd1fSAdrian Lang * @author Adrian Lang <lang@cosmocode.de> 20185b75cd1fSAdrian Lang */ 20195b75cd1fSAdrian Langfunction valid_input_set($param, $valid_values, $array, $exc = '') { 20205b75cd1fSAdrian Lang if(isset($array[$param]) && in_array($array[$param], $valid_values)) { 20215b75cd1fSAdrian Lang return $array[$param]; 20225b75cd1fSAdrian Lang } elseif(isset($valid_values['default'])) { 20235b75cd1fSAdrian Lang return $valid_values['default']; 20245b75cd1fSAdrian Lang } else { 20255b75cd1fSAdrian Lang throw new Exception($exc); 20265b75cd1fSAdrian Lang } 20275b75cd1fSAdrian Lang} 20285b75cd1fSAdrian Lang 202963703ba5SAndreas Gohr/** 203063703ba5SAndreas Gohr * Read a preference from the DokuWiki cookie 2031646a531aSChristopher Smith * (remembering both keys & values are urlencoded) 2032140cfbcdSGerrit Uitslag * 2033140cfbcdSGerrit Uitslag * @param string $pref preference key 2034b4b6c9a1SGerrit Uitslag * @param mixed $default value returned when preference not found 2035140cfbcdSGerrit Uitslag * @return string preference value 203663703ba5SAndreas Gohr */ 2037554a8c9fSAdrian Langfunction get_doku_pref($pref, $default) { 2038646a531aSChristopher Smith $enc_pref = urlencode($pref); 203906c9ee33SMarius van Witzenburg if(isset($_COOKIE['DOKU_PREFS']) && strpos($_COOKIE['DOKU_PREFS'], $enc_pref) !== false) { 2040554a8c9fSAdrian Lang $parts = explode('#', $_COOKIE['DOKU_PREFS']); 204163703ba5SAndreas Gohr $cnt = count($parts); 20421c3eca7dSPhy 20431c3eca7dSPhy // due to #2721 there might be duplicate entries, 20441c3eca7dSPhy // so we read from the end 20451c3eca7dSPhy for($i = $cnt-2; $i >= 0; $i -= 2) { 2046646a531aSChristopher Smith if($parts[$i] == $enc_pref) { 2047646a531aSChristopher Smith return urldecode($parts[$i + 1]); 2048554a8c9fSAdrian Lang } 2049554a8c9fSAdrian Lang } 2050554a8c9fSAdrian Lang } 2051554a8c9fSAdrian Lang return $default; 2052554a8c9fSAdrian Lang} 2053554a8c9fSAdrian Lang 20543c94d07bSAnika Henke/** 20553c94d07bSAnika Henke * Add a preference to the DokuWiki cookie 205636ec377eSChristopher Smith * (remembering $_COOKIE['DOKU_PREFS'] is urlencoded) 20573a970889SAnika Henke * Remove it by setting $val to false 2058140cfbcdSGerrit Uitslag * 2059140cfbcdSGerrit Uitslag * @param string $pref preference key 2060140cfbcdSGerrit Uitslag * @param string $val preference value 20613c94d07bSAnika Henke */ 20623c94d07bSAnika Henkefunction set_doku_pref($pref, $val) { 20633c94d07bSAnika Henke global $conf; 20643c94d07bSAnika Henke $orig = get_doku_pref($pref, false); 20653c94d07bSAnika Henke $cookieVal = ''; 20663c94d07bSAnika Henke 20671c3eca7dSPhy if($orig !== false && ($orig !== $val)) { 20683c94d07bSAnika Henke $parts = explode('#', $_COOKIE['DOKU_PREFS']); 20693c94d07bSAnika Henke $cnt = count($parts); 207036ec377eSChristopher Smith // urlencode $pref for the comparison 207136ec377eSChristopher Smith $enc_pref = rawurlencode($pref); 20721c3eca7dSPhy $seen = false; 20733c94d07bSAnika Henke for ($i = 0; $i < $cnt; $i += 2) { 207436ec377eSChristopher Smith if ($parts[$i] == $enc_pref) { 20751c3eca7dSPhy if (!$seen){ 20763a970889SAnika Henke if ($val !== false) { 207736ec377eSChristopher Smith $parts[$i + 1] = rawurlencode($val); 20783a970889SAnika Henke } else { 20793a970889SAnika Henke unset($parts[$i]); 20803a970889SAnika Henke unset($parts[$i + 1]); 20813a970889SAnika Henke } 20821c3eca7dSPhy $seen = true; 20831c3eca7dSPhy } else { 20841c3eca7dSPhy // no break because we want to remove duplicate entries 20851c3eca7dSPhy unset($parts[$i]); 20861c3eca7dSPhy unset($parts[$i + 1]); 20871c3eca7dSPhy } 20883c94d07bSAnika Henke } 20893c94d07bSAnika Henke } 20903c94d07bSAnika Henke $cookieVal = implode('#', $parts); 20911c3eca7dSPhy } else if ($orig === false && $val !== false) { 209264159a61SAndreas Gohr $cookieVal = ($_COOKIE['DOKU_PREFS'] ? $_COOKIE['DOKU_PREFS'] . '#' : '') . 209364159a61SAndreas Gohr rawurlencode($pref) . '#' . rawurlencode($val); 20943c94d07bSAnika Henke } 20953c94d07bSAnika Henke 209675e4dd8aSGerrit Uitslag $cookieDir = empty($conf['cookiedir']) ? DOKU_REL : $conf['cookiedir']; 20975833995aSPhy if(defined('DOKU_UNITTEST')) { 20985833995aSPhy $_COOKIE['DOKU_PREFS'] = $cookieVal; 20995833995aSPhy }else{ 210075e4dd8aSGerrit Uitslag setcookie('DOKU_PREFS', $cookieVal, time()+365*24*3600, $cookieDir, '', ($conf['securecookie'] && is_ssl())); 21013c94d07bSAnika Henke } 21023c94d07bSAnika Henke} 21033c94d07bSAnika Henke 2104f8fb2d18SAndreas Gohr/** 2105f8fb2d18SAndreas Gohr * Strips source mapping declarations from given text #601 2106f8fb2d18SAndreas Gohr * 210742ea7f44SGerrit Uitslag * @param string &$text reference to the CSS or JavaScript code to clean 2108f8fb2d18SAndreas Gohr */ 2109f8fb2d18SAndreas Gohrfunction stripsourcemaps(&$text){ 2110f8fb2d18SAndreas Gohr $text = preg_replace('/^(\/\/|\/\*)[@#]\s+sourceMappingURL=.*?(\*\/)?$/im', '\\1\\2', $text); 2111f8fb2d18SAndreas Gohr} 2112f8fb2d18SAndreas Gohr 21133c27983bSAndreas Gohr/** 211471de5572SAndreas Gohr * Returns the contents of a given SVG file for embedding 21153c27983bSAndreas Gohr * 21163c27983bSAndreas Gohr * Inlining SVGs saves on HTTP requests and more importantly allows for styling them through 21173c27983bSAndreas Gohr * CSS. However it should used with small SVGs only. The $maxsize setting ensures only small 21183c27983bSAndreas Gohr * files are embedded. 21193c27983bSAndreas Gohr * 212071de5572SAndreas Gohr * This strips unneeded headers, comments and newline. The result is not a vaild standalone SVG! 212171de5572SAndreas Gohr * 21223c27983bSAndreas Gohr * @param string $file full path to the SVG file 21233c27983bSAndreas Gohr * @param int $maxsize maximum allowed size for the SVG to be embedded 212471de5572SAndreas Gohr * @return string|false the SVG content, false if the file couldn't be loaded 21253c27983bSAndreas Gohr */ 21264cd2074fSAndreas Gohrfunction inlineSVG($file, $maxsize = 2048) { 21273c27983bSAndreas Gohr $file = trim($file); 21283c27983bSAndreas Gohr if($file === '') return false; 21293c27983bSAndreas Gohr if(!file_exists($file)) return false; 21303c27983bSAndreas Gohr if(filesize($file) > $maxsize) return false; 21313c27983bSAndreas Gohr if(!is_readable($file)) return false; 21323c27983bSAndreas Gohr $content = file_get_contents($file); 21330849fa88SAndreas Gohr $content = preg_replace('/<!--.*?(-->)/s','', $content); // comments 21340849fa88SAndreas Gohr $content = preg_replace('/<\?xml .*?\?>/i', '', $content); // xml header 21350849fa88SAndreas Gohr $content = preg_replace('/<!DOCTYPE .*?>/i', '', $content); // doc type 21360849fa88SAndreas Gohr $content = preg_replace('/>\s+</s', '><', $content); // newlines between tags 21373c27983bSAndreas Gohr $content = trim($content); 21383c27983bSAndreas Gohr if(substr($content, 0, 5) !== '<svg ') return false; 213971de5572SAndreas Gohr return $content; 21403c27983bSAndreas Gohr} 21413c27983bSAndreas Gohr 2142e3776c06SMichael Hamann//Setup VIM: ex: et ts=2 : 2143