1ed7b5f09Sandi<?php 2ed7b5f09Sandi/** 3ed7b5f09Sandi * Initialize some defaults needed for DokuWiki 4ed7b5f09Sandi */ 5ed7b5f09Sandi 63272d797SAndreas Gohr/** 73272d797SAndreas Gohr * timing Dokuwiki execution 83272d797SAndreas Gohr */ 9a609a9ccSBen Coburnfunction delta_time($start=0) { 10ac4be4d7SPiyush Mishra return microtime(true)-((float)$start); 11a609a9ccSBen Coburn} 12a609a9ccSBen Coburndefine('DOKU_START_TIME', delta_time()); 13a609a9ccSBen Coburn 14ccaeaa85SAndreas Gohrglobal $config_cascade; 15cca94fbcSRoland Hager$config_cascade = array(); 16ccaeaa85SAndreas Gohr 1748beefecSAndreas Gohr// if available load a preload config file 18e6266454SChris Smith$preload = fullpath(dirname(__FILE__)).'/preload.php'; 19e6266454SChris Smithif (@file_exists($preload)) include($preload); 2048beefecSAndreas Gohr 21ed7b5f09Sandi// define the include path 2200976812SAndreas Gohrif(!defined('DOKU_INC')) define('DOKU_INC',fullpath(dirname(__FILE__).'/../').'/'); 23ad15db82Sandi 24c2a6d816SAndreas Gohr// define Plugin dir 25c2a6d816SAndreas Gohrif(!defined('DOKU_PLUGIN')) define('DOKU_PLUGIN',DOKU_INC.'lib/plugins/'); 26c2a6d816SAndreas Gohr 27e7cb32dcSAndreas Gohr// define config path (packagers may want to change this to /etc/dokuwiki/) 28b7551a6dSEsther Brunnerif(!defined('DOKU_CONF')) define('DOKU_CONF',DOKU_INC.'conf/'); 29e7cb32dcSAndreas Gohr 30bad905f1SBen Coburn// check for error reporting override or set error reporting to sane values 31d8186216SBen Coburnif (!defined('DOKU_E_LEVEL') && @file_exists(DOKU_CONF.'report_e_all')) { 32bad905f1SBen Coburn define('DOKU_E_LEVEL', E_ALL); 33bad905f1SBen Coburn} 34fc80ed59SAndreas Gohrif (!defined('DOKU_E_LEVEL')) { 354fcd684aSMichael Hamann if(defined('E_DEPRECATED')){ // since php 5.3, since php 5.4 E_STRICT is part of E_ALL 364fcd684aSMichael Hamann error_reporting(E_ALL & ~E_NOTICE & ~E_DEPRECATED & ~E_STRICT); 37fc80ed59SAndreas Gohr }else{ 38fc80ed59SAndreas Gohr error_reporting(E_ALL ^ E_NOTICE); 39fc80ed59SAndreas Gohr } 40fc80ed59SAndreas Gohr} else { 41fc80ed59SAndreas Gohr error_reporting(DOKU_E_LEVEL); 42fc80ed59SAndreas Gohr} 43c53ea5f2Sandi 4450602150SBen Coburn// init memory caches 45db959ae3SAndreas Gohrglobal $cache_revinfo; 46db959ae3SAndreas Gohr $cache_revinfo = array(); 47db959ae3SAndreas Gohrglobal $cache_wikifn; 48db959ae3SAndreas Gohr $cache_wikifn = array(); 49db959ae3SAndreas Gohrglobal $cache_cleanid; 50db959ae3SAndreas Gohr $cache_cleanid = array(); 51db959ae3SAndreas Gohrglobal $cache_authname; 52db959ae3SAndreas Gohr $cache_authname = array(); 53db959ae3SAndreas Gohrglobal $cache_metadata; 54db959ae3SAndreas Gohr $cache_metadata = array(); 5550602150SBen Coburn 56cca94fbcSRoland Hager// always include 'inc/config_cascade.php' 57cca94fbcSRoland Hager// previously in preload.php set fields of $config_cascade will be merged with the defaults 58e6a6dbfeSAndreas Gohrinclude(DOKU_INC.'inc/config_cascade.php'); 59cb043f52SChris Smith 604724a577Sandi//prepare config array() 61ee20e7d1Sandiglobal $conf; 624724a577Sandi$conf = array(); 634724a577Sandi 64cb043f52SChris Smith// load the global config file(s) 65b303b92cSChris Smithforeach (array('default','local','protected') as $config_group) { 66f8121585SChris Smith if (empty($config_cascade['main'][$config_group])) continue; 67b303b92cSChris Smith foreach ($config_cascade['main'][$config_group] as $config_file) { 68f8121585SChris Smith if (@file_exists($config_file)) { 69f8121585SChris Smith include($config_file); 70f8121585SChris Smith } 71cb043f52SChris Smith } 720a6ead41SAndreas Gohr} 73ad15db82Sandi 74066fee30SAndreas Gohr//prepare license array() 75066fee30SAndreas Gohrglobal $license; 76066fee30SAndreas Gohr$license = array(); 77066fee30SAndreas Gohr 78066fee30SAndreas Gohr// load the license file(s) 79f8121585SChris Smithforeach (array('default','local') as $config_group) { 80f8121585SChris Smith if (empty($config_cascade['license'][$config_group])) continue; 81f8121585SChris Smith foreach ($config_cascade['license'][$config_group] as $config_file) { 82f8121585SChris Smith if(@file_exists($config_file)){ 83f8121585SChris Smith include($config_file); 84f8121585SChris Smith } 85f8121585SChris Smith } 86066fee30SAndreas Gohr} 87066fee30SAndreas Gohr 881f8eb24fSAndreas Gohr// set timezone (as in pre 5.3.0 days) 891f8eb24fSAndreas Gohrdate_default_timezone_set(@date_default_timezone_get()); 901f8eb24fSAndreas Gohr 91ed7b5f09Sandi// define baseURL 924b1a4e04SAndreas Gohrif(!defined('DOKU_REL')) define('DOKU_REL',getBaseURL(false)); 93ed7b5f09Sandiif(!defined('DOKU_URL')) define('DOKU_URL',getBaseURL(true)); 944b1a4e04SAndreas Gohrif(!defined('DOKU_BASE')){ 954b1a4e04SAndreas Gohr if($conf['canonical']){ 964b1a4e04SAndreas Gohr define('DOKU_BASE',DOKU_URL); 974b1a4e04SAndreas Gohr }else{ 984b1a4e04SAndreas Gohr define('DOKU_BASE',DOKU_REL); 994b1a4e04SAndreas Gohr } 1004b1a4e04SAndreas Gohr} 1014b1a4e04SAndreas Gohr 102b8595a66SAndreas Gohr// define whitespace 103b8595a66SAndreas Gohrif(!defined('DOKU_LF')) define ('DOKU_LF',"\n"); 104b8595a66SAndreas Gohrif(!defined('DOKU_TAB')) define ('DOKU_TAB',"\t"); 105ed7b5f09Sandi 106656c8fb3SAndreas Gohr// define cookie and session id, append server port when securecookie is configured FS#1664 107656c8fb3SAndreas Gohrif (!defined('DOKU_COOKIE')) define('DOKU_COOKIE', 'DW'.md5(DOKU_REL.(($conf['securecookie'])?$_SERVER['SERVER_PORT']:''))); 108e71ce681SAndreas Gohr 109ee20e7d1Sandi 110ed7b5f09Sandi// define main script 111ed7b5f09Sandiif(!defined('DOKU_SCRIPT')) define('DOKU_SCRIPT','doku.php'); 112ed7b5f09Sandi 113c4766956SAndreas Gohr// DEPRECATED, use tpl_basedir() instead 1146b13307fSandiif(!defined('DOKU_TPL')) define('DOKU_TPL', 115f62ea8a1Sandi DOKU_BASE.'lib/tpl/'.$conf['template'].'/'); 1166b13307fSandi 117c4766956SAndreas Gohr// DEPRECATED, use tpl_incdir() instead 11878a6aeb1SAndreas Gohrif(!defined('DOKU_TPLINC')) define('DOKU_TPLINC', 11978a6aeb1SAndreas Gohr DOKU_INC.'lib/tpl/'.$conf['template'].'/'); 12078a6aeb1SAndreas Gohr 121ed7b5f09Sandi// make session rewrites XHTML compliant 1223fc74836Sandi@ini_set('arg_separator.output', '&'); 123ed7b5f09Sandi 124d7e6bba9SAndreas Gohr// make sure global zlib does not interfere FS#1132 125d7e6bba9SAndreas Gohr@ini_set('zlib.output_compression', 'off'); 126d7e6bba9SAndreas Gohr 1276deb5405SAndreas Gohr// increase PCRE backtrack limit 1286deb5405SAndreas Gohr@ini_set('pcre.backtrack_limit', '20971520'); 1296deb5405SAndreas Gohr 13098bda4fdSAndreas Gohr// enable gzip compression if supported 13198bda4fdSAndreas Gohr$conf['gzip_output'] &= (strpos($_SERVER['HTTP_ACCEPT_ENCODING'],'gzip') !== false); 13265f6e7d6SMichael Hamannglobal $ACT; 1333138b5c7SAndreas Gohrif ($conf['gzip_output'] && 1343138b5c7SAndreas Gohr !defined('DOKU_DISABLE_GZIP_OUTPUT') && 13565f6e7d6SMichael Hamann function_exists('ob_gzhandler') && 13699e10b7fSMichael Hamann // Disable compression when a (compressed) sitemap might be delivered 13765f6e7d6SMichael Hamann // See https://bugs.dokuwiki.org/index.php?do=details&task_id=2576 13899e10b7fSMichael Hamann $ACT != 'sitemap') { 1393138b5c7SAndreas Gohr ob_start('ob_gzhandler'); 1403138b5c7SAndreas Gohr} 1413138b5c7SAndreas Gohr 142ed7b5f09Sandi// init session 1436534245aSAndreas Gohrif(!headers_sent() && !defined('NOSESSION')) { 144c09f0eb1SGerrit Uitslag if(!defined('DOKU_SESSION_NAME')) define ('DOKU_SESSION_NAME', "DokuWiki"); 145c09f0eb1SGerrit Uitslag if(!defined('DOKU_SESSION_LIFETIME')) define ('DOKU_SESSION_LIFETIME', 0); 14655a71a16SGerrit Uitslag if(!defined('DOKU_SESSION_PATH')) { 14773ab87deSGabriel Birke $cookieDir = empty($conf['cookiedir']) ? DOKU_REL : $conf['cookiedir']; 14855a71a16SGerrit Uitslag define ('DOKU_SESSION_PATH', $cookieDir); 14955a71a16SGerrit Uitslag } 150c09f0eb1SGerrit Uitslag if(!defined('DOKU_SESSION_DOMAIN')) define ('DOKU_SESSION_DOMAIN', ''); 151c09f0eb1SGerrit Uitslag 152c09f0eb1SGerrit Uitslag session_name(DOKU_SESSION_NAME); 153c09f0eb1SGerrit Uitslag session_set_cookie_params(DOKU_SESSION_LIFETIME, DOKU_SESSION_PATH, DOKU_SESSION_DOMAIN, ($conf['securecookie'] && is_ssl()), true); 154bad31ae9SAndreas Gohr session_start(); 15514a122deSAndreas Gohr 15614a122deSAndreas Gohr // load left over messages 15714a122deSAndreas Gohr if(isset($_SESSION[DOKU_COOKIE]['msg'])) { 15814a122deSAndreas Gohr $MSG = $_SESSION[DOKU_COOKIE]['msg']; 15914a122deSAndreas Gohr unset($_SESSION[DOKU_COOKIE]['msg']); 16014a122deSAndreas Gohr } 161bad31ae9SAndreas Gohr} 162ed7b5f09Sandi 163ed7b5f09Sandi// kill magic quotes 164e55eb89cSAndreas Gohrif (get_magic_quotes_gpc() && !defined('MAGIC_QUOTES_STRIPPED')) { 165ed7b5f09Sandi if (!empty($_GET)) remove_magic_quotes($_GET); 166ed7b5f09Sandi if (!empty($_POST)) remove_magic_quotes($_POST); 167ed7b5f09Sandi if (!empty($_COOKIE)) remove_magic_quotes($_COOKIE); 168ed7b5f09Sandi if (!empty($_REQUEST)) remove_magic_quotes($_REQUEST); 1693fc74836Sandi @ini_set('magic_quotes_gpc', 0); 170e55eb89cSAndreas Gohr define('MAGIC_QUOTES_STRIPPED',1); 171ed7b5f09Sandi} 172c114d4c4SAndreas Gohrif(function_exists('set_magic_quotes_runtime')) @set_magic_quotes_runtime(0); 1733fc74836Sandi@ini_set('magic_quotes_sybase',0); 174ed7b5f09Sandi 175a1637ffdSAndreas Gohr// don't let cookies ever interfere with request vars 176a1637ffdSAndreas Gohr$_REQUEST = array_merge($_GET,$_POST); 177a1637ffdSAndreas Gohr 1783dea4ebcSAndreas Gohr// we don't want a purge URL to be digged 1790e80bb5eSChristopher Smithif(isset($_REQUEST['purge']) && !empty($_SERVER['HTTP_REFERER'])) unset($_REQUEST['purge']); 1803dea4ebcSAndreas Gohr 181ed7b5f09Sandi// disable gzip if not available 1828a447e5cSAndreas Gohrif($conf['compression'] == 'bz2' && !function_exists('bzopen')){ 183fe893490SAndreas Gohr $conf['compression'] = 'gz'; 184501252a5SAndreas Gohr} 185fe893490SAndreas Gohrif($conf['compression'] == 'gz' && !function_exists('gzopen')){ 186501252a5SAndreas Gohr $conf['compression'] = 0; 187ed7b5f09Sandi} 188ed7b5f09Sandi 1891ca31cfeSAndreas Gohr// precalculate file creation modes 1901ca31cfeSAndreas Gohrinit_creationmodes(); 191ed7b5f09Sandi 1923dc3a5f1Sandi// make real paths and check them 19398407a7aSandiinit_paths(); 1947367b368SAndreas Gohrinit_files(); 195ed7b5f09Sandi 196f1986589SMichael Klier// setup plugin controller class (can be overwritten in preload.php) 19793a7873eSAndreas Gohr$plugin_types = array('auth', 'admin','syntax','action','renderer', 'helper','remote'); 198f1986589SMichael Klierglobal $plugin_controller_class, $plugin_controller; 199f1986589SMichael Klierif (empty($plugin_controller_class)) $plugin_controller_class = 'Doku_Plugin_Controller'; 200f1986589SMichael Klier 201c7cb395cSAdrian Lang// load libraries 202c7cb395cSAdrian Langrequire_once(DOKU_INC.'inc/load.php'); 203c7cb395cSAdrian Lang 20489177306SAndreas Gohr// input handle class 20589177306SAndreas Gohrglobal $INPUT; 20689177306SAndreas Gohr$INPUT = new Input(); 20789177306SAndreas Gohr 208f1986589SMichael Klier// initialize plugin controller 209f1986589SMichael Klier$plugin_controller = new $plugin_controller_class(); 210f1986589SMichael Klier 211f1986589SMichael Klier// initialize the event handler 212f1986589SMichael Klierglobal $EVENT_HANDLER; 213f1986589SMichael Klier$EVENT_HANDLER = new Doku_Event_Handler(); 214f1986589SMichael Klier 2156d06b26aSDominik Eckelmann$local = $conf['lang']; 2166d06b26aSDominik Eckelmanntrigger_event('INIT_LANG_LOAD', $local, 'init_lang', true); 2176d06b26aSDominik Eckelmann 2186d06b26aSDominik Eckelmann 21916905344SAndreas Gohr// setup authentication system 220c7cb395cSAdrian Langif (!defined('NOSESSION')) { 22116905344SAndreas Gohr auth_setup(); 222c7cb395cSAdrian Lang} 223f62ea8a1Sandi 2245ec3fefcSAndreas Gohr// setup mail system 2255ec3fefcSAndreas Gohrmail_setup(); 2265ec3fefcSAndreas Gohr 227f62ea8a1Sandi/** 22898407a7aSandi * Checks paths from config file 22998407a7aSandi */ 23098407a7aSandifunction init_paths(){ 23198407a7aSandi global $conf; 23298407a7aSandi 23398407a7aSandi $paths = array('datadir' => 'pages', 23498407a7aSandi 'olddir' => 'attic', 23598407a7aSandi 'mediadir' => 'media', 236e4f389efSKate Arzamastseva 'mediaolddir' => 'media_attic', 23798407a7aSandi 'metadir' => 'meta', 238e4f389efSKate Arzamastseva 'mediametadir' => 'media_meta', 23998407a7aSandi 'cachedir' => 'cache', 240579b0f7eSTNHarris 'indexdir' => 'index', 241de33a58fSMichael Klier 'lockdir' => 'locks', 242de33a58fSMichael Klier 'tmpdir' => 'tmp'); 24398407a7aSandi 24498407a7aSandi foreach($paths as $c => $p) { 2457f086b67SAnika Henke $path = empty($conf[$c]) ? $conf['savedir'].'/'.$p : $conf[$c]; 2466b9c156cSAnika Henke $conf[$c] = init_path($path); 2476b9c156cSAnika Henke if(empty($conf[$c])) 2486b9c156cSAnika Henke nice_die("The $c ('$p') at $path is not found, isn't accessible or writable. 24969dc3177SAndreas Gohr You should check your config and permission settings. 25069dc3177SAndreas Gohr Or maybe you want to <a href=\"install.php\">run the 25169dc3177SAndreas Gohr installer</a>?"); 25298407a7aSandi } 25371726d78SBen Coburn 25471726d78SBen Coburn // path to old changelog only needed for upgrading 25571726d78SBen Coburn $conf['changelog_old'] = init_path((isset($conf['changelog']))?($conf['changelog']):($conf['savedir'].'/changes.log')); 25671726d78SBen Coburn if ($conf['changelog_old']=='') { unset($conf['changelog_old']); } 25771726d78SBen Coburn // hardcoded changelog because it is now a cache that lives in meta 25871726d78SBen Coburn $conf['changelog'] = $conf['metadir'].'/_dokuwiki.changes'; 25999c8d7f2Smichael $conf['media_changelog'] = $conf['metadir'].'/_media.changes'; 26098407a7aSandi} 26198407a7aSandi 26238fb1fc7SGerrit Uitslag/** 26338fb1fc7SGerrit Uitslag * Load the language strings 26438fb1fc7SGerrit Uitslag * 26538fb1fc7SGerrit Uitslag * @param string $langCode language code, as passed by event handler 26638fb1fc7SGerrit Uitslag */ 2676d06b26aSDominik Eckelmannfunction init_lang($langCode) { 2686d06b26aSDominik Eckelmann //prepare language array 269*dd7a6159SGerrit Uitslag global $lang, $config_cascade; 2706d06b26aSDominik Eckelmann $lang = array(); 2716d06b26aSDominik Eckelmann 2726d06b26aSDominik Eckelmann //load the language files 2731d82c8d3SChristopher Smith require(DOKU_INC.'inc/lang/en/lang.php'); 274*dd7a6159SGerrit Uitslag foreach ($config_cascade['lang']['core'] as $config_file) { 275*dd7a6159SGerrit Uitslag if (@file_exists($config_file . 'en/lang.php')) { 276*dd7a6159SGerrit Uitslag include($config_file . 'en/lang.php'); 277*dd7a6159SGerrit Uitslag } 278*dd7a6159SGerrit Uitslag } 279*dd7a6159SGerrit Uitslag 2806d06b26aSDominik Eckelmann if ($langCode && $langCode != 'en') { 2816d06b26aSDominik Eckelmann if (file_exists(DOKU_INC."inc/lang/$langCode/lang.php")) { 2821d82c8d3SChristopher Smith require(DOKU_INC."inc/lang/$langCode/lang.php"); 2836d06b26aSDominik Eckelmann } 284*dd7a6159SGerrit Uitslag foreach ($config_cascade['lang']['core'] as $config_file) { 285*dd7a6159SGerrit Uitslag if (@file_exists($config_file . "$langCode/lang.php")) { 286*dd7a6159SGerrit Uitslag include($config_file . "$langCode/lang.php"); 2876d06b26aSDominik Eckelmann } 288*dd7a6159SGerrit Uitslag } 28938fb1fc7SGerrit Uitslag } 2906d06b26aSDominik Eckelmann} 2916d06b26aSDominik Eckelmann 29298407a7aSandi/** 2936b9c156cSAnika Henke * Checks the existence of certain files and creates them if missing. 2947367b368SAndreas Gohr */ 2957367b368SAndreas Gohrfunction init_files(){ 2967367b368SAndreas Gohr global $conf; 2970d8850c4SAndreas Gohr 298345b1674SAndreas Gohr $files = array($conf['indexdir'].'/page.idx'); 2997367b368SAndreas Gohr 3007367b368SAndreas Gohr foreach($files as $file){ 3017367b368SAndreas Gohr if(!@file_exists($file)){ 3020d8850c4SAndreas Gohr $fh = @fopen($file,'a'); 3030d8850c4SAndreas Gohr if($fh){ 3047367b368SAndreas Gohr fclose($fh); 305443e135dSChristopher Smith if(!empty($conf['fperm'])) chmod($file, $conf['fperm']); 3060d8850c4SAndreas Gohr }else{ 3073816dcbcSAndreas Gohr nice_die("$file is not writable. Check your permissions settings!"); 3080d8850c4SAndreas Gohr } 3097367b368SAndreas Gohr } 3107367b368SAndreas Gohr } 311345b1674SAndreas Gohr 312345b1674SAndreas Gohr # create title index (needs to have same length as page.idx) 3139b41be24STom N Harris /* 314345b1674SAndreas Gohr $file = $conf['indexdir'].'/title.idx'; 315345b1674SAndreas Gohr if(!@file_exists($file)){ 316345b1674SAndreas Gohr $pages = file($conf['indexdir'].'/page.idx'); 317345b1674SAndreas Gohr $pages = count($pages); 318345b1674SAndreas Gohr $fh = @fopen($file,'a'); 319345b1674SAndreas Gohr if($fh){ 320345b1674SAndreas Gohr for($i=0; $i<$pages; $i++){ 321345b1674SAndreas Gohr fwrite($fh,"\n"); 322345b1674SAndreas Gohr } 323345b1674SAndreas Gohr fclose($fh); 324345b1674SAndreas Gohr }else{ 325345b1674SAndreas Gohr nice_die("$file is not writable. Check your permissions settings!"); 326345b1674SAndreas Gohr } 327345b1674SAndreas Gohr } 3289b41be24STom N Harris */ 3297367b368SAndreas Gohr} 3307367b368SAndreas Gohr 3317367b368SAndreas Gohr/** 3320d8850c4SAndreas Gohr * Returns absolute path 333f62ea8a1Sandi * 3340d8850c4SAndreas Gohr * This tries the given path first, then checks in DOKU_INC. 3357f086b67SAnika Henke * Check for accessibility on directories as well. 3360d8850c4SAndreas Gohr * 3370d8850c4SAndreas Gohr * @author Andreas Gohr <andi@splitbrain.org> 338f62ea8a1Sandi */ 339f62ea8a1Sandifunction init_path($path){ 3406b9c156cSAnika Henke // check existence 34100976812SAndreas Gohr $p = fullpath($path); 3420d8850c4SAndreas Gohr if(!@file_exists($p)){ 34300976812SAndreas Gohr $p = fullpath(DOKU_INC.$path); 3440d8850c4SAndreas Gohr if(!@file_exists($p)){ 3458fc4e739Sandi return ''; 346f62ea8a1Sandi } 3470d8850c4SAndreas Gohr } 3480d8850c4SAndreas Gohr 3490d8850c4SAndreas Gohr // check writability 3500d8850c4SAndreas Gohr if(!@is_writable($p)){ 3510d8850c4SAndreas Gohr return ''; 3520d8850c4SAndreas Gohr } 3530d8850c4SAndreas Gohr 3540d8850c4SAndreas Gohr // check accessability (execute bit) for directories 3550d8850c4SAndreas Gohr if(@is_dir($p) && !@file_exists("$p/.")){ 3560d8850c4SAndreas Gohr return ''; 3570d8850c4SAndreas Gohr } 3580d8850c4SAndreas Gohr 3590d8850c4SAndreas Gohr return $p; 3600d8850c4SAndreas Gohr} 3618c4f28e8Sjan 362ed7b5f09Sandi/** 3631ca31cfeSAndreas Gohr * Sets the internal config values fperm and dperm which, when set, 3641ca31cfeSAndreas Gohr * will be used to change the permission of a newly created dir or 3651ca31cfeSAndreas Gohr * file with chmod. Considers the influence of the system's umask 3661ca31cfeSAndreas Gohr * setting the values only if needed. 3671ca31cfeSAndreas Gohr */ 3681ca31cfeSAndreas Gohrfunction init_creationmodes(){ 3691ca31cfeSAndreas Gohr global $conf; 3701ca31cfeSAndreas Gohr 3711ca31cfeSAndreas Gohr // Legacy support for old umask/dmask scheme 3721ca31cfeSAndreas Gohr unset($conf['dmask']); 3731ca31cfeSAndreas Gohr unset($conf['fmask']); 3741ca31cfeSAndreas Gohr unset($conf['umask']); 3751ca31cfeSAndreas Gohr unset($conf['fperm']); 3761ca31cfeSAndreas Gohr unset($conf['dperm']); 3771ca31cfeSAndreas Gohr 3789f3cdec3SAndreas Gohr // get system umask, fallback to 0 if none available 3799f3cdec3SAndreas Gohr $umask = @umask(); 3809f3cdec3SAndreas Gohr if(!$umask) $umask = 0000; 3811ca31cfeSAndreas Gohr 3821ca31cfeSAndreas Gohr // check what is set automatically by the system on file creation 3831ca31cfeSAndreas Gohr // and set the fperm param if it's not what we want 3841ca31cfeSAndreas Gohr $auto_fmode = 0666 & ~$umask; 3851ca31cfeSAndreas Gohr if($auto_fmode != $conf['fmode']) $conf['fperm'] = $conf['fmode']; 3861ca31cfeSAndreas Gohr 3871ca31cfeSAndreas Gohr // check what is set automatically by the system on file creation 3881ca31cfeSAndreas Gohr // and set the dperm param if it's not what we want 3891ca31cfeSAndreas Gohr $auto_dmode = $conf['dmode'] & ~$umask; 3901ca31cfeSAndreas Gohr if($auto_dmode != $conf['dmode']) $conf['dperm'] = $conf['dmode']; 3911ca31cfeSAndreas Gohr} 3921ca31cfeSAndreas Gohr 3931ca31cfeSAndreas Gohr/** 394ed7b5f09Sandi * remove magic quotes recursivly 395ed7b5f09Sandi * 396ed7b5f09Sandi * @author Andreas Gohr <andi@splitbrain.org> 397ed7b5f09Sandi */ 398ed7b5f09Sandifunction remove_magic_quotes(&$array) { 399ed7b5f09Sandi foreach (array_keys($array) as $key) { 40081c54349SAndreas Gohr // handle magic quotes in keynames (breaks order) 40181c54349SAndreas Gohr $sk = stripslashes($key); 40281c54349SAndreas Gohr if($sk != $key){ 40381c54349SAndreas Gohr $array[$sk] = $array[$key]; 40481c54349SAndreas Gohr unset($array[$key]); 40581c54349SAndreas Gohr $key = $sk; 40681c54349SAndreas Gohr } 40781c54349SAndreas Gohr 40881c54349SAndreas Gohr // do recursion if needed 409ed7b5f09Sandi if (is_array($array[$key])) { 410ed7b5f09Sandi remove_magic_quotes($array[$key]); 411ed7b5f09Sandi }else { 412ed7b5f09Sandi $array[$key] = stripslashes($array[$key]); 413ed7b5f09Sandi } 414ed7b5f09Sandi } 415ed7b5f09Sandi} 416ed7b5f09Sandi 417ed7b5f09Sandi/** 418ed7b5f09Sandi * Returns the full absolute URL to the directory where 419ed7b5f09Sandi * DokuWiki is installed in (includes a trailing slash) 420ed7b5f09Sandi * 421585bf44eSChristopher Smith * !! Can not access $_SERVER values through $INPUT 422585bf44eSChristopher Smith * !! here as this function is called before $INPUT is 423585bf44eSChristopher Smith * !! initialized. 424585bf44eSChristopher Smith * 425ed7b5f09Sandi * @author Andreas Gohr <andi@splitbrain.org> 426ed7b5f09Sandi */ 4274b1a4e04SAndreas Gohrfunction getBaseURL($abs=null){ 428ed7b5f09Sandi global $conf; 429ed7b5f09Sandi //if canonical url enabled always return absolute 4304b1a4e04SAndreas Gohr if(is_null($abs)) $abs = $conf['canonical']; 431ed7b5f09Sandi 43292b83b77Sandi if($conf['basedir']){ 43346c73e01SChris Smith $dir = $conf['basedir']; 43489aa05dbSAndreas Gohr }elseif(substr($_SERVER['SCRIPT_NAME'],-4) == '.php'){ 43546c73e01SChris Smith $dir = dirname($_SERVER['SCRIPT_NAME']); 43689aa05dbSAndreas Gohr }elseif(substr($_SERVER['PHP_SELF'],-4) == '.php'){ 43746c73e01SChris Smith $dir = dirname($_SERVER['PHP_SELF']); 438093ec9e4Sandi }elseif($_SERVER['DOCUMENT_ROOT'] && $_SERVER['SCRIPT_FILENAME']){ 439093ec9e4Sandi $dir = preg_replace ('/^'.preg_quote($_SERVER['DOCUMENT_ROOT'],'/').'/','', 440093ec9e4Sandi $_SERVER['SCRIPT_FILENAME']); 44146c73e01SChris Smith $dir = dirname('/'.$dir); 44292b83b77Sandi }else{ 44346c73e01SChris Smith $dir = '.'; //probably wrong 44492b83b77Sandi } 445ed7b5f09Sandi 44646c73e01SChris Smith $dir = str_replace('\\','/',$dir); // bugfix for weird WIN behaviour 44746c73e01SChris Smith $dir = preg_replace('#//+#','/',"/$dir/"); // ensure leading and trailing slashes 448ed7b5f09Sandi 449f62ea8a1Sandi //handle script in lib/exe dir 450f62ea8a1Sandi $dir = preg_replace('!lib/exe/$!','',$dir); 451f62ea8a1Sandi 452488d5fa0SMichael Klier chi@chimeric.de //handle script in lib/plugins dir 453488d5fa0SMichael Klier chi@chimeric.de $dir = preg_replace('!lib/plugins/.*$!','',$dir); 454488d5fa0SMichael Klier chi@chimeric.de 455ed7b5f09Sandi //finish here for relative URLs 456ed7b5f09Sandi if(!$abs) return $dir; 457ed7b5f09Sandi 45846c73e01SChris Smith //use config option if available, trim any slash from end of baseurl to avoid multiple consecutive slashes in the path 45946c73e01SChris Smith if($conf['baseurl']) return rtrim($conf['baseurl'],'/').$dir; 460ef7b3ecdSAndreas Gohr 461e82e3526SAndreas Gohr //split hostheader into host and port 4625627186cSAndreas Gohr if(isset($_SERVER['HTTP_HOST'])){ 463204b27c8SMichael Hamann $parsed_host = parse_url('http://'.$_SERVER['HTTP_HOST']); 464f87b5dbbSChristopher Smith $host = isset($parsed_host['host']) ? $parsed_host['host'] : null; 465f87b5dbbSChristopher Smith $port = isset($parsed_host['port']) ? $parsed_host['port'] : null; 4665627186cSAndreas Gohr }elseif(isset($_SERVER['SERVER_NAME'])){ 467204b27c8SMichael Hamann $parsed_host = parse_url('http://'.$_SERVER['SERVER_NAME']); 468f87b5dbbSChristopher Smith $host = isset($parsed_host['host']) ? $parsed_host['host'] : null; 469f87b5dbbSChristopher Smith $port = isset($parsed_host['port']) ? $parsed_host['port'] : null; 4705627186cSAndreas Gohr }else{ 4715627186cSAndreas Gohr $host = php_uname('n'); 472c66972f2SAdrian Lang $port = ''; 4735627186cSAndreas Gohr } 4745627186cSAndreas Gohr 4755627186cSAndreas Gohr if(!$port && isset($_SERVER['SERVER_PORT'])) { 476c66972f2SAdrian Lang $port = $_SERVER['SERVER_PORT']; 477c66972f2SAdrian Lang } 478204b27c8SMichael Hamann 479204b27c8SMichael Hamann if(is_null($port)){ 480204b27c8SMichael Hamann $port = ''; 481204b27c8SMichael Hamann } 482204b27c8SMichael Hamann 483f5c6743cSAndreas Gohr if(!is_ssl()){ 484ed7b5f09Sandi $proto = 'http://'; 485e82e3526SAndreas Gohr if ($port == '80') { 486ed7b5f09Sandi $port = ''; 487ed7b5f09Sandi } 488ed7b5f09Sandi }else{ 489ed7b5f09Sandi $proto = 'https://'; 490e82e3526SAndreas Gohr if ($port == '443') { 491ed7b5f09Sandi $port = ''; 492ed7b5f09Sandi } 493ed7b5f09Sandi } 494ed7b5f09Sandi 495c66972f2SAdrian Lang if($port !== '') $port = ':'.$port; 496e82e3526SAndreas Gohr 497ed7b5f09Sandi return $proto.$host.$port.$dir; 498ed7b5f09Sandi} 499ed7b5f09Sandi 500b000c6d4Sandi/** 501f5c6743cSAndreas Gohr * Check if accessed via HTTPS 502f5c6743cSAndreas Gohr * 503f5c6743cSAndreas Gohr * Apache leaves ,$_SERVER['HTTPS'] empty when not available, IIS sets it to 'off'. 504f5c6743cSAndreas Gohr * 'false' and 'disabled' are just guessing 505f5c6743cSAndreas Gohr * 506f5c6743cSAndreas Gohr * @returns bool true when SSL is active 507f5c6743cSAndreas Gohr */ 508f5c6743cSAndreas Gohrfunction is_ssl(){ 509c66972f2SAdrian Lang if (!isset($_SERVER['HTTPS']) || 510c66972f2SAdrian Lang preg_match('/^(|off|false|disabled)$/i',$_SERVER['HTTPS'])){ 511f5c6743cSAndreas Gohr return false; 512f5c6743cSAndreas Gohr }else{ 513f5c6743cSAndreas Gohr return true; 514f5c6743cSAndreas Gohr } 515f5c6743cSAndreas Gohr} 516f5c6743cSAndreas Gohr 517f5c6743cSAndreas Gohr/** 5183816dcbcSAndreas Gohr * print a nice message even if no styles are loaded yet. 5193816dcbcSAndreas Gohr */ 5203816dcbcSAndreas Gohrfunction nice_die($msg){ 5213816dcbcSAndreas Gohr echo<<<EOT 522c8839c22SAnika Henke<!DOCTYPE html> 5233816dcbcSAndreas Gohr<html> 5243816dcbcSAndreas Gohr<head><title>DokuWiki Setup Error</title></head> 5253816dcbcSAndreas Gohr<body style="font-family: Arial, sans-serif"> 5263816dcbcSAndreas Gohr <div style="width:60%; margin: auto; background-color: #fcc; 5273816dcbcSAndreas Gohr border: 1px solid #faa; padding: 0.5em 1em;"> 5283816dcbcSAndreas Gohr <h1 style="font-size: 120%">DokuWiki Setup Error</h1> 5293816dcbcSAndreas Gohr <p>$msg</p> 5303816dcbcSAndreas Gohr </div> 5313816dcbcSAndreas Gohr</body> 5323816dcbcSAndreas Gohr</html> 5333816dcbcSAndreas GohrEOT; 5343816dcbcSAndreas Gohr exit; 5353816dcbcSAndreas Gohr} 5363816dcbcSAndreas Gohr 53700976812SAndreas Gohr/** 53800976812SAndreas Gohr * A realpath() replacement 53900976812SAndreas Gohr * 54000976812SAndreas Gohr * This function behaves similar to PHP's realpath() but does not resolve 54100976812SAndreas Gohr * symlinks or accesses upper directories 54200976812SAndreas Gohr * 5434761d30cSAndreas Gohr * @author Andreas Gohr <andi@splitbrain.org> 54400976812SAndreas Gohr * @author <richpageau at yahoo dot co dot uk> 54500976812SAndreas Gohr * @link http://de3.php.net/manual/en/function.realpath.php#75992 54600976812SAndreas Gohr */ 547b328697dSAndreas Gohrfunction fullpath($path,$exists=false){ 5484761d30cSAndreas Gohr static $run = 0; 5494761d30cSAndreas Gohr $root = ''; 550f0a201c5SChris Smith $iswin = (strtoupper(substr(PHP_OS, 0, 3)) === 'WIN' || @$GLOBALS['DOKU_UNITTEST_ASSUME_WINDOWS']); 55100976812SAndreas Gohr 5524761d30cSAndreas Gohr // find the (indestructable) root of the path - keeps windows stuff intact 5534761d30cSAndreas Gohr if($path{0} == '/'){ 5544761d30cSAndreas Gohr $root = '/'; 5554761d30cSAndreas Gohr }elseif($iswin){ 5564761d30cSAndreas Gohr // match drive letter and UNC paths 5574761d30cSAndreas Gohr if(preg_match('!^([a-zA-z]:)(.*)!',$path,$match)){ 558b9c4302bSAndreas Gohr $root = $match[1].'/'; 5594761d30cSAndreas Gohr $path = $match[2]; 5604761d30cSAndreas Gohr }else if(preg_match('!^(\\\\\\\\[^\\\\/]+\\\\[^\\\\/]+[\\\\/])(.*)!',$path,$match)){ 5614761d30cSAndreas Gohr $root = $match[1]; 5624761d30cSAndreas Gohr $path = $match[2]; 56300976812SAndreas Gohr } 5644761d30cSAndreas Gohr } 5654761d30cSAndreas Gohr $path = str_replace('\\','/',$path); 5664761d30cSAndreas Gohr 5674761d30cSAndreas Gohr // if the given path wasn't absolute already, prepend the script path and retry 5684761d30cSAndreas Gohr if(!$root){ 5694761d30cSAndreas Gohr $base = dirname($_SERVER['SCRIPT_FILENAME']); 5704761d30cSAndreas Gohr $path = $base.'/'.$path; 5714761d30cSAndreas Gohr if($run == 0){ // avoid endless recursion when base isn't absolute for some reason 5724761d30cSAndreas Gohr $run++; 573b328697dSAndreas Gohr return fullpath($path,$exists); 5744761d30cSAndreas Gohr } 5754761d30cSAndreas Gohr } 5764761d30cSAndreas Gohr $run = 0; 57700976812SAndreas Gohr 57800976812SAndreas Gohr // canonicalize 57900976812SAndreas Gohr $path=explode('/', $path); 58000976812SAndreas Gohr $newpath=array(); 581ef38bfe8SAndreas Gohr foreach($path as $p) { 582ef38bfe8SAndreas Gohr if ($p === '' || $p === '.') continue; 583ef38bfe8SAndreas Gohr if ($p==='..') { 58400976812SAndreas Gohr array_pop($newpath); 58500976812SAndreas Gohr continue; 58600976812SAndreas Gohr } 587ef38bfe8SAndreas Gohr array_push($newpath, $p); 58800976812SAndreas Gohr } 5894761d30cSAndreas Gohr $finalpath = $root.implode('/', $newpath); 59000976812SAndreas Gohr 5916b9c156cSAnika Henke // check for existence when needed (except when unit testing) 592b328697dSAndreas Gohr if($exists && !defined('DOKU_UNITTEST') && !@file_exists($finalpath)) { 5934761d30cSAndreas Gohr return false; 59400976812SAndreas Gohr } 5954761d30cSAndreas Gohr return $finalpath; 59600976812SAndreas Gohr} 59700976812SAndreas Gohr 598