2016-01-23 15:25:36 +00:00
< ? php
register_module ([
" name " => " Debug Information " ,
2019-09-11 19:21:21 +00:00
" version " => " 0.2 " ,
2016-01-23 15:25:36 +00:00
" author " => " Starbeamrainbowlabs " ,
" description " => " Adds a debug action for administrator use only that collects a load of useful information to make reporting bugs easier. " ,
" id " => " page-debug-info " ,
" code " => function () {
global $settings , $env ;
2016-06-13 10:55:40 +00:00
/**
* @ api { get } ? action = debug Get a debug dump
* @ apiName Debug
* @ apiGroup Utility
* @ apiPermission Moderator
*
* @ apiUse UserNotModeratorError
2019-09-11 19:21:21 +00:00
*
* @ apiParam { string } secret Optional . If you ' re not logged in as a moderator or better , then specifying the secret works as a substitute .
2016-06-13 10:55:40 +00:00
*/
2016-01-23 15:25:36 +00:00
/*
* ██████ ███████ ██████ ██ ██ ██████
* ██ ██ ██ ██ ██ ██ ██ ██
* ██ ██ █████ ██████ ██ ██ ██ ███
* ██ ██ ██ ██ ██ ██ ██ ██ ██
* ██████ ███████ ██████ ██████ ██████
*/
add_action ( " debug " , function () {
2018-04-22 16:52:57 +00:00
global $settings , $env , $paths , $version , $commit ;
2016-01-23 15:25:36 +00:00
header ( " content-type: text/plain " );
2019-09-11 19:21:21 +00:00
if ( ! $env -> is_admin && ( isset ( $_GET [ " secret " ]) && $_GET [ " secret " ] !== $settings -> secret )) {
2016-01-23 15:25:36 +00:00
exit ( " You must be logged in as an moderator in order to generate debugging information. " );
}
$title = " $settings->sitename debug report " ;
echo ( " $title\n " );
echo ( str_repeat ( " = " , strlen ( $title )) . " \n " );
2018-04-22 16:52:57 +00:00
echo ( " Powered by Pepperminty Wiki version $version + " . substr ( $commit , 0 , 7 ) . " . \n " );
2016-01-23 15:25:36 +00:00
echo ( " This report may contain personal information. \n \n " );
echo ( " Environment: " );
echo ( var_export ( $env , true ));
echo ( " \n Paths: " );
var_dump ( var_export ( $paths , true ));
echo ( " \n Server information: \n " );
echo ( " uname -a: " . php_uname () . " \n " );
echo ( " Path: " . getenv ( " PATH " ) . " \n " );
echo ( " Temporary directory: " . sys_get_temp_dir () . " \n " );
echo ( " Server: " . $_SERVER [ " SERVER_SOFTWARE " ] . " \n " );
echo ( " Web root: " . $_SERVER [ " DOCUMENT_ROOT " ] . " \n " );
echo ( " Web server user: " . exec ( " whoami " ) . " \n " );
echo ( " PHP version: " . phpversion () . " \n " );
echo ( " index.php location: " . __FILE__ . " \n " );
echo ( " index.php file permissions: " . substr ( sprintf ( '%o' , fileperms ( " ./index.php " )), - 4 ) . " \n " );
echo ( " Current folder permissions: " . substr ( sprintf ( '%o' , fileperms ( " . " )), - 4 ) . " \n " );
echo ( " Storage directory permissions: " . substr ( sprintf ( '%o' , fileperms ( $env -> storage_prefix )), - 4 ) . " \n " );
echo ( " Loaded extensions: " . implode ( " , " , get_loaded_extensions ()) . " \n " );
echo ( " Settings: \n ----- \n " );
$settings_export = explode ( " \n " , var_export ( $settings , true ));
foreach ( $settings_export as & $row )
{
if ( preg_match ( " /(sitesecret|email)/i " , $row )) $row = " ********* secret ********* " ;
}
echo ( implode ( " \n " , $settings_export ));
echo ( " \n ----- \n " );
exit ();
});
if ( $env -> is_admin )
{
2017-01-02 20:39:52 +00:00
add_help_section ( " 950-debug-information " , " Gathering debug information " , " <p>As a moderator, $settings->sitename gives you the ability to generate a report on $settings->sitename 's installation of Pepperminty Wiki for debugging purposes.</p>
2016-01-23 15:25:36 +00:00
< p > To generate such a report , visit the < code > debug </ code > action or < a href = '?action=debug' > click here </ a >.</ p > " );
}
}
]);
?>