X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-usage.php;h=d8a74e6fd99056db7424bbbe7d1be0acc232e4cf;hb=c1671a3b6c02326b471916a28f4177c453871f51;hp=c235fc02eec3a3c867c41a85e980825539931597;hpb=d0ab0382dd73638f0bc13a1a3d6f117ec11a203e;p=mailer.git diff --git a/inc/modules/admin/what-usage.php b/inc/modules/admin/what-usage.php index c235fc02ee..d8a74e6fd9 100644 --- a/inc/modules/admin/what-usage.php +++ b/inc/modules/admin/what-usage.php @@ -1,7 +1,7 @@ 0) $_GET['image'] = substr($_GET['image'], 0, strpos($_GET['image'], "\\")); - $file = PATH.$usage.$_GET['type']."_usage_".$_GET['image'].".png"; +// Base directory (should be moved to database) +$usage = getConfig('usage_base') . '/'; + +if (isGetRequestElementSet('image')) { + if (getRequestElement('type') == 'usage') { + $FQFN = sprintf("%s%s/usage.png", + getConfig('PATH'), + getConfig('usage_base') + ); + } else { + if (strpos(getRequestElement('image'), "\\") > 0) setRequestGetElement('image', substr(getRequestElement('image'), 0, strpos(getRequestElement('image'), "\\"))); + $FQFN = sprintf("%s%s/%s_usage_%s.png", + getConfig('PATH'), + getConfig('usage_base'), + getRequestElement('type'), + getRequestElement('image') + ); } - if (file_exists($file)) - { - $image = imagecreatefrompng($file); - header("Content-type: image/png"); + + if (isFileReadable($FQFN)) { + $image = imagecreatefrompng($FQFN); + sendHeader('Content-Type: image/png'); imagepng($image); imagedestroy($image); } - exit(); -} - elseif (empty($_GET['usage'])) -{ - $file = PATH.$usage."index.html"; -} - else -{ - $file = sprintf("%s%susage_%s.html", - PATH, - $usage, - SQL_ESCAPE($_GET['usage']) + shutdown(); +} elseif (!isGetRequestElementSet('usage')) { + $FQFN = sprintf("%s%s/index.html", + getConfig('PATH'), + getConfig('usage_base') + ); +} else { + $FQFN = sprintf("%s%s/usage_%s.html", + getConfig('PATH'), + getConfig('usage_base'), + getRequestElement('usage') ); } -if ($file !="") -{ - if (file_exists($file) && is_readable($file)) - { - $tmpl_file = implode("", file($file)); - $tmpl_file = addslashes($tmpl_file); - $tmpl_file = "\$content=\"".$tmpl_file."\";"; - eval($tmpl_file); - $content = str_replace("usage.png", URL."/modules.php?module=admin&what=".$GLOBALS['what']."&type=usage&image=usage", $content); - $content = str_replace("daily_usage_", URL."/modules.php?module=admin&what=".$GLOBALS['what']."&type=daily&image=", $content); - $content = str_replace("hourly_usage_", URL."/modules.php?module=admin&what=".$GLOBALS['what']."&type=hourly&image=", $content); - $content = str_replace("ctry_usage_", URL."/modules.php?module=admin&what=".$GLOBALS['what']."&type=ctry&image=", $content); - $content = str_replace("usage_", URL."/modules.php?module=admin&what=".$GLOBALS['what']."&usage=", str_replace(".html", "", $content)); - // Disabled due to too much trouble - //$content = str_replace("HREF=\"http://", "href=\"".URL."/modules.php?module=loader&url=http://", $content); - $test = strtolower($content); - $body_start = strpos($test, ""); - if (($body_start > 0) && ($body_end > 0)) - { - $content = substr(substr($content, 0, $body_end), $body_start); - $content = substr($content, strpos($content, ">") + 1); - OUTPUT_HTML ("
- ".$content." -
"); - } - } + +if ((!empty($FQFN)) && (isFileReadable($FQFN))) { + // @TODO This code is double, see LOAD_TEMPLATE and loadEmailTemplate in functions.php + eval("\$content=\"".SQL_ESCAPE(readFromFile($FQFN))."\";"); + // Until here... + + // Replace URLs + $content = str_replace('usage.png' , '{?URL?}/modules.php?module=admin&what='.getWhat().'&type=usage&image=usage', $content); + $content = str_replace('daily_usage_' , '{?URL?}/modules.php?module=admin&what='.getWhat().'&type=daily&image=' , $content); + $content = str_replace('hourly_usage_', '{?URL?}/modules.php?module=admin&what='.getWhat().'&type=hourly&image=' , $content); + $content = str_replace('ctry_usage_' , '{?URL?}/modules.php?module=admin&what='.getWhat().'&type=ctry&image=' , $content); + $content = str_replace('usage_' , '{?URL?}/modules.php?module=admin&what='.getWhat().'&usage=' , str_replace('.html', '', $content)); + + // @TODO Disabled due to too much trouble + //$content = str_replace("HREF=\"http://", "href=\"{?URL?}/modules.php?module=loader&url=http://", $content); + $test = strtolower($content); + + // Do we need to strip out above and including plus trailing tag? + if ((strpos($test, ' 0) && (strpos($test, '') > 0)) { + // Okay, then do so. + $content = substr(substr($content, 0, $body_end), $body_start); + $content = substr($content, strpos($content, '>') + 1); + } // END - if + + // Output code + outputHtml($content); +} else { + // Nothing to load, then we have no directory 'usage' + loadTemplate('admin_settings_saved', false, sprintf(getMessage('ADMIN_USAGE_DIRECTORY_404'), getConfig('usage_base'))); } -CLOSE_TABLE(); + // ?>