X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-logs.php;h=df3a5872f02f9c5d6c38b599fb337d4d18d37575;hb=00797d46cc0b7e2c4e8c084eb4c6ac26cd0336e1;hp=ddc6a6b48e4a615da884a1543de982af8ab7fdf5;hpb=414570c5081d337bb6c28dcf521bd8bca02f69e7;p=mailer.git diff --git a/inc/modules/admin/what-logs.php b/inc/modules/admin/what-logs.php index ddc6a6b48e..df3a5872f0 100644 --- a/inc/modules/admin/what-logs.php +++ b/inc/modules/admin/what-logs.php @@ -10,10 +10,10 @@ * -------------------------------------------------------------------- * * Kurzbeschreibung : Management fuer Zugriffslogbuecher * * -------------------------------------------------------------------- * - * $Revision:: 856 $ * - * $Date:: 2009-03-06 20:24:32 +0100 (Fr, 06. Mär 2009) $ * + * $Revision:: $ * + * $Date:: $ * * $Tag:: 0.2.1-FINAL $ * - * $Author:: stelzi $ * + * $Author:: $ * * Needs to be in all Files and every File needs "svn propset * * svn:keywords Date Revision" (autoprobset!) at least!!!!!! * * -------------------------------------------------------------------- * @@ -38,22 +38,22 @@ // Some security stuff... if ((!defined('__SECURITY')) || (!IS_ADMIN())) { - $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php"; + $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), '/inc') + 4) . '/security.php'; require($INC); } // Add description as navigation point -ADD_DESCR("admin", __FILE__); +ADD_DESCR('admin', __FILE__); -if (REQUEST_ISSET_GET(('access'))) { +if (REQUEST_ISSET_GET('access')) { // Secure input and construct FQFN $access = SQL_ESCAPE(strip_tags(REQUEST_GET('access'))); $target = sprintf("%slogs/%s", constant('PATH'), $access); // Is the file valid and readable? - if (FILE_READABLE($target)) { + if (isFileReadable($target)) { // Load it directly - $content = READ_FILE($target); + $content = readFromFile($target); // Save old content $OUTPUT = ob_get_contents(); @@ -62,41 +62,43 @@ if (REQUEST_ISSET_GET(('access'))) { clearOutputBuffer(); // Set header - if (substr($access, -3, 3) == "log") { + if (substr($access, -3, 3) == 'log') { // Output header - header("Content-Type: text/plain"); - } elseif (substr($access, -3, 3) == ".gz") { + sendHeader('Content-Type: text/plain'); + } elseif (substr($access, -3, 3) == '.gz') { // @TODO Fix content-type here - header("Content-Type: text/plain"); - } elseif (substr($access, -3, 3) == ".bz2") { + sendHeader('Content-Type: text/plain'); + } elseif (substr($access, -3, 3) == '.bz2') { // @TODO Fix content-type here - header("Content-Type: text/plain"); + sendHeader('Content-Type: text/plain'); } else { // Restore old content OUTPUT_HTML($OUTPUT); // Output message - LOAD_TEMPLATE("admin_settings_saved", false, sprintf(getMessage('ADMIN_UNKNOWN_LOGFILE_FORMAT'), $access)); + LOAD_TEMPLATE('admin_settings_saved', false, sprintf(getMessage('ADMIN_UNKNOWN_LOGFILE_FORMAT'), $access)); return; } // Output the logfile's content and exit print($content); - exit; + shutdown(); } else { // Not readable! - LOAD_TEMPLATE("admin_settings_saved", false, sprintf(getMessage('LOGFILE_NOT_READABLE'), $access)); + LOAD_TEMPLATE('admin_settings_saved', false, sprintf(getMessage('LOGFILE_NOT_READABLE'), $access)); } } else { // List access logfiles - $dir = constant('PATH') . getConfig('logs_base') . "/"; - if (is_dir($dir)) { + $dir = constant('PATH') . getConfig('logs_base') . '/'; + + // Is the directory there? + if (isDirectory($dir)) { // logs directory does exist OUTPUT_HTML("
    "); - $handle = opendir($dir) or mxchange_die("Cannot open directory ".getConfig('logs_base')."!"); + $handle = opendir($dir) or app_die(__FILE__, __LINE__, 'Cannot open directory '.getConfig('logs_base') . '!'); while ($file = readdir($handle)) { // We currenly only like files with "access" as prefix, should be more flexible! - if (substr($file, 0, 6) == "access") { + if (substr($file, 0, 6) == 'access') { // Okay, let us print it out OUTPUT_HTML("
  1. ".$file."
  2. "); } @@ -105,7 +107,7 @@ if (REQUEST_ISSET_GET(('access'))) { OUTPUT_HTML("
"); } else { // logs directory does not exist - LOAD_TEMPLATE("admin_settings_saved", false, sprintf(getMessage('ADMIN_LOGS_DIR_404'), getConfig('logs_base'))); + LOAD_TEMPLATE('admin_settings_saved', false, sprintf(getMessage('ADMIN_LOGS_DIR_404'), getConfig('logs_base'))); } }