xref: /dokuwiki/inc/init.php (revision 3dea4ebc5f730a60750f86e532775810508acae5)
1ed7b5f09Sandi<?php
2ed7b5f09Sandi/**
3ed7b5f09Sandi * Initialize some defaults needed for DokuWiki
4ed7b5f09Sandi */
5ed7b5f09Sandi
6a609a9ccSBen Coburn  // start timing Dokuwiki execution
7a609a9ccSBen Coburn  function delta_time($start=0) {
8a609a9ccSBen Coburn    list($usec, $sec) = explode(" ", microtime());
9a609a9ccSBen Coburn    return ((float)$usec+(float)$sec)-((float)$start);
10a609a9ccSBen Coburn  }
11a609a9ccSBen Coburn  define('DOKU_START_TIME', delta_time());
12a609a9ccSBen Coburn
1348beefecSAndreas Gohr  // if available load a preload config file
1448beefecSAndreas Gohr  @include(fullpath(dirname(__FILE__)).'/preload.php');
1548beefecSAndreas Gohr
16ed7b5f09Sandi  // define the include path
1700976812SAndreas Gohr  if(!defined('DOKU_INC')) define('DOKU_INC',fullpath(dirname(__FILE__).'/../').'/');
18ad15db82Sandi
19e7cb32dcSAndreas Gohr  // define config path (packagers may want to change this to /etc/dokuwiki/)
20b7551a6dSEsther Brunner  if(!defined('DOKU_CONF')) define('DOKU_CONF',DOKU_INC.'conf/');
21e7cb32dcSAndreas Gohr
22bad905f1SBen Coburn  // check for error reporting override or set error reporting to sane values
23d8186216SBen Coburn  if (!defined('DOKU_E_LEVEL') && @file_exists(DOKU_CONF.'report_e_all')) {
24bad905f1SBen Coburn    define('DOKU_E_LEVEL', E_ALL);
25bad905f1SBen Coburn  }
26fc80ed59SAndreas Gohr  if (!defined('DOKU_E_LEVEL')) {
27fc80ed59SAndreas Gohr    if(defined('E_DEPRECATED')){ // since php 5.3
28fc80ed59SAndreas Gohr      error_reporting(E_ALL & ~E_NOTICE & ~E_DEPRECATED);
29fc80ed59SAndreas Gohr    }else{
30fc80ed59SAndreas Gohr      error_reporting(E_ALL ^ E_NOTICE);
31fc80ed59SAndreas Gohr    }
32fc80ed59SAndreas Gohr  } else {
33fc80ed59SAndreas Gohr    error_reporting(DOKU_E_LEVEL);
34fc80ed59SAndreas Gohr  }
35c53ea5f2Sandi
3650602150SBen Coburn  // init memory caches
37bc3e97beSAndreas Gohr  global $cache_revinfo;  $cache_revinfo = array();
38bc3e97beSAndreas Gohr  global $cache_wikifn;   $cache_wikifn = array();
39a424cd8eSchris  global $cache_cleanid;  $cache_cleanid = array();
40a424cd8eSchris  global $cache_authname; $cache_authname = array();
410a7e3bceSchris  global $cache_metadata; $cache_metadata = array();
4250602150SBen Coburn
434724a577Sandi  //prepare config array()
44ee20e7d1Sandi  global $conf;
454724a577Sandi  $conf = array();
464724a577Sandi
47ad15db82Sandi  // load the config file(s)
48e7cb32dcSAndreas Gohr  require_once(DOKU_CONF.'dokuwiki.php');
490a6ead41SAndreas Gohr  if(@file_exists(DOKU_CONF.'local.php')){
500a6ead41SAndreas Gohr    require_once(DOKU_CONF.'local.php');
510a6ead41SAndreas Gohr  }
52ad15db82Sandi
53ad15db82Sandi  //prepare language array
54ee20e7d1Sandi  global $lang;
55ad15db82Sandi  $lang = array();
56ed7b5f09Sandi
5716521111Sandi  //load the language files
58bc3b6aecSandi  require_once(DOKU_INC.'inc/lang/en/lang.php');
59f949a01cSAndreas Gohr  if ( $conf['lang'] && $conf['lang'] != 'en' ) {
60bc3b6aecSandi    require_once(DOKU_INC.'inc/lang/'.$conf['lang'].'/lang.php');
61fc1c55b1Shfuecks  }
6216521111Sandi
63066fee30SAndreas Gohr  //prepare license array()
64066fee30SAndreas Gohr  global $license;
65066fee30SAndreas Gohr  $license = array();
66066fee30SAndreas Gohr
67066fee30SAndreas Gohr  // load the license file(s)
68066fee30SAndreas Gohr  require_once(DOKU_CONF.'license.php');
69066fee30SAndreas Gohr  if(@file_exists(DOKU_CONF.'license.php')){
70066fee30SAndreas Gohr    require_once(DOKU_CONF.'license.php');
71066fee30SAndreas Gohr  }
72066fee30SAndreas Gohr
73ed7b5f09Sandi  // define baseURL
744b1a4e04SAndreas Gohr  if(!defined('DOKU_REL')) define('DOKU_REL',getBaseURL(false));
75ed7b5f09Sandi  if(!defined('DOKU_URL')) define('DOKU_URL',getBaseURL(true));
764b1a4e04SAndreas Gohr  if(!defined('DOKU_BASE')){
774b1a4e04SAndreas Gohr    if($conf['canonical']){
784b1a4e04SAndreas Gohr      define('DOKU_BASE',DOKU_URL);
794b1a4e04SAndreas Gohr    }else{
804b1a4e04SAndreas Gohr      define('DOKU_BASE',DOKU_REL);
814b1a4e04SAndreas Gohr    }
824b1a4e04SAndreas Gohr  }
834b1a4e04SAndreas Gohr
84b8595a66SAndreas Gohr  // define whitespace
85b8595a66SAndreas Gohr  if(!defined('DOKU_LF')) define ('DOKU_LF',"\n");
86b8595a66SAndreas Gohr  if(!defined('DOKU_TAB')) define ('DOKU_TAB',"\t");
87ed7b5f09Sandi
88e71ce681SAndreas Gohr  // define cookie and session id
898b11f0a5SAndreas Gohr  if (!defined('DOKU_COOKIE')) define('DOKU_COOKIE', 'DW'.md5(DOKU_REL));
90e71ce681SAndreas Gohr
91ee20e7d1Sandi  // define Plugin dir
92f62ea8a1Sandi  if(!defined('DOKU_PLUGIN'))  define('DOKU_PLUGIN',DOKU_INC.'lib/plugins/');
93ee20e7d1Sandi
94ed7b5f09Sandi  // define main script
95ed7b5f09Sandi  if(!defined('DOKU_SCRIPT')) define('DOKU_SCRIPT','doku.php');
96ed7b5f09Sandi
976b13307fSandi  // define Template baseURL
986b13307fSandi  if(!defined('DOKU_TPL')) define('DOKU_TPL',
99f62ea8a1Sandi                                  DOKU_BASE.'lib/tpl/'.$conf['template'].'/');
1006b13307fSandi
10178a6aeb1SAndreas Gohr  // define real Template directory
10278a6aeb1SAndreas Gohr  if(!defined('DOKU_TPLINC')) define('DOKU_TPLINC',
10378a6aeb1SAndreas Gohr                                  DOKU_INC.'lib/tpl/'.$conf['template'].'/');
10478a6aeb1SAndreas Gohr
105ed7b5f09Sandi  // make session rewrites XHTML compliant
1063fc74836Sandi  @ini_set('arg_separator.output', '&amp;');
107ed7b5f09Sandi
108d7e6bba9SAndreas Gohr  // make sure global zlib does not interfere FS#1132
109d7e6bba9SAndreas Gohr  @ini_set('zlib.output_compression', 'off');
110d7e6bba9SAndreas Gohr
1116deb5405SAndreas Gohr  // increase PCRE backtrack limit
1126deb5405SAndreas Gohr  @ini_set('pcre.backtrack_limit', '20971520');
1136deb5405SAndreas Gohr
1143138b5c7SAndreas Gohr  // enable gzip compression
1153138b5c7SAndreas Gohr  if ($conf['gzip_output'] &&
1163138b5c7SAndreas Gohr      !defined('DOKU_DISABLE_GZIP_OUTPUT') &&
1173138b5c7SAndreas Gohr      function_exists('ob_gzhandler') &&
1183138b5c7SAndreas Gohr      preg_match('/gzip|deflate/', $_SERVER['HTTP_ACCEPT_ENCODING'])) {
1193138b5c7SAndreas Gohr    ob_start('ob_gzhandler');
1203138b5c7SAndreas Gohr  }
1213138b5c7SAndreas Gohr
122ed7b5f09Sandi  // init session
1236534245aSAndreas Gohr  if (!headers_sent() && !defined('NOSESSION')){
124ed7b5f09Sandi    session_name("DokuWiki");
125f5c6743cSAndreas Gohr    if (version_compare(PHP_VERSION, '5.2.0', '>')) {
126f5c6743cSAndreas Gohr      session_set_cookie_params(0,DOKU_REL,'',($conf['securecookie'] && is_ssl()),true);
127f5c6743cSAndreas Gohr    }else{
128f5c6743cSAndreas Gohr      session_set_cookie_params(0,DOKU_REL,'',($conf['securecookie'] && is_ssl()));
129f5c6743cSAndreas Gohr    }
130bad31ae9SAndreas Gohr    session_start();
13114a122deSAndreas Gohr
13214a122deSAndreas Gohr    // load left over messages
13314a122deSAndreas Gohr    if(isset($_SESSION[DOKU_COOKIE]['msg'])){
13414a122deSAndreas Gohr      $MSG = $_SESSION[DOKU_COOKIE]['msg'];
13514a122deSAndreas Gohr      unset($_SESSION[DOKU_COOKIE]['msg']);
13614a122deSAndreas Gohr    }
137bad31ae9SAndreas Gohr  }
138ed7b5f09Sandi
139ed7b5f09Sandi  // kill magic quotes
140e55eb89cSAndreas Gohr  if (get_magic_quotes_gpc() && !defined('MAGIC_QUOTES_STRIPPED')) {
141ed7b5f09Sandi    if (!empty($_GET))    remove_magic_quotes($_GET);
142ed7b5f09Sandi    if (!empty($_POST))   remove_magic_quotes($_POST);
143ed7b5f09Sandi    if (!empty($_COOKIE)) remove_magic_quotes($_COOKIE);
144ed7b5f09Sandi    if (!empty($_REQUEST)) remove_magic_quotes($_REQUEST);
1453fc74836Sandi    @ini_set('magic_quotes_gpc', 0);
146e55eb89cSAndreas Gohr    define('MAGIC_QUOTES_STRIPPED',1);
147ed7b5f09Sandi  }
1483fc74836Sandi  @set_magic_quotes_runtime(0);
1493fc74836Sandi  @ini_set('magic_quotes_sybase',0);
150ed7b5f09Sandi
151a1637ffdSAndreas Gohr  // don't let cookies ever interfere with request vars
152a1637ffdSAndreas Gohr  $_REQUEST = array_merge($_GET,$_POST);
153a1637ffdSAndreas Gohr
154*3dea4ebcSAndreas Gohr  // we don't want a purge URL to be digged
155*3dea4ebcSAndreas Gohr  if($_REQUEST['purge'] && $_SERVER['HTTP_REFERER']) unset($_REQUEST['purge']);
156*3dea4ebcSAndreas Gohr
157ed7b5f09Sandi  // disable gzip if not available
1588a447e5cSAndreas Gohr  if($conf['compression'] == 'bz2' && !function_exists('bzopen')){
159fe893490SAndreas Gohr    $conf['compression'] = 'gz';
160501252a5SAndreas Gohr  }
161fe893490SAndreas Gohr  if($conf['compression'] == 'gz' && !function_exists('gzopen')){
162501252a5SAndreas Gohr    $conf['compression'] = 0;
163ed7b5f09Sandi  }
164ed7b5f09Sandi
165e656dcd4SAndreas Gohr  // fix dateformat for upgraders
166e656dcd4SAndreas Gohr  if(strpos($conf['dformat'],'%') === false){
167e656dcd4SAndreas Gohr    $conf['dformat'] = '%Y/%m/%d %H:%M';
168e656dcd4SAndreas Gohr  }
169e656dcd4SAndreas Gohr
1701ca31cfeSAndreas Gohr  // precalculate file creation modes
1711ca31cfeSAndreas Gohr  init_creationmodes();
172ed7b5f09Sandi
1733dc3a5f1Sandi  // make real paths and check them
17498407a7aSandi  init_paths();
1757367b368SAndreas Gohr  init_files();
176ed7b5f09Sandi
1778c4f28e8Sjan  // automatic upgrade to script versions of certain files
178e7cb32dcSAndreas Gohr  scriptify(DOKU_CONF.'users.auth');
179e7cb32dcSAndreas Gohr  scriptify(DOKU_CONF.'acl.auth');
180f62ea8a1Sandi
181f62ea8a1Sandi
182f62ea8a1Sandi/**
18398407a7aSandi * Checks paths from config file
18498407a7aSandi */
18598407a7aSandifunction init_paths(){
18698407a7aSandi  global $conf;
18798407a7aSandi
18898407a7aSandi  $paths = array('datadir'   => 'pages',
18998407a7aSandi                 'olddir'    => 'attic',
19098407a7aSandi                 'mediadir'  => 'media',
19198407a7aSandi                 'metadir'   => 'meta',
19298407a7aSandi                 'cachedir'  => 'cache',
193579b0f7eSTNHarris                 'indexdir'  => 'index',
194de33a58fSMichael Klier                 'lockdir'   => 'locks',
195de33a58fSMichael Klier                 'tmpdir'    => 'tmp');
19698407a7aSandi
19798407a7aSandi  foreach($paths as $c => $p){
198bb4866bdSchris    if(empty($conf[$c]))  $conf[$c] = $conf['savedir'].'/'.$p;
19998407a7aSandi    $conf[$c]             = init_path($conf[$c]);
2001983acc2SGuy Brand    if(empty($conf[$c]))  nice_die("The $c ('$p') does not exist, isn't accessible or writable.
20169dc3177SAndreas Gohr                               You should check your config and permission settings.
20269dc3177SAndreas Gohr                               Or maybe you want to <a href=\"install.php\">run the
20369dc3177SAndreas Gohr                               installer</a>?");
20498407a7aSandi  }
20571726d78SBen Coburn
20671726d78SBen Coburn  // path to old changelog only needed for upgrading
20771726d78SBen Coburn  $conf['changelog_old'] = init_path((isset($conf['changelog']))?($conf['changelog']):($conf['savedir'].'/changes.log'));
20871726d78SBen Coburn  if ($conf['changelog_old']=='') { unset($conf['changelog_old']); }
20971726d78SBen Coburn  // hardcoded changelog because it is now a cache that lives in meta
21071726d78SBen Coburn  $conf['changelog'] = $conf['metadir'].'/_dokuwiki.changes';
21198407a7aSandi}
21298407a7aSandi
21398407a7aSandi/**
2140d8850c4SAndreas Gohr * Checks the existance of certain files and creates them if missing.
2157367b368SAndreas Gohr */
2167367b368SAndreas Gohrfunction init_files(){
2177367b368SAndreas Gohr  global $conf;
2180d8850c4SAndreas Gohr
219579b0f7eSTNHarris  $files = array( $conf['indexdir'].'/page.idx');
2207367b368SAndreas Gohr
2217367b368SAndreas Gohr  foreach($files as $file){
2227367b368SAndreas Gohr    if(!@file_exists($file)){
2230d8850c4SAndreas Gohr      $fh = @fopen($file,'a');
2240d8850c4SAndreas Gohr      if($fh){
2257367b368SAndreas Gohr        fclose($fh);
2261ca31cfeSAndreas Gohr        if($conf['fperm']) chmod($file, $conf['fperm']);
2270d8850c4SAndreas Gohr      }else{
2283816dcbcSAndreas Gohr        nice_die("$file is not writable. Check your permissions settings!");
2290d8850c4SAndreas Gohr      }
2307367b368SAndreas Gohr    }
2317367b368SAndreas Gohr  }
2327367b368SAndreas Gohr}
2337367b368SAndreas Gohr
2347367b368SAndreas Gohr/**
2350d8850c4SAndreas Gohr * Returns absolute path
236f62ea8a1Sandi *
2370d8850c4SAndreas Gohr * This tries the given path first, then checks in DOKU_INC.
2380d8850c4SAndreas Gohr * Check for accessability on directories as well.
2390d8850c4SAndreas Gohr *
2400d8850c4SAndreas Gohr * @author Andreas Gohr <andi@splitbrain.org>
241f62ea8a1Sandi */
242f62ea8a1Sandifunction init_path($path){
2430d8850c4SAndreas Gohr  // check existance
24400976812SAndreas Gohr  $p = fullpath($path);
2450d8850c4SAndreas Gohr  if(!@file_exists($p)){
24600976812SAndreas Gohr    $p = fullpath(DOKU_INC.$path);
2470d8850c4SAndreas Gohr    if(!@file_exists($p)){
2488fc4e739Sandi      return '';
249f62ea8a1Sandi    }
2500d8850c4SAndreas Gohr  }
2510d8850c4SAndreas Gohr
2520d8850c4SAndreas Gohr  // check writability
2530d8850c4SAndreas Gohr  if(!@is_writable($p)){
2540d8850c4SAndreas Gohr    return '';
2550d8850c4SAndreas Gohr  }
2560d8850c4SAndreas Gohr
2570d8850c4SAndreas Gohr  // check accessability (execute bit) for directories
2580d8850c4SAndreas Gohr  if(@is_dir($p) && !@file_exists("$p/.")){
2590d8850c4SAndreas Gohr    return '';
2600d8850c4SAndreas Gohr  }
2610d8850c4SAndreas Gohr
2620d8850c4SAndreas Gohr  return $p;
2630d8850c4SAndreas Gohr}
2648c4f28e8Sjan
265ed7b5f09Sandi/**
2661ca31cfeSAndreas Gohr * Sets the internal config values fperm and dperm which, when set,
2671ca31cfeSAndreas Gohr * will be used to change the permission of a newly created dir or
2681ca31cfeSAndreas Gohr * file with chmod. Considers the influence of the system's umask
2691ca31cfeSAndreas Gohr * setting the values only if needed.
2701ca31cfeSAndreas Gohr */
2711ca31cfeSAndreas Gohrfunction init_creationmodes(){
2721ca31cfeSAndreas Gohr  global $conf;
2731ca31cfeSAndreas Gohr
2741ca31cfeSAndreas Gohr  // Legacy support for old umask/dmask scheme
2751ca31cfeSAndreas Gohr  unset($conf['dmask']);
2761ca31cfeSAndreas Gohr  unset($conf['fmask']);
2771ca31cfeSAndreas Gohr  unset($conf['umask']);
2781ca31cfeSAndreas Gohr  unset($conf['fperm']);
2791ca31cfeSAndreas Gohr  unset($conf['dperm']);
2801ca31cfeSAndreas Gohr
2819f3cdec3SAndreas Gohr  // get system umask, fallback to 0 if none available
2829f3cdec3SAndreas Gohr  $umask = @umask();
2839f3cdec3SAndreas Gohr  if(!$umask) $umask = 0000;
2841ca31cfeSAndreas Gohr
2851ca31cfeSAndreas Gohr  // check what is set automatically by the system on file creation
2861ca31cfeSAndreas Gohr  // and set the fperm param if it's not what we want
2871ca31cfeSAndreas Gohr  $auto_fmode = 0666 & ~$umask;
2881ca31cfeSAndreas Gohr  if($auto_fmode != $conf['fmode']) $conf['fperm'] = $conf['fmode'];
2891ca31cfeSAndreas Gohr
2901ca31cfeSAndreas Gohr  // check what is set automatically by the system on file creation
2911ca31cfeSAndreas Gohr  // and set the dperm param if it's not what we want
2921ca31cfeSAndreas Gohr  $auto_dmode = $conf['dmode'] & ~$umask;
2931ca31cfeSAndreas Gohr  if($auto_dmode != $conf['dmode']) $conf['dperm'] = $conf['dmode'];
2941ca31cfeSAndreas Gohr}
2951ca31cfeSAndreas Gohr
2961ca31cfeSAndreas Gohr/**
297ed7b5f09Sandi * remove magic quotes recursivly
298ed7b5f09Sandi *
299ed7b5f09Sandi * @author Andreas Gohr <andi@splitbrain.org>
300ed7b5f09Sandi */
301ed7b5f09Sandifunction remove_magic_quotes(&$array) {
302ed7b5f09Sandi  foreach (array_keys($array) as $key) {
30381c54349SAndreas Gohr      // handle magic quotes in keynames (breaks order)
30481c54349SAndreas Gohr      $sk = stripslashes($key);
30581c54349SAndreas Gohr      if($sk != $key){
30681c54349SAndreas Gohr          $array[$sk] = $array[$key];
30781c54349SAndreas Gohr          unset($array[$key]);
30881c54349SAndreas Gohr          $key = $sk;
30981c54349SAndreas Gohr      }
31081c54349SAndreas Gohr
31181c54349SAndreas Gohr      // do recursion if needed
312ed7b5f09Sandi      if (is_array($array[$key])) {
313ed7b5f09Sandi          remove_magic_quotes($array[$key]);
314ed7b5f09Sandi      }else {
315ed7b5f09Sandi          $array[$key] = stripslashes($array[$key]);
316ed7b5f09Sandi      }
317ed7b5f09Sandi  }
318ed7b5f09Sandi}
319ed7b5f09Sandi
320ed7b5f09Sandi/**
321ed7b5f09Sandi * Returns the full absolute URL to the directory where
322ed7b5f09Sandi * DokuWiki is installed in (includes a trailing slash)
323ed7b5f09Sandi *
324ed7b5f09Sandi * @author Andreas Gohr <andi@splitbrain.org>
325ed7b5f09Sandi */
3264b1a4e04SAndreas Gohrfunction getBaseURL($abs=null){
327ed7b5f09Sandi  global $conf;
328ed7b5f09Sandi  //if canonical url enabled always return absolute
3294b1a4e04SAndreas Gohr  if(is_null($abs)) $abs = $conf['canonical'];
330ed7b5f09Sandi
33192b83b77Sandi  if($conf['basedir']){
33246c73e01SChris Smith    $dir = $conf['basedir'];
33389aa05dbSAndreas Gohr  }elseif(substr($_SERVER['SCRIPT_NAME'],-4) == '.php'){
33446c73e01SChris Smith    $dir = dirname($_SERVER['SCRIPT_NAME']);
33589aa05dbSAndreas Gohr  }elseif(substr($_SERVER['PHP_SELF'],-4) == '.php'){
33646c73e01SChris Smith    $dir = dirname($_SERVER['PHP_SELF']);
337093ec9e4Sandi  }elseif($_SERVER['DOCUMENT_ROOT'] && $_SERVER['SCRIPT_FILENAME']){
338093ec9e4Sandi    $dir = preg_replace ('/^'.preg_quote($_SERVER['DOCUMENT_ROOT'],'/').'/','',
339093ec9e4Sandi                         $_SERVER['SCRIPT_FILENAME']);
34046c73e01SChris Smith    $dir = dirname('/'.$dir);
34192b83b77Sandi  }else{
34246c73e01SChris Smith    $dir = '.'; //probably wrong
34392b83b77Sandi  }
344ed7b5f09Sandi
34546c73e01SChris Smith  $dir = str_replace('\\','/',$dir);             // bugfix for weird WIN behaviour
34646c73e01SChris Smith  $dir = preg_replace('#//+#','/',"/$dir/");     // ensure leading and trailing slashes
347ed7b5f09Sandi
348f62ea8a1Sandi  //handle script in lib/exe dir
349f62ea8a1Sandi  $dir = preg_replace('!lib/exe/$!','',$dir);
350f62ea8a1Sandi
351488d5fa0SMichael Klier chi@chimeric.de  //handle script in lib/plugins dir
352488d5fa0SMichael Klier chi@chimeric.de  $dir = preg_replace('!lib/plugins/.*$!','',$dir);
353488d5fa0SMichael Klier chi@chimeric.de
354ed7b5f09Sandi  //finish here for relative URLs
355ed7b5f09Sandi  if(!$abs) return $dir;
356ed7b5f09Sandi
35746c73e01SChris Smith  //use config option if available, trim any slash from end of baseurl to avoid multiple consecutive slashes in the path
35846c73e01SChris Smith  if($conf['baseurl']) return rtrim($conf['baseurl'],'/').$dir;
359ef7b3ecdSAndreas Gohr
360e82e3526SAndreas Gohr  //split hostheader into host and port
361e82e3526SAndreas Gohr  list($host,$port) = explode(':',$_SERVER['HTTP_HOST']);
362e82e3526SAndreas Gohr  if(!$port)  $port = $_SERVER['SERVER_PORT'];
363e82e3526SAndreas Gohr  if(!$port)  $port = 80;
364ed7b5f09Sandi
365f5c6743cSAndreas Gohr  if(!is_ssl()){
366ed7b5f09Sandi    $proto = 'http://';
367e82e3526SAndreas Gohr    if ($port == '80') {
368ed7b5f09Sandi      $port='';
369ed7b5f09Sandi    }
370ed7b5f09Sandi  }else{
371ed7b5f09Sandi    $proto = 'https://';
372e82e3526SAndreas Gohr    if ($port == '443') {
373ed7b5f09Sandi      $port='';
374ed7b5f09Sandi    }
375ed7b5f09Sandi  }
376ed7b5f09Sandi
377e82e3526SAndreas Gohr  if($port) $port = ':'.$port;
378e82e3526SAndreas Gohr
379ed7b5f09Sandi  return $proto.$host.$port.$dir;
380ed7b5f09Sandi}
381ed7b5f09Sandi
382b000c6d4Sandi/**
383f5c6743cSAndreas Gohr * Check if accessed via HTTPS
384f5c6743cSAndreas Gohr *
385f5c6743cSAndreas Gohr * Apache leaves ,$_SERVER['HTTPS'] empty when not available, IIS sets it to 'off'.
386f5c6743cSAndreas Gohr * 'false' and 'disabled' are just guessing
387f5c6743cSAndreas Gohr *
388f5c6743cSAndreas Gohr * @returns bool true when SSL is active
389f5c6743cSAndreas Gohr */
390f5c6743cSAndreas Gohrfunction is_ssl(){
391f5c6743cSAndreas Gohr    if (preg_match('/^(|off|false|disabled)$/i',$_SERVER['HTTPS'])){
392f5c6743cSAndreas Gohr        return false;
393f5c6743cSAndreas Gohr    }else{
394f5c6743cSAndreas Gohr        return true;
395f5c6743cSAndreas Gohr    }
396f5c6743cSAndreas Gohr}
397f5c6743cSAndreas Gohr
398f5c6743cSAndreas Gohr/**
399b000c6d4Sandi * Append a PHP extension to a given file and adds an exit call
400b000c6d4Sandi *
401b000c6d4Sandi * This is used to migrate some old configfiles. An added PHP extension
402b000c6d4Sandi * ensures the contents are not shown to webusers even if .htaccess files
403b000c6d4Sandi * do not work
404b000c6d4Sandi *
405b000c6d4Sandi * @author Jan Decaluwe <jan@jandecaluwe.com>
406b000c6d4Sandi */
4078c4f28e8Sjanfunction scriptify($file) {
4088c4f28e8Sjan  // checks
4098c4f28e8Sjan  if (!is_readable($file)) {
4108c4f28e8Sjan    return;
4118c4f28e8Sjan  }
4128c4f28e8Sjan  $fn = $file.'.php';
4138c4f28e8Sjan  if (@file_exists($fn)) {
4148c4f28e8Sjan    return;
4158c4f28e8Sjan  }
4168c4f28e8Sjan  $fh = fopen($fn, 'w');
4178c4f28e8Sjan  if (!$fh) {
4183816dcbcSAndreas Gohr    nice_die($fn.' is not writable. Check your permission settings!');
4198c4f28e8Sjan  }
4208c4f28e8Sjan  // write php exit hack first
4218c4f28e8Sjan  fwrite($fh, "# $fn\n");
4228c4f28e8Sjan  fwrite($fh, '# <?php exit()?>'."\n");
4238c4f28e8Sjan  fwrite($fh, "# Don't modify the lines above\n");
4248c4f28e8Sjan  fwrite($fh, "#\n");
4258c4f28e8Sjan  // copy existing lines
4268c4f28e8Sjan  $lines = file($file);
4278c4f28e8Sjan  foreach ($lines as $line){
4288c4f28e8Sjan    fwrite($fh, $line);
4298c4f28e8Sjan  }
4303ba793e2Sandi  fclose($fh);
431b000c6d4Sandi  //try to rename the old file
4323aee4c27SAndreas Gohr  io_rename($file,"$file.old");
4338c4f28e8Sjan}
4348c4f28e8Sjan
4353816dcbcSAndreas Gohr/**
4363816dcbcSAndreas Gohr * print a nice message even if no styles are loaded yet.
4373816dcbcSAndreas Gohr */
4383816dcbcSAndreas Gohrfunction nice_die($msg){
4393816dcbcSAndreas Gohr  echo<<<EOT
4403816dcbcSAndreas Gohr  <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
4413816dcbcSAndreas Gohr   "http://www.w3.org/TR/html4/loose.dtd">
4423816dcbcSAndreas Gohr  <html>
4433816dcbcSAndreas Gohr    <head><title>DokuWiki Setup Error</title></head>
4443816dcbcSAndreas Gohr    <body style="font-family: Arial, sans-serif">
4453816dcbcSAndreas Gohr      <div style="width:60%; margin: auto; background-color: #fcc;
4463816dcbcSAndreas Gohr                  border: 1px solid #faa; padding: 0.5em 1em;">
4473816dcbcSAndreas Gohr      <h1 style="font-size: 120%">DokuWiki Setup Error</h1>
4483816dcbcSAndreas Gohr      <p>$msg</p>
4493816dcbcSAndreas Gohr      </div>
4503816dcbcSAndreas Gohr    </body>
4513816dcbcSAndreas Gohr  </html>
4523816dcbcSAndreas GohrEOT;
4533816dcbcSAndreas Gohr  exit;
4543816dcbcSAndreas Gohr}
4553816dcbcSAndreas Gohr
456ed7b5f09Sandi
45700976812SAndreas Gohr/**
45800976812SAndreas Gohr * A realpath() replacement
45900976812SAndreas Gohr *
46000976812SAndreas Gohr * This function behaves similar to PHP's realpath() but does not resolve
46100976812SAndreas Gohr * symlinks or accesses upper directories
46200976812SAndreas Gohr *
4634761d30cSAndreas Gohr * @author Andreas Gohr <andi@splitbrain.org>
46400976812SAndreas Gohr * @author <richpageau at yahoo dot co dot uk>
46500976812SAndreas Gohr * @link   http://de3.php.net/manual/en/function.realpath.php#75992
46600976812SAndreas Gohr */
467b328697dSAndreas Gohrfunction fullpath($path,$exists=false){
4684761d30cSAndreas Gohr    static $run = 0;
4694761d30cSAndreas Gohr    $root  = '';
4704761d30cSAndreas Gohr    $iswin = (strtoupper(substr(PHP_OS, 0, 3)) === 'WIN' || $GLOBALS['DOKU_UNITTEST_ASSUME_WINDOWS']);
47100976812SAndreas Gohr
4724761d30cSAndreas Gohr    // find the (indestructable) root of the path - keeps windows stuff intact
4734761d30cSAndreas Gohr    if($path{0} == '/'){
4744761d30cSAndreas Gohr        $root = '/';
4754761d30cSAndreas Gohr    }elseif($iswin){
4764761d30cSAndreas Gohr        // match drive letter and UNC paths
4774761d30cSAndreas Gohr        if(preg_match('!^([a-zA-z]:)(.*)!',$path,$match)){
4784761d30cSAndreas Gohr            $root = $match[1];
4794761d30cSAndreas Gohr            $path = $match[2];
4804761d30cSAndreas Gohr        }else if(preg_match('!^(\\\\\\\\[^\\\\/]+\\\\[^\\\\/]+[\\\\/])(.*)!',$path,$match)){
4814761d30cSAndreas Gohr            $root = $match[1];
4824761d30cSAndreas Gohr            $path = $match[2];
48300976812SAndreas Gohr        }
4844761d30cSAndreas Gohr    }
4854761d30cSAndreas Gohr    $path = str_replace('\\','/',$path);
4864761d30cSAndreas Gohr
4874761d30cSAndreas Gohr    // if the given path wasn't absolute already, prepend the script path and retry
4884761d30cSAndreas Gohr    if(!$root){
4894761d30cSAndreas Gohr        $base = dirname($_SERVER['SCRIPT_FILENAME']);
4904761d30cSAndreas Gohr        $path = $base.'/'.$path;
4914761d30cSAndreas Gohr        if($run == 0){ // avoid endless recursion when base isn't absolute for some reason
4924761d30cSAndreas Gohr            $run++;
493b328697dSAndreas Gohr            return fullpath($path,$exists);
4944761d30cSAndreas Gohr        }
4954761d30cSAndreas Gohr    }
4964761d30cSAndreas Gohr    $run = 0;
49700976812SAndreas Gohr
49800976812SAndreas Gohr    // canonicalize
49900976812SAndreas Gohr    $path=explode('/', $path);
50000976812SAndreas Gohr    $newpath=array();
501ef38bfe8SAndreas Gohr    foreach($path as $p) {
502ef38bfe8SAndreas Gohr        if ($p === '' || $p === '.') continue;
503ef38bfe8SAndreas Gohr           if ($p==='..') {
50400976812SAndreas Gohr              array_pop($newpath);
50500976812SAndreas Gohr              continue;
50600976812SAndreas Gohr        }
507ef38bfe8SAndreas Gohr        array_push($newpath, $p);
50800976812SAndreas Gohr    }
5094761d30cSAndreas Gohr    $finalpath = $root.implode('/', $newpath);
51000976812SAndreas Gohr
511b328697dSAndreas Gohr    // check for existance when needed (except when unit testing)
512b328697dSAndreas Gohr    if($exists && !defined('DOKU_UNITTEST') && !@file_exists($finalpath)) {
5134761d30cSAndreas Gohr        return false;
51400976812SAndreas Gohr    }
5154761d30cSAndreas Gohr    return $finalpath;
51600976812SAndreas Gohr}
51700976812SAndreas Gohr
51800976812SAndreas Gohr
51900976812SAndreas Gohr
520340756e4Sandi//Setup VIM: ex: et ts=2 enc=utf-8 :
521