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); 25b6912aeaSAndreas Gohr 26b6912aeaSAndreas Gohr/** 27d5197206Schris * Wrapper around htmlspecialchars() 28d5197206Schris * 29d5197206Schris * @author Andreas Gohr <andi@splitbrain.org> 30d5197206Schris * @see htmlspecialchars() 31140cfbcdSGerrit Uitslag * 32140cfbcdSGerrit Uitslag * @param string $string the string being converted 33140cfbcdSGerrit Uitslag * @return string converted string 34d5197206Schris */ 35d5197206Schrisfunction hsc($string) { 36d5197206Schris return htmlspecialchars($string, ENT_QUOTES, 'UTF-8'); 37d5197206Schris} 38d5197206Schris 39d5197206Schris/** 405b571377SAndreas Gohr * Checks if the given input is blank 415b571377SAndreas Gohr * 425b571377SAndreas Gohr * This is similar to empty() but will return false for "0". 435b571377SAndreas Gohr * 4467234204SAndreas Gohr * Please note: when you pass uninitialized variables, they will implicitly be created 4567234204SAndreas Gohr * with a NULL value without warning. 4667234204SAndreas Gohr * 4767234204SAndreas Gohr * To avoid this it's recommended to guard the call with isset like this: 4867234204SAndreas Gohr * 4967234204SAndreas Gohr * (isset($foo) && !blank($foo)) 5067234204SAndreas Gohr * (!isset($foo) || blank($foo)) 5167234204SAndreas Gohr * 525b571377SAndreas Gohr * @param $in 535b571377SAndreas Gohr * @param bool $trim Consider a string of whitespace to be blank 545b571377SAndreas Gohr * @return bool 555b571377SAndreas Gohr */ 565b571377SAndreas Gohrfunction blank(&$in, $trim = false) { 575b571377SAndreas Gohr if(is_null($in)) return true; 585b571377SAndreas Gohr if(is_array($in)) return empty($in); 595b571377SAndreas Gohr if($in === "\0") return true; 605b571377SAndreas Gohr if($trim && trim($in) === '') return true; 615b571377SAndreas Gohr if(strlen($in) > 0) return false; 625b571377SAndreas Gohr return empty($in); 635b571377SAndreas Gohr} 645b571377SAndreas Gohr 655b571377SAndreas Gohr/** 66d5197206Schris * print a newline terminated string 67d5197206Schris * 68d5197206Schris * You can give an indention as optional parameter 69d5197206Schris * 70d5197206Schris * @author Andreas Gohr <andi@splitbrain.org> 71140cfbcdSGerrit Uitslag * 72140cfbcdSGerrit Uitslag * @param string $string line of text 73140cfbcdSGerrit Uitslag * @param int $indent number of spaces indention 74d5197206Schris */ 7525ec097bSChris Smithfunction ptln($string, $indent = 0) { 7625ec097bSChris Smith echo str_repeat(' ', $indent)."$string\n"; 7702b0b681SAndreas Gohr} 7802b0b681SAndreas Gohr 7902b0b681SAndreas Gohr/** 8002b0b681SAndreas Gohr * strips control characters (<32) from the given string 8102b0b681SAndreas Gohr * 8202b0b681SAndreas Gohr * @author Andreas Gohr <andi@splitbrain.org> 83140cfbcdSGerrit Uitslag * 8442ea7f44SGerrit Uitslag * @param string $string being stripped 85140cfbcdSGerrit Uitslag * @return string 8602b0b681SAndreas Gohr */ 8702b0b681SAndreas Gohrfunction stripctl($string) { 8802b0b681SAndreas Gohr return preg_replace('/[\x00-\x1F]+/s', '', $string); 89d5197206Schris} 90d5197206Schris 91d5197206Schris/** 92634d7150SAndreas Gohr * Return a secret token to be used for CSRF attack prevention 93634d7150SAndreas Gohr * 94634d7150SAndreas Gohr * @author Andreas Gohr <andi@splitbrain.org> 95634d7150SAndreas Gohr * @link http://en.wikipedia.org/wiki/Cross-site_request_forgery 96634d7150SAndreas Gohr * @link http://christ1an.blogspot.com/2007/04/preventing-csrf-efficiently.html 9742ea7f44SGerrit Uitslag * 98634d7150SAndreas Gohr * @return string 99634d7150SAndreas Gohr */ 100634d7150SAndreas Gohrfunction getSecurityToken() { 101585bf44eSChristopher Smith /** @var Input $INPUT */ 102585bf44eSChristopher Smith global $INPUT; 1033680e2cdSAndreas Gohr 1043680e2cdSAndreas Gohr $user = $INPUT->server->str('REMOTE_USER'); 1053680e2cdSAndreas Gohr $session = session_id(); 1063680e2cdSAndreas Gohr 1073680e2cdSAndreas Gohr // CSRF checks are only for logged in users - do not generate for anonymous 1083680e2cdSAndreas Gohr if(trim($user) == '' || trim($session) == '') return ''; 109c3cc6e05SAndreas Gohr return \dokuwiki\PassHash::hmac('md5', $session.$user, auth_cookiesalt()); 110634d7150SAndreas Gohr} 111634d7150SAndreas Gohr 112634d7150SAndreas Gohr/** 113634d7150SAndreas Gohr * Check the secret CSRF token 114140cfbcdSGerrit Uitslag * 115140cfbcdSGerrit Uitslag * @param null|string $token security token or null to read it from request variable 116140cfbcdSGerrit Uitslag * @return bool success if the token matched 117634d7150SAndreas Gohr */ 118634d7150SAndreas Gohrfunction checkSecurityToken($token = null) { 119585bf44eSChristopher Smith /** @var Input $INPUT */ 1207d01a0eaSTom N Harris global $INPUT; 121585bf44eSChristopher Smith if(!$INPUT->server->str('REMOTE_USER')) return true; // no logged in user, no need for a check 122df97eaacSAndreas Gohr 1237d01a0eaSTom N Harris if(is_null($token)) $token = $INPUT->str('sectok'); 124634d7150SAndreas Gohr if(getSecurityToken() != $token) { 125634d7150SAndreas Gohr msg('Security Token did not match. Possible CSRF attack.', -1); 126634d7150SAndreas Gohr return false; 127634d7150SAndreas Gohr } 128634d7150SAndreas Gohr return true; 129634d7150SAndreas Gohr} 130634d7150SAndreas Gohr 131634d7150SAndreas Gohr/** 132634d7150SAndreas Gohr * Print a hidden form field with a secret CSRF token 133634d7150SAndreas Gohr * 134634d7150SAndreas Gohr * @author Andreas Gohr <andi@splitbrain.org> 135140cfbcdSGerrit Uitslag * 136140cfbcdSGerrit Uitslag * @param bool $print if true print the field, otherwise html of the field is returned 13742ea7f44SGerrit Uitslag * @return string html of hidden form field 138634d7150SAndreas Gohr */ 139634d7150SAndreas Gohrfunction formSecurityToken($print = true) { 1402404d0edSAnika Henke $ret = '<div class="no"><input type="hidden" name="sectok" value="'.getSecurityToken().'" /></div>'."\n"; 1413272d797SAndreas Gohr if($print) echo $ret; 142634d7150SAndreas Gohr return $ret; 143634d7150SAndreas Gohr} 144634d7150SAndreas Gohr 145634d7150SAndreas Gohr/** 1461015a57dSChristopher Smith * Determine basic information for a request of $id 14715fae107Sandi * 14815fae107Sandi * @author Andreas Gohr <andi@splitbrain.org> 1497e87a794SChristopher Smith * @author Chris Smith <chris@jalakai.co.uk> 150140cfbcdSGerrit Uitslag * 151140cfbcdSGerrit Uitslag * @param string $id pageid 152140cfbcdSGerrit Uitslag * @param bool $htmlClient add info about whether is mobile browser 153140cfbcdSGerrit Uitslag * @return array with info for a request of $id 154140cfbcdSGerrit Uitslag * 155f3f0262cSandi */ 1561015a57dSChristopher Smithfunction basicinfo($id, $htmlClient=true){ 157f3f0262cSandi global $USERINFO; 158585bf44eSChristopher Smith /* @var Input $INPUT */ 159585bf44eSChristopher Smith global $INPUT; 1606afe8dcaSchris 161c66972f2SAdrian Lang // set info about manager/admin status. 16259bc3b48SGerrit Uitslag $info = array(); 163c66972f2SAdrian Lang $info['isadmin'] = false; 164c66972f2SAdrian Lang $info['ismanager'] = false; 165585bf44eSChristopher Smith if($INPUT->server->has('REMOTE_USER')) { 166f3f0262cSandi $info['userinfo'] = $USERINFO; 1671015a57dSChristopher Smith $info['perm'] = auth_quickaclcheck($id); 168585bf44eSChristopher Smith $info['client'] = $INPUT->server->str('REMOTE_USER'); 16917ee7f66SAndreas Gohr 170f8cc712eSAndreas Gohr if($info['perm'] == AUTH_ADMIN) { 171f8cc712eSAndreas Gohr $info['isadmin'] = true; 172f8cc712eSAndreas Gohr $info['ismanager'] = true; 173f8cc712eSAndreas Gohr } elseif(auth_ismanager()) { 174f8cc712eSAndreas Gohr $info['ismanager'] = true; 175f8cc712eSAndreas Gohr } 176f8cc712eSAndreas Gohr 17717ee7f66SAndreas Gohr // if some outside auth were used only REMOTE_USER is set 17817ee7f66SAndreas Gohr if(!$info['userinfo']['name']) { 179585bf44eSChristopher Smith $info['userinfo']['name'] = $INPUT->server->str('REMOTE_USER'); 18017ee7f66SAndreas Gohr } 181ee4c4a1bSAndreas Gohr 182f3f0262cSandi } else { 1831015a57dSChristopher Smith $info['perm'] = auth_aclcheck($id, '', null); 184ee4c4a1bSAndreas Gohr $info['client'] = clientIP(true); 185f3f0262cSandi } 186f3f0262cSandi 1871015a57dSChristopher Smith $info['namespace'] = getNS($id); 1881015a57dSChristopher Smith 1891015a57dSChristopher Smith // mobile detection 1901015a57dSChristopher Smith if ($htmlClient) { 1911015a57dSChristopher Smith $info['ismobile'] = clientismobile(); 1921015a57dSChristopher Smith } 1931015a57dSChristopher Smith 1941015a57dSChristopher Smith return $info; 1951015a57dSChristopher Smith } 1961015a57dSChristopher Smith 1971015a57dSChristopher Smith/** 1981015a57dSChristopher Smith * Return info about the current document as associative 1991015a57dSChristopher Smith * array. 2001015a57dSChristopher Smith * 2011015a57dSChristopher Smith * @author Andreas Gohr <andi@splitbrain.org> 202140cfbcdSGerrit Uitslag * 203140cfbcdSGerrit Uitslag * @return array with info about current document 2041015a57dSChristopher Smith */ 2051015a57dSChristopher Smithfunction pageinfo() { 2061015a57dSChristopher Smith global $ID; 2071015a57dSChristopher Smith global $REV; 2081015a57dSChristopher Smith global $RANGE; 2091015a57dSChristopher Smith global $lang; 210585bf44eSChristopher Smith /* @var Input $INPUT */ 211585bf44eSChristopher Smith global $INPUT; 2121015a57dSChristopher Smith 2131015a57dSChristopher Smith $info = basicinfo($ID); 2141015a57dSChristopher Smith 2151015a57dSChristopher Smith // include ID & REV not redundant, as some parts of DokuWiki may temporarily change $ID, e.g. p_wiki_xhtml 2161015a57dSChristopher Smith // FIXME ... perhaps it would be better to ensure the temporary changes weren't necessary 2171015a57dSChristopher Smith $info['id'] = $ID; 2181015a57dSChristopher Smith $info['rev'] = $REV; 2191015a57dSChristopher Smith 220585bf44eSChristopher Smith if($INPUT->server->has('REMOTE_USER')) { 22175d66495SMichael Große $subManager = new SubscriberManager(); 22275d66495SMichael Große $info['subscribed'] = $subManager->userSubscription(); 2237e87a794SChristopher Smith } else { 2247e87a794SChristopher Smith $info['subscribed'] = false; 2257e87a794SChristopher Smith } 2267e87a794SChristopher Smith 227f3f0262cSandi $info['locked'] = checklock($ID); 228317a04c4SSatoshi Sahara $info['filepath'] = wikiFN($ID); 22979e79377SAndreas Gohr $info['exists'] = file_exists($info['filepath']); 23001c9a118SAndreas Gohr $info['currentrev'] = @filemtime($info['filepath']); 2312ca9d91cSBen Coburn if($REV) { 2322ca9d91cSBen Coburn //check if current revision was meant 23301c9a118SAndreas Gohr if($info['exists'] && ($info['currentrev'] == $REV)) { 2342ca9d91cSBen Coburn $REV = ''; 2357b3a6803SAndreas Gohr } elseif($RANGE) { 2367b3a6803SAndreas Gohr //section editing does not work with old revisions! 2377b3a6803SAndreas Gohr $REV = ''; 2387b3a6803SAndreas Gohr $RANGE = ''; 2397b3a6803SAndreas Gohr msg($lang['nosecedit'], 0); 2402ca9d91cSBen Coburn } else { 2412ca9d91cSBen Coburn //really use old revision 242317a04c4SSatoshi Sahara $info['filepath'] = wikiFN($ID, $REV); 24379e79377SAndreas Gohr $info['exists'] = file_exists($info['filepath']); 244f3f0262cSandi } 245f3f0262cSandi } 246c112d578Sandi $info['rev'] = $REV; 247f3f0262cSandi if($info['exists']) { 248f3f0262cSandi $info['writable'] = (is_writable($info['filepath']) && 249f3f0262cSandi ($info['perm'] >= AUTH_EDIT)); 250f3f0262cSandi } else { 251f3f0262cSandi $info['writable'] = ($info['perm'] >= AUTH_CREATE); 252f3f0262cSandi } 25350e988b1SAndreas Gohr $info['editable'] = ($info['writable'] && empty($info['locked'])); 254f3f0262cSandi $info['lastmod'] = @filemtime($info['filepath']); 255f3f0262cSandi 25671726d78SBen Coburn //load page meta data 25771726d78SBen Coburn $info['meta'] = p_get_metadata($ID); 25871726d78SBen Coburn 259652610a2Sandi //who's the editor 260047bad06SGerrit Uitslag $pagelog = new PageChangeLog($ID, 1024); 261652610a2Sandi if($REV) { 262f523c971SGerrit Uitslag $revinfo = $pagelog->getRevisionInfo($REV); 263652610a2Sandi } else { 2640e80bb5eSChristopher Smith if(!empty($info['meta']['last_change']) && is_array($info['meta']['last_change'])) { 265aa27cf05SAndreas Gohr $revinfo = $info['meta']['last_change']; 266aa27cf05SAndreas Gohr } else { 267f523c971SGerrit Uitslag $revinfo = $pagelog->getRevisionInfo($info['lastmod']); 268cd00a034SBen Coburn // cache most recent changelog line in metadata if missing and still valid 269cd00a034SBen Coburn if($revinfo !== false) { 270cd00a034SBen Coburn $info['meta']['last_change'] = $revinfo; 271cd00a034SBen Coburn p_set_metadata($ID, array('last_change' => $revinfo)); 272cd00a034SBen Coburn } 273cd00a034SBen Coburn } 274cd00a034SBen Coburn } 275cd00a034SBen Coburn //and check for an external edit 276cd00a034SBen Coburn if($revinfo !== false && $revinfo['date'] != $info['lastmod']) { 277cd00a034SBen Coburn // cached changelog line no longer valid 278cd00a034SBen Coburn $revinfo = false; 279cd00a034SBen Coburn $info['meta']['last_change'] = $revinfo; 280cd00a034SBen Coburn p_set_metadata($ID, array('last_change' => $revinfo)); 281652610a2Sandi } 282bb4866bdSchris 283652610a2Sandi $info['ip'] = $revinfo['ip']; 284652610a2Sandi $info['user'] = $revinfo['user']; 285652610a2Sandi $info['sum'] = $revinfo['sum']; 28671726d78SBen Coburn // See also $INFO['meta']['last_change'] which is the most recent log line for page $ID. 287ebf1501fSBen Coburn // Use $INFO['meta']['last_change']['type']===DOKU_CHANGE_TYPE_MINOR_EDIT in place of $info['minor']. 28859f257aeSchris 28988f522e9Sandi if($revinfo['user']) { 29088f522e9Sandi $info['editor'] = $revinfo['user']; 29188f522e9Sandi } else { 29288f522e9Sandi $info['editor'] = $revinfo['ip']; 29388f522e9Sandi } 294652610a2Sandi 295ee4c4a1bSAndreas Gohr // draft 2960aabe6f8SMichael Große $draft = new \dokuwiki\Draft($ID, $info['client']); 2970aabe6f8SMichael Große if ($draft->isDraftAvailable()) { 2980aabe6f8SMichael Große $info['draft'] = $draft->getDraftFilename(); 299ee4c4a1bSAndreas Gohr } 300ee4c4a1bSAndreas Gohr 3011015a57dSChristopher Smith return $info; 3021015a57dSChristopher Smith} 3031015a57dSChristopher Smith 3041015a57dSChristopher Smith/** 3050c39d46cSMichael Große * Initialize and/or fill global $JSINFO with some basic info to be given to javascript 3060c39d46cSMichael Große */ 3070c39d46cSMichael Großefunction jsinfo() { 3080c39d46cSMichael Große global $JSINFO, $ID, $INFO, $ACT; 3090c39d46cSMichael Große 3100c39d46cSMichael Große if (!is_array($JSINFO)) { 3110c39d46cSMichael Große $JSINFO = []; 3120c39d46cSMichael Große } 3130c39d46cSMichael Große //export minimal info to JS, plugins can add more 3140c39d46cSMichael Große $JSINFO['id'] = $ID; 3150c39d46cSMichael Große $JSINFO['namespace'] = (string) $INFO['namespace']; 3160c39d46cSMichael Große $JSINFO['ACT'] = act_clean($ACT); 3170c39d46cSMichael Große $JSINFO['useHeadingNavigation'] = (int) useHeading('navigation'); 3180c39d46cSMichael Große $JSINFO['useHeadingContent'] = (int) useHeading('content'); 3190c39d46cSMichael Große} 3200c39d46cSMichael Große 3210c39d46cSMichael Große/** 3221015a57dSChristopher Smith * Return information about the current media item as an associative array. 323140cfbcdSGerrit Uitslag * 324140cfbcdSGerrit Uitslag * @return array with info about current media item 3251015a57dSChristopher Smith */ 3261015a57dSChristopher Smithfunction mediainfo(){ 3271015a57dSChristopher Smith global $NS; 3281015a57dSChristopher Smith global $IMG; 3291015a57dSChristopher Smith 3301015a57dSChristopher Smith $info = basicinfo("$NS:*"); 3311015a57dSChristopher Smith $info['image'] = $IMG; 3321c548ebeSAndreas Gohr 333f3f0262cSandi return $info; 334f3f0262cSandi} 335f3f0262cSandi 336f3f0262cSandi/** 3372684e50aSAndreas Gohr * Build an string of URL parameters 3382684e50aSAndreas Gohr * 3392684e50aSAndreas Gohr * @author Andreas Gohr 340140cfbcdSGerrit Uitslag * 341140cfbcdSGerrit Uitslag * @param array $params array with key-value pairs 342140cfbcdSGerrit Uitslag * @param string $sep series of pairs are separated by this character 343140cfbcdSGerrit Uitslag * @return string query string 3442684e50aSAndreas Gohr */ 345b174aeaeSchrisfunction buildURLparams($params, $sep = '&') { 3462684e50aSAndreas Gohr $url = ''; 3472684e50aSAndreas Gohr $amp = false; 3482684e50aSAndreas Gohr foreach($params as $key => $val) { 349b174aeaeSchris if($amp) $url .= $sep; 3502684e50aSAndreas Gohr 35185e6871fSAdrian Lang $url .= rawurlencode($key).'='; 3523a50618cSgweissbach $url .= rawurlencode((string) $val); 3532684e50aSAndreas Gohr $amp = true; 3542684e50aSAndreas Gohr } 3552684e50aSAndreas Gohr return $url; 3562684e50aSAndreas Gohr} 3572684e50aSAndreas Gohr 3582684e50aSAndreas Gohr/** 3592684e50aSAndreas Gohr * Build an string of html tag attributes 3602684e50aSAndreas Gohr * 3617bff22c0SAndreas Gohr * Skips keys starting with '_', values get HTML encoded 3627bff22c0SAndreas Gohr * 3632684e50aSAndreas Gohr * @author Andreas Gohr 364140cfbcdSGerrit Uitslag * 365140cfbcdSGerrit Uitslag * @param array $params array with (attribute name-attribute value) pairs 366140cfbcdSGerrit Uitslag * @param bool $skipempty skip empty string values? 367140cfbcdSGerrit Uitslag * @return string 3682684e50aSAndreas Gohr */ 3694b030ce7SAndreas Gohrfunction buildAttributes($params, $skipempty = false) { 3702684e50aSAndreas Gohr $url = ''; 3719063ec14SAdrian Lang $white = false; 3722684e50aSAndreas Gohr foreach($params as $key => $val) { 3737bff22c0SAndreas Gohr if($key{0} == '_') continue; 374b1c94f1dSAndreas Gohr if($val === '' && $skipempty) continue; 3759063ec14SAdrian Lang if($white) $url .= ' '; 3767bff22c0SAndreas Gohr 3772684e50aSAndreas Gohr $url .= $key.'="'; 3782684e50aSAndreas Gohr $url .= htmlspecialchars($val); 3792684e50aSAndreas Gohr $url .= '"'; 3809063ec14SAdrian Lang $white = true; 3812684e50aSAndreas Gohr } 3822684e50aSAndreas Gohr return $url; 3832684e50aSAndreas Gohr} 3842684e50aSAndreas Gohr 3852684e50aSAndreas Gohr/** 38615fae107Sandi * This builds the breadcrumb trail and returns it as array 38715fae107Sandi * 38815fae107Sandi * @author Andreas Gohr <andi@splitbrain.org> 389140cfbcdSGerrit Uitslag * 390e3710957SGerrit Uitslag * @return string[] with the data: array(pageid=>name, ... ) 391f3f0262cSandi */ 392f3f0262cSandifunction breadcrumbs() { 3938746e727Sandi // we prepare the breadcrumbs early for quick session closing 3948746e727Sandi static $crumbs = null; 3958746e727Sandi if($crumbs != null) return $crumbs; 3968746e727Sandi 397f3f0262cSandi global $ID; 398f3f0262cSandi global $ACT; 399f3f0262cSandi global $conf; 400f3f0262cSandi 401f3f0262cSandi //first visit? 402c66972f2SAdrian Lang $crumbs = isset($_SESSION[DOKU_COOKIE]['bc']) ? $_SESSION[DOKU_COOKIE]['bc'] : array(); 4034d1fee4cSB_S666 //we only save on show and existing visible wiki documents 404a77f5846Sjan $file = wikiFN($ID); 4054d1fee4cSB_S666 if($ACT != 'show' || isHiddenPage($ID) || !file_exists($file)) { 406e71ce681SAndreas Gohr $_SESSION[DOKU_COOKIE]['bc'] = $crumbs; 407f3f0262cSandi return $crumbs; 408f3f0262cSandi } 409a77f5846Sjan 410a77f5846Sjan // page names 4111a84a0f3SAnika Henke $name = noNSorNS($ID); 412fe9ec250SChris Smith if(useHeading('navigation')) { 413a77f5846Sjan // get page title 41467c15eceSMichael Hamann $title = p_get_first_heading($ID, METADATA_RENDER_USING_SIMPLE_CACHE); 415a77f5846Sjan if($title) { 416a77f5846Sjan $name = $title; 417a77f5846Sjan } 418a77f5846Sjan } 419a77f5846Sjan 420f3f0262cSandi //remove ID from array 421a77f5846Sjan if(isset($crumbs[$ID])) { 422a77f5846Sjan unset($crumbs[$ID]); 423f3f0262cSandi } 424f3f0262cSandi 425f3f0262cSandi //add to array 426a77f5846Sjan $crumbs[$ID] = $name; 427f3f0262cSandi //reduce size 428f3f0262cSandi while(count($crumbs) > $conf['breadcrumbs']) { 429f3f0262cSandi array_shift($crumbs); 430f3f0262cSandi } 431f3f0262cSandi //save to session 432e71ce681SAndreas Gohr $_SESSION[DOKU_COOKIE]['bc'] = $crumbs; 433f3f0262cSandi return $crumbs; 434f3f0262cSandi} 435f3f0262cSandi 436f3f0262cSandi/** 43715fae107Sandi * Filter for page IDs 43815fae107Sandi * 439f3f0262cSandi * This is run on a ID before it is outputted somewhere 440f3f0262cSandi * currently used to replace the colon with something else 441907f24f7SAndreas Gohr * on Windows (non-IIS) systems and to have proper URL encoding 442907f24f7SAndreas Gohr * 443907f24f7SAndreas Gohr * See discussions at https://github.com/splitbrain/dokuwiki/pull/84 and 444907f24f7SAndreas Gohr * https://github.com/splitbrain/dokuwiki/pull/173 why we use a whitelist of 445907f24f7SAndreas Gohr * unaffected servers instead of blacklisting affected servers here. 44615fae107Sandi * 44749c713a3Sandi * Urlencoding is ommitted when the second parameter is false 44849c713a3Sandi * 44915fae107Sandi * @author Andreas Gohr <andi@splitbrain.org> 450140cfbcdSGerrit Uitslag * 451140cfbcdSGerrit Uitslag * @param string $id pageid being filtered 452140cfbcdSGerrit Uitslag * @param bool $ue apply urlencoding? 453140cfbcdSGerrit Uitslag * @return string 454f3f0262cSandi */ 45549c713a3Sandifunction idfilter($id, $ue = true) { 456f3f0262cSandi global $conf; 457585bf44eSChristopher Smith /* @var Input $INPUT */ 458585bf44eSChristopher Smith global $INPUT; 459585bf44eSChristopher Smith 460f3f0262cSandi if($conf['useslash'] && $conf['userewrite']) { 461f3f0262cSandi $id = strtr($id, ':', '/'); 462f3f0262cSandi } elseif(strtoupper(substr(PHP_OS, 0, 3)) === 'WIN' && 46358bedc8aSborekb $conf['userewrite'] && 464585bf44eSChristopher Smith strpos($INPUT->server->str('SERVER_SOFTWARE'), 'Microsoft-IIS') === false 4653272d797SAndreas Gohr ) { 466f3f0262cSandi $id = strtr($id, ':', ';'); 467f3f0262cSandi } 46849c713a3Sandi if($ue) { 469b6c6979fSAndreas Gohr $id = rawurlencode($id); 470f3f0262cSandi $id = str_replace('%3A', ':', $id); //keep as colon 471edd95259SGerrit Uitslag $id = str_replace('%3B', ';', $id); //keep as semicolon 472f3f0262cSandi $id = str_replace('%2F', '/', $id); //keep as slash 47349c713a3Sandi } 474f3f0262cSandi return $id; 475f3f0262cSandi} 476f3f0262cSandi 477f3f0262cSandi/** 478ed7b5f09Sandi * This builds a link to a wikipage 47915fae107Sandi * 4804bc480e5SAndreas Gohr * It handles URL rewriting and adds additional parameters 4816c7843b5Sandi * 48215fae107Sandi * @author Andreas Gohr <andi@splitbrain.org> 4834bc480e5SAndreas Gohr * 4844bc480e5SAndreas Gohr * @param string $id page id, defaults to start page 4854bc480e5SAndreas Gohr * @param string|array $urlParameters URL parameters, associative array recommended 4864bc480e5SAndreas Gohr * @param bool $absolute request an absolute URL instead of relative 4874bc480e5SAndreas Gohr * @param string $separator parameter separator 4884bc480e5SAndreas Gohr * @return string 489f3f0262cSandi */ 49016f15a81SDominik Eckelmannfunction wl($id = '', $urlParameters = '', $absolute = false, $separator = '&') { 491f3f0262cSandi global $conf; 49216f15a81SDominik Eckelmann if(is_array($urlParameters)) { 4934bde2196Slisps if(isset($urlParameters['rev']) && !$urlParameters['rev']) unset($urlParameters['rev']); 49464159a61SAndreas Gohr if(isset($urlParameters['at']) && $conf['date_at_format']) { 49564159a61SAndreas Gohr $urlParameters['at'] = date($conf['date_at_format'], $urlParameters['at']); 49664159a61SAndreas Gohr } 49716f15a81SDominik Eckelmann $urlParameters = buildURLparams($urlParameters, $separator); 4986de3759aSAndreas Gohr } else { 49916f15a81SDominik Eckelmann $urlParameters = str_replace(',', $separator, $urlParameters); 5006de3759aSAndreas Gohr } 50116f15a81SDominik Eckelmann if($id === '') { 50216f15a81SDominik Eckelmann $id = $conf['start']; 50316f15a81SDominik Eckelmann } 504f3f0262cSandi $id = idfilter($id); 50516f15a81SDominik Eckelmann if($absolute) { 506ed7b5f09Sandi $xlink = DOKU_URL; 507ed7b5f09Sandi } else { 508ed7b5f09Sandi $xlink = DOKU_BASE; 509ed7b5f09Sandi } 510f3f0262cSandi 5116c7843b5Sandi if($conf['userewrite'] == 2) { 5126c7843b5Sandi $xlink .= DOKU_SCRIPT.'/'.$id; 51316f15a81SDominik Eckelmann if($urlParameters) $xlink .= '?'.$urlParameters; 5146c7843b5Sandi } elseif($conf['userewrite']) { 515f3f0262cSandi $xlink .= $id; 51616f15a81SDominik Eckelmann if($urlParameters) $xlink .= '?'.$urlParameters; 51740b5fb5bSPhy } elseif($id !== '') { 5186c7843b5Sandi $xlink .= DOKU_SCRIPT.'?id='.$id; 51916f15a81SDominik Eckelmann if($urlParameters) $xlink .= $separator.$urlParameters; 520bce3726dSAndreas Gohr } else { 521bce3726dSAndreas Gohr $xlink .= DOKU_SCRIPT; 52216f15a81SDominik Eckelmann if($urlParameters) $xlink .= '?'.$urlParameters; 523f3f0262cSandi } 524f3f0262cSandi 525f3f0262cSandi return $xlink; 526f3f0262cSandi} 527f3f0262cSandi 528f3f0262cSandi/** 529f5c2808fSBen Coburn * This builds a link to an alternate page format 530f5c2808fSBen Coburn * 531f5c2808fSBen Coburn * Handles URL rewriting if enabled. Follows the style of wl(). 532f5c2808fSBen Coburn * 533f5c2808fSBen Coburn * @author Ben Coburn <btcoburn@silicodon.net> 5344bc480e5SAndreas Gohr * @param string $id page id, defaults to start page 5354bc480e5SAndreas Gohr * @param string $format the export renderer to use 5364bc480e5SAndreas Gohr * @param string|array $urlParameters URL parameters, associative array recommended 5374bc480e5SAndreas Gohr * @param bool $abs request an absolute URL instead of relative 5384bc480e5SAndreas Gohr * @param string $sep parameter separator 5394bc480e5SAndreas Gohr * @return string 540f5c2808fSBen Coburn */ 5414bc480e5SAndreas Gohrfunction exportlink($id = '', $format = 'raw', $urlParameters = '', $abs = false, $sep = '&') { 542f5c2808fSBen Coburn global $conf; 5434bc480e5SAndreas Gohr if(is_array($urlParameters)) { 5444bc480e5SAndreas Gohr $urlParameters = buildURLparams($urlParameters, $sep); 545f5c2808fSBen Coburn } else { 5464bc480e5SAndreas Gohr $urlParameters = str_replace(',', $sep, $urlParameters); 547f5c2808fSBen Coburn } 548f5c2808fSBen Coburn 549f5c2808fSBen Coburn $format = rawurlencode($format); 550f5c2808fSBen Coburn $id = idfilter($id); 551f5c2808fSBen Coburn if($abs) { 552f5c2808fSBen Coburn $xlink = DOKU_URL; 553f5c2808fSBen Coburn } else { 554f5c2808fSBen Coburn $xlink = DOKU_BASE; 555f5c2808fSBen Coburn } 556f5c2808fSBen Coburn 557f5c2808fSBen Coburn if($conf['userewrite'] == 2) { 558f5c2808fSBen Coburn $xlink .= DOKU_SCRIPT.'/'.$id.'?do=export_'.$format; 5594bc480e5SAndreas Gohr if($urlParameters) $xlink .= $sep.$urlParameters; 560f5c2808fSBen Coburn } elseif($conf['userewrite'] == 1) { 561f5c2808fSBen Coburn $xlink .= '_export/'.$format.'/'.$id; 5624bc480e5SAndreas Gohr if($urlParameters) $xlink .= '?'.$urlParameters; 563f5c2808fSBen Coburn } else { 564f5c2808fSBen Coburn $xlink .= DOKU_SCRIPT.'?do=export_'.$format.$sep.'id='.$id; 5654bc480e5SAndreas Gohr if($urlParameters) $xlink .= $sep.$urlParameters; 566f5c2808fSBen Coburn } 567f5c2808fSBen Coburn 568f5c2808fSBen Coburn return $xlink; 569f5c2808fSBen Coburn} 570f5c2808fSBen Coburn 571f5c2808fSBen Coburn/** 5726de3759aSAndreas Gohr * Build a link to a media file 5736de3759aSAndreas Gohr * 5746de3759aSAndreas Gohr * Will return a link to the detail page if $direct is false 5758c08db0aSAndreas Gohr * 5768c08db0aSAndreas Gohr * The $more parameter should always be given as array, the function then 5778c08db0aSAndreas Gohr * will strip default parameters to produce even cleaner URLs 5788c08db0aSAndreas Gohr * 5793272d797SAndreas Gohr * @param string $id the media file id or URL 5803272d797SAndreas Gohr * @param mixed $more string or array with additional parameters 5813272d797SAndreas Gohr * @param bool $direct link to detail page if false 5823272d797SAndreas Gohr * @param string $sep URL parameter separator 5833272d797SAndreas Gohr * @param bool $abs Create an absolute URL 5843272d797SAndreas Gohr * @return string 5856de3759aSAndreas Gohr */ 58655b2b31bSAndreas Gohrfunction ml($id = '', $more = '', $direct = true, $sep = '&', $abs = false) { 5876de3759aSAndreas Gohr global $conf; 588b9ee6a44SKlap-in $isexternalimage = media_isexternal($id); 589826d2766SKlap-in if(!$isexternalimage) { 590826d2766SKlap-in $id = cleanID($id); 591826d2766SKlap-in } 592826d2766SKlap-in 5936de3759aSAndreas Gohr if(is_array($more)) { 5940f4e0092SChristopher Smith // add token for resized images 595443e135dSChristopher Smith if(!empty($more['w']) || !empty($more['h']) || $isexternalimage){ 5960f4e0092SChristopher Smith $more['tok'] = media_get_token($id,$more['w'],$more['h']); 5970f4e0092SChristopher Smith } 5988c08db0aSAndreas Gohr // strip defaults for shorter URLs 5998c08db0aSAndreas Gohr if(isset($more['cache']) && $more['cache'] == 'cache') unset($more['cache']); 600443e135dSChristopher Smith if(empty($more['w'])) unset($more['w']); 601443e135dSChristopher Smith if(empty($more['h'])) unset($more['h']); 6028c08db0aSAndreas Gohr if(isset($more['id']) && $direct) unset($more['id']); 60378b874e6Slisps if(isset($more['rev']) && !$more['rev']) unset($more['rev']); 604b174aeaeSchris $more = buildURLparams($more, $sep); 6056de3759aSAndreas Gohr } else { 6065e7db1e2SChristopher Smith $matches = array(); 607cc036f74SKlap-in if (preg_match_all('/\b(w|h)=(\d*)\b/',$more,$matches,PREG_SET_ORDER) || $isexternalimage){ 6085e7db1e2SChristopher Smith $resize = array('w'=>0, 'h'=>0); 6095e7db1e2SChristopher Smith foreach ($matches as $match){ 6105e7db1e2SChristopher Smith $resize[$match[1]] = $match[2]; 6115e7db1e2SChristopher Smith } 612cc036f74SKlap-in $more .= $more === '' ? '' : $sep; 613cc036f74SKlap-in $more .= 'tok='.media_get_token($id,$resize['w'],$resize['h']); 6145e7db1e2SChristopher Smith } 6158c08db0aSAndreas Gohr $more = str_replace('cache=cache', '', $more); //skip default 6168c08db0aSAndreas Gohr $more = str_replace(',,', ',', $more); 617b174aeaeSchris $more = str_replace(',', $sep, $more); 6186de3759aSAndreas Gohr } 6196de3759aSAndreas Gohr 62055b2b31bSAndreas Gohr if($abs) { 62155b2b31bSAndreas Gohr $xlink = DOKU_URL; 62255b2b31bSAndreas Gohr } else { 6236de3759aSAndreas Gohr $xlink = DOKU_BASE; 62455b2b31bSAndreas Gohr } 6256de3759aSAndreas Gohr 6266de3759aSAndreas Gohr // external URLs are always direct without rewriting 627826d2766SKlap-in if($isexternalimage) { 6286de3759aSAndreas Gohr $xlink .= 'lib/exe/fetch.php'; 629cc036f74SKlap-in $xlink .= '?'.$more; 630b174aeaeSchris $xlink .= $sep.'media='.rawurlencode($id); 6316de3759aSAndreas Gohr return $xlink; 6326de3759aSAndreas Gohr } 6336de3759aSAndreas Gohr 6346de3759aSAndreas Gohr $id = idfilter($id); 6356de3759aSAndreas Gohr 6366de3759aSAndreas Gohr // decide on scriptname 6376de3759aSAndreas Gohr if($direct) { 6386de3759aSAndreas Gohr if($conf['userewrite'] == 1) { 6396de3759aSAndreas Gohr $script = '_media'; 6406de3759aSAndreas Gohr } else { 6416de3759aSAndreas Gohr $script = 'lib/exe/fetch.php'; 6426de3759aSAndreas Gohr } 6436de3759aSAndreas Gohr } else { 6446de3759aSAndreas Gohr if($conf['userewrite'] == 1) { 6456de3759aSAndreas Gohr $script = '_detail'; 6466de3759aSAndreas Gohr } else { 6476de3759aSAndreas Gohr $script = 'lib/exe/detail.php'; 6486de3759aSAndreas Gohr } 6496de3759aSAndreas Gohr } 6506de3759aSAndreas Gohr 6516de3759aSAndreas Gohr // build URL based on rewrite mode 6526de3759aSAndreas Gohr if($conf['userewrite']) { 6536de3759aSAndreas Gohr $xlink .= $script.'/'.$id; 6546de3759aSAndreas Gohr if($more) $xlink .= '?'.$more; 6556de3759aSAndreas Gohr } else { 6566de3759aSAndreas Gohr if($more) { 657a99d3236SEsther Brunner $xlink .= $script.'?'.$more; 658b174aeaeSchris $xlink .= $sep.'media='.$id; 6596de3759aSAndreas Gohr } else { 660a99d3236SEsther Brunner $xlink .= $script.'?media='.$id; 6616de3759aSAndreas Gohr } 6626de3759aSAndreas Gohr } 6636de3759aSAndreas Gohr 6646de3759aSAndreas Gohr return $xlink; 6656de3759aSAndreas Gohr} 6666de3759aSAndreas Gohr 6676de3759aSAndreas Gohr/** 66825ca5b17SAndreas Gohr * Returns the URL to the DokuWiki base script 66915fae107Sandi * 67025ca5b17SAndreas Gohr * Consider using wl() instead, unless you absoutely need the doku.php endpoint 67125ca5b17SAndreas Gohr * 67215fae107Sandi * @author Andreas Gohr <andi@splitbrain.org> 673140cfbcdSGerrit Uitslag * 674140cfbcdSGerrit Uitslag * @return string 675f3f0262cSandi */ 67625ca5b17SAndreas Gohrfunction script() { 677ed7b5f09Sandi return DOKU_BASE.DOKU_SCRIPT; 678f3f0262cSandi} 679f3f0262cSandi 680f3f0262cSandi/** 68115fae107Sandi * Spamcheck against wordlist 68215fae107Sandi * 683f3f0262cSandi * Checks the wikitext against a list of blocked expressions 684f3f0262cSandi * returns true if the text contains any bad words 68515fae107Sandi * 686e403cc58SMichael Klier * Triggers COMMON_WORDBLOCK_BLOCKED 687e403cc58SMichael Klier * 688e403cc58SMichael Klier * Action Plugins can use this event to inspect the blocked data 689e403cc58SMichael Klier * and gain information about the user who was blocked. 690e403cc58SMichael Klier * 691e403cc58SMichael Klier * Event data: 692e403cc58SMichael Klier * data['matches'] - array of matches 693e403cc58SMichael Klier * data['userinfo'] - information about the blocked user 694e403cc58SMichael Klier * [ip] - ip address 695e403cc58SMichael Klier * [user] - username (if logged in) 696e403cc58SMichael Klier * [mail] - mail address (if logged in) 697e403cc58SMichael Klier * [name] - real name (if logged in) 698e403cc58SMichael Klier * 69915fae107Sandi * @author Andreas Gohr <andi@splitbrain.org> 7006dffa0e0SAndreas Gohr * @author Michael Klier <chi@chimeric.de> 701140cfbcdSGerrit Uitslag * 7026dffa0e0SAndreas Gohr * @param string $text - optional text to check, if not given the globals are used 7036dffa0e0SAndreas Gohr * @return bool - true if a spam word was found 704f3f0262cSandi */ 7056dffa0e0SAndreas Gohrfunction checkwordblock($text = '') { 706f3f0262cSandi global $TEXT; 7076dffa0e0SAndreas Gohr global $PRE; 7086dffa0e0SAndreas Gohr global $SUF; 709e0086ca2SAndreas Gohr global $SUM; 710f3f0262cSandi global $conf; 711e403cc58SMichael Klier global $INFO; 712585bf44eSChristopher Smith /* @var Input $INPUT */ 713585bf44eSChristopher Smith global $INPUT; 714f3f0262cSandi 715f3f0262cSandi if(!$conf['usewordblock']) return false; 716f3f0262cSandi 717e0086ca2SAndreas Gohr if(!$text) $text = "$PRE $TEXT $SUF $SUM"; 7186dffa0e0SAndreas Gohr 719041d1964SAndreas Gohr // we prepare the text a tiny bit to prevent spammers circumventing URL checks 72064159a61SAndreas Gohr // phpcs:disable Generic.Files.LineLength.TooLong 72164159a61SAndreas Gohr $text = preg_replace( 72264159a61SAndreas Gohr '!(\b)(www\.[\w.:?\-;,]+?\.[\w.:?\-;,]+?[\w/\#~:.?+=&%@\!\-.:?\-;,]+?)([.:?\-;,]*[^\w/\#~:.?+=&%@\!\-.:?\-;,])!i', 72364159a61SAndreas Gohr '\1http://\2 \2\3', 72464159a61SAndreas Gohr $text 72564159a61SAndreas Gohr ); 72664159a61SAndreas Gohr // phpcs:enable 727041d1964SAndreas Gohr 728b9ac8716Schris $wordblocks = getWordblocks(); 7293e2965d7Sandi // how many lines to read at once (to work around some PCRE limits) 7303e2965d7Sandi if(version_compare(phpversion(), '4.3.0', '<')) { 7313e2965d7Sandi // old versions of PCRE define a maximum of parenthesises even if no 7323e2965d7Sandi // backreferences are used - the maximum is 99 7333e2965d7Sandi // this is very bad performancewise and may even be too high still 7343e2965d7Sandi $chunksize = 40; 7353e2965d7Sandi } else { 736a51d08efSAndreas Gohr // read file in chunks of 200 - this should work around the 7373e2965d7Sandi // MAX_PATTERN_SIZE in modern PCRE 738a51d08efSAndreas Gohr $chunksize = 200; 7393e2965d7Sandi } 740b9ac8716Schris while($blocks = array_splice($wordblocks, 0, $chunksize)) { 741f3f0262cSandi $re = array(); 74249eb6e38SAndreas Gohr // build regexp from blocks 743f3f0262cSandi foreach($blocks as $block) { 744f3f0262cSandi $block = preg_replace('/#.*$/', '', $block); 745f3f0262cSandi $block = trim($block); 746f3f0262cSandi if(empty($block)) continue; 747f3f0262cSandi $re[] = $block; 748f3f0262cSandi } 749e403cc58SMichael Klier if(count($re) && preg_match('#('.join('|', $re).')#si', $text, $matches)) { 750e403cc58SMichael Klier // prepare event data 75159bc3b48SGerrit Uitslag $data = array(); 752e403cc58SMichael Klier $data['matches'] = $matches; 753585bf44eSChristopher Smith $data['userinfo']['ip'] = $INPUT->server->str('REMOTE_ADDR'); 754585bf44eSChristopher Smith if($INPUT->server->str('REMOTE_USER')) { 755585bf44eSChristopher Smith $data['userinfo']['user'] = $INPUT->server->str('REMOTE_USER'); 756e403cc58SMichael Klier $data['userinfo']['name'] = $INFO['userinfo']['name']; 757e403cc58SMichael Klier $data['userinfo']['mail'] = $INFO['userinfo']['mail']; 758e403cc58SMichael Klier } 759bad6fc0dSAndreas Gohr $callback = function () { 760bad6fc0dSAndreas Gohr return true; 761bad6fc0dSAndreas Gohr }; 762cbb44eabSAndreas Gohr return Event::createAndTrigger('COMMON_WORDBLOCK_BLOCKED', $data, $callback, true); 763b9ac8716Schris } 764703f6fdeSandi } 765f3f0262cSandi return false; 766f3f0262cSandi} 767f3f0262cSandi 768f3f0262cSandi/** 76915fae107Sandi * Return the IP of the client 77015fae107Sandi * 7716d8affe6SAndreas Gohr * Honours X-Forwarded-For and X-Real-IP Proxy Headers 77215fae107Sandi * 7736d8affe6SAndreas Gohr * It returns a comma separated list of IPs if the above mentioned 7746d8affe6SAndreas Gohr * headers are set. If the single parameter is set, it tries to return 7756d8affe6SAndreas Gohr * a routable public address, prefering the ones suplied in the X 7766d8affe6SAndreas Gohr * headers 7776d8affe6SAndreas Gohr * 77815fae107Sandi * @author Andreas Gohr <andi@splitbrain.org> 779140cfbcdSGerrit Uitslag * 7803272d797SAndreas Gohr * @param boolean $single If set only a single IP is returned 7813272d797SAndreas Gohr * @return string 782f3f0262cSandi */ 7836d8affe6SAndreas Gohrfunction clientIP($single = false) { 784585bf44eSChristopher Smith /* @var Input $INPUT */ 785585bf44eSChristopher Smith global $INPUT; 786585bf44eSChristopher Smith 7876d8affe6SAndreas Gohr $ip = array(); 788585bf44eSChristopher Smith $ip[] = $INPUT->server->str('REMOTE_ADDR'); 789585bf44eSChristopher Smith if($INPUT->server->str('HTTP_X_FORWARDED_FOR')) { 790585bf44eSChristopher Smith $ip = array_merge($ip, explode(',', str_replace(' ', '', $INPUT->server->str('HTTP_X_FORWARDED_FOR')))); 791585bf44eSChristopher Smith } 792585bf44eSChristopher Smith if($INPUT->server->str('HTTP_X_REAL_IP')) { 793585bf44eSChristopher Smith $ip = array_merge($ip, explode(',', str_replace(' ', '', $INPUT->server->str('HTTP_X_REAL_IP')))); 794585bf44eSChristopher Smith } 7956d8affe6SAndreas Gohr 796dc14c6d1SGuy Brand // some IPv4/v6 regexps borrowed from Feyd 797dc14c6d1SGuy Brand // see: http://forums.devnetwork.net/viewtopic.php?f=38&t=53479 798dc14c6d1SGuy Brand $dec_octet = '(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]\d|[0-9])'; 799dc14c6d1SGuy Brand $hex_digit = '[A-Fa-f0-9]'; 800dc14c6d1SGuy Brand $h16 = "{$hex_digit}{1,4}"; 801dc14c6d1SGuy Brand $IPv4Address = "$dec_octet\\.$dec_octet\\.$dec_octet\\.$dec_octet"; 802dc14c6d1SGuy Brand $ls32 = "(?:$h16:$h16|$IPv4Address)"; 803dc14c6d1SGuy Brand $IPv6Address = 804dc14c6d1SGuy Brand "(?:(?:{$IPv4Address})|(?:". 805dc14c6d1SGuy Brand "(?:$h16:){6}$ls32". 806dc14c6d1SGuy Brand "|::(?:$h16:){5}$ls32". 807dc14c6d1SGuy Brand "|(?:$h16)?::(?:$h16:){4}$ls32". 808dc14c6d1SGuy Brand "|(?:(?:$h16:){0,1}$h16)?::(?:$h16:){3}$ls32". 809dc14c6d1SGuy Brand "|(?:(?:$h16:){0,2}$h16)?::(?:$h16:){2}$ls32". 810dc14c6d1SGuy Brand "|(?:(?:$h16:){0,3}$h16)?::(?:$h16:){1}$ls32". 811dc14c6d1SGuy Brand "|(?:(?:$h16:){0,4}$h16)?::$ls32". 812dc14c6d1SGuy Brand "|(?:(?:$h16:){0,5}$h16)?::$h16". 813dc14c6d1SGuy Brand "|(?:(?:$h16:){0,6}$h16)?::". 814dc14c6d1SGuy Brand ")(?:\\/(?:12[0-8]|1[0-1][0-9]|[1-9][0-9]|[0-9]))?)"; 815dc14c6d1SGuy Brand 8166d8affe6SAndreas Gohr // remove any non-IP stuff 8176d8affe6SAndreas Gohr $cnt = count($ip); 8184ff28443Schris $match = array(); 8196d8affe6SAndreas Gohr for($i = 0; $i < $cnt; $i++) { 820dc14c6d1SGuy Brand if(preg_match("/^$IPv4Address$/", $ip[$i], $match) || preg_match("/^$IPv6Address$/", $ip[$i], $match)) { 8214ff28443Schris $ip[$i] = $match[0]; 8224ff28443Schris } else { 8234ff28443Schris $ip[$i] = ''; 8244ff28443Schris } 8256d8affe6SAndreas Gohr if(empty($ip[$i])) unset($ip[$i]); 826f3f0262cSandi } 8276d8affe6SAndreas Gohr $ip = array_values(array_unique($ip)); 8286d8affe6SAndreas Gohr if(!$ip[0]) $ip[0] = '0.0.0.0'; // for some strange reason we don't have a IP 8296d8affe6SAndreas Gohr 8306d8affe6SAndreas Gohr if(!$single) return join(',', $ip); 8316d8affe6SAndreas Gohr 8326d8affe6SAndreas Gohr // decide which IP to use, trying to avoid local addresses 8336d8affe6SAndreas Gohr $ip = array_reverse($ip); 8346d8affe6SAndreas Gohr foreach($ip as $i) { 8352343a762SAndreas Gohr if(preg_match('/^(::1|[fF][eE]80:|127\.|10\.|192\.168\.|172\.((1[6-9])|(2[0-9])|(3[0-1]))\.)/', $i)) { 8366d8affe6SAndreas Gohr continue; 8376d8affe6SAndreas Gohr } else { 8386d8affe6SAndreas Gohr return $i; 8396d8affe6SAndreas Gohr } 8406d8affe6SAndreas Gohr } 8416d8affe6SAndreas Gohr // still here? just use the first (last) address 8426d8affe6SAndreas Gohr return $ip[0]; 843f3f0262cSandi} 844f3f0262cSandi 845f3f0262cSandi/** 8461c548ebeSAndreas Gohr * Check if the browser is on a mobile device 8471c548ebeSAndreas Gohr * 8481c548ebeSAndreas Gohr * Adapted from the example code at url below 8491c548ebeSAndreas Gohr * 8501c548ebeSAndreas Gohr * @link http://www.brainhandles.com/2007/10/15/detecting-mobile-browsers/#code 851140cfbcdSGerrit Uitslag * 85264159a61SAndreas Gohr * @deprecated 2018-04-27 you probably want media queries instead anyway 853140cfbcdSGerrit Uitslag * @return bool if true, client is mobile browser; otherwise false 8541c548ebeSAndreas Gohr */ 8551c548ebeSAndreas Gohrfunction clientismobile() { 856585bf44eSChristopher Smith /* @var Input $INPUT */ 857585bf44eSChristopher Smith global $INPUT; 8581c548ebeSAndreas Gohr 859585bf44eSChristopher Smith if($INPUT->server->has('HTTP_X_WAP_PROFILE')) return true; 8601c548ebeSAndreas Gohr 861585bf44eSChristopher Smith if(preg_match('/wap\.|\.wap/i', $INPUT->server->str('HTTP_ACCEPT'))) return true; 8621c548ebeSAndreas Gohr 863585bf44eSChristopher Smith if(!$INPUT->server->has('HTTP_USER_AGENT')) return false; 8641c548ebeSAndreas Gohr 86564159a61SAndreas Gohr $uamatches = join( 86664159a61SAndreas Gohr '|', 86764159a61SAndreas Gohr [ 86864159a61SAndreas Gohr 'midp', 'j2me', 'avantg', 'docomo', 'novarra', 'palmos', 'palmsource', '240x320', 'opwv', 86964159a61SAndreas Gohr 'chtml', 'pda', 'windows ce', 'mmp\/', 'blackberry', 'mib\/', 'symbian', 'wireless', 'nokia', 87064159a61SAndreas Gohr 'hand', 'mobi', 'phone', 'cdm', 'up\.b', 'audio', 'SIE\-', 'SEC\-', 'samsung', 'HTC', 'mot\-', 87164159a61SAndreas Gohr 'mitsu', 'sagem', 'sony', 'alcatel', 'lg', 'erics', 'vx', 'NEC', 'philips', 'mmm', 'xx', 87264159a61SAndreas Gohr 'panasonic', 'sharp', 'wap', 'sch', 'rover', 'pocket', 'benq', 'java', 'pt', 'pg', 'vox', 87364159a61SAndreas Gohr 'amoi', 'bird', 'compal', 'kg', 'voda', 'sany', 'kdd', 'dbt', 'sendo', 'sgh', 'gradi', 'jb', 87464159a61SAndreas Gohr '\d\d\di', 'moto' 87564159a61SAndreas Gohr ] 87664159a61SAndreas Gohr ); 8771c548ebeSAndreas Gohr 878585bf44eSChristopher Smith if(preg_match("/$uamatches/i", $INPUT->server->str('HTTP_USER_AGENT'))) return true; 8791c548ebeSAndreas Gohr 8801c548ebeSAndreas Gohr return false; 8811c548ebeSAndreas Gohr} 8821c548ebeSAndreas Gohr 8831c548ebeSAndreas Gohr/** 8846efc45a2SDmitry Katsubo * check if a given link is interwiki link 8856efc45a2SDmitry Katsubo * 8866efc45a2SDmitry Katsubo * @param string $link the link, e.g. "wiki>page" 8876efc45a2SDmitry Katsubo * @return bool 8886efc45a2SDmitry Katsubo */ 8896efc45a2SDmitry Katsubofunction link_isinterwiki($link){ 8906efc45a2SDmitry Katsubo if (preg_match('/^[a-zA-Z0-9\.]+>/u',$link)) return true; 8916efc45a2SDmitry Katsubo return false; 8926efc45a2SDmitry Katsubo} 8936efc45a2SDmitry Katsubo 8946efc45a2SDmitry Katsubo/** 89563211f61SGlen Harris * Convert one or more comma separated IPs to hostnames 89663211f61SGlen Harris * 89722ef1e32SAndreas Gohr * If $conf['dnslookups'] is disabled it simply returns the input string 89822ef1e32SAndreas Gohr * 89963211f61SGlen Harris * @author Glen Harris <astfgl@iamnota.org> 900140cfbcdSGerrit Uitslag * 9013272d797SAndreas Gohr * @param string $ips comma separated list of IP addresses 9023272d797SAndreas Gohr * @return string a comma separated list of hostnames 90363211f61SGlen Harris */ 90463211f61SGlen Harrisfunction gethostsbyaddrs($ips) { 90522ef1e32SAndreas Gohr global $conf; 90622ef1e32SAndreas Gohr if(!$conf['dnslookups']) return $ips; 90722ef1e32SAndreas Gohr 90863211f61SGlen Harris $hosts = array(); 90963211f61SGlen Harris $ips = explode(',', $ips); 910551a720fSMichael Klier 911551a720fSMichael Klier if(is_array($ips)) { 9123886270dSAndreas Gohr foreach($ips as $ip) { 913551a720fSMichael Klier $hosts[] = gethostbyaddr(trim($ip)); 91463211f61SGlen Harris } 915551a720fSMichael Klier return join(',', $hosts); 916551a720fSMichael Klier } else { 917551a720fSMichael Klier return gethostbyaddr(trim($ips)); 918551a720fSMichael Klier } 91963211f61SGlen Harris} 92063211f61SGlen Harris 92163211f61SGlen Harris/** 92215fae107Sandi * Checks if a given page is currently locked. 92315fae107Sandi * 924f3f0262cSandi * removes stale lockfiles 92515fae107Sandi * 92615fae107Sandi * @author Andreas Gohr <andi@splitbrain.org> 927140cfbcdSGerrit Uitslag * 928140cfbcdSGerrit Uitslag * @param string $id page id 929140cfbcdSGerrit Uitslag * @return bool page is locked? 930f3f0262cSandi */ 931f3f0262cSandifunction checklock($id) { 932f3f0262cSandi global $conf; 933585bf44eSChristopher Smith /* @var Input $INPUT */ 934585bf44eSChristopher Smith global $INPUT; 935585bf44eSChristopher Smith 936c9b4bd1eSBen Coburn $lock = wikiLockFN($id); 937f3f0262cSandi 938f3f0262cSandi //no lockfile 93979e79377SAndreas Gohr if(!file_exists($lock)) return false; 940f3f0262cSandi 941f3f0262cSandi //lockfile expired 942f3f0262cSandi if((time() - filemtime($lock)) > $conf['locktime']) { 943d8186216SBen Coburn @unlink($lock); 944f3f0262cSandi return false; 945f3f0262cSandi } 946f3f0262cSandi 947f3f0262cSandi //my own lock 9486d2af55dSChristopher Smith @list($ip, $session) = explode("\n", io_readFile($lock)); 9490712fefaSAndreas Gohr if($ip == $INPUT->server->str('REMOTE_USER') || $ip == clientIP() || (session_id() && $session == session_id())) { 950f3f0262cSandi return false; 951f3f0262cSandi } 952f3f0262cSandi 953f3f0262cSandi return $ip; 954f3f0262cSandi} 955f3f0262cSandi 956f3f0262cSandi/** 95715fae107Sandi * Lock a page for editing 95815fae107Sandi * 95915fae107Sandi * @author Andreas Gohr <andi@splitbrain.org> 960140cfbcdSGerrit Uitslag * 961140cfbcdSGerrit Uitslag * @param string $id page id to lock 962f3f0262cSandi */ 963f3f0262cSandifunction lock($id) { 964544ed901SDaniel Calviño Sánchez global $conf; 965585bf44eSChristopher Smith /* @var Input $INPUT */ 966585bf44eSChristopher Smith global $INPUT; 967544ed901SDaniel Calviño Sánchez 968544ed901SDaniel Calviño Sánchez if($conf['locktime'] == 0) { 969544ed901SDaniel Calviño Sánchez return; 970544ed901SDaniel Calviño Sánchez } 971544ed901SDaniel Calviño Sánchez 972c9b4bd1eSBen Coburn $lock = wikiLockFN($id); 973585bf44eSChristopher Smith if($INPUT->server->str('REMOTE_USER')) { 974585bf44eSChristopher Smith io_saveFile($lock, $INPUT->server->str('REMOTE_USER')); 975f3f0262cSandi } else { 97685fef7e2SAndreas Gohr io_saveFile($lock, clientIP()."\n".session_id()); 977f3f0262cSandi } 978f3f0262cSandi} 979f3f0262cSandi 980f3f0262cSandi/** 98115fae107Sandi * Unlock a page if it was locked by the user 982f3f0262cSandi * 98315fae107Sandi * @author Andreas Gohr <andi@splitbrain.org> 984140cfbcdSGerrit Uitslag * 9853272d797SAndreas Gohr * @param string $id page id to unlock 98615fae107Sandi * @return bool true if a lock was removed 987f3f0262cSandi */ 988f3f0262cSandifunction unlock($id) { 989585bf44eSChristopher Smith /* @var Input $INPUT */ 990585bf44eSChristopher Smith global $INPUT; 991585bf44eSChristopher Smith 992c9b4bd1eSBen Coburn $lock = wikiLockFN($id); 99379e79377SAndreas Gohr if(file_exists($lock)) { 9946d2af55dSChristopher Smith @list($ip, $session) = explode("\n", io_readFile($lock)); 995585bf44eSChristopher Smith if($ip == $INPUT->server->str('REMOTE_USER') || $ip == clientIP() || $session == session_id()) { 996f3f0262cSandi @unlink($lock); 997f3f0262cSandi return true; 998f3f0262cSandi } 999f3f0262cSandi } 1000f3f0262cSandi return false; 1001f3f0262cSandi} 1002f3f0262cSandi 1003f3f0262cSandi/** 1004f3f0262cSandi * convert line ending to unix format 1005f3f0262cSandi * 10066db7468bSAndreas Gohr * also makes sure the given text is valid UTF-8 10076db7468bSAndreas Gohr * 100815fae107Sandi * @see formText() for 2crlf conversion 100915fae107Sandi * @author Andreas Gohr <andi@splitbrain.org> 1010140cfbcdSGerrit Uitslag * 1011140cfbcdSGerrit Uitslag * @param string $text 1012140cfbcdSGerrit Uitslag * @return string 1013f3f0262cSandi */ 1014f3f0262cSandifunction cleanText($text) { 1015f3f0262cSandi $text = preg_replace("/(\015\012)|(\015)/", "\012", $text); 10166db7468bSAndreas Gohr 10176db7468bSAndreas Gohr // if the text is not valid UTF-8 we simply assume latin1 10186db7468bSAndreas Gohr // this won't break any worse than it breaks with the wrong encoding 10196db7468bSAndreas Gohr // but might actually fix the problem in many cases 1020*8cbc5ee8SAndreas Gohr if(!\dokuwiki\Utf8\Clean::isUtf8($text)) $text = utf8_encode($text); 10216db7468bSAndreas Gohr 1022f3f0262cSandi return $text; 1023f3f0262cSandi} 1024f3f0262cSandi 1025f3f0262cSandi/** 1026f3f0262cSandi * Prepares text for print in Webforms by encoding special chars. 1027f3f0262cSandi * It also converts line endings to Windows format which is 1028f3f0262cSandi * pseudo standard for webforms. 1029f3f0262cSandi * 103015fae107Sandi * @see cleanText() for 2unix conversion 103115fae107Sandi * @author Andreas Gohr <andi@splitbrain.org> 1032140cfbcdSGerrit Uitslag * 1033140cfbcdSGerrit Uitslag * @param string $text 1034140cfbcdSGerrit Uitslag * @return string 1035f3f0262cSandi */ 1036f3f0262cSandifunction formText($text) { 10375b7d45a5SAndreas Gohr $text = str_replace("\012", "\015\012", $text); 1038f3f0262cSandi return htmlspecialchars($text); 1039f3f0262cSandi} 1040f3f0262cSandi 1041f3f0262cSandi/** 104215fae107Sandi * Returns the specified local text in raw format 104315fae107Sandi * 104415fae107Sandi * @author Andreas Gohr <andi@splitbrain.org> 1045140cfbcdSGerrit Uitslag * 1046140cfbcdSGerrit Uitslag * @param string $id page id 1047140cfbcdSGerrit Uitslag * @param string $ext extension of file being read, default 'txt' 1048140cfbcdSGerrit Uitslag * @return string 1049f3f0262cSandi */ 10502adaf2b8SAndreas Gohrfunction rawLocale($id, $ext = 'txt') { 10512adaf2b8SAndreas Gohr return io_readFile(localeFN($id, $ext)); 1052f3f0262cSandi} 1053f3f0262cSandi 1054f3f0262cSandi/** 1055f3f0262cSandi * Returns the raw WikiText 105615fae107Sandi * 105715fae107Sandi * @author Andreas Gohr <andi@splitbrain.org> 1058140cfbcdSGerrit Uitslag * 1059140cfbcdSGerrit Uitslag * @param string $id page id 1060e0c26282SGerrit Uitslag * @param string|int $rev timestamp when a revision of wikitext is desired 1061140cfbcdSGerrit Uitslag * @return string 1062f3f0262cSandi */ 1063f3f0262cSandifunction rawWiki($id, $rev = '') { 1064cc7d0c94SBen Coburn return io_readWikiPage(wikiFN($id, $rev), $id, $rev); 1065f3f0262cSandi} 1066f3f0262cSandi 1067f3f0262cSandi/** 10687146cee2SAndreas Gohr * Returns the pagetemplate contents for the ID's namespace 10697146cee2SAndreas Gohr * 10707b84afa2SAndreas Gohr * @triggers COMMON_PAGETPL_LOAD 10717146cee2SAndreas Gohr * @author Andreas Gohr <andi@splitbrain.org> 1072140cfbcdSGerrit Uitslag * 1073140cfbcdSGerrit Uitslag * @param string $id the id of the page to be created 1074140cfbcdSGerrit Uitslag * @return string parsed pagetemplate content 10757146cee2SAndreas Gohr */ 1076fe17917eSAdrian Langfunction pageTemplate($id) { 1077a15ce62dSEsther Brunner global $conf; 1078e29549feSAndreas Gohr 1079fe17917eSAdrian Lang if(is_array($id)) $id = $id[0]; 1080e29549feSAndreas Gohr 10817b84afa2SAndreas Gohr // prepare initial event data 10827b84afa2SAndreas Gohr $data = array( 10837b84afa2SAndreas Gohr 'id' => $id, // the id of the page to be created 10847b84afa2SAndreas Gohr 'tpl' => '', // the text used as template 10857b84afa2SAndreas Gohr 'tplfile' => '', // the file above text was/should be loaded from 10867b84afa2SAndreas Gohr 'doreplace' => true // should wildcard replacements be done on the text? 10877b84afa2SAndreas Gohr ); 10887b84afa2SAndreas Gohr 1089e1d9dcc8SAndreas Gohr $evt = new Event('COMMON_PAGETPL_LOAD', $data); 10907b84afa2SAndreas Gohr if($evt->advise_before(true)) { 10917b84afa2SAndreas Gohr // the before event might have loaded the content already 10927b84afa2SAndreas Gohr if(empty($data['tpl'])) { 10937b84afa2SAndreas Gohr // if the before event did not set a template file, try to find one 10947b84afa2SAndreas Gohr if(empty($data['tplfile'])) { 1095fe17917eSAdrian Lang $path = dirname(wikiFN($id)); 109679e79377SAndreas Gohr if(file_exists($path.'/_template.txt')) { 10977b84afa2SAndreas Gohr $data['tplfile'] = $path.'/_template.txt'; 1098e29549feSAndreas Gohr } else { 1099e29549feSAndreas Gohr // search upper namespaces for templates 1100e29549feSAndreas Gohr $len = strlen(rtrim($conf['datadir'], '/')); 1101e29549feSAndreas Gohr while(strlen($path) >= $len) { 110279e79377SAndreas Gohr if(file_exists($path.'/__template.txt')) { 11037b84afa2SAndreas Gohr $data['tplfile'] = $path.'/__template.txt'; 1104e29549feSAndreas Gohr break; 1105e29549feSAndreas Gohr } 1106e29549feSAndreas Gohr $path = substr($path, 0, strrpos($path, '/')); 1107e29549feSAndreas Gohr } 1108e29549feSAndreas Gohr } 11097b84afa2SAndreas Gohr } 11107b84afa2SAndreas Gohr // load the content 11113d7ac595SMichael Hamann $data['tpl'] = io_readFile($data['tplfile']); 11127b84afa2SAndreas Gohr } 1113a1bbd05bSMichael Hamann if($data['doreplace']) parsePageTemplate($data); 11147b84afa2SAndreas Gohr } 11157b84afa2SAndreas Gohr $evt->advise_after(); 11167b84afa2SAndreas Gohr unset($evt); 11177b84afa2SAndreas Gohr 1118fe17917eSAdrian Lang return $data['tpl']; 11192b1223ecSAdrian Lang} 11202b1223ecSAdrian Lang 11212b1223ecSAdrian Lang/** 11222b1223ecSAdrian Lang * Performs common page template replacements 11237b84afa2SAndreas Gohr * This works on data from COMMON_PAGETPL_LOAD 11242b1223ecSAdrian Lang * 11252b1223ecSAdrian Lang * @author Andreas Gohr <andi@splitbrain.org> 1126140cfbcdSGerrit Uitslag * 1127140cfbcdSGerrit Uitslag * @param array $data array with event data 1128140cfbcdSGerrit Uitslag * @return string 11292b1223ecSAdrian Lang */ 1130d535a2e9Sstretchyboyfunction parsePageTemplate(&$data) { 11313272d797SAndreas Gohr /** 11323272d797SAndreas Gohr * @var string $id the id of the page to be created 11333272d797SAndreas Gohr * @var string $tpl the text used as template 11343272d797SAndreas Gohr * @var string $tplfile the file above text was/should be loaded from 11353272d797SAndreas Gohr * @var bool $doreplace should wildcard replacements be done on the text? 11363272d797SAndreas Gohr */ 1137fe17917eSAdrian Lang extract($data); 1138fe17917eSAdrian Lang 1139b856f7dfSAdrian Lang global $USERINFO; 1140bce53b1fSAdrian Lang global $conf; 1141585bf44eSChristopher Smith /* @var Input $INPUT */ 1142585bf44eSChristopher Smith global $INPUT; 1143e29549feSAndreas Gohr 1144e29549feSAndreas Gohr // replace placeholders 114526ece5a7SAndreas Gohr $file = noNS($id); 114637c1acbdSAdrian Lang $page = strtr($file, $conf['sepchar'], ' '); 114726ece5a7SAndreas Gohr 11483272d797SAndreas Gohr $tpl = str_replace( 11493272d797SAndreas Gohr array( 115026ece5a7SAndreas Gohr '@ID@', 115126ece5a7SAndreas Gohr '@NS@', 11528a7bcf66SShota Miyazaki '@CURNS@', 115326ece5a7SAndreas Gohr '@FILE@', 115426ece5a7SAndreas Gohr '@!FILE@', 115526ece5a7SAndreas Gohr '@!FILE!@', 115626ece5a7SAndreas Gohr '@PAGE@', 115726ece5a7SAndreas Gohr '@!PAGE@', 115826ece5a7SAndreas Gohr '@!!PAGE@', 115926ece5a7SAndreas Gohr '@!PAGE!@', 116026ece5a7SAndreas Gohr '@USER@', 116126ece5a7SAndreas Gohr '@NAME@', 116226ece5a7SAndreas Gohr '@MAIL@', 116326ece5a7SAndreas Gohr '@DATE@', 116426ece5a7SAndreas Gohr ), 116526ece5a7SAndreas Gohr array( 116626ece5a7SAndreas Gohr $id, 116726ece5a7SAndreas Gohr getNS($id), 11688a7bcf66SShota Miyazaki curNS($id), 116926ece5a7SAndreas Gohr $file, 1170*8cbc5ee8SAndreas Gohr \dokuwiki\Utf8\PhpString::ucfirst($file), 1171*8cbc5ee8SAndreas Gohr \dokuwiki\Utf8\PhpString::strtoupper($file), 117226ece5a7SAndreas Gohr $page, 1173*8cbc5ee8SAndreas Gohr \dokuwiki\Utf8\PhpString::ucfirst($page), 1174*8cbc5ee8SAndreas Gohr \dokuwiki\Utf8\PhpString::ucwords($page), 1175*8cbc5ee8SAndreas Gohr \dokuwiki\Utf8\PhpString::strtoupper($page), 1176585bf44eSChristopher Smith $INPUT->server->str('REMOTE_USER'), 1177b856f7dfSAdrian Lang $USERINFO['name'], 1178b856f7dfSAdrian Lang $USERINFO['mail'], 117926ece5a7SAndreas Gohr $conf['dformat'], 11803272d797SAndreas Gohr ), $tpl 11813272d797SAndreas Gohr ); 118226ece5a7SAndreas Gohr 11837d644fc8SAndreas Gohr // we need the callback to work around strftime's char limit 1184bad6fc0dSAndreas Gohr $tpl = preg_replace_callback( 1185bad6fc0dSAndreas Gohr '/%./', 1186bad6fc0dSAndreas Gohr function ($m) { 1187bad6fc0dSAndreas Gohr return strftime($m[0]); 1188bad6fc0dSAndreas Gohr }, 1189bad6fc0dSAndreas Gohr $tpl 1190bad6fc0dSAndreas Gohr ); 1191d535a2e9Sstretchyboy $data['tpl'] = $tpl; 1192a15ce62dSEsther Brunner return $tpl; 11937146cee2SAndreas Gohr} 11947146cee2SAndreas Gohr 11957146cee2SAndreas Gohr/** 119615fae107Sandi * Returns the raw Wiki Text in three slices. 119715fae107Sandi * 119815fae107Sandi * The range parameter needs to have the form "from-to" 119915cfe303Sandi * and gives the range of the section in bytes - no 120015cfe303Sandi * UTF-8 awareness is needed. 1201f3f0262cSandi * The returned order is prefix, section and suffix. 120215fae107Sandi * 120315fae107Sandi * @author Andreas Gohr <andi@splitbrain.org> 1204140cfbcdSGerrit Uitslag * 1205140cfbcdSGerrit Uitslag * @param string $range in form "from-to" 1206140cfbcdSGerrit Uitslag * @param string $id page id 1207140cfbcdSGerrit Uitslag * @param string $rev optional, the revision timestamp 120842ea7f44SGerrit Uitslag * @return string[] with three slices 1209f3f0262cSandi */ 1210f3f0262cSandifunction rawWikiSlices($range, $id, $rev = '') { 1211cc7d0c94SBen Coburn $text = io_readWikiPage(wikiFN($id, $rev), $id, $rev); 1212f3f0262cSandi 121380fcb268SAdrian Lang // Parse range 121480fcb268SAdrian Lang list($from, $to) = explode('-', $range, 2); 121580fcb268SAdrian Lang // Make range zero-based, use defaults if marker is missing 121680fcb268SAdrian Lang $from = !$from ? 0 : ($from - 1); 121780fcb268SAdrian Lang $to = !$to ? strlen($text) : ($to - 1); 121880fcb268SAdrian Lang 121959bc3b48SGerrit Uitslag $slices = array(); 122080fcb268SAdrian Lang $slices[0] = substr($text, 0, $from); 122180fcb268SAdrian Lang $slices[1] = substr($text, $from, $to - $from); 122215cfe303Sandi $slices[2] = substr($text, $to); 1223f3f0262cSandi return $slices; 1224f3f0262cSandi} 1225f3f0262cSandi 1226f3f0262cSandi/** 122715fae107Sandi * Joins wiki text slices 122815fae107Sandi * 122980fcb268SAdrian Lang * function to join the text slices. 1230f3f0262cSandi * When the pretty parameter is set to true it adds additional empty 1231f3f0262cSandi * lines between sections if needed (used on saving). 123215fae107Sandi * 123315fae107Sandi * @author Andreas Gohr <andi@splitbrain.org> 1234140cfbcdSGerrit Uitslag * 1235140cfbcdSGerrit Uitslag * @param string $pre prefix 1236140cfbcdSGerrit Uitslag * @param string $text text in the middle 1237140cfbcdSGerrit Uitslag * @param string $suf suffix 1238140cfbcdSGerrit Uitslag * @param bool $pretty add additional empty lines between sections 1239140cfbcdSGerrit Uitslag * @return string 1240f3f0262cSandi */ 1241f3f0262cSandifunction con($pre, $text, $suf, $pretty = false) { 1242f3f0262cSandi if($pretty) { 124380fcb268SAdrian Lang if($pre !== '' && substr($pre, -1) !== "\n" && 12443272d797SAndreas Gohr substr($text, 0, 1) !== "\n" 12453272d797SAndreas Gohr ) { 124680fcb268SAdrian Lang $pre .= "\n"; 124780fcb268SAdrian Lang } 124880fcb268SAdrian Lang if($suf !== '' && substr($text, -1) !== "\n" && 12493272d797SAndreas Gohr substr($suf, 0, 1) !== "\n" 12503272d797SAndreas Gohr ) { 125180fcb268SAdrian Lang $text .= "\n"; 125280fcb268SAdrian Lang } 1253f3f0262cSandi } 1254f3f0262cSandi 1255f3f0262cSandi return $pre.$text.$suf; 1256f3f0262cSandi} 1257f3f0262cSandi 1258f3f0262cSandi/** 1259b24d9195SAndreas Gohr * Checks if the current page version is newer than the last entry in the page's 1260b24d9195SAndreas Gohr * changelog. If so, we assume it has been an external edit and we create an 1261b24d9195SAndreas Gohr * attic copy and add a proper changelog line. 1262b24d9195SAndreas Gohr * 1263b24d9195SAndreas Gohr * This check is only executed when the page is about to be saved again from the 1264b24d9195SAndreas Gohr * wiki, triggered in @see saveWikiText() 1265b24d9195SAndreas Gohr * 1266b24d9195SAndreas Gohr * @param string $id the page ID 1267b24d9195SAndreas Gohr */ 1268b24d9195SAndreas Gohrfunction detectExternalEdit($id) { 1269b24d9195SAndreas Gohr global $lang; 1270b24d9195SAndreas Gohr 12718c7319beSGerrit Uitslag $fileLastMod = wikiFN($id); 12728c7319beSGerrit Uitslag $lastMod = @filemtime($fileLastMod); // from page 1273b24d9195SAndreas Gohr $pagelog = new PageChangeLog($id, 1024); 12748c7319beSGerrit Uitslag $lastRev = $pagelog->getRevisions(-1, 1); // from changelog 12758c7319beSGerrit Uitslag $lastRev = (int) (empty($lastRev) ? 0 : $lastRev[0]); 1276b24d9195SAndreas Gohr 12778c7319beSGerrit Uitslag if(!file_exists(wikiFN($id, $lastMod)) && file_exists($fileLastMod) && $lastMod >= $lastRev) { 1278b24d9195SAndreas Gohr // add old revision to the attic if missing 1279b24d9195SAndreas Gohr saveOldRevision($id); 1280b24d9195SAndreas Gohr // add a changelog entry if this edit came from outside dokuwiki 12818c7319beSGerrit Uitslag if($lastMod > $lastRev) { 12828c7319beSGerrit Uitslag $fileLastRev = wikiFN($id, $lastRev); 12838c7319beSGerrit Uitslag $revinfo = $pagelog->getRevisionInfo($lastRev); 12843c48b1d0SGerrit Uitslag if(empty($lastRev) || !file_exists($fileLastRev) || $revinfo['type'] == DOKU_CHANGE_TYPE_DELETE) { 12854b5aebc1SGerrit Uitslag $filesize_old = 0; 12864b5aebc1SGerrit Uitslag } else { 12878c7319beSGerrit Uitslag $filesize_old = io_getSizeFile($fileLastRev); 12884b5aebc1SGerrit Uitslag } 12898c7319beSGerrit Uitslag $filesize_new = filesize($fileLastMod); 12902966355bSGerrit Uitslag $sizechange = $filesize_new - $filesize_old; 12912966355bSGerrit Uitslag 129264159a61SAndreas Gohr addLogEntry( 129364159a61SAndreas Gohr $lastMod, 129464159a61SAndreas Gohr $id, 129564159a61SAndreas Gohr DOKU_CHANGE_TYPE_EDIT, 129664159a61SAndreas Gohr $lang['external_edit'], 129764159a61SAndreas Gohr '', 129864159a61SAndreas Gohr array('ExternalEdit' => true), 129964159a61SAndreas Gohr $sizechange 130064159a61SAndreas Gohr ); 1301b24d9195SAndreas Gohr // remove soon to be stale instructions 13020db5771eSMichael Große $cache = new CacheInstructions($id, $fileLastMod); 1303b24d9195SAndreas Gohr $cache->removeCache(); 1304b24d9195SAndreas Gohr } 1305b24d9195SAndreas Gohr } 1306b24d9195SAndreas Gohr} 1307b24d9195SAndreas Gohr 1308b24d9195SAndreas Gohr/** 1309a701424fSBen Coburn * Saves a wikitext by calling io_writeWikiPage. 1310a701424fSBen Coburn * Also directs changelog and attic updates. 131115fae107Sandi * 131215fae107Sandi * @author Andreas Gohr <andi@splitbrain.org> 131371726d78SBen Coburn * @author Ben Coburn <btcoburn@silicodon.net> 1314140cfbcdSGerrit Uitslag * 1315140cfbcdSGerrit Uitslag * @param string $id page id 1316140cfbcdSGerrit Uitslag * @param string $text wikitext being saved 1317140cfbcdSGerrit Uitslag * @param string $summary summary of text update 1318140cfbcdSGerrit Uitslag * @param bool $minor mark this saved version as minor update 1319f3f0262cSandi */ 1320b6912aeaSAndreas Gohrfunction saveWikiText($id, $text, $summary, $minor = false) { 1321a701424fSBen Coburn /* Note to developers: 1322a701424fSBen Coburn This code is subtle and delicate. Test the behavior of 1323a701424fSBen Coburn the attic and changelog with dokuwiki and external edits 1324a701424fSBen Coburn after any changes. External edits change the wiki page 1325a701424fSBen Coburn directly without using php or dokuwiki. 1326a701424fSBen Coburn */ 1327f3f0262cSandi global $conf; 1328f3f0262cSandi global $lang; 132971726d78SBen Coburn global $REV; 1330585bf44eSChristopher Smith /* @var Input $INPUT */ 1331585bf44eSChristopher Smith global $INPUT; 1332585bf44eSChristopher Smith 1333b24d9195SAndreas Gohr // prepare data for event 1334b24d9195SAndreas Gohr $svdta = array(); 1335b24d9195SAndreas Gohr $svdta['id'] = $id; 1336b24d9195SAndreas Gohr $svdta['file'] = wikiFN($id); 1337b24d9195SAndreas Gohr $svdta['revertFrom'] = $REV; 1338b24d9195SAndreas Gohr $svdta['oldRevision'] = @filemtime($svdta['file']); 1339b24d9195SAndreas Gohr $svdta['newRevision'] = 0; 1340b24d9195SAndreas Gohr $svdta['newContent'] = $text; 1341b24d9195SAndreas Gohr $svdta['oldContent'] = rawWiki($id); 1342b24d9195SAndreas Gohr $svdta['summary'] = $summary; 1343b24d9195SAndreas Gohr $svdta['contentChanged'] = ($svdta['newContent'] != $svdta['oldContent']); 1344b24d9195SAndreas Gohr $svdta['changeInfo'] = ''; 1345b24d9195SAndreas Gohr $svdta['changeType'] = DOKU_CHANGE_TYPE_EDIT; 13462966355bSGerrit Uitslag $svdta['sizechange'] = null; 1347b24d9195SAndreas Gohr 1348b24d9195SAndreas Gohr // select changelog line type 1349b24d9195SAndreas Gohr if($REV) { 1350b24d9195SAndreas Gohr $svdta['changeType'] = DOKU_CHANGE_TYPE_REVERT; 1351b24d9195SAndreas Gohr $svdta['changeInfo'] = $REV; 1352b24d9195SAndreas Gohr } else if(!file_exists($svdta['file'])) { 1353b24d9195SAndreas Gohr $svdta['changeType'] = DOKU_CHANGE_TYPE_CREATE; 1354b24d9195SAndreas Gohr } else if(trim($text) == '') { 1355b24d9195SAndreas Gohr // empty or whitespace only content deletes 1356b24d9195SAndreas Gohr $svdta['changeType'] = DOKU_CHANGE_TYPE_DELETE; 1357b24d9195SAndreas Gohr // autoset summary on deletion 1358655ddc1dSGerrit Uitslag if(blank($svdta['summary'])) { 1359655ddc1dSGerrit Uitslag $svdta['summary'] = $lang['deleted']; 1360655ddc1dSGerrit Uitslag } 1361b24d9195SAndreas Gohr } else if($minor && $conf['useacl'] && $INPUT->server->str('REMOTE_USER')) { 1362b24d9195SAndreas Gohr //minor edits only for logged in users 1363b24d9195SAndreas Gohr $svdta['changeType'] = DOKU_CHANGE_TYPE_MINOR_EDIT; 1364f3f0262cSandi } 1365f3f0262cSandi 1366e1d9dcc8SAndreas Gohr $event = new Event('COMMON_WIKIPAGE_SAVE', $svdta); 1367b24d9195SAndreas Gohr if(!$event->advise_before()) return; 1368f3f0262cSandi 1369b24d9195SAndreas Gohr // if the content has not been changed, no save happens (plugins may override this) 1370b24d9195SAndreas Gohr if(!$svdta['contentChanged']) return; 1371b24d9195SAndreas Gohr 1372b24d9195SAndreas Gohr detectExternalEdit($id); 1373f3f0262cSandi 13744b5aebc1SGerrit Uitslag if( 13754b5aebc1SGerrit Uitslag $svdta['changeType'] == DOKU_CHANGE_TYPE_CREATE || 13764b5aebc1SGerrit Uitslag ($svdta['changeType'] == DOKU_CHANGE_TYPE_REVERT && !file_exists($svdta['file'])) 13774b5aebc1SGerrit Uitslag ) { 1378ac3ed4afSGerrit Uitslag $filesize_old = 0; 1379ac3ed4afSGerrit Uitslag } else { 13802966355bSGerrit Uitslag $filesize_old = filesize($svdta['file']); 1381ac3ed4afSGerrit Uitslag } 1382b24d9195SAndreas Gohr if($svdta['changeType'] == DOKU_CHANGE_TYPE_DELETE) { 138330725328SGabriel Birke // Send "update" event with empty data, so plugins can react to page deletion 1384b24d9195SAndreas Gohr $data = array(array($svdta['file'], '', false), getNS($id), noNS($id), false); 1385cbb44eabSAndreas Gohr Event::createAndTrigger('IO_WIKIPAGE_WRITE', $data); 1386e45b34cdSBen Coburn // pre-save deleted revision 1387b24d9195SAndreas Gohr @touch($svdta['file']); 138846844156SBen Coburn clearstatcache(); 13892d69eb44SMichael Hamann $svdta['newRevision'] = saveOldRevision($id); 1390e1f3d9e1SEsther Brunner // remove empty file 1391b24d9195SAndreas Gohr @unlink($svdta['file']); 1392ac3ed4afSGerrit Uitslag $filesize_new = 0; 139364159a61SAndreas Gohr // don't remove old meta info as it should be saved, plugins can use 139464159a61SAndreas Gohr // IO_WIKIPAGE_WRITE for removing their metadata... 1395c5f92742SMichael Hamann // purge non-persistant meta data 13963d1f9ec3SMichael Klier p_purge_metadata($id); 139753d6ccfeSandi // remove empty namespaces 1398cc7d0c94SBen Coburn io_sweepNS($id, 'datadir'); 1399cc7d0c94SBen Coburn io_sweepNS($id, 'mediadir'); 1400f3f0262cSandi } else { 1401cc7d0c94SBen Coburn // save file (namespace dir is created in io_writeWikiPage) 140233d979e7SMichael Große io_writeWikiPage($svdta['file'], $svdta['newContent'], $id); 140346844156SBen Coburn // pre-save the revision, to keep the attic in sync 1404b24d9195SAndreas Gohr $svdta['newRevision'] = saveOldRevision($id); 14052966355bSGerrit Uitslag $filesize_new = filesize($svdta['file']); 1406f3f0262cSandi } 14072966355bSGerrit Uitslag $svdta['sizechange'] = $filesize_new - $filesize_old; 1408f3f0262cSandi 1409b24d9195SAndreas Gohr $event->advise_after(); 141071726d78SBen Coburn 141164159a61SAndreas Gohr addLogEntry( 141264159a61SAndreas Gohr $svdta['newRevision'], 141364159a61SAndreas Gohr $svdta['id'], 141464159a61SAndreas Gohr $svdta['changeType'], 141564159a61SAndreas Gohr $svdta['summary'], 141664159a61SAndreas Gohr $svdta['changeInfo'], 141764159a61SAndreas Gohr null, 141864159a61SAndreas Gohr $svdta['sizechange'] 141964159a61SAndreas Gohr ); 1420ac3ed4afSGerrit Uitslag 142126a0801fSAndreas Gohr // send notify mails 1422b24d9195SAndreas Gohr notify($svdta['id'], 'admin', $svdta['oldRevision'], $svdta['summary'], $minor); 1423b24d9195SAndreas Gohr notify($svdta['id'], 'subscribers', $svdta['oldRevision'], $svdta['summary'], $minor); 1424f3f0262cSandi 1425ce6b63d9Schris // update the purgefile (timestamp of the last time anything within the wiki was changed) 142698407a7aSandi io_saveFile($conf['cachedir'].'/purgefile', time()); 14272eccbdaaSGina Haeussge 14282eccbdaaSGina Haeussge // if useheading is enabled, purge the cache of all linking pages 1429fe9ec250SChris Smith if(useHeading('content')) { 143007ff0babSMichael Hamann $pages = ft_backlinks($id, true); 14312eccbdaaSGina Haeussge foreach($pages as $page) { 14320db5771eSMichael Große $cache = new CacheRenderer($page, wikiFN($page), 'xhtml'); 14332eccbdaaSGina Haeussge $cache->removeCache(); 14342eccbdaaSGina Haeussge } 14352eccbdaaSGina Haeussge } 1436f3f0262cSandi} 1437f3f0262cSandi 1438f3f0262cSandi/** 1439f3f0262cSandi * moves the current version to the attic and returns its 1440f3f0262cSandi * revision date 144115fae107Sandi * 144215fae107Sandi * @author Andreas Gohr <andi@splitbrain.org> 1443140cfbcdSGerrit Uitslag * 1444140cfbcdSGerrit Uitslag * @param string $id page id 1445140cfbcdSGerrit Uitslag * @return int|string revision timestamp 1446f3f0262cSandi */ 1447f3f0262cSandifunction saveOldRevision($id) { 1448f3f0262cSandi $oldf = wikiFN($id); 144979e79377SAndreas Gohr if(!file_exists($oldf)) return ''; 1450f3f0262cSandi $date = filemtime($oldf); 1451f3f0262cSandi $newf = wikiFN($id, $date); 1452cc7d0c94SBen Coburn io_writeWikiPage($newf, rawWiki($id), $id, $date); 1453f3f0262cSandi return $date; 1454f3f0262cSandi} 1455f3f0262cSandi 1456f3f0262cSandi/** 1457fde10de4SAdrian Lang * Sends a notify mail on page change or registration 145826a0801fSAndreas Gohr * 145926a0801fSAndreas Gohr * @param string $id The changed page 1460fde10de4SAdrian Lang * @param string $who Who to notify (admin|subscribers|register) 14613272d797SAndreas Gohr * @param int|string $rev Old page revision 146226a0801fSAndreas Gohr * @param string $summary What changed 146390033e9dSAndreas Gohr * @param boolean $minor Is this a minor edit? 146442ea7f44SGerrit Uitslag * @param string[] $replace Additional string substitutions, @KEY@ to be replaced by value 14653272d797SAndreas Gohr * @return bool 1466140cfbcdSGerrit Uitslag * 146715fae107Sandi * @author Andreas Gohr <andi@splitbrain.org> 1468f3f0262cSandi */ 146902a498e7Schrisfunction notify($id, $who, $rev = '', $summary = '', $minor = false, $replace = array()) { 1470f3f0262cSandi global $conf; 1471585bf44eSChristopher Smith /* @var Input $INPUT */ 1472585bf44eSChristopher Smith global $INPUT; 1473b158d625SSteven Danz 14746df843eeSAndreas Gohr // decide if there is something to do, eg. whom to mail 147526a0801fSAndreas Gohr if($who == 'admin') { 14763272d797SAndreas Gohr if(empty($conf['notify'])) return false; //notify enabled? 14772ed38036SAndreas Gohr $tpl = 'mailtext'; 147826a0801fSAndreas Gohr $to = $conf['notify']; 147926a0801fSAndreas Gohr } elseif($who == 'subscribers') { 148084c1127cSAndreas Gohr if(!actionOK('subscribe')) return false; //subscribers enabled? 1481585bf44eSChristopher Smith if($conf['useacl'] && $INPUT->server->str('REMOTE_USER') && $minor) return false; //skip minors 14820bb37868SGerrit Uitslag $data = array('id' => $id, 'addresslist' => '', 'self' => false, 'replacements' => $replace); 1483cbb44eabSAndreas Gohr Event::createAndTrigger( 14843272d797SAndreas Gohr 'COMMON_NOTIFY_ADDRESSLIST', $data, 1485835242b0SAndreas Gohr array(new Subscription(), 'notifyaddresses') 14863272d797SAndreas Gohr ); 14872ed38036SAndreas Gohr $to = $data['addresslist']; 14882ed38036SAndreas Gohr if(empty($to)) return false; 14892ed38036SAndreas Gohr $tpl = 'subscr_single'; 149026a0801fSAndreas Gohr } else { 14913272d797SAndreas Gohr return false; //just to be safe 149226a0801fSAndreas Gohr } 149326a0801fSAndreas Gohr 14946df843eeSAndreas Gohr // prepare content 1495704a815fSMichael Große $subscription = new PageSubscriptionSender(); 149675d66495SMichael Große return $subscription->sendPageDiff($to, $tpl, $id, $rev, $summary); 1497f3f0262cSandi} 14982ed38036SAndreas Gohr 149915fae107Sandi/** 150071f7bde7SAndreas Gohr * extracts the query from a search engine referrer 150115fae107Sandi * 150215fae107Sandi * @author Andreas Gohr <andi@splitbrain.org> 150371f7bde7SAndreas Gohr * @author Todd Augsburger <todd@rollerorgans.com> 1504140cfbcdSGerrit Uitslag * 1505140cfbcdSGerrit Uitslag * @return array|string 1506f3f0262cSandi */ 1507f3f0262cSandifunction getGoogleQuery() { 1508585bf44eSChristopher Smith /* @var Input $INPUT */ 1509585bf44eSChristopher Smith global $INPUT; 1510585bf44eSChristopher Smith 1511585bf44eSChristopher Smith if(!$INPUT->server->has('HTTP_REFERER')) { 1512c66972f2SAdrian Lang return ''; 1513c66972f2SAdrian Lang } 1514585bf44eSChristopher Smith $url = parse_url($INPUT->server->str('HTTP_REFERER')); 1515f3f0262cSandi 1516079b3ac1SAndreas Gohr // only handle common SEs 1517079b3ac1SAndreas Gohr if(!preg_match('/(google|bing|yahoo|ask|duckduckgo|babylon|aol|yandex)/',$url['host'])) return ''; 1518e4d8a516SKazutaka Miyasaka 1519079b3ac1SAndreas Gohr $query = array(); 1520e4d8a516SKazutaka Miyasaka // temporary workaround against PHP bug #49733 1521e4d8a516SKazutaka Miyasaka // see http://bugs.php.net/bug.php?id=49733 1522e4d8a516SKazutaka Miyasaka if(UTF8_MBSTRING) $enc = mb_internal_encoding(); 1523f3f0262cSandi parse_str($url['query'], $query); 1524e4d8a516SKazutaka Miyasaka if(UTF8_MBSTRING) mb_internal_encoding($enc); 1525e4d8a516SKazutaka Miyasaka 1526c66972f2SAdrian Lang $q = ''; 1527079b3ac1SAndreas Gohr if(isset($query['q'])){ 1528079b3ac1SAndreas Gohr $q = $query['q']; 1529079b3ac1SAndreas Gohr }elseif(isset($query['p'])){ 1530079b3ac1SAndreas Gohr $q = $query['p']; 1531079b3ac1SAndreas Gohr }elseif(isset($query['query'])){ 1532079b3ac1SAndreas Gohr $q = $query['query']; 1533079b3ac1SAndreas Gohr } 1534079b3ac1SAndreas Gohr $q = trim($q); 1535f3f0262cSandi 1536079b3ac1SAndreas Gohr if(!$q) return ''; 15376531ab03SAndreas Gohr $q = preg_split('/[\s\'"\\\\`()\]\[?:!\.{};,#+*<>\\/]+/', $q, -1, PREG_SPLIT_NO_EMPTY); 1538f93b3b50SAndreas Gohr return $q; 1539f3f0262cSandi} 1540f3f0262cSandi 1541f3f0262cSandi/** 1542f3f0262cSandi * Return the human readable size of a file 1543f3f0262cSandi * 1544f3f0262cSandi * @param int $size A file size 1545f3f0262cSandi * @param int $dec A number of decimal places 154674160ca1SGerrit Uitslag * @return string human readable size 1547140cfbcdSGerrit Uitslag * 1548f3f0262cSandi * @author Martin Benjamin <b.martin@cybernet.ch> 1549f3f0262cSandi * @author Aidan Lister <aidan@php.net> 1550f3f0262cSandi * @version 1.0.0 1551f3f0262cSandi */ 1552f31d5b73Sandifunction filesize_h($size, $dec = 1) { 1553f3f0262cSandi $sizes = array('B', 'KB', 'MB', 'GB'); 1554f3f0262cSandi $count = count($sizes); 1555f3f0262cSandi $i = 0; 1556f3f0262cSandi 1557f3f0262cSandi while($size >= 1024 && ($i < $count - 1)) { 1558f3f0262cSandi $size /= 1024; 1559f3f0262cSandi $i++; 1560f3f0262cSandi } 1561f3f0262cSandi 1562ef08383eSAndreas Gohr return round($size, $dec)."\xC2\xA0".$sizes[$i]; //non-breaking space 1563f3f0262cSandi} 1564f3f0262cSandi 156515fae107Sandi/** 1566c57e365eSAndreas Gohr * Return the given timestamp as human readable, fuzzy age 1567c57e365eSAndreas Gohr * 1568c57e365eSAndreas Gohr * @author Andreas Gohr <gohr@cosmocode.de> 1569140cfbcdSGerrit Uitslag * 1570140cfbcdSGerrit Uitslag * @param int $dt timestamp 1571140cfbcdSGerrit Uitslag * @return string 1572c57e365eSAndreas Gohr */ 1573c57e365eSAndreas Gohrfunction datetime_h($dt) { 1574c57e365eSAndreas Gohr global $lang; 1575c57e365eSAndreas Gohr 1576c57e365eSAndreas Gohr $ago = time() - $dt; 1577c57e365eSAndreas Gohr if($ago > 24 * 60 * 60 * 30 * 12 * 2) { 1578c57e365eSAndreas Gohr return sprintf($lang['years'], round($ago / (24 * 60 * 60 * 30 * 12))); 1579c57e365eSAndreas Gohr } 1580c57e365eSAndreas Gohr if($ago > 24 * 60 * 60 * 30 * 2) { 1581c57e365eSAndreas Gohr return sprintf($lang['months'], round($ago / (24 * 60 * 60 * 30))); 1582c57e365eSAndreas Gohr } 1583c57e365eSAndreas Gohr if($ago > 24 * 60 * 60 * 7 * 2) { 1584c57e365eSAndreas Gohr return sprintf($lang['weeks'], round($ago / (24 * 60 * 60 * 7))); 1585c57e365eSAndreas Gohr } 1586c57e365eSAndreas Gohr if($ago > 24 * 60 * 60 * 2) { 1587c57e365eSAndreas Gohr return sprintf($lang['days'], round($ago / (24 * 60 * 60))); 1588c57e365eSAndreas Gohr } 1589c57e365eSAndreas Gohr if($ago > 60 * 60 * 2) { 1590c57e365eSAndreas Gohr return sprintf($lang['hours'], round($ago / (60 * 60))); 1591c57e365eSAndreas Gohr } 1592c57e365eSAndreas Gohr if($ago > 60 * 2) { 1593c57e365eSAndreas Gohr return sprintf($lang['minutes'], round($ago / (60))); 1594c57e365eSAndreas Gohr } 1595c57e365eSAndreas Gohr return sprintf($lang['seconds'], $ago); 1596c57e365eSAndreas Gohr} 1597c57e365eSAndreas Gohr 1598c57e365eSAndreas Gohr/** 1599f2263577SAndreas Gohr * Wraps around strftime but provides support for fuzzy dates 1600f2263577SAndreas Gohr * 1601f2263577SAndreas Gohr * The format default to $conf['dformat']. It is passed to 1602f2263577SAndreas Gohr * strftime - %f can be used to get the value from datetime_h() 1603f2263577SAndreas Gohr * 1604f2263577SAndreas Gohr * @see datetime_h 1605f2263577SAndreas Gohr * @author Andreas Gohr <gohr@cosmocode.de> 1606140cfbcdSGerrit Uitslag * 1607140cfbcdSGerrit Uitslag * @param int|null $dt timestamp when given, null will take current timestamp 1608140cfbcdSGerrit Uitslag * @param string $format empty default to $conf['dformat'], or provide format as recognized by strftime() 1609140cfbcdSGerrit Uitslag * @return string 1610f2263577SAndreas Gohr */ 1611f2263577SAndreas Gohrfunction dformat($dt = null, $format = '') { 1612f2263577SAndreas Gohr global $conf; 1613f2263577SAndreas Gohr 1614f2263577SAndreas Gohr if(is_null($dt)) $dt = time(); 1615f2263577SAndreas Gohr $dt = (int) $dt; 1616f2263577SAndreas Gohr if(!$format) $format = $conf['dformat']; 1617f2263577SAndreas Gohr 1618f2263577SAndreas Gohr $format = str_replace('%f', datetime_h($dt), $format); 1619f2263577SAndreas Gohr return strftime($format, $dt); 1620f2263577SAndreas Gohr} 1621f2263577SAndreas Gohr 1622f2263577SAndreas Gohr/** 1623c4f79b71SMichael Hamann * Formats a timestamp as ISO 8601 date 1624c4f79b71SMichael Hamann * 1625c4f79b71SMichael Hamann * @author <ungu at terong dot com> 162659752844SAnders Sandblad * @link http://php.net/manual/en/function.date.php#54072 1627140cfbcdSGerrit Uitslag * 16287e8500eeSGerrit Uitslag * @param int $int_date current date in UNIX timestamp 16293272d797SAndreas Gohr * @return string 1630c4f79b71SMichael Hamann */ 1631c4f79b71SMichael Hamannfunction date_iso8601($int_date) { 1632c4f79b71SMichael Hamann $date_mod = date('Y-m-d\TH:i:s', $int_date); 1633c4f79b71SMichael Hamann $pre_timezone = date('O', $int_date); 1634c4f79b71SMichael Hamann $time_zone = substr($pre_timezone, 0, 3).":".substr($pre_timezone, 3, 2); 1635c4f79b71SMichael Hamann $date_mod .= $time_zone; 1636c4f79b71SMichael Hamann return $date_mod; 1637c4f79b71SMichael Hamann} 1638c4f79b71SMichael Hamann 1639c4f79b71SMichael Hamann/** 164000a7b5adSEsther Brunner * return an obfuscated email address in line with $conf['mailguard'] setting 164100a7b5adSEsther Brunner * 164200a7b5adSEsther Brunner * @author Harry Fuecks <hfuecks@gmail.com> 164300a7b5adSEsther Brunner * @author Christopher Smith <chris@jalakai.co.uk> 1644140cfbcdSGerrit Uitslag * 1645140cfbcdSGerrit Uitslag * @param string $email email address 1646140cfbcdSGerrit Uitslag * @return string 164700a7b5adSEsther Brunner */ 164800a7b5adSEsther Brunnerfunction obfuscate($email) { 164900a7b5adSEsther Brunner global $conf; 165000a7b5adSEsther Brunner 165100a7b5adSEsther Brunner switch($conf['mailguard']) { 165200a7b5adSEsther Brunner case 'visible' : 165300a7b5adSEsther Brunner $obfuscate = array('@' => ' [at] ', '.' => ' [dot] ', '-' => ' [dash] '); 165400a7b5adSEsther Brunner return strtr($email, $obfuscate); 165500a7b5adSEsther Brunner 165600a7b5adSEsther Brunner case 'hex' : 165700a7b5adSEsther Brunner $encode = ''; 165849eb6e38SAndreas Gohr $len = strlen($email); 165949eb6e38SAndreas Gohr for($x = 0; $x < $len; $x++) { 166049eb6e38SAndreas Gohr $encode .= '&#x'.bin2hex($email{$x}).';'; 166149eb6e38SAndreas Gohr } 166200a7b5adSEsther Brunner return $encode; 166300a7b5adSEsther Brunner 166400a7b5adSEsther Brunner case 'none' : 166500a7b5adSEsther Brunner default : 166600a7b5adSEsther Brunner return $email; 166700a7b5adSEsther Brunner } 166800a7b5adSEsther Brunner} 166900a7b5adSEsther Brunner 167000a7b5adSEsther Brunner/** 167189541d4bSAndreas Gohr * Removes quoting backslashes 167289541d4bSAndreas Gohr * 167389541d4bSAndreas Gohr * @author Andreas Gohr <andi@splitbrain.org> 1674140cfbcdSGerrit Uitslag * 1675140cfbcdSGerrit Uitslag * @param string $string 1676140cfbcdSGerrit Uitslag * @param string $char backslashed character 1677140cfbcdSGerrit Uitslag * @return string 167889541d4bSAndreas Gohr */ 167989541d4bSAndreas Gohrfunction unslash($string, $char = "'") { 168089541d4bSAndreas Gohr return str_replace('\\'.$char, $char, $string); 168189541d4bSAndreas Gohr} 168289541d4bSAndreas Gohr 168373038c47SAndreas Gohr/** 168473038c47SAndreas Gohr * Convert php.ini shorthands to byte 168573038c47SAndreas Gohr * 168673038c47SAndreas Gohr * @author <gilthans dot NO dot SPAM at gmail dot com> 168759752844SAnders Sandblad * @link http://php.net/manual/en/ini.core.php#79564 1688140cfbcdSGerrit Uitslag * 1689140cfbcdSGerrit Uitslag * @param string $v shorthands 1690140cfbcdSGerrit Uitslag * @return int|string 169173038c47SAndreas Gohr */ 169273038c47SAndreas Gohrfunction php_to_byte($v) { 169373038c47SAndreas Gohr $l = substr($v, -1); 169473038c47SAndreas Gohr $ret = substr($v, 0, -1); 169573038c47SAndreas Gohr switch(strtoupper($l)) { 169674160ca1SGerrit Uitslag /** @noinspection PhpMissingBreakStatementInspection */ 16972402e44bSAndreas Gohr // no-break 169873038c47SAndreas Gohr case 'P': 169973038c47SAndreas Gohr $ret *= 1024; 170074160ca1SGerrit Uitslag /** @noinspection PhpMissingBreakStatementInspection */ 17012402e44bSAndreas Gohr // no-break 170273038c47SAndreas Gohr case 'T': 170373038c47SAndreas Gohr $ret *= 1024; 170474160ca1SGerrit Uitslag /** @noinspection PhpMissingBreakStatementInspection */ 17052402e44bSAndreas Gohr // no-break 170673038c47SAndreas Gohr case 'G': 170773038c47SAndreas Gohr $ret *= 1024; 170874160ca1SGerrit Uitslag /** @noinspection PhpMissingBreakStatementInspection */ 17092402e44bSAndreas Gohr // no-break 171073038c47SAndreas Gohr case 'M': 171173038c47SAndreas Gohr $ret *= 1024; 1712f168548cSGerrit Uitslag /** @noinspection PhpMissingBreakStatementInspection */ 17132402e44bSAndreas Gohr // no-break 171473038c47SAndreas Gohr case 'K': 171573038c47SAndreas Gohr $ret *= 1024; 171673038c47SAndreas Gohr break; 17172402e44bSAndreas Gohr default: 171849cbd23eSOtto Vainio $ret *= 10; 171949cbd23eSOtto Vainio break; 172073038c47SAndreas Gohr } 172173038c47SAndreas Gohr return $ret; 172273038c47SAndreas Gohr} 172373038c47SAndreas Gohr 1724546d3a99SAndreas Gohr/** 1725546d3a99SAndreas Gohr * Wrapper around preg_quote adding the default delimiter 1726140cfbcdSGerrit Uitslag * 1727140cfbcdSGerrit Uitslag * @param string $string 1728140cfbcdSGerrit Uitslag * @return string 1729546d3a99SAndreas Gohr */ 1730546d3a99SAndreas Gohrfunction preg_quote_cb($string) { 1731546d3a99SAndreas Gohr return preg_quote($string, '/'); 1732546d3a99SAndreas Gohr} 173373038c47SAndreas Gohr 1734bd2f6c2fSAndreas Gohr/** 1735bd2f6c2fSAndreas Gohr * Shorten a given string by removing data from the middle 1736bd2f6c2fSAndreas Gohr * 1737c66972f2SAdrian Lang * You can give the string in two parts, the first part $keep 1738bd2f6c2fSAndreas Gohr * will never be shortened. The second part $short will be cut 1739bd2f6c2fSAndreas Gohr * in the middle to shorten but only if at least $min chars are 1740bd2f6c2fSAndreas Gohr * left to display it. Otherwise it will be left off. 1741bd2f6c2fSAndreas Gohr * 1742bd2f6c2fSAndreas Gohr * @param string $keep the part to keep 1743bd2f6c2fSAndreas Gohr * @param string $short the part to shorten 1744bd2f6c2fSAndreas Gohr * @param int $max maximum chars you want for the whole string 1745bd2f6c2fSAndreas Gohr * @param int $min minimum number of chars to have left for middle shortening 1746bd2f6c2fSAndreas Gohr * @param string $char the shortening character to use 17473272d797SAndreas Gohr * @return string 1748bd2f6c2fSAndreas Gohr */ 1749a5d27328SAndreas Gohrfunction shorten($keep, $short, $max, $min = 9, $char = '…') { 1750*8cbc5ee8SAndreas Gohr $max = $max - \dokuwiki\Utf8\PhpString::strlen($keep); 1751bd2f6c2fSAndreas Gohr if($max < $min) return $keep; 1752*8cbc5ee8SAndreas Gohr $len = \dokuwiki\Utf8\PhpString::strlen($short); 1753bd2f6c2fSAndreas Gohr if($len <= $max) return $keep.$short; 1754bd2f6c2fSAndreas Gohr $half = floor($max / 2); 1755*8cbc5ee8SAndreas Gohr return $keep.\dokuwiki\Utf8\PhpString::substr($short, 0, $half - 1).$char.\dokuwiki\Utf8\PhpString::substr($short, $len - $half); 1756bd2f6c2fSAndreas Gohr} 1757bd2f6c2fSAndreas Gohr 1758dc58b6f4SAndy Webber/** 1759dc58b6f4SAndy Webber * Return the users real name or e-mail address for use 1760dc58b6f4SAndy Webber * in page footer and recent changes pages 1761dc58b6f4SAndy Webber * 1762b4b6c9a1SGerrit Uitslag * @param string|null $username or null when currently logged-in user should be used 176315f3bc49SGerrit Uitslag * @param bool $textonly true returns only plain text, true allows returning html 1764c0953023SGerrit Uitslag * @return string html or plain text(not escaped) of formatted user name 176515f3bc49SGerrit Uitslag * 1766dc58b6f4SAndy Webber * @author Andy Webber <dokuwiki AT andywebber DOT com> 1767dc58b6f4SAndy Webber */ 176815f3bc49SGerrit Uitslagfunction editorinfo($username, $textonly = false) { 1769cd4635eeSGerrit Uitslag return userlink($username, $textonly); 1770dc58b6f4SAndy Webber} 1771dc58b6f4SAndy Webber 177260a396c8SGerrit Uitslag/** 177360a396c8SGerrit Uitslag * Returns users realname w/o link 177460a396c8SGerrit Uitslag * 1775f168548cSGerrit Uitslag * @param string|null $username or null when currently logged-in user should be used 177615f3bc49SGerrit Uitslag * @param bool $textonly true returns only plain text, true allows returning html 1777c0953023SGerrit Uitslag * @return string html or plain text(not escaped) of formatted user name 177860a396c8SGerrit Uitslag * 177960a396c8SGerrit Uitslag * @triggers COMMON_USER_LINK 178060a396c8SGerrit Uitslag */ 1781cd4635eeSGerrit Uitslagfunction userlink($username = null, $textonly = false) { 178260a396c8SGerrit Uitslag global $conf, $INFO; 1783e1d9dcc8SAndreas Gohr /** @var AuthPlugin $auth */ 178460a396c8SGerrit Uitslag global $auth; 178530f6ec4bSGerrit Uitslag /** @var Input $INPUT */ 178630f6ec4bSGerrit Uitslag global $INPUT; 178760a396c8SGerrit Uitslag 178860a396c8SGerrit Uitslag // prepare initial event data 178960a396c8SGerrit Uitslag $data = array( 179060a396c8SGerrit Uitslag 'username' => $username, // the unique user name 179160a396c8SGerrit Uitslag 'name' => '', 179260a396c8SGerrit Uitslag 'link' => array( //setting 'link' to false disables linking 179360a396c8SGerrit Uitslag 'target' => '', 179460a396c8SGerrit Uitslag 'pre' => '', 179560a396c8SGerrit Uitslag 'suf' => '', 179660a396c8SGerrit Uitslag 'style' => '', 179760a396c8SGerrit Uitslag 'more' => '', 179860a396c8SGerrit Uitslag 'url' => '', 179960a396c8SGerrit Uitslag 'title' => '', 180060a396c8SGerrit Uitslag 'class' => '' 180160a396c8SGerrit Uitslag ), 18024d5fc927SGerrit Uitslag 'userlink' => '', // formatted user name as will be returned 180315f3bc49SGerrit Uitslag 'textonly' => $textonly 180460a396c8SGerrit Uitslag ); 180562c8004eSGerrit Uitslag if($username === null) { 180630f6ec4bSGerrit Uitslag $data['username'] = $username = $INPUT->server->str('REMOTE_USER'); 180715f3bc49SGerrit Uitslag if($textonly){ 180815f3bc49SGerrit Uitslag $data['name'] = $INFO['userinfo']['name']. ' (' . $INPUT->server->str('REMOTE_USER') . ')'; 180915f3bc49SGerrit Uitslag }else { 181064159a61SAndreas Gohr $data['name'] = '<bdi>' . hsc($INFO['userinfo']['name']) . '</bdi> '. 181164159a61SAndreas Gohr '(<bdi>' . hsc($INPUT->server->str('REMOTE_USER')) . '</bdi>)'; 181260a396c8SGerrit Uitslag } 181315f3bc49SGerrit Uitslag } 181460a396c8SGerrit Uitslag 1815e1d9dcc8SAndreas Gohr $evt = new Event('COMMON_USER_LINK', $data); 181660a396c8SGerrit Uitslag if($evt->advise_before(true)) { 181760a396c8SGerrit Uitslag if(empty($data['name'])) { 181860a396c8SGerrit Uitslag if($auth) $info = $auth->getUserData($username); 181965833968SGerrit Uitslag if($conf['showuseras'] != 'loginname' && isset($info) && $info) { 1820dc58b6f4SAndy Webber switch($conf['showuseras']) { 1821dc58b6f4SAndy Webber case 'username': 18227f081821SGerrit Uitslag case 'username_link': 182315f3bc49SGerrit Uitslag $data['name'] = $textonly ? $info['name'] : hsc($info['name']); 182460a396c8SGerrit Uitslag break; 1825dc58b6f4SAndy Webber case 'email': 1826dc58b6f4SAndy Webber case 'email_link': 182760a396c8SGerrit Uitslag $data['name'] = obfuscate($info['mail']); 182860a396c8SGerrit Uitslag break; 1829dc58b6f4SAndy Webber } 183065833968SGerrit Uitslag } else { 183165833968SGerrit Uitslag $data['name'] = $textonly ? $data['username'] : hsc($data['username']); 183260a396c8SGerrit Uitslag } 183360a396c8SGerrit Uitslag } 18347f081821SGerrit Uitslag 18357f081821SGerrit Uitslag /** @var Doku_Renderer_xhtml $xhtml_renderer */ 18367f081821SGerrit Uitslag static $xhtml_renderer = null; 18377f081821SGerrit Uitslag 183815f3bc49SGerrit Uitslag if(!$data['textonly'] && empty($data['link']['url'])) { 18397f081821SGerrit Uitslag 18407f081821SGerrit Uitslag if(in_array($conf['showuseras'], array('email_link', 'username_link'))) { 184160a396c8SGerrit Uitslag if(!isset($info)) { 184260a396c8SGerrit Uitslag if($auth) $info = $auth->getUserData($username); 184360a396c8SGerrit Uitslag } 184460a396c8SGerrit Uitslag if(isset($info) && $info) { 18457f081821SGerrit Uitslag if($conf['showuseras'] == 'email_link') { 184660a396c8SGerrit Uitslag $data['link']['url'] = 'mailto:' . obfuscate($info['mail']); 1847dc58b6f4SAndy Webber } else { 18487f081821SGerrit Uitslag if(is_null($xhtml_renderer)) { 18497f081821SGerrit Uitslag $xhtml_renderer = p_get_renderer('xhtml'); 18507f081821SGerrit Uitslag } 18517f081821SGerrit Uitslag if(empty($xhtml_renderer->interwiki)) { 18527f081821SGerrit Uitslag $xhtml_renderer->interwiki = getInterwiki(); 18537f081821SGerrit Uitslag } 18547f081821SGerrit Uitslag $shortcut = 'user'; 1855533772e1SGerrit Uitslag $exists = null; 18566496c33fSGerrit Uitslag $data['link']['url'] = $xhtml_renderer->_resolveInterWiki($shortcut, $username, $exists); 18572a2a43c4SGerrit Uitslag $data['link']['class'] .= ' interwiki iw_user'; 18586496c33fSGerrit Uitslag if($exists !== null) { 18596496c33fSGerrit Uitslag if($exists) { 18606496c33fSGerrit Uitslag $data['link']['class'] .= ' wikilink1'; 18616496c33fSGerrit Uitslag } else { 18626496c33fSGerrit Uitslag $data['link']['class'] .= ' wikilink2'; 18636496c33fSGerrit Uitslag $data['link']['rel'] = 'nofollow'; 18646496c33fSGerrit Uitslag } 18656496c33fSGerrit Uitslag } 1866dc58b6f4SAndy Webber } 1867dc58b6f4SAndy Webber } else { 186815f3bc49SGerrit Uitslag $data['textonly'] = true; 1869dc58b6f4SAndy Webber } 187060a396c8SGerrit Uitslag 187160a396c8SGerrit Uitslag } else { 187215f3bc49SGerrit Uitslag $data['textonly'] = true; 187360a396c8SGerrit Uitslag } 187460a396c8SGerrit Uitslag } 187560a396c8SGerrit Uitslag 187615f3bc49SGerrit Uitslag if($data['textonly']) { 18774d5fc927SGerrit Uitslag $data['userlink'] = $data['name']; 187860a396c8SGerrit Uitslag } else { 187960a396c8SGerrit Uitslag $data['link']['name'] = $data['name']; 188060a396c8SGerrit Uitslag if(is_null($xhtml_renderer)) { 188160a396c8SGerrit Uitslag $xhtml_renderer = p_get_renderer('xhtml'); 188260a396c8SGerrit Uitslag } 18834d5fc927SGerrit Uitslag $data['userlink'] = $xhtml_renderer->_formatLink($data['link']); 188460a396c8SGerrit Uitslag } 188560a396c8SGerrit Uitslag } 188660a396c8SGerrit Uitslag $evt->advise_after(); 188760a396c8SGerrit Uitslag unset($evt); 188860a396c8SGerrit Uitslag 18894d5fc927SGerrit Uitslag return $data['userlink']; 1890066fee30SAndreas Gohr} 1891066fee30SAndreas Gohr 1892066fee30SAndreas Gohr/** 1893066fee30SAndreas Gohr * Returns the path to a image file for the currently chosen license. 1894066fee30SAndreas Gohr * When no image exists, returns an empty string 1895066fee30SAndreas Gohr * 1896066fee30SAndreas Gohr * @author Andreas Gohr <andi@splitbrain.org> 1897140cfbcdSGerrit Uitslag * 1898066fee30SAndreas Gohr * @param string $type - type of image 'badge' or 'button' 18993272d797SAndreas Gohr * @return string 1900066fee30SAndreas Gohr */ 1901066fee30SAndreas Gohrfunction license_img($type) { 1902066fee30SAndreas Gohr global $license; 1903066fee30SAndreas Gohr global $conf; 1904066fee30SAndreas Gohr if(!$conf['license']) return ''; 1905066fee30SAndreas Gohr if(!is_array($license[$conf['license']])) return ''; 1906066fee30SAndreas Gohr $try = array(); 1907066fee30SAndreas Gohr $try[] = 'lib/images/license/'.$type.'/'.$conf['license'].'.png'; 1908066fee30SAndreas Gohr $try[] = 'lib/images/license/'.$type.'/'.$conf['license'].'.gif'; 1909066fee30SAndreas Gohr if(substr($conf['license'], 0, 3) == 'cc-') { 1910066fee30SAndreas Gohr $try[] = 'lib/images/license/'.$type.'/cc.png'; 1911066fee30SAndreas Gohr } 1912066fee30SAndreas Gohr foreach($try as $src) { 191379e79377SAndreas Gohr if(file_exists(DOKU_INC.$src)) return $src; 1914066fee30SAndreas Gohr } 1915066fee30SAndreas Gohr return ''; 1916dc58b6f4SAndy Webber} 1917dc58b6f4SAndy Webber 191813c08e2fSMichael Klier/** 191913c08e2fSMichael Klier * Checks if the given amount of memory is available 192013c08e2fSMichael Klier * 192113c08e2fSMichael Klier * If the memory_get_usage() function is not available the 192213c08e2fSMichael Klier * function just assumes $bytes of already allocated memory 192313c08e2fSMichael Klier * 192413c08e2fSMichael Klier * @author Filip Oscadal <webmaster@illusionsoftworks.cz> 192513c08e2fSMichael Klier * @author Andreas Gohr <andi@splitbrain.org> 19263272d797SAndreas Gohr * 19273272d797SAndreas Gohr * @param int $mem Size of memory you want to allocate in bytes 1928140cfbcdSGerrit Uitslag * @param int $bytes already allocated memory (see above) 19293272d797SAndreas Gohr * @return bool 193013c08e2fSMichael Klier */ 193113c08e2fSMichael Klierfunction is_mem_available($mem, $bytes = 1048576) { 193213c08e2fSMichael Klier $limit = trim(ini_get('memory_limit')); 193313c08e2fSMichael Klier if(empty($limit)) return true; // no limit set! 1934985d6187SElenchus if($limit == -1) return true; // unlimited 193513c08e2fSMichael Klier 193613c08e2fSMichael Klier // parse limit to bytes 193713c08e2fSMichael Klier $limit = php_to_byte($limit); 193813c08e2fSMichael Klier 193913c08e2fSMichael Klier // get used memory if possible 194013c08e2fSMichael Klier if(function_exists('memory_get_usage')) { 194113c08e2fSMichael Klier $used = memory_get_usage(); 194249eb6e38SAndreas Gohr } else { 194349eb6e38SAndreas Gohr $used = $bytes; 194413c08e2fSMichael Klier } 194513c08e2fSMichael Klier 194613c08e2fSMichael Klier if($used + $mem > $limit) { 194713c08e2fSMichael Klier return false; 194813c08e2fSMichael Klier } 194913c08e2fSMichael Klier 195013c08e2fSMichael Klier return true; 195113c08e2fSMichael Klier} 195213c08e2fSMichael Klier 1953af2408d5SAndreas Gohr/** 1954af2408d5SAndreas Gohr * Send a HTTP redirect to the browser 1955af2408d5SAndreas Gohr * 1956af2408d5SAndreas Gohr * Works arround Microsoft IIS cookie sending bug. Exits the script. 1957af2408d5SAndreas Gohr * 1958af2408d5SAndreas Gohr * @link http://support.microsoft.com/kb/q176113/ 1959af2408d5SAndreas Gohr * @author Andreas Gohr <andi@splitbrain.org> 1960140cfbcdSGerrit Uitslag * 1961140cfbcdSGerrit Uitslag * @param string $url url being directed to 1962af2408d5SAndreas Gohr */ 1963af2408d5SAndreas Gohrfunction send_redirect($url) { 196498ca30d2SAndreas Gohr $url = stripctl($url); // defend against HTTP Response Splitting 196598ca30d2SAndreas Gohr 1966585bf44eSChristopher Smith /* @var Input $INPUT */ 1967585bf44eSChristopher Smith global $INPUT; 1968585bf44eSChristopher Smith 19690181f021SAndreas Gohr //are there any undisplayed messages? keep them in session for display 19700181f021SAndreas Gohr global $MSG; 19710181f021SAndreas Gohr if(isset($MSG) && count($MSG) && !defined('NOSESSION')) { 19720181f021SAndreas Gohr //reopen session, store data and close session again 19730181f021SAndreas Gohr @session_start(); 19740181f021SAndreas Gohr $_SESSION[DOKU_COOKIE]['msg'] = $MSG; 19750181f021SAndreas Gohr } 19760181f021SAndreas Gohr 1977d4869846SAndreas Gohr // always close the session 1978d4869846SAndreas Gohr session_write_close(); 1979d4869846SAndreas Gohr 1980af2408d5SAndreas Gohr // check if running on IIS < 6 with CGI-PHP 1981585bf44eSChristopher Smith if($INPUT->server->has('SERVER_SOFTWARE') && $INPUT->server->has('GATEWAY_INTERFACE') && 1982585bf44eSChristopher Smith (strpos($INPUT->server->str('GATEWAY_INTERFACE'), 'CGI') !== false) && 1983585bf44eSChristopher Smith (preg_match('|^Microsoft-IIS/(\d)\.\d$|', trim($INPUT->server->str('SERVER_SOFTWARE')), $matches)) && 19843272d797SAndreas Gohr $matches[1] < 6 19853272d797SAndreas Gohr ) { 1986af2408d5SAndreas Gohr header('Refresh: 0;url='.$url); 1987af2408d5SAndreas Gohr } else { 1988af2408d5SAndreas Gohr header('Location: '.$url); 1989af2408d5SAndreas Gohr } 199081781cb6SAndreas Gohr 1991572dc222SLarsDW223 // no exits during unit tests 199227c0c399SAndreas Gohr if(defined('DOKU_UNITTEST')) { 199327c0c399SAndreas Gohr // pass info about the redirect back to the test suite 199427c0c399SAndreas Gohr $testRequest = TestRequest::getRunning(); 199527c0c399SAndreas Gohr if($testRequest !== null) { 199627c0c399SAndreas Gohr $testRequest->addData('send_redirect', $url); 199727c0c399SAndreas Gohr } 1998572dc222SLarsDW223 return; 1999572dc222SLarsDW223 } 200027c0c399SAndreas Gohr 2001af2408d5SAndreas Gohr exit; 2002af2408d5SAndreas Gohr} 2003af2408d5SAndreas Gohr 20045b75cd1fSAdrian Lang/** 20055b75cd1fSAdrian Lang * Validate a value using a set of valid values 20065b75cd1fSAdrian Lang * 20075b75cd1fSAdrian Lang * This function checks whether a specified value is set and in the array 20085b75cd1fSAdrian Lang * $valid_values. If not, the function returns a default value or, if no 20095b75cd1fSAdrian Lang * default is specified, throws an exception. 20105b75cd1fSAdrian Lang * 20115b75cd1fSAdrian Lang * @param string $param The name of the parameter 20125b75cd1fSAdrian Lang * @param array $valid_values A set of valid values; Optionally a default may 20135b75cd1fSAdrian Lang * be marked by the key “default”. 20145b75cd1fSAdrian Lang * @param array $array The array containing the value (typically $_POST 20155b75cd1fSAdrian Lang * or $_GET) 20165b75cd1fSAdrian Lang * @param string $exc The text of the raised exception 20175b75cd1fSAdrian Lang * 20183272d797SAndreas Gohr * @throws Exception 20193272d797SAndreas Gohr * @return mixed 20205b75cd1fSAdrian Lang * @author Adrian Lang <lang@cosmocode.de> 20215b75cd1fSAdrian Lang */ 20225b75cd1fSAdrian Langfunction valid_input_set($param, $valid_values, $array, $exc = '') { 20235b75cd1fSAdrian Lang if(isset($array[$param]) && in_array($array[$param], $valid_values)) { 20245b75cd1fSAdrian Lang return $array[$param]; 20255b75cd1fSAdrian Lang } elseif(isset($valid_values['default'])) { 20265b75cd1fSAdrian Lang return $valid_values['default']; 20275b75cd1fSAdrian Lang } else { 20285b75cd1fSAdrian Lang throw new Exception($exc); 20295b75cd1fSAdrian Lang } 20305b75cd1fSAdrian Lang} 20315b75cd1fSAdrian Lang 203263703ba5SAndreas Gohr/** 203363703ba5SAndreas Gohr * Read a preference from the DokuWiki cookie 2034646a531aSChristopher Smith * (remembering both keys & values are urlencoded) 2035140cfbcdSGerrit Uitslag * 2036140cfbcdSGerrit Uitslag * @param string $pref preference key 2037b4b6c9a1SGerrit Uitslag * @param mixed $default value returned when preference not found 2038140cfbcdSGerrit Uitslag * @return string preference value 203963703ba5SAndreas Gohr */ 2040554a8c9fSAdrian Langfunction get_doku_pref($pref, $default) { 2041646a531aSChristopher Smith $enc_pref = urlencode($pref); 204206c9ee33SMarius van Witzenburg if(isset($_COOKIE['DOKU_PREFS']) && strpos($_COOKIE['DOKU_PREFS'], $enc_pref) !== false) { 2043554a8c9fSAdrian Lang $parts = explode('#', $_COOKIE['DOKU_PREFS']); 204463703ba5SAndreas Gohr $cnt = count($parts); 20451c3eca7dSPhy 20461c3eca7dSPhy // due to #2721 there might be duplicate entries, 20471c3eca7dSPhy // so we read from the end 20481c3eca7dSPhy for($i = $cnt-2; $i >= 0; $i -= 2) { 2049646a531aSChristopher Smith if($parts[$i] == $enc_pref) { 2050646a531aSChristopher Smith return urldecode($parts[$i + 1]); 2051554a8c9fSAdrian Lang } 2052554a8c9fSAdrian Lang } 2053554a8c9fSAdrian Lang } 2054554a8c9fSAdrian Lang return $default; 2055554a8c9fSAdrian Lang} 2056554a8c9fSAdrian Lang 20573c94d07bSAnika Henke/** 20583c94d07bSAnika Henke * Add a preference to the DokuWiki cookie 205936ec377eSChristopher Smith * (remembering $_COOKIE['DOKU_PREFS'] is urlencoded) 20603a970889SAnika Henke * Remove it by setting $val to false 2061140cfbcdSGerrit Uitslag * 2062140cfbcdSGerrit Uitslag * @param string $pref preference key 2063140cfbcdSGerrit Uitslag * @param string $val preference value 20643c94d07bSAnika Henke */ 20653c94d07bSAnika Henkefunction set_doku_pref($pref, $val) { 20663c94d07bSAnika Henke global $conf; 20673c94d07bSAnika Henke $orig = get_doku_pref($pref, false); 20683c94d07bSAnika Henke $cookieVal = ''; 20693c94d07bSAnika Henke 20701c3eca7dSPhy if($orig !== false && ($orig !== $val)) { 20713c94d07bSAnika Henke $parts = explode('#', $_COOKIE['DOKU_PREFS']); 20723c94d07bSAnika Henke $cnt = count($parts); 207336ec377eSChristopher Smith // urlencode $pref for the comparison 207436ec377eSChristopher Smith $enc_pref = rawurlencode($pref); 20751c3eca7dSPhy $seen = false; 20763c94d07bSAnika Henke for ($i = 0; $i < $cnt; $i += 2) { 207736ec377eSChristopher Smith if ($parts[$i] == $enc_pref) { 20781c3eca7dSPhy if (!$seen){ 20793a970889SAnika Henke if ($val !== false) { 208036ec377eSChristopher Smith $parts[$i + 1] = rawurlencode($val); 20813a970889SAnika Henke } else { 20823a970889SAnika Henke unset($parts[$i]); 20833a970889SAnika Henke unset($parts[$i + 1]); 20843a970889SAnika Henke } 20851c3eca7dSPhy $seen = true; 20861c3eca7dSPhy } else { 20871c3eca7dSPhy // no break because we want to remove duplicate entries 20881c3eca7dSPhy unset($parts[$i]); 20891c3eca7dSPhy unset($parts[$i + 1]); 20901c3eca7dSPhy } 20913c94d07bSAnika Henke } 20923c94d07bSAnika Henke } 20933c94d07bSAnika Henke $cookieVal = implode('#', $parts); 20941c3eca7dSPhy } else if ($orig === false && $val !== false) { 209564159a61SAndreas Gohr $cookieVal = ($_COOKIE['DOKU_PREFS'] ? $_COOKIE['DOKU_PREFS'] . '#' : '') . 209664159a61SAndreas Gohr rawurlencode($pref) . '#' . rawurlencode($val); 20973c94d07bSAnika Henke } 20983c94d07bSAnika Henke 209975e4dd8aSGerrit Uitslag $cookieDir = empty($conf['cookiedir']) ? DOKU_REL : $conf['cookiedir']; 21005833995aSPhy if(defined('DOKU_UNITTEST')) { 21015833995aSPhy $_COOKIE['DOKU_PREFS'] = $cookieVal; 21025833995aSPhy }else{ 210375e4dd8aSGerrit Uitslag setcookie('DOKU_PREFS', $cookieVal, time()+365*24*3600, $cookieDir, '', ($conf['securecookie'] && is_ssl())); 21043c94d07bSAnika Henke } 21053c94d07bSAnika Henke} 21063c94d07bSAnika Henke 2107f8fb2d18SAndreas Gohr/** 2108f8fb2d18SAndreas Gohr * Strips source mapping declarations from given text #601 2109f8fb2d18SAndreas Gohr * 211042ea7f44SGerrit Uitslag * @param string &$text reference to the CSS or JavaScript code to clean 2111f8fb2d18SAndreas Gohr */ 2112f8fb2d18SAndreas Gohrfunction stripsourcemaps(&$text){ 2113f8fb2d18SAndreas Gohr $text = preg_replace('/^(\/\/|\/\*)[@#]\s+sourceMappingURL=.*?(\*\/)?$/im', '\\1\\2', $text); 2114f8fb2d18SAndreas Gohr} 2115f8fb2d18SAndreas Gohr 21163c27983bSAndreas Gohr/** 211771de5572SAndreas Gohr * Returns the contents of a given SVG file for embedding 21183c27983bSAndreas Gohr * 21193c27983bSAndreas Gohr * Inlining SVGs saves on HTTP requests and more importantly allows for styling them through 21203c27983bSAndreas Gohr * CSS. However it should used with small SVGs only. The $maxsize setting ensures only small 21213c27983bSAndreas Gohr * files are embedded. 21223c27983bSAndreas Gohr * 212371de5572SAndreas Gohr * This strips unneeded headers, comments and newline. The result is not a vaild standalone SVG! 212471de5572SAndreas Gohr * 21253c27983bSAndreas Gohr * @param string $file full path to the SVG file 21263c27983bSAndreas Gohr * @param int $maxsize maximum allowed size for the SVG to be embedded 212771de5572SAndreas Gohr * @return string|false the SVG content, false if the file couldn't be loaded 21283c27983bSAndreas Gohr */ 21294cd2074fSAndreas Gohrfunction inlineSVG($file, $maxsize = 2048) { 21303c27983bSAndreas Gohr $file = trim($file); 21313c27983bSAndreas Gohr if($file === '') return false; 21323c27983bSAndreas Gohr if(!file_exists($file)) return false; 21333c27983bSAndreas Gohr if(filesize($file) > $maxsize) return false; 21343c27983bSAndreas Gohr if(!is_readable($file)) return false; 21353c27983bSAndreas Gohr $content = file_get_contents($file); 21360849fa88SAndreas Gohr $content = preg_replace('/<!--.*?(-->)/s','', $content); // comments 21370849fa88SAndreas Gohr $content = preg_replace('/<\?xml .*?\?>/i', '', $content); // xml header 21380849fa88SAndreas Gohr $content = preg_replace('/<!DOCTYPE .*?>/i', '', $content); // doc type 21390849fa88SAndreas Gohr $content = preg_replace('/>\s+</s', '><', $content); // newlines between tags 21403c27983bSAndreas Gohr $content = trim($content); 21413c27983bSAndreas Gohr if(substr($content, 0, 5) !== '<svg ') return false; 214271de5572SAndreas Gohr return $content; 21433c27983bSAndreas Gohr} 21443c27983bSAndreas Gohr 2145e3776c06SMichael Hamann//Setup VIM: ex: et ts=2 : 2146