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 9*fa8adffeSAndreas Gohrif(!defined('DOKU_INC')) die('meh.'); 10ed7b5f09Sandirequire_once(DOKU_INC.'inc/io.php'); 117d559c7fSBen Coburnrequire_once(DOKU_INC.'inc/changelog.php'); 12ed7b5f09Sandirequire_once(DOKU_INC.'inc/utf8.php'); 13ed7b5f09Sandirequire_once(DOKU_INC.'inc/mail.php'); 14c112d578Sandirequire_once(DOKU_INC.'inc/parserutils.php'); 15c29dc6e4SAndreas Gohrrequire_once(DOKU_INC.'inc/infoutils.php'); 16f3f0262cSandi 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); 23b6912aeaSAndreas Gohr 24b6912aeaSAndreas Gohr/** 25d5197206Schris * Wrapper around htmlspecialchars() 26d5197206Schris * 27d5197206Schris * @author Andreas Gohr <andi@splitbrain.org> 28d5197206Schris * @see htmlspecialchars() 29d5197206Schris */ 30d5197206Schrisfunction hsc($string){ 31d5197206Schris return htmlspecialchars($string, ENT_QUOTES, 'UTF-8'); 32d5197206Schris} 33d5197206Schris 34d5197206Schris/** 35d5197206Schris * print a newline terminated string 36d5197206Schris * 37d5197206Schris * You can give an indention as optional parameter 38d5197206Schris * 39d5197206Schris * @author Andreas Gohr <andi@splitbrain.org> 40d5197206Schris */ 4125ec097bSChris Smithfunction ptln($string,$indent=0){ 4225ec097bSChris Smith echo str_repeat(' ', $indent)."$string\n"; 4302b0b681SAndreas Gohr} 4402b0b681SAndreas Gohr 4502b0b681SAndreas Gohr/** 4602b0b681SAndreas Gohr * strips control characters (<32) from the given string 4702b0b681SAndreas Gohr * 4802b0b681SAndreas Gohr * @author Andreas Gohr <andi@splitbrain.org> 4902b0b681SAndreas Gohr */ 5002b0b681SAndreas Gohrfunction stripctl($string){ 5102b0b681SAndreas Gohr return preg_replace('/[\x00-\x1F]+/s','',$string); 52d5197206Schris} 53d5197206Schris 54d5197206Schris/** 55634d7150SAndreas Gohr * Return a secret token to be used for CSRF attack prevention 56634d7150SAndreas Gohr * 57634d7150SAndreas Gohr * @author Andreas Gohr <andi@splitbrain.org> 58634d7150SAndreas Gohr * @link http://en.wikipedia.org/wiki/Cross-site_request_forgery 59634d7150SAndreas Gohr * @link http://christ1an.blogspot.com/2007/04/preventing-csrf-efficiently.html 60634d7150SAndreas Gohr * @return string 61634d7150SAndreas Gohr */ 62634d7150SAndreas Gohrfunction getSecurityToken(){ 63634d7150SAndreas Gohr return md5(auth_cookiesalt().session_id()); 64634d7150SAndreas Gohr} 65634d7150SAndreas Gohr 66634d7150SAndreas Gohr/** 67634d7150SAndreas Gohr * Check the secret CSRF token 68634d7150SAndreas Gohr */ 69634d7150SAndreas Gohrfunction checkSecurityToken($token=null){ 70634d7150SAndreas Gohr if(is_null($token)) $token = $_REQUEST['sectok']; 71634d7150SAndreas Gohr if(getSecurityToken() != $token){ 72634d7150SAndreas Gohr msg('Security Token did not match. Possible CSRF attack.',-1); 73634d7150SAndreas Gohr return false; 74634d7150SAndreas Gohr } 75634d7150SAndreas Gohr return true; 76634d7150SAndreas Gohr} 77634d7150SAndreas Gohr 78634d7150SAndreas Gohr/** 79634d7150SAndreas Gohr * Print a hidden form field with a secret CSRF token 80634d7150SAndreas Gohr * 81634d7150SAndreas Gohr * @author Andreas Gohr <andi@splitbrain.org> 82634d7150SAndreas Gohr */ 83634d7150SAndreas Gohrfunction formSecurityToken($print=true){ 842404d0edSAnika Henke $ret = '<div class="no"><input type="hidden" name="sectok" value="'.getSecurityToken().'" /></div>'."\n"; 85634d7150SAndreas Gohr if($print){ 86634d7150SAndreas Gohr echo $ret; 87634d7150SAndreas Gohr }else{ 88634d7150SAndreas Gohr return $ret; 89634d7150SAndreas Gohr } 90634d7150SAndreas Gohr} 91634d7150SAndreas Gohr 92634d7150SAndreas Gohr/** 9315fae107Sandi * Return info about the current document as associative 94f3f0262cSandi * array. 9515fae107Sandi * 9615fae107Sandi * @author Andreas Gohr <andi@splitbrain.org> 97f3f0262cSandi */ 98f3f0262cSandifunction pageinfo(){ 99f3f0262cSandi global $ID; 100f3f0262cSandi global $REV; 1017b3a6803SAndreas Gohr global $RANGE; 102f3f0262cSandi global $USERINFO; 103f3f0262cSandi global $conf; 1047b3a6803SAndreas Gohr global $lang; 105f3f0262cSandi 1066afe8dcaSchris // include ID & REV not redundant, as some parts of DokuWiki may temporarily change $ID, e.g. p_wiki_xhtml 1076afe8dcaSchris // FIXME ... perhaps it would be better to ensure the temporary changes weren't necessary 1086afe8dcaSchris $info['id'] = $ID; 1096afe8dcaSchris $info['rev'] = $REV; 1106afe8dcaSchris 111f3f0262cSandi if($_SERVER['REMOTE_USER']){ 112f3f0262cSandi $info['userinfo'] = $USERINFO; 113f3f0262cSandi $info['perm'] = auth_quickaclcheck($ID); 11452b0dd67SGuy Brand $info['subscribed'] = is_subscribed($ID,$_SERVER['REMOTE_USER'],false); 11552b0dd67SGuy Brand $info['subscribedns'] = is_subscribed($ID,$_SERVER['REMOTE_USER'],true); 116ee4c4a1bSAndreas Gohr $info['client'] = $_SERVER['REMOTE_USER']; 11717ee7f66SAndreas Gohr 118f8cc712eSAndreas Gohr // set info about manager/admin status 119f8cc712eSAndreas Gohr $info['isadmin'] = false; 120f8cc712eSAndreas Gohr $info['ismanager'] = false; 121f8cc712eSAndreas Gohr if($info['perm'] == AUTH_ADMIN){ 122f8cc712eSAndreas Gohr $info['isadmin'] = true; 123f8cc712eSAndreas Gohr $info['ismanager'] = true; 124f8cc712eSAndreas Gohr }elseif(auth_ismanager()){ 125f8cc712eSAndreas Gohr $info['ismanager'] = true; 126f8cc712eSAndreas Gohr } 127f8cc712eSAndreas Gohr 12817ee7f66SAndreas Gohr // if some outside auth were used only REMOTE_USER is set 12917ee7f66SAndreas Gohr if(!$info['userinfo']['name']){ 13017ee7f66SAndreas Gohr $info['userinfo']['name'] = $_SERVER['REMOTE_USER']; 13117ee7f66SAndreas Gohr } 132ee4c4a1bSAndreas Gohr 133f3f0262cSandi }else{ 134f3f0262cSandi $info['perm'] = auth_aclcheck($ID,'',null); 1351380fc45SAndreas Gohr $info['subscribed'] = false; 136ee4c4a1bSAndreas Gohr $info['client'] = clientIP(true); 137f3f0262cSandi } 138f3f0262cSandi 139f3f0262cSandi $info['namespace'] = getNS($ID); 140f3f0262cSandi $info['locked'] = checklock($ID); 14100976812SAndreas Gohr $info['filepath'] = fullpath(wikiFN($ID)); 1422ca9d91cSBen Coburn $info['exists'] = @file_exists($info['filepath']); 1432ca9d91cSBen Coburn if($REV){ 1442ca9d91cSBen Coburn //check if current revision was meant 1452ca9d91cSBen Coburn if($info['exists'] && (@filemtime($info['filepath'])==$REV)){ 1462ca9d91cSBen Coburn $REV = ''; 1477b3a6803SAndreas Gohr }elseif($RANGE){ 1487b3a6803SAndreas Gohr //section editing does not work with old revisions! 1497b3a6803SAndreas Gohr $REV = ''; 1507b3a6803SAndreas Gohr $RANGE = ''; 1517b3a6803SAndreas Gohr msg($lang['nosecedit'],0); 1522ca9d91cSBen Coburn }else{ 1532ca9d91cSBen Coburn //really use old revision 15400976812SAndreas Gohr $info['filepath'] = fullpath(wikiFN($ID,$REV)); 155f3f0262cSandi $info['exists'] = @file_exists($info['filepath']); 156f3f0262cSandi } 157f3f0262cSandi } 158c112d578Sandi $info['rev'] = $REV; 159f3f0262cSandi if($info['exists']){ 160f3f0262cSandi $info['writable'] = (is_writable($info['filepath']) && 161f3f0262cSandi ($info['perm'] >= AUTH_EDIT)); 162f3f0262cSandi }else{ 163f3f0262cSandi $info['writable'] = ($info['perm'] >= AUTH_CREATE); 164f3f0262cSandi } 165f3f0262cSandi $info['editable'] = ($info['writable'] && empty($info['lock'])); 166f3f0262cSandi $info['lastmod'] = @filemtime($info['filepath']); 167f3f0262cSandi 16871726d78SBen Coburn //load page meta data 16971726d78SBen Coburn $info['meta'] = p_get_metadata($ID); 17071726d78SBen Coburn 171652610a2Sandi //who's the editor 172652610a2Sandi if($REV){ 17371726d78SBen Coburn $revinfo = getRevisionInfo($ID, $REV, 1024); 174652610a2Sandi }else{ 175aa27cf05SAndreas Gohr if (is_array($info['meta']['last_change'])) { 176aa27cf05SAndreas Gohr $revinfo = $info['meta']['last_change']; 177aa27cf05SAndreas Gohr } else { 178cd00a034SBen Coburn $revinfo = getRevisionInfo($ID, $info['lastmod'], 1024); 179cd00a034SBen Coburn // cache most recent changelog line in metadata if missing and still valid 180cd00a034SBen Coburn if ($revinfo!==false) { 181cd00a034SBen Coburn $info['meta']['last_change'] = $revinfo; 182cd00a034SBen Coburn p_set_metadata($ID, array('last_change' => $revinfo)); 183cd00a034SBen Coburn } 184cd00a034SBen Coburn } 185cd00a034SBen Coburn } 186cd00a034SBen Coburn //and check for an external edit 187cd00a034SBen Coburn if($revinfo!==false && $revinfo['date']!=$info['lastmod']){ 188cd00a034SBen Coburn // cached changelog line no longer valid 189cd00a034SBen Coburn $revinfo = false; 190cd00a034SBen Coburn $info['meta']['last_change'] = $revinfo; 191cd00a034SBen Coburn p_set_metadata($ID, array('last_change' => $revinfo)); 192652610a2Sandi } 193bb4866bdSchris 194652610a2Sandi $info['ip'] = $revinfo['ip']; 195652610a2Sandi $info['user'] = $revinfo['user']; 196652610a2Sandi $info['sum'] = $revinfo['sum']; 19771726d78SBen Coburn // See also $INFO['meta']['last_change'] which is the most recent log line for page $ID. 198ebf1501fSBen Coburn // Use $INFO['meta']['last_change']['type']===DOKU_CHANGE_TYPE_MINOR_EDIT in place of $info['minor']. 19959f257aeSchris 20088f522e9Sandi if($revinfo['user']){ 20188f522e9Sandi $info['editor'] = $revinfo['user']; 20288f522e9Sandi }else{ 20388f522e9Sandi $info['editor'] = $revinfo['ip']; 20488f522e9Sandi } 205652610a2Sandi 206ee4c4a1bSAndreas Gohr // draft 207ee4c4a1bSAndreas Gohr $draft = getCacheName($info['client'].$ID,'.draft'); 208ee4c4a1bSAndreas Gohr if(@file_exists($draft)){ 209ee4c4a1bSAndreas Gohr if(@filemtime($draft) < @filemtime(wikiFN($ID))){ 210ee4c4a1bSAndreas Gohr // remove stale draft 211ee4c4a1bSAndreas Gohr @unlink($draft); 212ee4c4a1bSAndreas Gohr }else{ 213ee4c4a1bSAndreas Gohr $info['draft'] = $draft; 214ee4c4a1bSAndreas Gohr } 215ee4c4a1bSAndreas Gohr } 216ee4c4a1bSAndreas Gohr 2171c548ebeSAndreas Gohr // mobile detection 2181c548ebeSAndreas Gohr $info['ismobile'] = clientismobile(); 2191c548ebeSAndreas Gohr 220f3f0262cSandi return $info; 221f3f0262cSandi} 222f3f0262cSandi 223f3f0262cSandi/** 2242684e50aSAndreas Gohr * Build an string of URL parameters 2252684e50aSAndreas Gohr * 2262684e50aSAndreas Gohr * @author Andreas Gohr 2272684e50aSAndreas Gohr */ 228b174aeaeSchrisfunction buildURLparams($params, $sep='&'){ 2292684e50aSAndreas Gohr $url = ''; 2302684e50aSAndreas Gohr $amp = false; 2312684e50aSAndreas Gohr foreach($params as $key => $val){ 232b174aeaeSchris if($amp) $url .= $sep; 2332684e50aSAndreas Gohr 2342684e50aSAndreas Gohr $url .= $key.'='; 2353a50618cSgweissbach $url .= rawurlencode((string)$val); 2362684e50aSAndreas Gohr $amp = true; 2372684e50aSAndreas Gohr } 2382684e50aSAndreas Gohr return $url; 2392684e50aSAndreas Gohr} 2402684e50aSAndreas Gohr 2412684e50aSAndreas Gohr/** 2422684e50aSAndreas Gohr * Build an string of html tag attributes 2432684e50aSAndreas Gohr * 2447bff22c0SAndreas Gohr * Skips keys starting with '_', values get HTML encoded 2457bff22c0SAndreas Gohr * 2462684e50aSAndreas Gohr * @author Andreas Gohr 2472684e50aSAndreas Gohr */ 2484b030ce7SAndreas Gohrfunction buildAttributes($params,$skipempty=false){ 2492684e50aSAndreas Gohr $url = ''; 2502684e50aSAndreas Gohr foreach($params as $key => $val){ 2517bff22c0SAndreas Gohr if($key{0} == '_') continue; 252b1c94f1dSAndreas Gohr if($val === '' && $skipempty) continue; 2537bff22c0SAndreas Gohr 2542684e50aSAndreas Gohr $url .= $key.'="'; 2552684e50aSAndreas Gohr $url .= htmlspecialchars ($val); 2562684e50aSAndreas Gohr $url .= '" '; 2572684e50aSAndreas Gohr } 2582684e50aSAndreas Gohr return $url; 2592684e50aSAndreas Gohr} 2602684e50aSAndreas Gohr 2612684e50aSAndreas Gohr 2622684e50aSAndreas Gohr/** 26315fae107Sandi * This builds the breadcrumb trail and returns it as array 26415fae107Sandi * 26515fae107Sandi * @author Andreas Gohr <andi@splitbrain.org> 266f3f0262cSandi */ 267f3f0262cSandifunction breadcrumbs(){ 2688746e727Sandi // we prepare the breadcrumbs early for quick session closing 2698746e727Sandi static $crumbs = null; 2708746e727Sandi if($crumbs != null) return $crumbs; 2718746e727Sandi 272f3f0262cSandi global $ID; 273f3f0262cSandi global $ACT; 274f3f0262cSandi global $conf; 275e71ce681SAndreas Gohr $crumbs = $_SESSION[DOKU_COOKIE]['bc']; 276f3f0262cSandi 277f3f0262cSandi //first visit? 278f3f0262cSandi if (!is_array($crumbs)){ 279f3f0262cSandi $crumbs = array(); 280f3f0262cSandi } 281f3f0262cSandi //we only save on show and existing wiki documents 282a77f5846Sjan $file = wikiFN($ID); 283a77f5846Sjan if($ACT != 'show' || !@file_exists($file)){ 284e71ce681SAndreas Gohr $_SESSION[DOKU_COOKIE]['bc'] = $crumbs; 285f3f0262cSandi return $crumbs; 286f3f0262cSandi } 287a77f5846Sjan 288a77f5846Sjan // page names 2891a84a0f3SAnika Henke $name = noNSorNS($ID); 290fe9ec250SChris Smith if (useHeading('navigation')) { 291a77f5846Sjan // get page title 292955cd091SChris Smith $title = p_get_first_heading($ID,true); 293a77f5846Sjan if ($title) { 294a77f5846Sjan $name = $title; 295a77f5846Sjan } 296a77f5846Sjan } 297a77f5846Sjan 298f3f0262cSandi //remove ID from array 299a77f5846Sjan if (isset($crumbs[$ID])) { 300a77f5846Sjan unset($crumbs[$ID]); 301f3f0262cSandi } 302f3f0262cSandi 303f3f0262cSandi //add to array 304a77f5846Sjan $crumbs[$ID] = $name; 305f3f0262cSandi //reduce size 306f3f0262cSandi while(count($crumbs) > $conf['breadcrumbs']){ 307f3f0262cSandi array_shift($crumbs); 308f3f0262cSandi } 309f3f0262cSandi //save to session 310e71ce681SAndreas Gohr $_SESSION[DOKU_COOKIE]['bc'] = $crumbs; 311f3f0262cSandi return $crumbs; 312f3f0262cSandi} 313f3f0262cSandi 314f3f0262cSandi/** 31515fae107Sandi * Filter for page IDs 31615fae107Sandi * 317f3f0262cSandi * This is run on a ID before it is outputted somewhere 318f3f0262cSandi * currently used to replace the colon with something else 319f3f0262cSandi * on Windows systems and to have proper URL encoding 32015fae107Sandi * 32149c713a3Sandi * Urlencoding is ommitted when the second parameter is false 32249c713a3Sandi * 32315fae107Sandi * @author Andreas Gohr <andi@splitbrain.org> 324f3f0262cSandi */ 32549c713a3Sandifunction idfilter($id,$ue=true){ 326f3f0262cSandi global $conf; 327f3f0262cSandi if ($conf['useslash'] && $conf['userewrite']){ 328f3f0262cSandi $id = strtr($id,':','/'); 329f3f0262cSandi }elseif (strtoupper(substr(PHP_OS, 0, 3)) === 'WIN' && 330f3f0262cSandi $conf['userewrite']) { 331f3f0262cSandi $id = strtr($id,':',';'); 332f3f0262cSandi } 33349c713a3Sandi if($ue){ 334b6c6979fSAndreas Gohr $id = rawurlencode($id); 335f3f0262cSandi $id = str_replace('%3A',':',$id); //keep as colon 336f3f0262cSandi $id = str_replace('%2F','/',$id); //keep as slash 33749c713a3Sandi } 338f3f0262cSandi return $id; 339f3f0262cSandi} 340f3f0262cSandi 341f3f0262cSandi/** 342ed7b5f09Sandi * This builds a link to a wikipage 34315fae107Sandi * 3446c7843b5Sandi * It handles URL rewriting and adds additional parameter if 3456c7843b5Sandi * given in $more 3466c7843b5Sandi * 34715fae107Sandi * @author Andreas Gohr <andi@splitbrain.org> 348f3f0262cSandi */ 349b174aeaeSchrisfunction wl($id='',$more='',$abs=false,$sep='&'){ 350f3f0262cSandi global $conf; 3516de3759aSAndreas Gohr if(is_array($more)){ 352b174aeaeSchris $more = buildURLparams($more,$sep); 3536de3759aSAndreas Gohr }else{ 354b174aeaeSchris $more = str_replace(',',$sep,$more); 3556de3759aSAndreas Gohr } 356f3f0262cSandi 357f3f0262cSandi $id = idfilter($id); 358ed7b5f09Sandi if($abs){ 359ed7b5f09Sandi $xlink = DOKU_URL; 360ed7b5f09Sandi }else{ 361ed7b5f09Sandi $xlink = DOKU_BASE; 362ed7b5f09Sandi } 363f3f0262cSandi 3646c7843b5Sandi if($conf['userewrite'] == 2){ 3656c7843b5Sandi $xlink .= DOKU_SCRIPT.'/'.$id; 3666c7843b5Sandi if($more) $xlink .= '?'.$more; 3676c7843b5Sandi }elseif($conf['userewrite']){ 368f3f0262cSandi $xlink .= $id; 369f3f0262cSandi if($more) $xlink .= '?'.$more; 370bce3726dSAndreas Gohr }elseif($id){ 3716c7843b5Sandi $xlink .= DOKU_SCRIPT.'?id='.$id; 372b174aeaeSchris if($more) $xlink .= $sep.$more; 373bce3726dSAndreas Gohr }else{ 374bce3726dSAndreas Gohr $xlink .= DOKU_SCRIPT; 375bce3726dSAndreas Gohr if($more) $xlink .= '?'.$more; 376f3f0262cSandi } 377f3f0262cSandi 378f3f0262cSandi return $xlink; 379f3f0262cSandi} 380f3f0262cSandi 381f3f0262cSandi/** 382f5c2808fSBen Coburn * This builds a link to an alternate page format 383f5c2808fSBen Coburn * 384f5c2808fSBen Coburn * Handles URL rewriting if enabled. Follows the style of wl(). 385f5c2808fSBen Coburn * 386f5c2808fSBen Coburn * @author Ben Coburn <btcoburn@silicodon.net> 387f5c2808fSBen Coburn */ 388f5c2808fSBen Coburnfunction exportlink($id='',$format='raw',$more='',$abs=false,$sep='&'){ 389f5c2808fSBen Coburn global $conf; 390f5c2808fSBen Coburn if(is_array($more)){ 391f5c2808fSBen Coburn $more = buildURLparams($more,$sep); 392f5c2808fSBen Coburn }else{ 393f5c2808fSBen Coburn $more = str_replace(',',$sep,$more); 394f5c2808fSBen Coburn } 395f5c2808fSBen Coburn 396f5c2808fSBen Coburn $format = rawurlencode($format); 397f5c2808fSBen Coburn $id = idfilter($id); 398f5c2808fSBen Coburn if($abs){ 399f5c2808fSBen Coburn $xlink = DOKU_URL; 400f5c2808fSBen Coburn }else{ 401f5c2808fSBen Coburn $xlink = DOKU_BASE; 402f5c2808fSBen Coburn } 403f5c2808fSBen Coburn 404f5c2808fSBen Coburn if($conf['userewrite'] == 2){ 405f5c2808fSBen Coburn $xlink .= DOKU_SCRIPT.'/'.$id.'?do=export_'.$format; 406f5c2808fSBen Coburn if($more) $xlink .= $sep.$more; 407f5c2808fSBen Coburn }elseif($conf['userewrite'] == 1){ 408f5c2808fSBen Coburn $xlink .= '_export/'.$format.'/'.$id; 409f5c2808fSBen Coburn if($more) $xlink .= '?'.$more; 410f5c2808fSBen Coburn }else{ 411f5c2808fSBen Coburn $xlink .= DOKU_SCRIPT.'?do=export_'.$format.$sep.'id='.$id; 412f5c2808fSBen Coburn if($more) $xlink .= $sep.$more; 413f5c2808fSBen Coburn } 414f5c2808fSBen Coburn 415f5c2808fSBen Coburn return $xlink; 416f5c2808fSBen Coburn} 417f5c2808fSBen Coburn 418f5c2808fSBen Coburn/** 4196de3759aSAndreas Gohr * Build a link to a media file 4206de3759aSAndreas Gohr * 4216de3759aSAndreas Gohr * Will return a link to the detail page if $direct is false 4228c08db0aSAndreas Gohr * 4238c08db0aSAndreas Gohr * The $more parameter should always be given as array, the function then 4248c08db0aSAndreas Gohr * will strip default parameters to produce even cleaner URLs 4258c08db0aSAndreas Gohr * 4268c08db0aSAndreas Gohr * @param string $id - the media file id or URL 4278c08db0aSAndreas Gohr * @param mixed $more - string or array with additional parameters 4288c08db0aSAndreas Gohr * @param boolean $direct - link to detail page if false 4298c08db0aSAndreas Gohr * @param string $sep - URL parameter separator 4308c08db0aSAndreas Gohr * @param boolean $abs - Create an absolute URL 4316de3759aSAndreas Gohr */ 43255b2b31bSAndreas Gohrfunction ml($id='',$more='',$direct=true,$sep='&',$abs=false){ 4336de3759aSAndreas Gohr global $conf; 4346de3759aSAndreas Gohr if(is_array($more)){ 4358c08db0aSAndreas Gohr // strip defaults for shorter URLs 4368c08db0aSAndreas Gohr if(isset($more['cache']) && $more['cache'] == 'cache') unset($more['cache']); 4378c08db0aSAndreas Gohr if(!$more['w']) unset($more['w']); 4388c08db0aSAndreas Gohr if(!$more['h']) unset($more['h']); 4398c08db0aSAndreas Gohr if(isset($more['id']) && $direct) unset($more['id']); 440b174aeaeSchris $more = buildURLparams($more,$sep); 4416de3759aSAndreas Gohr }else{ 4428c08db0aSAndreas Gohr $more = str_replace('cache=cache','',$more); //skip default 4438c08db0aSAndreas Gohr $more = str_replace(',,',',',$more); 444b174aeaeSchris $more = str_replace(',',$sep,$more); 4456de3759aSAndreas Gohr } 4466de3759aSAndreas Gohr 44755b2b31bSAndreas Gohr if($abs){ 44855b2b31bSAndreas Gohr $xlink = DOKU_URL; 44955b2b31bSAndreas Gohr }else{ 4506de3759aSAndreas Gohr $xlink = DOKU_BASE; 45155b2b31bSAndreas Gohr } 4526de3759aSAndreas Gohr 4536de3759aSAndreas Gohr // external URLs are always direct without rewriting 4546de3759aSAndreas Gohr if(preg_match('#^(https?|ftp)://#i',$id)){ 4556de3759aSAndreas Gohr $xlink .= 'lib/exe/fetch.php'; 4566de3759aSAndreas Gohr if($more){ 4576de3759aSAndreas Gohr $xlink .= '?'.$more; 458b174aeaeSchris $xlink .= $sep.'media='.rawurlencode($id); 4596de3759aSAndreas Gohr }else{ 460b6c6979fSAndreas Gohr $xlink .= '?media='.rawurlencode($id); 4616de3759aSAndreas Gohr } 4626de3759aSAndreas Gohr return $xlink; 4636de3759aSAndreas Gohr } 4646de3759aSAndreas Gohr 4656de3759aSAndreas Gohr $id = idfilter($id); 4666de3759aSAndreas Gohr 4676de3759aSAndreas Gohr // decide on scriptname 4686de3759aSAndreas Gohr if($direct){ 4696de3759aSAndreas Gohr if($conf['userewrite'] == 1){ 4706de3759aSAndreas Gohr $script = '_media'; 4716de3759aSAndreas Gohr }else{ 4726de3759aSAndreas Gohr $script = 'lib/exe/fetch.php'; 4736de3759aSAndreas Gohr } 4746de3759aSAndreas Gohr }else{ 4756de3759aSAndreas Gohr if($conf['userewrite'] == 1){ 4766de3759aSAndreas Gohr $script = '_detail'; 4776de3759aSAndreas Gohr }else{ 4786de3759aSAndreas Gohr $script = 'lib/exe/detail.php'; 4796de3759aSAndreas Gohr } 4806de3759aSAndreas Gohr } 4816de3759aSAndreas Gohr 4826de3759aSAndreas Gohr // build URL based on rewrite mode 4836de3759aSAndreas Gohr if($conf['userewrite']){ 4846de3759aSAndreas Gohr $xlink .= $script.'/'.$id; 4856de3759aSAndreas Gohr if($more) $xlink .= '?'.$more; 4866de3759aSAndreas Gohr }else{ 4876de3759aSAndreas Gohr if($more){ 488a99d3236SEsther Brunner $xlink .= $script.'?'.$more; 489b174aeaeSchris $xlink .= $sep.'media='.$id; 4906de3759aSAndreas Gohr }else{ 491a99d3236SEsther Brunner $xlink .= $script.'?media='.$id; 4926de3759aSAndreas Gohr } 4936de3759aSAndreas Gohr } 4946de3759aSAndreas Gohr 4956de3759aSAndreas Gohr return $xlink; 4966de3759aSAndreas Gohr} 4976de3759aSAndreas Gohr 4986de3759aSAndreas Gohr 4996de3759aSAndreas Gohr 5006de3759aSAndreas Gohr/** 501f3f0262cSandi * Just builds a link to a script 50215fae107Sandi * 503ed7b5f09Sandi * @todo maybe obsolete 50415fae107Sandi * @author Andreas Gohr <andi@splitbrain.org> 505f3f0262cSandi */ 506f3f0262cSandifunction script($script='doku.php'){ 507ed7b5f09Sandi# $link = getBaseURL(); 508ed7b5f09Sandi# $link .= $script; 509ed7b5f09Sandi# return $link; 510ed7b5f09Sandi return DOKU_BASE.DOKU_SCRIPT; 511f3f0262cSandi} 512f3f0262cSandi 513f3f0262cSandi/** 51415fae107Sandi * Spamcheck against wordlist 51515fae107Sandi * 516f3f0262cSandi * Checks the wikitext against a list of blocked expressions 517f3f0262cSandi * returns true if the text contains any bad words 51815fae107Sandi * 519e403cc58SMichael Klier * Triggers COMMON_WORDBLOCK_BLOCKED 520e403cc58SMichael Klier * 521e403cc58SMichael Klier * Action Plugins can use this event to inspect the blocked data 522e403cc58SMichael Klier * and gain information about the user who was blocked. 523e403cc58SMichael Klier * 524e403cc58SMichael Klier * Event data: 525e403cc58SMichael Klier * data['matches'] - array of matches 526e403cc58SMichael Klier * data['userinfo'] - information about the blocked user 527e403cc58SMichael Klier * [ip] - ip address 528e403cc58SMichael Klier * [user] - username (if logged in) 529e403cc58SMichael Klier * [mail] - mail address (if logged in) 530e403cc58SMichael Klier * [name] - real name (if logged in) 531e403cc58SMichael Klier * 53215fae107Sandi * @author Andreas Gohr <andi@splitbrain.org> 533e403cc58SMichael Klier * Michael Klier <chi@chimeric.de> 534f3f0262cSandi */ 535f3f0262cSandifunction checkwordblock(){ 536f3f0262cSandi global $TEXT; 537f3f0262cSandi global $conf; 538e403cc58SMichael Klier global $INFO; 539f3f0262cSandi 540f3f0262cSandi if(!$conf['usewordblock']) return false; 541f3f0262cSandi 542041d1964SAndreas Gohr // we prepare the text a tiny bit to prevent spammers circumventing URL checks 543041d1964SAndreas Gohr $text = preg_replace('!(\b)(www\.[\w.:?\-;,]+?\.[\w.:?\-;,]+?[\w/\#~:.?+=&%@\!\-.:?\-;,]+?)([.:?\-;,]*[^\w/\#~:.?+=&%@\!\-.:?\-;,])!i','\1http://\2 \2\3',$TEXT); 544041d1964SAndreas Gohr 545b9ac8716Schris $wordblocks = getWordblocks(); 5463e2965d7Sandi //how many lines to read at once (to work around some PCRE limits) 5473e2965d7Sandi if(version_compare(phpversion(),'4.3.0','<')){ 5483e2965d7Sandi //old versions of PCRE define a maximum of parenthesises even if no 5493e2965d7Sandi //backreferences are used - the maximum is 99 5503e2965d7Sandi //this is very bad performancewise and may even be too high still 5513e2965d7Sandi $chunksize = 40; 5523e2965d7Sandi }else{ 553a51d08efSAndreas Gohr //read file in chunks of 200 - this should work around the 5543e2965d7Sandi //MAX_PATTERN_SIZE in modern PCRE 555a51d08efSAndreas Gohr $chunksize = 200; 5563e2965d7Sandi } 557b9ac8716Schris while($blocks = array_splice($wordblocks,0,$chunksize)){ 558f3f0262cSandi $re = array(); 559f3f0262cSandi #build regexp from blocks 560f3f0262cSandi foreach($blocks as $block){ 561f3f0262cSandi $block = preg_replace('/#.*$/','',$block); 562f3f0262cSandi $block = trim($block); 563f3f0262cSandi if(empty($block)) continue; 564f3f0262cSandi $re[] = $block; 565f3f0262cSandi } 566e403cc58SMichael Klier if(count($re) && preg_match('#('.join('|',$re).')#si',$text,$matches)) { 567e403cc58SMichael Klier //prepare event data 568e403cc58SMichael Klier $data['matches'] = $matches; 569e403cc58SMichael Klier $data['userinfo']['ip'] = $_SERVER['REMOTE_ADDR']; 570e403cc58SMichael Klier if($_SERVER['REMOTE_USER']) { 571e403cc58SMichael Klier $data['userinfo']['user'] = $_SERVER['REMOTE_USER']; 572e403cc58SMichael Klier $data['userinfo']['name'] = $INFO['userinfo']['name']; 573e403cc58SMichael Klier $data['userinfo']['mail'] = $INFO['userinfo']['mail']; 574e403cc58SMichael Klier } 575e403cc58SMichael Klier $callback = create_function('', 'return true;'); 576e403cc58SMichael Klier return trigger_event('COMMON_WORDBLOCK_BLOCKED', $data, $callback, true); 577b9ac8716Schris } 578703f6fdeSandi } 579f3f0262cSandi return false; 580f3f0262cSandi} 581f3f0262cSandi 582f3f0262cSandi/** 58315fae107Sandi * Return the IP of the client 58415fae107Sandi * 5856d8affe6SAndreas Gohr * Honours X-Forwarded-For and X-Real-IP Proxy Headers 58615fae107Sandi * 5876d8affe6SAndreas Gohr * It returns a comma separated list of IPs if the above mentioned 5886d8affe6SAndreas Gohr * headers are set. If the single parameter is set, it tries to return 5896d8affe6SAndreas Gohr * a routable public address, prefering the ones suplied in the X 5906d8affe6SAndreas Gohr * headers 5916d8affe6SAndreas Gohr * 5926d8affe6SAndreas Gohr * @param boolean $single If set only a single IP is returned 59315fae107Sandi * @author Andreas Gohr <andi@splitbrain.org> 594f3f0262cSandi */ 5956d8affe6SAndreas Gohrfunction clientIP($single=false){ 5966d8affe6SAndreas Gohr $ip = array(); 5976d8affe6SAndreas Gohr $ip[] = $_SERVER['REMOTE_ADDR']; 598bb4866bdSchris if(!empty($_SERVER['HTTP_X_FORWARDED_FOR'])) 5996d8affe6SAndreas Gohr $ip = array_merge($ip,explode(',',$_SERVER['HTTP_X_FORWARDED_FOR'])); 600bb4866bdSchris if(!empty($_SERVER['HTTP_X_REAL_IP'])) 6016d8affe6SAndreas Gohr $ip = array_merge($ip,explode(',',$_SERVER['HTTP_X_REAL_IP'])); 6026d8affe6SAndreas Gohr 603dc14c6d1SGuy Brand // some IPv4/v6 regexps borrowed from Feyd 604dc14c6d1SGuy Brand // see: http://forums.devnetwork.net/viewtopic.php?f=38&t=53479 605dc14c6d1SGuy Brand $dec_octet = '(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]\d|[0-9])'; 606dc14c6d1SGuy Brand $hex_digit = '[A-Fa-f0-9]'; 607dc14c6d1SGuy Brand $h16 = "{$hex_digit}{1,4}"; 608dc14c6d1SGuy Brand $IPv4Address = "$dec_octet\\.$dec_octet\\.$dec_octet\\.$dec_octet"; 609dc14c6d1SGuy Brand $ls32 = "(?:$h16:$h16|$IPv4Address)"; 610dc14c6d1SGuy Brand $IPv6Address = 611dc14c6d1SGuy Brand "(?:(?:{$IPv4Address})|(?:". 612dc14c6d1SGuy Brand "(?:$h16:){6}$ls32" . 613dc14c6d1SGuy Brand "|::(?:$h16:){5}$ls32" . 614dc14c6d1SGuy Brand "|(?:$h16)?::(?:$h16:){4}$ls32" . 615dc14c6d1SGuy Brand "|(?:(?:$h16:){0,1}$h16)?::(?:$h16:){3}$ls32" . 616dc14c6d1SGuy Brand "|(?:(?:$h16:){0,2}$h16)?::(?:$h16:){2}$ls32" . 617dc14c6d1SGuy Brand "|(?:(?:$h16:){0,3}$h16)?::(?:$h16:){1}$ls32" . 618dc14c6d1SGuy Brand "|(?:(?:$h16:){0,4}$h16)?::$ls32" . 619dc14c6d1SGuy Brand "|(?:(?:$h16:){0,5}$h16)?::$h16" . 620dc14c6d1SGuy Brand "|(?:(?:$h16:){0,6}$h16)?::" . 621dc14c6d1SGuy Brand ")(?:\\/(?:12[0-8]|1[0-1][0-9]|[1-9][0-9]|[0-9]))?)"; 622dc14c6d1SGuy Brand 6236d8affe6SAndreas Gohr // remove any non-IP stuff 6246d8affe6SAndreas Gohr $cnt = count($ip); 6254ff28443Schris $match = array(); 6266d8affe6SAndreas Gohr for($i=0; $i<$cnt; $i++){ 627dc14c6d1SGuy Brand if(preg_match("/^$IPv4Address$/",$ip[$i],$match) || preg_match("/^$IPv6Address$/",$ip[$i],$match)) { 6284ff28443Schris $ip[$i] = $match[0]; 6294ff28443Schris } else { 6304ff28443Schris $ip[$i] = ''; 6314ff28443Schris } 6326d8affe6SAndreas Gohr if(empty($ip[$i])) unset($ip[$i]); 633f3f0262cSandi } 6346d8affe6SAndreas Gohr $ip = array_values(array_unique($ip)); 6356d8affe6SAndreas Gohr if(!$ip[0]) $ip[0] = '0.0.0.0'; // for some strange reason we don't have a IP 6366d8affe6SAndreas Gohr 6376d8affe6SAndreas Gohr if(!$single) return join(',',$ip); 6386d8affe6SAndreas Gohr 6396d8affe6SAndreas Gohr // decide which IP to use, trying to avoid local addresses 6406d8affe6SAndreas Gohr $ip = array_reverse($ip); 6416d8affe6SAndreas Gohr foreach($ip as $i){ 6426d8affe6SAndreas Gohr if(preg_match('/^(127\.|10\.|192\.168\.|172\.((1[6-9])|(2[0-9])|(3[0-1]))\.)/',$i)){ 6436d8affe6SAndreas Gohr continue; 6446d8affe6SAndreas Gohr }else{ 6456d8affe6SAndreas Gohr return $i; 6466d8affe6SAndreas Gohr } 6476d8affe6SAndreas Gohr } 6486d8affe6SAndreas Gohr // still here? just use the first (last) address 6496d8affe6SAndreas Gohr return $ip[0]; 650f3f0262cSandi} 651f3f0262cSandi 652f3f0262cSandi/** 6531c548ebeSAndreas Gohr * Check if the browser is on a mobile device 6541c548ebeSAndreas Gohr * 6551c548ebeSAndreas Gohr * Adapted from the example code at url below 6561c548ebeSAndreas Gohr * 6571c548ebeSAndreas Gohr * @link http://www.brainhandles.com/2007/10/15/detecting-mobile-browsers/#code 6581c548ebeSAndreas Gohr */ 6591c548ebeSAndreas Gohrfunction clientismobile(){ 6601c548ebeSAndreas Gohr 6611c548ebeSAndreas Gohr if(isset($_SERVER['HTTP_X_WAP_PROFILE'])) return true; 6621c548ebeSAndreas Gohr 6631c548ebeSAndreas Gohr if(preg_match('/wap\.|\.wap/i',$_SERVER['HTTP_ACCEPT'])) return true; 6641c548ebeSAndreas Gohr 6651c548ebeSAndreas Gohr if(!isset($_SERVER['HTTP_USER_AGENT'])) return false; 6661c548ebeSAndreas Gohr 6671c548ebeSAndreas Gohr $uamatches = 'midp|j2me|avantg|docomo|novarra|palmos|palmsource|240x320|opwv|chtml|pda|windows ce|mmp\/|blackberry|mib\/|symbian|wireless|nokia|hand|mobi|phone|cdm|up\.b|audio|SIE\-|SEC\-|samsung|HTC|mot\-|mitsu|sagem|sony|alcatel|lg|erics|vx|NEC|philips|mmm|xx|panasonic|sharp|wap|sch|rover|pocket|benq|java|pt|pg|vox|amoi|bird|compal|kg|voda|sany|kdd|dbt|sendo|sgh|gradi|jb|\d\d\di|moto'; 6681c548ebeSAndreas Gohr 6691c548ebeSAndreas Gohr if(preg_match("/$uamatches/i",$_SERVER['HTTP_USER_AGENT'])) return true; 6701c548ebeSAndreas Gohr 6711c548ebeSAndreas Gohr return false; 6721c548ebeSAndreas Gohr} 6731c548ebeSAndreas Gohr 6741c548ebeSAndreas Gohr 6751c548ebeSAndreas Gohr/** 67663211f61SGlen Harris * Convert one or more comma separated IPs to hostnames 67763211f61SGlen Harris * 67863211f61SGlen Harris * @author Glen Harris <astfgl@iamnota.org> 67963211f61SGlen Harris * @returns a comma separated list of hostnames 68063211f61SGlen Harris */ 68163211f61SGlen Harrisfunction gethostsbyaddrs($ips){ 68263211f61SGlen Harris $hosts = array(); 68363211f61SGlen Harris $ips = explode(',',$ips); 684551a720fSMichael Klier 685551a720fSMichael Klier if(is_array($ips)) { 6863886270dSAndreas Gohr foreach($ips as $ip){ 687551a720fSMichael Klier $hosts[] = gethostbyaddr(trim($ip)); 68863211f61SGlen Harris } 689551a720fSMichael Klier return join(',',$hosts); 690551a720fSMichael Klier } else { 691551a720fSMichael Klier return gethostbyaddr(trim($ips)); 692551a720fSMichael Klier } 69363211f61SGlen Harris} 69463211f61SGlen Harris 69563211f61SGlen Harris/** 69615fae107Sandi * Checks if a given page is currently locked. 69715fae107Sandi * 698f3f0262cSandi * removes stale lockfiles 69915fae107Sandi * 70015fae107Sandi * @author Andreas Gohr <andi@splitbrain.org> 701f3f0262cSandi */ 702f3f0262cSandifunction checklock($id){ 703f3f0262cSandi global $conf; 704c9b4bd1eSBen Coburn $lock = wikiLockFN($id); 705f3f0262cSandi 706f3f0262cSandi //no lockfile 707f3f0262cSandi if(!@file_exists($lock)) return false; 708f3f0262cSandi 709f3f0262cSandi //lockfile expired 710f3f0262cSandi if((time() - filemtime($lock)) > $conf['locktime']){ 711d8186216SBen Coburn @unlink($lock); 712f3f0262cSandi return false; 713f3f0262cSandi } 714f3f0262cSandi 715f3f0262cSandi //my own lock 716f3f0262cSandi $ip = io_readFile($lock); 717f3f0262cSandi if( ($ip == clientIP()) || ($ip == $_SERVER['REMOTE_USER']) ){ 718f3f0262cSandi return false; 719f3f0262cSandi } 720f3f0262cSandi 721f3f0262cSandi return $ip; 722f3f0262cSandi} 723f3f0262cSandi 724f3f0262cSandi/** 72515fae107Sandi * Lock a page for editing 72615fae107Sandi * 72715fae107Sandi * @author Andreas Gohr <andi@splitbrain.org> 728f3f0262cSandi */ 729f3f0262cSandifunction lock($id){ 730c9b4bd1eSBen Coburn $lock = wikiLockFN($id); 731f3f0262cSandi if($_SERVER['REMOTE_USER']){ 732f3f0262cSandi io_saveFile($lock,$_SERVER['REMOTE_USER']); 733f3f0262cSandi }else{ 734f3f0262cSandi io_saveFile($lock,clientIP()); 735f3f0262cSandi } 736f3f0262cSandi} 737f3f0262cSandi 738f3f0262cSandi/** 73915fae107Sandi * Unlock a page if it was locked by the user 740f3f0262cSandi * 74115fae107Sandi * @author Andreas Gohr <andi@splitbrain.org> 74215fae107Sandi * @return bool true if a lock was removed 743f3f0262cSandi */ 744f3f0262cSandifunction unlock($id){ 745c9b4bd1eSBen Coburn $lock = wikiLockFN($id); 746f3f0262cSandi if(@file_exists($lock)){ 747f3f0262cSandi $ip = io_readFile($lock); 748f3f0262cSandi if( ($ip == clientIP()) || ($ip == $_SERVER['REMOTE_USER']) ){ 749f3f0262cSandi @unlink($lock); 750f3f0262cSandi return true; 751f3f0262cSandi } 752f3f0262cSandi } 753f3f0262cSandi return false; 754f3f0262cSandi} 755f3f0262cSandi 756f3f0262cSandi/** 757f3f0262cSandi * convert line ending to unix format 758f3f0262cSandi * 75915fae107Sandi * @see formText() for 2crlf conversion 76015fae107Sandi * @author Andreas Gohr <andi@splitbrain.org> 761f3f0262cSandi */ 762f3f0262cSandifunction cleanText($text){ 763f3f0262cSandi $text = preg_replace("/(\015\012)|(\015)/","\012",$text); 764f3f0262cSandi return $text; 765f3f0262cSandi} 766f3f0262cSandi 767f3f0262cSandi/** 768f3f0262cSandi * Prepares text for print in Webforms by encoding special chars. 769f3f0262cSandi * It also converts line endings to Windows format which is 770f3f0262cSandi * pseudo standard for webforms. 771f3f0262cSandi * 77215fae107Sandi * @see cleanText() for 2unix conversion 77315fae107Sandi * @author Andreas Gohr <andi@splitbrain.org> 774f3f0262cSandi */ 775f3f0262cSandifunction formText($text){ 7765b7d45a5SAndreas Gohr $text = str_replace("\012","\015\012",$text); 777f3f0262cSandi return htmlspecialchars($text); 778f3f0262cSandi} 779f3f0262cSandi 780f3f0262cSandi/** 78115fae107Sandi * Returns the specified local text in raw format 78215fae107Sandi * 78315fae107Sandi * @author Andreas Gohr <andi@splitbrain.org> 784f3f0262cSandi */ 785f3f0262cSandifunction rawLocale($id){ 786f3f0262cSandi return io_readFile(localeFN($id)); 787f3f0262cSandi} 788f3f0262cSandi 789f3f0262cSandi/** 790f3f0262cSandi * Returns the raw WikiText 79115fae107Sandi * 79215fae107Sandi * @author Andreas Gohr <andi@splitbrain.org> 793f3f0262cSandi */ 794f3f0262cSandifunction rawWiki($id,$rev=''){ 795cc7d0c94SBen Coburn return io_readWikiPage(wikiFN($id, $rev), $id, $rev); 796f3f0262cSandi} 797f3f0262cSandi 798f3f0262cSandi/** 7997146cee2SAndreas Gohr * Returns the pagetemplate contents for the ID's namespace 8007146cee2SAndreas Gohr * 8017146cee2SAndreas Gohr * @author Andreas Gohr <andi@splitbrain.org> 8027146cee2SAndreas Gohr */ 803b7d5a5f0SAndreas Gohrfunction pageTemplate($data){ 804b7d5a5f0SAndreas Gohr $id = $data[0]; 805a15ce62dSEsther Brunner global $conf; 806a15ce62dSEsther Brunner global $INFO; 807e29549feSAndreas Gohr 808e29549feSAndreas Gohr $path = dirname(wikiFN($id)); 809e29549feSAndreas Gohr 810e29549feSAndreas Gohr if(@file_exists($path.'/_template.txt')){ 811e29549feSAndreas Gohr $tpl = io_readFile($path.'/_template.txt'); 812e29549feSAndreas Gohr }else{ 813e29549feSAndreas Gohr // search upper namespaces for templates 814e29549feSAndreas Gohr $len = strlen(rtrim($conf['datadir'],'/')); 815e29549feSAndreas Gohr while (strlen($path) >= $len){ 816e29549feSAndreas Gohr if(@file_exists($path.'/__template.txt')){ 817e29549feSAndreas Gohr $tpl = io_readFile($path.'/__template.txt'); 818e29549feSAndreas Gohr break; 819e29549feSAndreas Gohr } 820e29549feSAndreas Gohr $path = substr($path, 0, strrpos($path, '/')); 821e29549feSAndreas Gohr } 822e29549feSAndreas Gohr } 823e29549feSAndreas Gohr if(!$tpl) return ''; 824e29549feSAndreas Gohr 825e29549feSAndreas Gohr // replace placeholders 82626ece5a7SAndreas Gohr $file = noNS($id); 82726ece5a7SAndreas Gohr $page = strtr($file,'_',' '); 82826ece5a7SAndreas Gohr 82926ece5a7SAndreas Gohr $tpl = str_replace(array( 83026ece5a7SAndreas Gohr '@ID@', 83126ece5a7SAndreas Gohr '@NS@', 83226ece5a7SAndreas Gohr '@FILE@', 83326ece5a7SAndreas Gohr '@!FILE@', 83426ece5a7SAndreas Gohr '@!FILE!@', 83526ece5a7SAndreas Gohr '@PAGE@', 83626ece5a7SAndreas Gohr '@!PAGE@', 83726ece5a7SAndreas Gohr '@!!PAGE@', 83826ece5a7SAndreas Gohr '@!PAGE!@', 83926ece5a7SAndreas Gohr '@USER@', 84026ece5a7SAndreas Gohr '@NAME@', 84126ece5a7SAndreas Gohr '@MAIL@', 84226ece5a7SAndreas Gohr '@DATE@', 84326ece5a7SAndreas Gohr ), 84426ece5a7SAndreas Gohr array( 84526ece5a7SAndreas Gohr $id, 84626ece5a7SAndreas Gohr getNS($id), 84726ece5a7SAndreas Gohr $file, 84826ece5a7SAndreas Gohr utf8_ucfirst($file), 84926ece5a7SAndreas Gohr utf8_strtoupper($file), 85026ece5a7SAndreas Gohr $page, 85126ece5a7SAndreas Gohr utf8_ucfirst($page), 85226ece5a7SAndreas Gohr utf8_ucwords($page), 85326ece5a7SAndreas Gohr utf8_strtoupper($page), 85426ece5a7SAndreas Gohr $_SERVER['REMOTE_USER'], 85526ece5a7SAndreas Gohr $INFO['userinfo']['name'], 85626ece5a7SAndreas Gohr $INFO['userinfo']['mail'], 85726ece5a7SAndreas Gohr $conf['dformat'], 85826ece5a7SAndreas Gohr ), $tpl); 85926ece5a7SAndreas Gohr 8607d644fc8SAndreas Gohr // we need the callback to work around strftime's char limit 8617d644fc8SAndreas Gohr $tpl = preg_replace_callback('/%./',create_function('$m','return strftime($m[0]);'),$tpl); 8627d644fc8SAndreas Gohr 863a15ce62dSEsther Brunner return $tpl; 8647146cee2SAndreas Gohr} 8657146cee2SAndreas Gohr 8667146cee2SAndreas Gohr 8677146cee2SAndreas Gohr/** 86815fae107Sandi * Returns the raw Wiki Text in three slices. 86915fae107Sandi * 87015fae107Sandi * The range parameter needs to have the form "from-to" 87115cfe303Sandi * and gives the range of the section in bytes - no 87215cfe303Sandi * UTF-8 awareness is needed. 873f3f0262cSandi * The returned order is prefix, section and suffix. 87415fae107Sandi * 87515fae107Sandi * @author Andreas Gohr <andi@splitbrain.org> 876f3f0262cSandi */ 877f3f0262cSandifunction rawWikiSlices($range,$id,$rev=''){ 878f3f0262cSandi list($from,$to) = split('-',$range,2); 879cc7d0c94SBen Coburn $text = io_readWikiPage(wikiFN($id, $rev), $id, $rev); 880f3f0262cSandi if(!$from) $from = 0; 881c3d8e19bSandi if(!$to) $to = strlen($text)+1; 882f3f0262cSandi 88315cfe303Sandi $slices[0] = substr($text,0,$from-1); 88415cfe303Sandi $slices[1] = substr($text,$from-1,$to-$from); 88515cfe303Sandi $slices[2] = substr($text,$to); 886f3f0262cSandi 887f3f0262cSandi return $slices; 888f3f0262cSandi} 889f3f0262cSandi 890f3f0262cSandi/** 89115fae107Sandi * Joins wiki text slices 89215fae107Sandi * 893f3f0262cSandi * function to join the text slices with correct lineendings again. 894f3f0262cSandi * When the pretty parameter is set to true it adds additional empty 895f3f0262cSandi * lines between sections if needed (used on saving). 89615fae107Sandi * 89715fae107Sandi * @author Andreas Gohr <andi@splitbrain.org> 898f3f0262cSandi */ 899f3f0262cSandifunction con($pre,$text,$suf,$pretty=false){ 900f3f0262cSandi 901f3f0262cSandi if($pretty){ 902f3f0262cSandi if($pre && substr($pre,-1) != "\n") $pre .= "\n"; 903f3f0262cSandi if($suf && substr($text,-1) != "\n") $text .= "\n"; 904f3f0262cSandi } 905f3f0262cSandi 9067e038d4eSAndreas Gohr // Avoid double newline above section when saving section edit 9077e038d4eSAndreas Gohr //if($pre) $pre .= "\n"; 908f3f0262cSandi if($suf) $text .= "\n"; 909f3f0262cSandi return $pre.$text.$suf; 910f3f0262cSandi} 911f3f0262cSandi 912f3f0262cSandi/** 913a701424fSBen Coburn * Saves a wikitext by calling io_writeWikiPage. 914a701424fSBen Coburn * Also directs changelog and attic updates. 91515fae107Sandi * 91615fae107Sandi * @author Andreas Gohr <andi@splitbrain.org> 91771726d78SBen Coburn * @author Ben Coburn <btcoburn@silicodon.net> 918f3f0262cSandi */ 919b6912aeaSAndreas Gohrfunction saveWikiText($id,$text,$summary,$minor=false){ 920a701424fSBen Coburn /* Note to developers: 921a701424fSBen Coburn This code is subtle and delicate. Test the behavior of 922a701424fSBen Coburn the attic and changelog with dokuwiki and external edits 923a701424fSBen Coburn after any changes. External edits change the wiki page 924a701424fSBen Coburn directly without using php or dokuwiki. 925a701424fSBen Coburn */ 926f3f0262cSandi global $conf; 927f3f0262cSandi global $lang; 92871726d78SBen Coburn global $REV; 929f3f0262cSandi // ignore if no changes were made 930f3f0262cSandi if($text == rawWiki($id,'')){ 931f3f0262cSandi return; 932f3f0262cSandi } 933f3f0262cSandi 934f3f0262cSandi $file = wikiFN($id); 935a701424fSBen Coburn $old = @filemtime($file); // from page 93671726d78SBen Coburn $wasRemoved = empty($text); 937d8186216SBen Coburn $wasCreated = !@file_exists($file); 93871726d78SBen Coburn $wasReverted = ($REV==true); 939e45b34cdSBen Coburn $newRev = false; 940a701424fSBen Coburn $oldRev = getRevisions($id, -1, 1, 1024); // from changelog 941a701424fSBen Coburn $oldRev = (int)(empty($oldRev)?0:$oldRev[0]); 942a701424fSBen Coburn if(!@file_exists(wikiFN($id, $old)) && @file_exists($file) && $old>=$oldRev) { 94346844156SBen Coburn // add old revision to the attic if missing 94446844156SBen Coburn saveOldRevision($id); 94546844156SBen Coburn // add a changelog entry if this edit came from outside dokuwiki 946a701424fSBen Coburn if ($old>$oldRev) { 947ebf1501fSBen Coburn addLogEntry($old, $id, DOKU_CHANGE_TYPE_EDIT, $lang['external_edit'], '', array('ExternalEdit'=>true)); 94846844156SBen Coburn // remove soon to be stale instructions 94946844156SBen Coburn $cache = new cache_instructions($id, $file); 95046844156SBen Coburn $cache->removeCache(); 95146844156SBen Coburn } 95246844156SBen Coburn } 953f3f0262cSandi 95471726d78SBen Coburn if ($wasRemoved){ 95530725328SGabriel Birke // Send "update" event with empty data, so plugins can react to page deletion 95630725328SGabriel Birke $data = array(array($file, '', false), getNS($id), noNS($id), false); 95730725328SGabriel Birke trigger_event('IO_WIKIPAGE_WRITE', $data); 958e45b34cdSBen Coburn // pre-save deleted revision 959e45b34cdSBen Coburn @touch($file); 96046844156SBen Coburn clearstatcache(); 961e45b34cdSBen Coburn $newRev = saveOldRevision($id); 962e1f3d9e1SEsther Brunner // remove empty file 963f3f0262cSandi @unlink($file); 96471726d78SBen Coburn // remove old meta info... 965e1f3d9e1SEsther Brunner $mfiles = metaFiles($id); 96671726d78SBen Coburn $changelog = metaFN($id, '.changes'); 9673d1f9ec3SMichael Klier $metadata = metaFN($id, '.meta'); 968e1f3d9e1SEsther Brunner foreach ($mfiles as $mfile) { 9693d1f9ec3SMichael Klier // but keep per-page changelog to preserve page history and keep meta data 9703d1f9ec3SMichael Klier if (@file_exists($mfile) && $mfile!==$changelog && $mfile!==$metadata) { @unlink($mfile); } 971b158d625SSteven Danz } 9723d1f9ec3SMichael Klier // purge meta data 9733d1f9ec3SMichael Klier p_purge_metadata($id); 974f3f0262cSandi $del = true; 9753ce054b3Sandi // autoset summary on deletion 9763ce054b3Sandi if(empty($summary)) $summary = $lang['deleted']; 97753d6ccfeSandi // remove empty namespaces 978cc7d0c94SBen Coburn io_sweepNS($id, 'datadir'); 979cc7d0c94SBen Coburn io_sweepNS($id, 'mediadir'); 980f3f0262cSandi }else{ 981cc7d0c94SBen Coburn // save file (namespace dir is created in io_writeWikiPage) 982cc7d0c94SBen Coburn io_writeWikiPage($file, $text, $id); 98346844156SBen Coburn // pre-save the revision, to keep the attic in sync 98446844156SBen Coburn $newRev = saveOldRevision($id); 985f3f0262cSandi $del = false; 986f3f0262cSandi } 987f3f0262cSandi 98871726d78SBen Coburn // select changelog line type 98971726d78SBen Coburn $extra = ''; 990ebf1501fSBen Coburn $type = DOKU_CHANGE_TYPE_EDIT; 99171726d78SBen Coburn if ($wasReverted) { 992ebf1501fSBen Coburn $type = DOKU_CHANGE_TYPE_REVERT; 99371726d78SBen Coburn $extra = $REV; 99471726d78SBen Coburn } 995ebf1501fSBen Coburn else if ($wasCreated) { $type = DOKU_CHANGE_TYPE_CREATE; } 996ebf1501fSBen Coburn else if ($wasRemoved) { $type = DOKU_CHANGE_TYPE_DELETE; } 997ebf1501fSBen Coburn else if ($minor && $conf['useacl'] && $_SERVER['REMOTE_USER']) { $type = DOKU_CHANGE_TYPE_MINOR_EDIT; } //minor edits only for logged in users 99871726d78SBen Coburn 999e45b34cdSBen Coburn addLogEntry($newRev, $id, $type, $summary, $extra); 100026a0801fSAndreas Gohr // send notify mails 100190033e9dSAndreas Gohr notify($id,'admin',$old,$summary,$minor); 100290033e9dSAndreas Gohr notify($id,'subscribers',$old,$summary,$minor); 1003f3f0262cSandi 1004ce6b63d9Schris // update the purgefile (timestamp of the last time anything within the wiki was changed) 100598407a7aSandi io_saveFile($conf['cachedir'].'/purgefile',time()); 10062eccbdaaSGina Haeussge 10072eccbdaaSGina Haeussge // if useheading is enabled, purge the cache of all linking pages 1008fe9ec250SChris Smith if(useHeading('content')){ 10092eccbdaaSGina Haeussge require_once(DOKU_INC.'inc/fulltext.php'); 10102eccbdaaSGina Haeussge $pages = ft_backlinks($id); 10112eccbdaaSGina Haeussge foreach ($pages as $page) { 10122eccbdaaSGina Haeussge $cache = new cache_renderer($page, wikiFN($page), 'xhtml'); 10132eccbdaaSGina Haeussge $cache->removeCache(); 10142eccbdaaSGina Haeussge } 10152eccbdaaSGina Haeussge } 1016f3f0262cSandi} 1017f3f0262cSandi 1018f3f0262cSandi/** 1019f3f0262cSandi * moves the current version to the attic and returns its 1020f3f0262cSandi * revision date 102115fae107Sandi * 102215fae107Sandi * @author Andreas Gohr <andi@splitbrain.org> 1023f3f0262cSandi */ 1024f3f0262cSandifunction saveOldRevision($id){ 1025f3f0262cSandi global $conf; 1026f3f0262cSandi $oldf = wikiFN($id); 1027f3f0262cSandi if(!@file_exists($oldf)) return ''; 1028f3f0262cSandi $date = filemtime($oldf); 1029f3f0262cSandi $newf = wikiFN($id,$date); 1030cc7d0c94SBen Coburn io_writeWikiPage($newf, rawWiki($id), $id, $date); 1031f3f0262cSandi return $date; 1032f3f0262cSandi} 1033f3f0262cSandi 1034f3f0262cSandi/** 103526a0801fSAndreas Gohr * Sends a notify mail on page change 103626a0801fSAndreas Gohr * 103726a0801fSAndreas Gohr * @param string $id The changed page 103826a0801fSAndreas Gohr * @param string $who Who to notify (admin|subscribers) 103926a0801fSAndreas Gohr * @param int $rev Old page revision 104026a0801fSAndreas Gohr * @param string $summary What changed 104190033e9dSAndreas Gohr * @param boolean $minor Is this a minor edit? 104202a498e7Schris * @param array $replace Additional string substitutions, @KEY@ to be replaced by value 104315fae107Sandi * 104415fae107Sandi * @author Andreas Gohr <andi@splitbrain.org> 1045f3f0262cSandi */ 104602a498e7Schrisfunction notify($id,$who,$rev='',$summary='',$minor=false,$replace=array()){ 1047f3f0262cSandi global $lang; 1048f3f0262cSandi global $conf; 104930d7d718SMike Frysinger global $INFO; 1050b158d625SSteven Danz 105126a0801fSAndreas Gohr // decide if there is something to do 105226a0801fSAndreas Gohr if($who == 'admin'){ 105326a0801fSAndreas Gohr if(empty($conf['notify'])) return; //notify enabled? 1054f3f0262cSandi $text = rawLocale('mailtext'); 105526a0801fSAndreas Gohr $to = $conf['notify']; 105626a0801fSAndreas Gohr $bcc = ''; 105726a0801fSAndreas Gohr }elseif($who == 'subscribers'){ 105826a0801fSAndreas Gohr if(!$conf['subscribers']) return; //subscribers enabled? 105990033e9dSAndreas Gohr if($conf['useacl'] && $_SERVER['REMOTE_USER'] && $minor) return; //skip minors 106055eea442SAndreas Gohr $bcc = subscriber_addresslist($id,false); 106126a0801fSAndreas Gohr if(empty($bcc)) return; 106226a0801fSAndreas Gohr $to = ''; 106326a0801fSAndreas Gohr $text = rawLocale('subscribermail'); 1064a06e4bdbSSebastian Harl }elseif($who == 'register'){ 1065a06e4bdbSSebastian Harl if(empty($conf['registernotify'])) return; 1066a06e4bdbSSebastian Harl $text = rawLocale('registermail'); 1067a06e4bdbSSebastian Harl $to = $conf['registernotify']; 1068a06e4bdbSSebastian Harl $bcc = ''; 106926a0801fSAndreas Gohr }else{ 107026a0801fSAndreas Gohr return; //just to be safe 107126a0801fSAndreas Gohr } 107226a0801fSAndreas Gohr 107363211f61SGlen Harris $ip = clientIP(); 1074e656dcd4SAndreas Gohr $text = str_replace('@DATE@',strftime($conf['dformat']),$text); 1075f3f0262cSandi $text = str_replace('@BROWSER@',$_SERVER['HTTP_USER_AGENT'],$text); 107663211f61SGlen Harris $text = str_replace('@IPADDRESS@',$ip,$text); 107763211f61SGlen Harris $text = str_replace('@HOSTNAME@',gethostsbyaddrs($ip),$text); 1078c9321d91SAndreas Gohr $text = str_replace('@NEWPAGE@',wl($id,'',true,'&'),$text); 107926a0801fSAndreas Gohr $text = str_replace('@PAGE@',$id,$text); 108026a0801fSAndreas Gohr $text = str_replace('@TITLE@',$conf['title'],$text); 1081ed7b5f09Sandi $text = str_replace('@DOKUWIKIURL@',DOKU_URL,$text); 1082f3f0262cSandi $text = str_replace('@SUMMARY@',$summary,$text); 10837a82afdcSandi $text = str_replace('@USER@',$_SERVER['REMOTE_USER'],$text); 1084f3f0262cSandi 108502a498e7Schris foreach ($replace as $key => $substitution) { 108602a498e7Schris $text = str_replace('@'.strtoupper($key).'@',$substitution, $text); 108702a498e7Schris } 108802a498e7Schris 1089a06e4bdbSSebastian Harl if($who == 'register'){ 1090a06e4bdbSSebastian Harl $subject = $lang['mail_new_user'].' '.$summary; 1091a06e4bdbSSebastian Harl }elseif($rev){ 1092f3f0262cSandi $subject = $lang['mail_changed'].' '.$id; 1093c9321d91SAndreas Gohr $text = str_replace('@OLDPAGE@',wl($id,"rev=$rev",true,'&'),$text); 1094ccdfa6c0SAndreas Gohr require_once(DOKU_INC.'inc/DifferenceEngine.php'); 1095f3f0262cSandi $df = new Diff(split("\n",rawWiki($id,$rev)), 1096f3f0262cSandi split("\n",rawWiki($id))); 1097f3f0262cSandi $dformat = new UnifiedDiffFormatter(); 1098f3f0262cSandi $diff = $dformat->format($df); 1099f3f0262cSandi }else{ 1100f3f0262cSandi $subject=$lang['mail_newpage'].' '.$id; 1101f3f0262cSandi $text = str_replace('@OLDPAGE@','none',$text); 1102f3f0262cSandi $diff = rawWiki($id); 1103f3f0262cSandi } 1104f3f0262cSandi $text = str_replace('@DIFF@',$diff,$text); 1105241f3a36Sandi $subject = '['.$conf['title'].'] '.$subject; 1106f3f0262cSandi 110730d7d718SMike Frysinger $from = $conf['mailfrom']; 110830d7d718SMike Frysinger $from = str_replace('@USER@',$_SERVER['REMOTE_USER'],$from); 110930d7d718SMike Frysinger $from = str_replace('@NAME@',$INFO['userinfo']['name'],$from); 111030d7d718SMike Frysinger $from = str_replace('@MAIL@',$INFO['userinfo']['mail'],$from); 111130d7d718SMike Frysinger 111230d7d718SMike Frysinger mail_send($to,$subject,$text,$from,'',$bcc); 1113f3f0262cSandi} 1114f3f0262cSandi 111515fae107Sandi/** 111671f7bde7SAndreas Gohr * extracts the query from a search engine referrer 111715fae107Sandi * 111815fae107Sandi * @author Andreas Gohr <andi@splitbrain.org> 111971f7bde7SAndreas Gohr * @author Todd Augsburger <todd@rollerorgans.com> 1120f3f0262cSandi */ 1121f3f0262cSandifunction getGoogleQuery(){ 1122f3f0262cSandi $url = parse_url($_SERVER['HTTP_REFERER']); 11235c3f206fSandi if(!$url) return ''; 1124f3f0262cSandi 1125f3f0262cSandi $query = array(); 1126f3f0262cSandi parse_str($url['query'],$query); 112771f7bde7SAndreas Gohr if(isset($query['q'])) 1128f93b3b50SAndreas Gohr $q = $query['q']; // google, live/msn, aol, ask, altavista, alltheweb, gigablast 112971f7bde7SAndreas Gohr elseif(isset($query['p'])) 1130f93b3b50SAndreas Gohr $q = $query['p']; // yahoo 113171f7bde7SAndreas Gohr elseif(isset($query['query'])) 1132f93b3b50SAndreas Gohr $q = $query['query']; // lycos, netscape, clusty, hotbot 113371f7bde7SAndreas Gohr elseif(preg_match("#a9\.com#i",$url['host'])) // a9 1134f93b3b50SAndreas Gohr $q = urldecode(ltrim($url['path'],'/')); 1135f3f0262cSandi 1136f93b3b50SAndreas Gohr if(!$q) return ''; 11376531ab03SAndreas Gohr $q = preg_split('/[\s\'"\\\\`()\]\[?:!\.{};,#+*<>\\/]+/',$q,-1,PREG_SPLIT_NO_EMPTY); 1138f93b3b50SAndreas Gohr return $q; 1139f3f0262cSandi} 1140f3f0262cSandi 1141f3f0262cSandi/** 114215fae107Sandi * Try to set correct locale 114315fae107Sandi * 1144095bfd5cSandi * @deprecated No longer used 114515fae107Sandi * @author Andreas Gohr <andi@splitbrain.org> 1146f3f0262cSandi */ 1147f3f0262cSandifunction setCorrectLocale(){ 1148f3f0262cSandi global $conf; 1149f3f0262cSandi global $lang; 1150f3f0262cSandi 1151f3f0262cSandi $enc = strtoupper($lang['encoding']); 1152f3f0262cSandi foreach ($lang['locales'] as $loc){ 1153f3f0262cSandi //try locale 1154f3f0262cSandi if(@setlocale(LC_ALL,$loc)) return; 1155f3f0262cSandi //try loceale with encoding 1156f3f0262cSandi if(@setlocale(LC_ALL,"$loc.$enc")) return; 1157f3f0262cSandi } 1158f3f0262cSandi //still here? try to set from environment 1159f3f0262cSandi @setlocale(LC_ALL,""); 1160f3f0262cSandi} 1161f3f0262cSandi 1162f3f0262cSandi/** 1163f3f0262cSandi * Return the human readable size of a file 1164f3f0262cSandi * 1165f3f0262cSandi * @param int $size A file size 1166f3f0262cSandi * @param int $dec A number of decimal places 1167f3f0262cSandi * @author Martin Benjamin <b.martin@cybernet.ch> 1168f3f0262cSandi * @author Aidan Lister <aidan@php.net> 1169f3f0262cSandi * @version 1.0.0 1170f3f0262cSandi */ 1171f31d5b73Sandifunction filesize_h($size, $dec = 1){ 1172f3f0262cSandi $sizes = array('B', 'KB', 'MB', 'GB'); 1173f3f0262cSandi $count = count($sizes); 1174f3f0262cSandi $i = 0; 1175f3f0262cSandi 1176f3f0262cSandi while ($size >= 1024 && ($i < $count - 1)) { 1177f3f0262cSandi $size /= 1024; 1178f3f0262cSandi $i++; 1179f3f0262cSandi } 1180f3f0262cSandi 1181f3f0262cSandi return round($size, $dec) . ' ' . $sizes[$i]; 1182f3f0262cSandi} 1183f3f0262cSandi 118415fae107Sandi/** 118500a7b5adSEsther Brunner * return an obfuscated email address in line with $conf['mailguard'] setting 118600a7b5adSEsther Brunner * 118700a7b5adSEsther Brunner * @author Harry Fuecks <hfuecks@gmail.com> 118800a7b5adSEsther Brunner * @author Christopher Smith <chris@jalakai.co.uk> 118900a7b5adSEsther Brunner */ 119000a7b5adSEsther Brunnerfunction obfuscate($email) { 119100a7b5adSEsther Brunner global $conf; 119200a7b5adSEsther Brunner 119300a7b5adSEsther Brunner switch ($conf['mailguard']) { 119400a7b5adSEsther Brunner case 'visible' : 119500a7b5adSEsther Brunner $obfuscate = array('@' => ' [at] ', '.' => ' [dot] ', '-' => ' [dash] '); 119600a7b5adSEsther Brunner return strtr($email, $obfuscate); 119700a7b5adSEsther Brunner 119800a7b5adSEsther Brunner case 'hex' : 119900a7b5adSEsther Brunner $encode = ''; 120000a7b5adSEsther Brunner for ($x=0; $x < strlen($email); $x++) $encode .= '&#x' . bin2hex($email{$x}).';'; 120100a7b5adSEsther Brunner return $encode; 120200a7b5adSEsther Brunner 120300a7b5adSEsther Brunner case 'none' : 120400a7b5adSEsther Brunner default : 120500a7b5adSEsther Brunner return $email; 120600a7b5adSEsther Brunner } 120700a7b5adSEsther Brunner} 120800a7b5adSEsther Brunner 120900a7b5adSEsther Brunner/** 121052b0dd67SGuy Brand * Let us know if a user is tracking a page or a namespace 1211b158d625SSteven Danz * 12121380fc45SAndreas Gohr * @author Andreas Gohr <andi@splitbrain.org> 1213b158d625SSteven Danz */ 121452b0dd67SGuy Brandfunction is_subscribed($id,$uid,$ns=false){ 121552b0dd67SGuy Brand if(!$ns) { 12161380fc45SAndreas Gohr $file=metaFN($id,'.mlist'); 121752b0dd67SGuy Brand } else { 121852b0dd67SGuy Brand if(!getNS($id)) { 121952b0dd67SGuy Brand $file = metaFN(getNS($id),'.mlist'); 122052b0dd67SGuy Brand } else { 122152b0dd67SGuy Brand $file = metaFN(getNS($id),'/.mlist'); 122252b0dd67SGuy Brand } 122352b0dd67SGuy Brand } 12241380fc45SAndreas Gohr if (@file_exists($file)) { 1225b158d625SSteven Danz $mlist = file($file); 12261380fc45SAndreas Gohr $pos = array_search($uid."\n",$mlist); 12271380fc45SAndreas Gohr return is_int($pos); 1228b158d625SSteven Danz } 12291380fc45SAndreas Gohr 1230b158d625SSteven Danz return false; 1231b158d625SSteven Danz} 1232340756e4Sandi 1233f9eb5648Ssteven-danz/** 1234f9eb5648Ssteven-danz * Return a string with the email addresses of all the 1235f9eb5648Ssteven-danz * users subscribed to a page 1236f9eb5648Ssteven-danz * 123726a0801fSAndreas Gohr * @author Steven Danz <steven-danz@kc.rr.com> 1238f9eb5648Ssteven-danz */ 123955eea442SAndreas Gohrfunction subscriber_addresslist($id,$self=true){ 1240f9eb5648Ssteven-danz global $conf; 1241cd52f92dSchris global $auth; 1242f9eb5648Ssteven-danz 124312cb3a51STom N Harris if (!$conf['subscribers']) return ''; 1244f9eb5648Ssteven-danz 124512cb3a51STom N Harris $users = array(); 124612cb3a51STom N Harris $emails = array(); 124726a0801fSAndreas Gohr 124852b0dd67SGuy Brand // load the page mlist file content 1249f9eb5648Ssteven-danz $mlist = array(); 1250f9eb5648Ssteven-danz $file=metaFN($id,'.mlist'); 1251d8186216SBen Coburn if (@file_exists($file)) { 1252f9eb5648Ssteven-danz $mlist = file($file); 1253f9eb5648Ssteven-danz foreach ($mlist as $who) { 1254f9eb5648Ssteven-danz $who = rtrim($who); 125555eea442SAndreas Gohr if(!$self && $who == $_SERVER['REMOTE_USER']) continue; 125612cb3a51STom N Harris $users[$who] = true; 1257f9eb5648Ssteven-danz } 1258f9eb5648Ssteven-danz } 1259f9eb5648Ssteven-danz 126052b0dd67SGuy Brand // load also the namespace mlist file content 126112cb3a51STom N Harris $ns = getNS($id); 126212cb3a51STom N Harris while ($ns) { 126312cb3a51STom N Harris $nsfile = metaFN($ns,'/.mlist'); 126452b0dd67SGuy Brand if (@file_exists($nsfile)) { 126552b0dd67SGuy Brand $mlist = file($nsfile); 126652b0dd67SGuy Brand foreach ($mlist as $who) { 126752b0dd67SGuy Brand $who = rtrim($who); 126855eea442SAndreas Gohr if(!$self && $who == $_SERVER['REMOTE_USER']) continue; 126912cb3a51STom N Harris $users[$who] = true; 127012cb3a51STom N Harris } 127112cb3a51STom N Harris } 127212cb3a51STom N Harris $ns = getNS($ns); 127312cb3a51STom N Harris } 127412cb3a51STom N Harris // root namespace 127512cb3a51STom N Harris $nsfile = metaFN('','.mlist'); 127612cb3a51STom N Harris if (@file_exists($nsfile)) { 127712cb3a51STom N Harris $mlist = file($nsfile); 127812cb3a51STom N Harris foreach ($mlist as $who) { 127912cb3a51STom N Harris $who = rtrim($who); 128055eea442SAndreas Gohr if(!$self && $who == $_SERVER['REMOTE_USER']) continue; 128112cb3a51STom N Harris $users[$who] = true; 128212cb3a51STom N Harris } 128312cb3a51STom N Harris } 128412cb3a51STom N Harris if(!empty($users)) { 128512cb3a51STom N Harris foreach (array_keys($users) as $who) { 128652b0dd67SGuy Brand $info = $auth->getUserData($who); 128752b0dd67SGuy Brand if($info === false) continue; 128852b0dd67SGuy Brand $level = auth_aclcheck($id,$who,$info['grps']); 128952b0dd67SGuy Brand if ($level >= AUTH_READ) { 129052b0dd67SGuy Brand if (strcasecmp($info['mail'],$conf['notify']) != 0) { 129112cb3a51STom N Harris $emails[] = $info['mail']; 129252b0dd67SGuy Brand } 129352b0dd67SGuy Brand } 129452b0dd67SGuy Brand } 129552b0dd67SGuy Brand } 129652b0dd67SGuy Brand 129712cb3a51STom N Harris return implode(',',$emails); 1298f9eb5648Ssteven-danz} 1299f9eb5648Ssteven-danz 130089541d4bSAndreas Gohr/** 130189541d4bSAndreas Gohr * Removes quoting backslashes 130289541d4bSAndreas Gohr * 130389541d4bSAndreas Gohr * @author Andreas Gohr <andi@splitbrain.org> 130489541d4bSAndreas Gohr */ 130589541d4bSAndreas Gohrfunction unslash($string,$char="'"){ 130689541d4bSAndreas Gohr return str_replace('\\'.$char,$char,$string); 130789541d4bSAndreas Gohr} 130889541d4bSAndreas Gohr 130973038c47SAndreas Gohr/** 131073038c47SAndreas Gohr * Convert php.ini shorthands to byte 131173038c47SAndreas Gohr * 131273038c47SAndreas Gohr * @author <gilthans dot NO dot SPAM at gmail dot com> 131373038c47SAndreas Gohr * @link http://de3.php.net/manual/en/ini.core.php#79564 131473038c47SAndreas Gohr */ 131573038c47SAndreas Gohrfunction php_to_byte($v){ 131673038c47SAndreas Gohr $l = substr($v, -1); 131773038c47SAndreas Gohr $ret = substr($v, 0, -1); 131873038c47SAndreas Gohr switch(strtoupper($l)){ 131973038c47SAndreas Gohr case 'P': 132073038c47SAndreas Gohr $ret *= 1024; 132173038c47SAndreas Gohr case 'T': 132273038c47SAndreas Gohr $ret *= 1024; 132373038c47SAndreas Gohr case 'G': 132473038c47SAndreas Gohr $ret *= 1024; 132573038c47SAndreas Gohr case 'M': 132673038c47SAndreas Gohr $ret *= 1024; 132773038c47SAndreas Gohr case 'K': 132873038c47SAndreas Gohr $ret *= 1024; 132973038c47SAndreas Gohr break; 133073038c47SAndreas Gohr } 133173038c47SAndreas Gohr return $ret; 133273038c47SAndreas Gohr} 133373038c47SAndreas Gohr 1334546d3a99SAndreas Gohr/** 1335546d3a99SAndreas Gohr * Wrapper around preg_quote adding the default delimiter 1336546d3a99SAndreas Gohr */ 1337546d3a99SAndreas Gohrfunction preg_quote_cb($string){ 1338546d3a99SAndreas Gohr return preg_quote($string,'/'); 1339546d3a99SAndreas Gohr} 134073038c47SAndreas Gohr 1341bd2f6c2fSAndreas Gohr/** 1342bd2f6c2fSAndreas Gohr * Shorten a given string by removing data from the middle 1343bd2f6c2fSAndreas Gohr * 1344bd2f6c2fSAndreas Gohr * You can give the string in two parts, teh first part $keep 1345bd2f6c2fSAndreas Gohr * will never be shortened. The second part $short will be cut 1346bd2f6c2fSAndreas Gohr * in the middle to shorten but only if at least $min chars are 1347bd2f6c2fSAndreas Gohr * left to display it. Otherwise it will be left off. 1348bd2f6c2fSAndreas Gohr * 1349bd2f6c2fSAndreas Gohr * @param string $keep the part to keep 1350bd2f6c2fSAndreas Gohr * @param string $short the part to shorten 1351bd2f6c2fSAndreas Gohr * @param int $max maximum chars you want for the whole string 1352bd2f6c2fSAndreas Gohr * @param int $min minimum number of chars to have left for middle shortening 1353bd2f6c2fSAndreas Gohr * @param string $char the shortening character to use 1354bd2f6c2fSAndreas Gohr */ 1355bd2f6c2fSAndreas Gohrfunction shorten($keep,$short,$max,$min=9,$char='⌇'){ 1356bd2f6c2fSAndreas Gohr $max = $max - utf8_strlen($keep); 1357bd2f6c2fSAndreas Gohr if($max < $min) return $keep; 1358bd2f6c2fSAndreas Gohr $len = utf8_strlen($short); 1359bd2f6c2fSAndreas Gohr if($len <= $max) return $keep.$short; 1360bd2f6c2fSAndreas Gohr $half = floor($max/2); 1361bd2f6c2fSAndreas Gohr return $keep.utf8_substr($short,0,$half-1).$char.utf8_substr($short,$len-$half); 1362bd2f6c2fSAndreas Gohr} 1363bd2f6c2fSAndreas Gohr 1364dc58b6f4SAndy Webber/** 1365dc58b6f4SAndy Webber * Return the users realname or e-mail address for use 1366dc58b6f4SAndy Webber * in page footer and recent changes pages 1367dc58b6f4SAndy Webber * 1368dc58b6f4SAndy Webber * @author Andy Webber <dokuwiki AT andywebber DOT com> 1369dc58b6f4SAndy Webber */ 1370dc58b6f4SAndy Webberfunction editorinfo($username){ 1371dc58b6f4SAndy Webber global $conf; 1372dc58b6f4SAndy Webber global $auth; 1373dc58b6f4SAndy Webber 1374dc58b6f4SAndy Webber switch($conf['showuseras']){ 1375dc58b6f4SAndy Webber case 'username': 1376dc58b6f4SAndy Webber case 'email': 1377dc58b6f4SAndy Webber case 'email_link': 1378dc58b6f4SAndy Webber $info = $auth->getUserData($username); 1379dc58b6f4SAndy Webber break; 1380dc58b6f4SAndy Webber default: 1381dc58b6f4SAndy Webber return hsc($username); 1382dc58b6f4SAndy Webber } 1383dc58b6f4SAndy Webber 1384dc58b6f4SAndy Webber if(isset($info) && $info) { 1385dc58b6f4SAndy Webber switch($conf['showuseras']){ 1386dc58b6f4SAndy Webber case 'username': 1387dc58b6f4SAndy Webber return hsc($info['name']); 1388dc58b6f4SAndy Webber case 'email': 1389dc58b6f4SAndy Webber return obfuscate($info['mail']); 1390dc58b6f4SAndy Webber case 'email_link': 1391dc58b6f4SAndy Webber $mail=obfuscate($info['mail']); 1392dc58b6f4SAndy Webber return '<a href="mailto:'.$mail.'">'.$mail.'</a>'; 1393dc58b6f4SAndy Webber default: 1394dc58b6f4SAndy Webber return hsc($username); 1395dc58b6f4SAndy Webber } 1396dc58b6f4SAndy Webber } else { 1397dc58b6f4SAndy Webber return hsc($username); 1398dc58b6f4SAndy Webber } 1399066fee30SAndreas Gohr} 1400066fee30SAndreas Gohr 1401066fee30SAndreas Gohr/** 1402066fee30SAndreas Gohr * Returns the path to a image file for the currently chosen license. 1403066fee30SAndreas Gohr * When no image exists, returns an empty string 1404066fee30SAndreas Gohr * 1405066fee30SAndreas Gohr * @author Andreas Gohr <andi@splitbrain.org> 1406066fee30SAndreas Gohr * @param string $type - type of image 'badge' or 'button' 1407066fee30SAndreas Gohr */ 1408066fee30SAndreas Gohrfunction license_img($type){ 1409066fee30SAndreas Gohr global $license; 1410066fee30SAndreas Gohr global $conf; 1411066fee30SAndreas Gohr if(!$conf['license']) return ''; 1412066fee30SAndreas Gohr if(!is_array($license[$conf['license']])) return ''; 1413066fee30SAndreas Gohr $lic = $license[$conf['license']]; 1414066fee30SAndreas Gohr $try = array(); 1415066fee30SAndreas Gohr $try[] = 'lib/images/license/'.$type.'/'.$conf['license'].'.png'; 1416066fee30SAndreas Gohr $try[] = 'lib/images/license/'.$type.'/'.$conf['license'].'.gif'; 1417066fee30SAndreas Gohr if(substr($conf['license'],0,3) == 'cc-'){ 1418066fee30SAndreas Gohr $try[] = 'lib/images/license/'.$type.'/cc.png'; 1419066fee30SAndreas Gohr } 1420066fee30SAndreas Gohr foreach($try as $src){ 1421066fee30SAndreas Gohr if(@file_exists(DOKU_INC.$src)) return $src; 1422066fee30SAndreas Gohr } 1423066fee30SAndreas Gohr return ''; 1424dc58b6f4SAndy Webber} 1425dc58b6f4SAndy Webber 142613c08e2fSMichael Klier/** 142713c08e2fSMichael Klier * Checks if the given amount of memory is available 142813c08e2fSMichael Klier * 142913c08e2fSMichael Klier * If the memory_get_usage() function is not available the 143013c08e2fSMichael Klier * function just assumes $bytes of already allocated memory 143113c08e2fSMichael Klier * 143213c08e2fSMichael Klier * @param int $mem Size of memory you want to allocate in bytes 143313c08e2fSMichael Klier * @param int $used already allocated memory (see above) 143413c08e2fSMichael Klier * @author Filip Oscadal <webmaster@illusionsoftworks.cz> 143513c08e2fSMichael Klier * @author Andreas Gohr <andi@splitbrain.org> 143613c08e2fSMichael Klier */ 143713c08e2fSMichael Klierfunction is_mem_available($mem,$bytes=1048576){ 143813c08e2fSMichael Klier $limit = trim(ini_get('memory_limit')); 143913c08e2fSMichael Klier if(empty($limit)) return true; // no limit set! 144013c08e2fSMichael Klier 144113c08e2fSMichael Klier // parse limit to bytes 144213c08e2fSMichael Klier $limit = php_to_byte($limit); 144313c08e2fSMichael Klier 144413c08e2fSMichael Klier // get used memory if possible 144513c08e2fSMichael Klier if(function_exists('memory_get_usage')){ 144613c08e2fSMichael Klier $used = memory_get_usage(); 144713c08e2fSMichael Klier } 144813c08e2fSMichael Klier 144913c08e2fSMichael Klier if($used+$mem > $limit){ 145013c08e2fSMichael Klier return false; 145113c08e2fSMichael Klier } 145213c08e2fSMichael Klier 145313c08e2fSMichael Klier return true; 145413c08e2fSMichael Klier} 145513c08e2fSMichael Klier 1456340756e4Sandi//Setup VIM: ex: et ts=2 enc=utf-8 : 1457