xref: /dokuwiki/inc/infoutils.php (revision 56f47fdaf7ebf7a82171f42cc1b41cacda07c1d7)
1c29dc6e4SAndreas Gohr<?php
2c29dc6e4SAndreas Gohr/**
3c29dc6e4SAndreas Gohr * Information and debugging functions
4c29dc6e4SAndreas Gohr *
5c29dc6e4SAndreas Gohr * @license    GPL 2 (http://www.gnu.org/licenses/gpl.html)
6c29dc6e4SAndreas Gohr * @author     Andreas Gohr <andi@splitbrain.org>
7c29dc6e4SAndreas Gohr */
8fa8adffeSAndreas Gohrif(!defined('DOKU_INC')) die('meh.');
96c5e3c5eSPhy
106c5e3c5eSPhyif(!defined('DOKU_MESSAGEURL')){
116c5e3c5eSPhy    if(in_array('ssl', stream_get_transports())) {
126c5e3c5eSPhy        define('DOKU_MESSAGEURL','https://update.dokuwiki.org/check/');
136c5e3c5eSPhy    }else{
146c5e3c5eSPhy        define('DOKU_MESSAGEURL','http://update.dokuwiki.org/check/');
156c5e3c5eSPhy    }
166c5e3c5eSPhy}
17c29dc6e4SAndreas Gohr
18c29dc6e4SAndreas Gohr/**
19c29dc6e4SAndreas Gohr * Check for new messages from upstream
20c29dc6e4SAndreas Gohr *
21c29dc6e4SAndreas Gohr * @author Andreas Gohr <andi@splitbrain.org>
22c29dc6e4SAndreas Gohr */
23c29dc6e4SAndreas Gohrfunction checkUpdateMessages(){
24c29dc6e4SAndreas Gohr    global $conf;
25c29dc6e4SAndreas Gohr    global $INFO;
26ef362bb8SAnika Henke    global $updateVersion;
27c29dc6e4SAndreas Gohr    if(!$conf['updatecheck']) return;
28f8cc712eSAndreas Gohr    if($conf['useacl'] && !$INFO['ismanager']) return;
29c29dc6e4SAndreas Gohr
3037b21a1bSAndreas Gohr    $cf = getCacheName($updateVersion, '.updmsg');
31c29dc6e4SAndreas Gohr    $lm = @filemtime($cf);
326c5e3c5eSPhy    $is_http = substr(DOKU_MESSAGEURL, 0, 5) != 'https';
33c29dc6e4SAndreas Gohr
34c29dc6e4SAndreas Gohr    // check if new messages needs to be fetched
358d3d7569SAnika Henke    if($lm < time()-(60*60*24) || $lm < @filemtime(DOKU_INC.DOKU_SCRIPT)){
3663d9b820SAndreas Gohr        @touch($cf);
376c5e3c5eSPhy        dbglog("checkUpdateMessages(): downloading messages to ".$cf.($is_http?' (without SSL)':' (with SSL)'));
38c29dc6e4SAndreas Gohr        $http = new DokuHTTPClient();
3963d9b820SAndreas Gohr        $http->timeout = 12;
4086c04d87SAngus Gratton        $resp = $http->get(DOKU_MESSAGEURL.$updateVersion);
4186c04d87SAngus Gratton        if(is_string($resp) && ($resp == "" || substr(trim($resp), -1) == '%')) {
4286c04d87SAngus Gratton            // basic sanity check that this is either an empty string response (ie "no messages")
4386c04d87SAngus Gratton            // or it looks like one of our messages, not WiFi login or other interposed response
4486c04d87SAngus Gratton            io_saveFile($cf,$resp);
458f1efc43SAndreas Gohr        } else {
4686c04d87SAngus Gratton            dbglog("checkUpdateMessages(): unexpected HTTP response received");
478f1efc43SAndreas Gohr        }
48c29dc6e4SAndreas Gohr    }else{
4937b21a1bSAndreas Gohr        dbglog("checkUpdateMessages(): messages up to date");
50c29dc6e4SAndreas Gohr    }
51c29dc6e4SAndreas Gohr
5286c04d87SAngus Gratton    $data = io_readFile($cf);
53c29dc6e4SAndreas Gohr    // show messages through the usual message mechanism
54c29dc6e4SAndreas Gohr    $msgs = explode("\n%\n",$data);
55c29dc6e4SAndreas Gohr    foreach($msgs as $msg){
56c29dc6e4SAndreas Gohr        if($msg) msg($msg,2);
57c29dc6e4SAndreas Gohr    }
58c29dc6e4SAndreas Gohr}
59c29dc6e4SAndreas Gohr
60c29dc6e4SAndreas Gohr
61c29dc6e4SAndreas Gohr/**
6225c07f93SAnika Henke * Return DokuWiki's version (split up in date and type)
63c29dc6e4SAndreas Gohr *
64c29dc6e4SAndreas Gohr * @author Andreas Gohr <andi@splitbrain.org>
65c29dc6e4SAndreas Gohr */
6625c07f93SAnika Henkefunction getVersionData(){
6725c07f93SAnika Henke    $version = array();
68c29dc6e4SAndreas Gohr    //import version string
6979e79377SAndreas Gohr    if(file_exists(DOKU_INC.'VERSION')){
70c29dc6e4SAndreas Gohr        //official release
71d6c7b502SAndreas Gohr        $version['date'] = trim(io_readFile(DOKU_INC.'VERSION'));
7225c07f93SAnika Henke        $version['type'] = 'Release';
735cf31920SAndreas Gohr    }elseif(is_dir(DOKU_INC.'.git')){
745cf31920SAndreas Gohr        $version['type'] = 'Git';
7525c07f93SAnika Henke        $version['date'] = 'unknown';
76e570ed43SAndreas Gohr
77067b4fb9SMichael Große        if ($date = shell_exec("git log -1 --pretty=format:'%cd' --date=short")) {
78067b4fb9SMichael Große            $version['date'] = hsc($date);
79f519f9dbSMichael Große        } else if (file_exists(DOKU_INC . '.git/HEAD')) {
80f519f9dbSMichael Große            // we cannot use git on the shell -- let's do it manually!
81f519f9dbSMichael Große            $headCommit = trim(file_get_contents(DOKU_INC . '.git/HEAD'));
82f519f9dbSMichael Große            if (strpos($headCommit, 'ref: ') === 0) {
83f519f9dbSMichael Große                // it is something like `ref: refs/heads/master`
84f519f9dbSMichael Große                $pathToHead = substr($headCommit, 5);
85f519f9dbSMichael Große                $headCommit = trim(file_get_contents(DOKU_INC . '.git/' . $pathToHead));
86f519f9dbSMichael Große            }
87f519f9dbSMichael Große            $subDir = substr($headCommit, 0, 2);
88f519f9dbSMichael Große            $fileName = substr($headCommit, 2);
89be2e462dSMichael Große            $gitCommitObject = DOKU_INC . ".git/objects/$subDir/$fileName";
90*56f47fdaSMichael Große            if (file_exists($gitCommitObject) && method_exists(zlib_decode)) {
91be2e462dSMichael Große                $commit = zlib_decode(file_get_contents($gitCommitObject));
92f519f9dbSMichael Große                $committerLine = explode("\n", $commit)[3];
93f519f9dbSMichael Große                $committerData = explode(' ', $committerLine);
94f519f9dbSMichael Große                end($committerData);
95f519f9dbSMichael Große                $ts = prev($committerData);
96f519f9dbSMichael Große                if ($ts && $date = date('Y-m-d', $ts)) {
97f519f9dbSMichael Große                    $version['date'] = $date;
98f519f9dbSMichael Große                }
995cf31920SAndreas Gohr            }
100*56f47fdaSMichael Große        }
101c29dc6e4SAndreas Gohr    }else{
1026a34de2dSAnika Henke        global $updateVersion;
1036a34de2dSAnika Henke        $version['date'] = 'update version '.$updateVersion;
10425c07f93SAnika Henke        $version['type'] = 'snapshot?';
105c29dc6e4SAndreas Gohr    }
1065cf31920SAndreas Gohr    return $version;
107c29dc6e4SAndreas Gohr}
108c29dc6e4SAndreas Gohr
109c29dc6e4SAndreas Gohr/**
11025c07f93SAnika Henke * Return DokuWiki's version (as a string)
11125c07f93SAnika Henke *
11225c07f93SAnika Henke * @author Anika Henke <anika@selfthinker.org>
11325c07f93SAnika Henke */
11425c07f93SAnika Henkefunction getVersion(){
11525c07f93SAnika Henke    $version = getVersionData();
11625c07f93SAnika Henke    return $version['type'].' '.$version['date'];
11725c07f93SAnika Henke}
11825c07f93SAnika Henke
11925c07f93SAnika Henke/**
120c29dc6e4SAndreas Gohr * Run a few sanity checks
121c29dc6e4SAndreas Gohr *
122c29dc6e4SAndreas Gohr * @author Andreas Gohr <andi@splitbrain.org>
123c29dc6e4SAndreas Gohr */
124c29dc6e4SAndreas Gohrfunction check(){
125c29dc6e4SAndreas Gohr    global $conf;
126c29dc6e4SAndreas Gohr    global $INFO;
127585bf44eSChristopher Smith    /* @var Input $INPUT */
128585bf44eSChristopher Smith    global $INPUT;
129c29dc6e4SAndreas Gohr
1303f803e5eSGina Haeussge    if ($INFO['isadmin'] || $INFO['ismanager']){
131c29dc6e4SAndreas Gohr        msg('DokuWiki version: '.getVersion(),1);
132c29dc6e4SAndreas Gohr
1333476bb81SAndreas Gohr        if(version_compare(phpversion(),'5.6.0','<')){
1343476bb81SAndreas Gohr            msg('Your PHP version is too old ('.phpversion().' vs. 5.6.0+ needed)',-1);
135c29dc6e4SAndreas Gohr        }else{
136c29dc6e4SAndreas Gohr            msg('PHP version '.phpversion(),1);
137c29dc6e4SAndreas Gohr        }
13808d1a8dfSAndreas Gohr    } else {
1393476bb81SAndreas Gohr        if(version_compare(phpversion(),'5.6.0','<')){
14008d1a8dfSAndreas Gohr            msg('Your PHP version is too old',-1);
14108d1a8dfSAndreas Gohr        }
14208d1a8dfSAndreas Gohr    }
143c29dc6e4SAndreas Gohr
14473038c47SAndreas Gohr    $mem = (int) php_to_byte(ini_get('memory_limit'));
14573038c47SAndreas Gohr    if($mem){
14673038c47SAndreas Gohr        if($mem < 16777216){
14773038c47SAndreas Gohr            msg('PHP is limited to less than 16MB RAM ('.$mem.' bytes). Increase memory_limit in php.ini',-1);
14873038c47SAndreas Gohr        }elseif($mem < 20971520){
14973038c47SAndreas Gohr            msg('PHP is limited to less than 20MB RAM ('.$mem.' bytes), you might encounter problems with bigger pages. Increase memory_limit in php.ini',-1);
15073038c47SAndreas Gohr        }elseif($mem < 33554432){
15173038c47SAndreas Gohr            msg('PHP is limited to less than 32MB RAM ('.$mem.' bytes), but that should be enough in most cases. If not, increase memory_limit in php.ini',0);
15273038c47SAndreas Gohr        }else{
15373038c47SAndreas Gohr            msg('More than 32MB RAM ('.$mem.' bytes) available.',1);
15473038c47SAndreas Gohr        }
15573038c47SAndreas Gohr    }
15673038c47SAndreas Gohr
157c29dc6e4SAndreas Gohr    if(is_writable($conf['changelog'])){
158c29dc6e4SAndreas Gohr        msg('Changelog is writable',1);
159c29dc6e4SAndreas Gohr    }else{
16079e79377SAndreas Gohr        if (file_exists($conf['changelog'])) {
161c29dc6e4SAndreas Gohr            msg('Changelog is not writable',-1);
162c29dc6e4SAndreas Gohr        }
163c29dc6e4SAndreas Gohr    }
164c29dc6e4SAndreas Gohr
16579e79377SAndreas Gohr    if (isset($conf['changelog_old']) && file_exists($conf['changelog_old'])) {
1662cdbda06SAnika Henke        msg('Old changelog exists', 0);
167c29dc6e4SAndreas Gohr    }
168c29dc6e4SAndreas Gohr
16979e79377SAndreas Gohr    if (file_exists($conf['changelog'].'_failed')) {
1702cdbda06SAnika Henke        msg('Importing old changelog failed', -1);
17179e79377SAndreas Gohr    } else if (file_exists($conf['changelog'].'_importing')) {
172c29dc6e4SAndreas Gohr        msg('Importing old changelog now.', 0);
17379e79377SAndreas Gohr    } else if (file_exists($conf['changelog'].'_import_ok')) {
1742cdbda06SAnika Henke        msg('Old changelog imported', 1);
175c29dc6e4SAndreas Gohr        if (!plugin_isdisabled('importoldchangelog')) {
1762cdbda06SAnika Henke            msg('Importoldchangelog plugin not disabled after import', -1);
177c29dc6e4SAndreas Gohr        }
178c29dc6e4SAndreas Gohr    }
179c29dc6e4SAndreas Gohr
1804c7ecf15SGuy Brand    if(is_writable(DOKU_CONF)){
1814c7ecf15SGuy Brand        msg('conf directory is writable',1);
1824c7ecf15SGuy Brand    }else{
1834c7ecf15SGuy Brand        msg('conf directory is not writable',-1);
1844c7ecf15SGuy Brand    }
1854c7ecf15SGuy Brand
1860d487d8fSAndreas Gohr    if($conf['authtype'] == 'plain'){
187defb7d57SAnika Henke        global $config_cascade;
188defb7d57SAnika Henke        if(is_writable($config_cascade['plainauth.users']['default'])){
189c29dc6e4SAndreas Gohr            msg('conf/users.auth.php is writable',1);
190c29dc6e4SAndreas Gohr        }else{
191c29dc6e4SAndreas Gohr            msg('conf/users.auth.php is not writable',0);
192c29dc6e4SAndreas Gohr        }
1930d487d8fSAndreas Gohr    }
194c29dc6e4SAndreas Gohr
195c29dc6e4SAndreas Gohr    if(function_exists('mb_strpos')){
196c29dc6e4SAndreas Gohr        if(defined('UTF8_NOMBSTRING')){
197c29dc6e4SAndreas Gohr            msg('mb_string extension is available but will not be used',0);
198c29dc6e4SAndreas Gohr        }else{
199c29dc6e4SAndreas Gohr            msg('mb_string extension is available and will be used',1);
2004222b898SAndreas Gohr            if(ini_get('mbstring.func_overload') != 0){
2014222b898SAndreas Gohr                msg('mb_string function overloading is enabled, this will cause problems and should be disabled',-1);
2024222b898SAndreas Gohr            }
203c29dc6e4SAndreas Gohr        }
204c29dc6e4SAndreas Gohr    }else{
205c29dc6e4SAndreas Gohr        msg('mb_string extension not available - PHP only replacements will be used',0);
206c29dc6e4SAndreas Gohr    }
207c29dc6e4SAndreas Gohr
2083161005dSAndreas Gohr    if (!UTF8_PREGSUPPORT) {
209a731ed1dSAndreas Gohr        msg('PHP is missing UTF-8 support in Perl-Compatible Regular Expressions (PCRE)', -1);
210a731ed1dSAndreas Gohr    }
2113161005dSAndreas Gohr    if (!UTF8_PROPERTYSUPPORT) {
212a731ed1dSAndreas Gohr        msg('PHP is missing Unicode properties support in Perl-Compatible Regular Expressions (PCRE)', -1);
213a731ed1dSAndreas Gohr    }
214a731ed1dSAndreas Gohr
215e5ab313fSAndreas Gohr    $loc = setlocale(LC_ALL, 0);
216e5ab313fSAndreas Gohr    if(!$loc){
217e5ab313fSAndreas Gohr        msg('No valid locale is set for your PHP setup. You should fix this',-1);
218e5ab313fSAndreas Gohr    }elseif(stripos($loc,'utf') === false){
219e5ab313fSAndreas Gohr        msg('Your locale <code>'.hsc($loc).'</code> seems not to be a UTF-8 locale, you should fix this if you encounter problems.',0);
220e5ab313fSAndreas Gohr    }else{
221e5ab313fSAndreas Gohr        msg('Valid locale '.hsc($loc).' found.', 1);
222e5ab313fSAndreas Gohr    }
223e5ab313fSAndreas Gohr
224c29dc6e4SAndreas Gohr    if($conf['allowdebug']){
225c29dc6e4SAndreas Gohr        msg('Debugging support is enabled. If you don\'t need it you should set $conf[\'allowdebug\'] = 0',-1);
226c29dc6e4SAndreas Gohr    }else{
227c29dc6e4SAndreas Gohr        msg('Debugging support is disabled',1);
228c29dc6e4SAndreas Gohr    }
229c29dc6e4SAndreas Gohr
2303d3c095dSMike Frysinger    if($INFO['userinfo']['name']){
231585bf44eSChristopher Smith        msg('You are currently logged in as '.$INPUT->server->str('REMOTE_USER').' ('.$INFO['userinfo']['name'].')',0);
232c1791678SAndreas Gohr        msg('You are part of the groups '.join($INFO['userinfo']['grps'],', '),0);
2333d3c095dSMike Frysinger    }else{
2343d3c095dSMike Frysinger        msg('You are currently not logged in',0);
2353d3c095dSMike Frysinger    }
2363d3c095dSMike Frysinger
237c29dc6e4SAndreas Gohr    msg('Your current permission for this page is '.$INFO['perm'],0);
238c29dc6e4SAndreas Gohr
239c29dc6e4SAndreas Gohr    if(is_writable($INFO['filepath'])){
240c29dc6e4SAndreas Gohr        msg('The current page is writable by the webserver',0);
241c29dc6e4SAndreas Gohr    }else{
242c29dc6e4SAndreas Gohr        msg('The current page is not writable by the webserver',0);
243c29dc6e4SAndreas Gohr    }
244c29dc6e4SAndreas Gohr
245c29dc6e4SAndreas Gohr    if($INFO['writable']){
246c29dc6e4SAndreas Gohr        msg('The current page is writable by you',0);
247c29dc6e4SAndreas Gohr    }else{
2482cdbda06SAnika Henke        msg('The current page is not writable by you',0);
249c29dc6e4SAndreas Gohr    }
2503b1dfc83SAndreas Gohr
25126f7dbf5SMichael Hamann    // Check for corrupted search index
25226f7dbf5SMichael Hamann    $lengths = idx_listIndexLengths();
25326f7dbf5SMichael Hamann    $index_corrupted = false;
25426f7dbf5SMichael Hamann    foreach ($lengths as $length) {
25526f7dbf5SMichael Hamann        if (count(idx_getIndex('w', $length)) != count(idx_getIndex('i', $length))) {
25626f7dbf5SMichael Hamann            $index_corrupted = true;
25726f7dbf5SMichael Hamann            break;
25826f7dbf5SMichael Hamann        }
25926f7dbf5SMichael Hamann    }
26026f7dbf5SMichael Hamann
26126f7dbf5SMichael Hamann    foreach (idx_getIndex('metadata', '') as $index) {
26226f7dbf5SMichael Hamann        if (count(idx_getIndex($index.'_w', '')) != count(idx_getIndex($index.'_i', ''))) {
26326f7dbf5SMichael Hamann            $index_corrupted = true;
26426f7dbf5SMichael Hamann            break;
26526f7dbf5SMichael Hamann        }
26626f7dbf5SMichael Hamann    }
26726f7dbf5SMichael Hamann
268d6c7b502SAndreas Gohr    if($index_corrupted) {
269d6c7b502SAndreas Gohr        msg(
270d6c7b502SAndreas Gohr            'The search index is corrupted. It might produce wrong results and most
2713d94d9edSMichael Hamann                probably needs to be rebuilt. See
27226f7dbf5SMichael Hamann                <a href="http://www.dokuwiki.org/faq:searchindex">faq:searchindex</a>
273d6c7b502SAndreas Gohr                for ways to rebuild the search index.', -1
274d6c7b502SAndreas Gohr        );
275d6c7b502SAndreas Gohr    } elseif(!empty($lengths)) {
2763d94d9edSMichael Hamann        msg('The search index seems to be working', 1);
277d6c7b502SAndreas Gohr    } else {
278d6c7b502SAndreas Gohr        msg(
279d6c7b502SAndreas Gohr            'The search index is empty. See
28026f7dbf5SMichael Hamann                <a href="http://www.dokuwiki.org/faq:searchindex">faq:searchindex</a>
2813d94d9edSMichael Hamann                for help on how to fix the search index. If the default indexer
282d6c7b502SAndreas Gohr                isn\'t used or the wiki is actually empty this is normal.'
283d6c7b502SAndreas Gohr        );
284d6c7b502SAndreas Gohr    }
285d6c7b502SAndreas Gohr
286d6c7b502SAndreas Gohr    // rough time check
287d6c7b502SAndreas Gohr    $http = new DokuHTTPClient();
288d6c7b502SAndreas Gohr    $http->max_redirect = 0;
289d6c7b502SAndreas Gohr    $http->timeout = 3;
290d6c7b502SAndreas Gohr    $http->sendRequest('http://www.dokuwiki.org', '', 'HEAD');
291d6c7b502SAndreas Gohr    $now = time();
292d6c7b502SAndreas Gohr    if(isset($http->resp_headers['date'])) {
293d6c7b502SAndreas Gohr        $time = strtotime($http->resp_headers['date']);
294d6c7b502SAndreas Gohr        $diff = $time - $now;
295d6c7b502SAndreas Gohr
296d6c7b502SAndreas Gohr        if(abs($diff) < 4) {
297d6c7b502SAndreas Gohr            msg("Server time seems to be okay. Diff: {$diff}s", 1);
298d6c7b502SAndreas Gohr        } else {
299d6c7b502SAndreas Gohr            msg("Your server's clock seems to be out of sync! Consider configuring a sync with a NTP server.  Diff: {$diff}s");
300d6c7b502SAndreas Gohr        }
301d6c7b502SAndreas Gohr    }
302d6c7b502SAndreas Gohr
303c29dc6e4SAndreas Gohr}
304c29dc6e4SAndreas Gohr
305c29dc6e4SAndreas Gohr/**
306c29dc6e4SAndreas Gohr * print a message
307c29dc6e4SAndreas Gohr *
308c29dc6e4SAndreas Gohr * If HTTP headers were not sent yet the message is added
309c29dc6e4SAndreas Gohr * to the global message array else it's printed directly
310c29dc6e4SAndreas Gohr * using html_msgarea()
311c29dc6e4SAndreas Gohr *
312c29dc6e4SAndreas Gohr *
313c29dc6e4SAndreas Gohr * Levels can be:
314c29dc6e4SAndreas Gohr *
315c29dc6e4SAndreas Gohr * -1 error
316c29dc6e4SAndreas Gohr *  0 info
317c29dc6e4SAndreas Gohr *  1 success
318c29dc6e4SAndreas Gohr *
319c29dc6e4SAndreas Gohr * @author Andreas Gohr <andi@splitbrain.org>
320c29dc6e4SAndreas Gohr * @see    html_msgarea
321c29dc6e4SAndreas Gohr */
322d3bae478SChristopher Smith
323d3bae478SChristopher Smithdefine('MSG_PUBLIC', 0);
324d3bae478SChristopher Smithdefine('MSG_USERS_ONLY', 1);
325d3bae478SChristopher Smithdefine('MSG_MANAGERS_ONLY',2);
326d3bae478SChristopher Smithdefine('MSG_ADMINS_ONLY',4);
327d3bae478SChristopher Smith
3286164d900SAndreas Gohr/**
3296164d900SAndreas Gohr * Display a message to the user
3306164d900SAndreas Gohr *
3316164d900SAndreas Gohr * @param string $message
3326164d900SAndreas Gohr * @param int    $lvl   -1 = error, 0 = info, 1 = success, 2 = notify
3336164d900SAndreas Gohr * @param string $line  line number
3346164d900SAndreas Gohr * @param string $file  file number
3356164d900SAndreas Gohr * @param int    $allow who's allowed to see the message, see MSG_* constants
3366164d900SAndreas Gohr */
337f755f9abSChristopher Smithfunction msg($message,$lvl=0,$line='',$file='',$allow=MSG_PUBLIC){
338cc58224cSMichael Hamann    global $MSG, $MSG_shown;
33959bc3b48SGerrit Uitslag    $errors = array();
340c29dc6e4SAndreas Gohr    $errors[-1] = 'error';
341c29dc6e4SAndreas Gohr    $errors[0]  = 'info';
342c29dc6e4SAndreas Gohr    $errors[1]  = 'success';
343c29dc6e4SAndreas Gohr    $errors[2]  = 'notify';
344c29dc6e4SAndreas Gohr
3453009a773SAndreas Gohr    if($line || $file) $message.=' ['.utf8_basename($file).':'.$line.']';
346c29dc6e4SAndreas Gohr
347c29dc6e4SAndreas Gohr    if(!isset($MSG)) $MSG = array();
348f755f9abSChristopher Smith    $MSG[]=array('lvl' => $errors[$lvl], 'msg' => $message, 'allow' => $allow);
349cc58224cSMichael Hamann    if(isset($MSG_shown) || headers_sent()){
350c29dc6e4SAndreas Gohr        if(function_exists('html_msgarea')){
351c29dc6e4SAndreas Gohr            html_msgarea();
352c29dc6e4SAndreas Gohr        }else{
353c29dc6e4SAndreas Gohr            print "ERROR($lvl) $message";
354c29dc6e4SAndreas Gohr        }
35569266de5SDominik Eckelmann        unset($GLOBALS['MSG']);
356c29dc6e4SAndreas Gohr    }
357c29dc6e4SAndreas Gohr}
358f755f9abSChristopher Smith/**
359f755f9abSChristopher Smith * Determine whether the current user is allowed to view the message
360f755f9abSChristopher Smith * in the $msg data structure
361f755f9abSChristopher Smith *
362f755f9abSChristopher Smith * @param  $msg   array    dokuwiki msg structure
363f755f9abSChristopher Smith *                         msg   => string, the message
364f755f9abSChristopher Smith *                         lvl   => int, level of the message (see msg() function)
365f755f9abSChristopher Smith *                         allow => int, flag used to determine who is allowed to see the message
366f755f9abSChristopher Smith *                                       see MSG_* constants
3676164d900SAndreas Gohr * @return bool
368f755f9abSChristopher Smith */
369f755f9abSChristopher Smithfunction info_msg_allowed($msg){
370d3bae478SChristopher Smith    global $INFO, $auth;
371d3bae478SChristopher Smith
372d3bae478SChristopher Smith    // is the message public? - everyone and anyone can see it
373f755f9abSChristopher Smith    if (empty($msg['allow']) || ($msg['allow'] == MSG_PUBLIC)) return true;
374d3bae478SChristopher Smith
375d3bae478SChristopher Smith    // restricted msg, but no authentication
376d3bae478SChristopher Smith    if (empty($auth)) return false;
377d3bae478SChristopher Smith
378f755f9abSChristopher Smith    switch ($msg['allow']){
379d3bae478SChristopher Smith        case MSG_USERS_ONLY:
380d3bae478SChristopher Smith            return !empty($INFO['userinfo']);
381d3bae478SChristopher Smith
382d3bae478SChristopher Smith        case MSG_MANAGERS_ONLY:
383d3bae478SChristopher Smith            return $INFO['ismanager'];
384d3bae478SChristopher Smith
385d3bae478SChristopher Smith        case MSG_ADMINS_ONLY:
386d3bae478SChristopher Smith            return $INFO['isadmin'];
387d3bae478SChristopher Smith
388d3bae478SChristopher Smith        default:
389f755f9abSChristopher Smith            trigger_error('invalid msg allow restriction.  msg="'.$msg['msg'].'" allow='.$msg['allow'].'"', E_USER_WARNING);
390d3bae478SChristopher Smith            return $INFO['isadmin'];
391d3bae478SChristopher Smith    }
392d3bae478SChristopher Smith
393d3bae478SChristopher Smith    return false;
394d3bae478SChristopher Smith}
395d3bae478SChristopher Smith
396c29dc6e4SAndreas Gohr/**
397c29dc6e4SAndreas Gohr * print debug messages
398c29dc6e4SAndreas Gohr *
399c29dc6e4SAndreas Gohr * little function to print the content of a var
400c29dc6e4SAndreas Gohr *
401c29dc6e4SAndreas Gohr * @author Andreas Gohr <andi@splitbrain.org>
402f50a239bSTakamura *
403f50a239bSTakamura * @param string $msg
404f50a239bSTakamura * @param bool $hidden
405c29dc6e4SAndreas Gohr */
406c29dc6e4SAndreas Gohrfunction dbg($msg,$hidden=false){
40713493794SAndreas Gohr    if($hidden){
40813493794SAndreas Gohr        echo "<!--\n";
409c29dc6e4SAndreas Gohr        print_r($msg);
41013493794SAndreas Gohr        echo "\n-->";
41113493794SAndreas Gohr    }else{
41213493794SAndreas Gohr        echo '<pre class="dbg">';
41313493794SAndreas Gohr        echo hsc(print_r($msg,true));
41413493794SAndreas Gohr        echo '</pre>';
41513493794SAndreas Gohr    }
416c29dc6e4SAndreas Gohr}
417c29dc6e4SAndreas Gohr
418c29dc6e4SAndreas Gohr/**
419c29dc6e4SAndreas Gohr * Print info to a log file
420c29dc6e4SAndreas Gohr *
421c29dc6e4SAndreas Gohr * @author Andreas Gohr <andi@splitbrain.org>
422f50a239bSTakamura *
423f50a239bSTakamura * @param string $msg
424f50a239bSTakamura * @param string $header
425c29dc6e4SAndreas Gohr */
4260699d739SAndreas Gohrfunction dbglog($msg,$header=''){
427c29dc6e4SAndreas Gohr    global $conf;
428585bf44eSChristopher Smith    /* @var Input $INPUT */
429585bf44eSChristopher Smith    global $INPUT;
430585bf44eSChristopher Smith
4315bd930ffSMichael Hamann    // The debug log isn't automatically cleaned thus only write it when
4325bd930ffSMichael Hamann    // debugging has been enabled by the user.
4335bd930ffSMichael Hamann    if($conf['allowdebug'] !== 1) return;
434c7408a63SAndreas Gohr    if(is_object($msg) || is_array($msg)){
435c7408a63SAndreas Gohr        $msg = print_r($msg,true);
436c7408a63SAndreas Gohr    }
437c7408a63SAndreas Gohr
4380699d739SAndreas Gohr    if($header) $msg = "$header\n$msg";
4390699d739SAndreas Gohr
440c29dc6e4SAndreas Gohr    $file = $conf['cachedir'].'/debug.log';
441c29dc6e4SAndreas Gohr    $fh = fopen($file,'a');
442c29dc6e4SAndreas Gohr    if($fh){
443585bf44eSChristopher Smith        fwrite($fh,date('H:i:s ').$INPUT->server->str('REMOTE_ADDR').': '.$msg."\n");
444c29dc6e4SAndreas Gohr        fclose($fh);
445c29dc6e4SAndreas Gohr    }
446c29dc6e4SAndreas Gohr}
447c29dc6e4SAndreas Gohr
448db09e31eSAndreas Gohr/**
4491419a485SAndreas Gohr * Log accesses to deprecated fucntions to the debug log
4501419a485SAndreas Gohr *
4511419a485SAndreas Gohr * @param string $alternative The function or method that should be used instead
45285331086SAndreas Gohr * @triggers INFO_DEPRECATION_LOG
4531419a485SAndreas Gohr */
4541419a485SAndreas Gohrfunction dbg_deprecated($alternative = '') {
45585331086SAndreas Gohr    global $conf;
45685331086SAndreas Gohr    global $EVENT_HANDLER;
45785331086SAndreas Gohr    if(!$conf['allowdebug'] && !$EVENT_HANDLER->hasHandlerForEvent('INFO_DEPRECATION_LOG')) {
45885331086SAndreas Gohr        // avoid any work if no one cares
45985331086SAndreas Gohr        return;
46085331086SAndreas Gohr    }
46185331086SAndreas Gohr
4621419a485SAndreas Gohr    $backtrace = debug_backtrace();
4631419a485SAndreas Gohr    array_shift($backtrace);
46444455016SAndreas Gohr    $self = $backtrace[0];
46544455016SAndreas Gohr    $call = $backtrace[1];
4661419a485SAndreas Gohr
46744455016SAndreas Gohr    $data = [
46844455016SAndreas Gohr        'trace' => $backtrace,
46944455016SAndreas Gohr        'alternative' => $alternative,
47044455016SAndreas Gohr        'called' => trim($self['class'] . '::' . $self['function'] . '()', ':'),
47144455016SAndreas Gohr        'caller' => trim($call['class'] . '::' . $call['function'] . '()', ':'),
47244455016SAndreas Gohr        'file' => $call['file'],
47344455016SAndreas Gohr        'line' => $call['line'],
47444455016SAndreas Gohr    ];
4751419a485SAndreas Gohr
47644455016SAndreas Gohr    $event = new Doku_Event('INFO_DEPRECATION_LOG', $data);
47744455016SAndreas Gohr    if($event->advise_before()) {
47844455016SAndreas Gohr        $msg = $event->data['called'] . ' is deprecated. It was called from ';
47944455016SAndreas Gohr        $msg .= $event->data['caller'] . ' in ' . $event->data['file'] . ':' . $event->data['line'];
48044455016SAndreas Gohr        if($event->data['alternative']) {
48144455016SAndreas Gohr            $msg .= ' ' . $event->data['alternative'] . ' should be used instead!';
4821419a485SAndreas Gohr        }
4831419a485SAndreas Gohr        dbglog($msg);
4841419a485SAndreas Gohr    }
48544455016SAndreas Gohr    $event->advise_after();
48644455016SAndreas Gohr}
4871419a485SAndreas Gohr
4881419a485SAndreas Gohr/**
489db09e31eSAndreas Gohr * Print a reversed, prettyprinted backtrace
490db09e31eSAndreas Gohr *
491db09e31eSAndreas Gohr * @author Gary Owen <gary_owen@bigfoot.com>
492db09e31eSAndreas Gohr */
493db09e31eSAndreas Gohrfunction dbg_backtrace(){
494db09e31eSAndreas Gohr    // Get backtrace
495db09e31eSAndreas Gohr    $backtrace = debug_backtrace();
496db09e31eSAndreas Gohr
497db09e31eSAndreas Gohr    // Unset call to debug_print_backtrace
498db09e31eSAndreas Gohr    array_shift($backtrace);
499db09e31eSAndreas Gohr
500db09e31eSAndreas Gohr    // Iterate backtrace
501db09e31eSAndreas Gohr    $calls = array();
502db09e31eSAndreas Gohr    $depth = count($backtrace) - 1;
503db09e31eSAndreas Gohr    foreach ($backtrace as $i => $call) {
504db09e31eSAndreas Gohr        $location = $call['file'] . ':' . $call['line'];
505db09e31eSAndreas Gohr        $function = (isset($call['class'])) ?
506db09e31eSAndreas Gohr            $call['class'] . $call['type'] . $call['function'] : $call['function'];
507db09e31eSAndreas Gohr
5088259f1aaSAndreas Gohr        $params = array();
509db09e31eSAndreas Gohr        if (isset($call['args'])){
5108259f1aaSAndreas Gohr            foreach($call['args'] as $arg){
5118259f1aaSAndreas Gohr                if(is_object($arg)){
5128259f1aaSAndreas Gohr                    $params[] = '[Object '.get_class($arg).']';
5138259f1aaSAndreas Gohr                }elseif(is_array($arg)){
5148259f1aaSAndreas Gohr                    $params[] = '[Array]';
5158259f1aaSAndreas Gohr                }elseif(is_null($arg)){
51659bc3b48SGerrit Uitslag                    $params[] = '[NULL]';
5178259f1aaSAndreas Gohr                }else{
5188259f1aaSAndreas Gohr                    $params[] = (string) '"'.$arg.'"';
519db09e31eSAndreas Gohr                }
5208259f1aaSAndreas Gohr            }
5218259f1aaSAndreas Gohr        }
5228259f1aaSAndreas Gohr        $params = implode(', ',$params);
523db09e31eSAndreas Gohr
5248259f1aaSAndreas Gohr        $calls[$depth - $i] = sprintf('%s(%s) called at %s',
525db09e31eSAndreas Gohr                $function,
526db09e31eSAndreas Gohr                str_replace("\n", '\n', $params),
527db09e31eSAndreas Gohr                $location);
528db09e31eSAndreas Gohr    }
529db09e31eSAndreas Gohr    ksort($calls);
530db09e31eSAndreas Gohr
531db09e31eSAndreas Gohr    return implode("\n", $calls);
532db09e31eSAndreas Gohr}
533db09e31eSAndreas Gohr
53424297a69SAndreas Gohr/**
53524297a69SAndreas Gohr * Remove all data from an array where the key seems to point to sensitive data
53624297a69SAndreas Gohr *
53724297a69SAndreas Gohr * This is used to remove passwords, mail addresses and similar data from the
53824297a69SAndreas Gohr * debug output
53924297a69SAndreas Gohr *
54024297a69SAndreas Gohr * @author Andreas Gohr <andi@splitbrain.org>
541f50a239bSTakamura *
542f50a239bSTakamura * @param array $data
54324297a69SAndreas Gohr */
54424297a69SAndreas Gohrfunction debug_guard(&$data){
54524297a69SAndreas Gohr    foreach($data as $key => $value){
54624297a69SAndreas Gohr        if(preg_match('/(notify|pass|auth|secret|ftp|userinfo|token|buid|mail|proxy)/i',$key)){
54724297a69SAndreas Gohr            $data[$key] = '***';
54824297a69SAndreas Gohr            continue;
54924297a69SAndreas Gohr        }
55024297a69SAndreas Gohr        if(is_array($value)) debug_guard($data[$key]);
55124297a69SAndreas Gohr    }
55224297a69SAndreas Gohr}
553