X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=modules.php;h=de90da0cd27fcd303e1d738d028138db2c093fea;hp=5850e441720b2acc798e9fc2345df95222e01025;hb=7c15ca79161bf475e958810a5b585bce869a2af9;hpb=105acbe19037f756a0902e990836133bcd993d13 diff --git a/modules.php b/modules.php index 5850e44172..de90da0cd2 100644 --- a/modules.php +++ b/modules.php @@ -10,9 +10,14 @@ * -------------------------------------------------------------------- * * Kurzbeschreibung : Hauptladedatei. Laedt alle benoetigten Dateien * * -------------------------------------------------------------------- * - * * + * $Revision:: $ * + * $Date:: $ * + * $Tag:: 0.2.1-FINAL $ * + * $Author:: $ * + * Needs to be in all Files and every File needs "svn propset * + * svn:keywords Date Revision" (autoprobset!) at least!!!!!! * * -------------------------------------------------------------------- * - * Copyright (c) 2003 - 2008 by Roland Haeder * + * Copyright (c) 2003 - 2009 by Roland Haeder * * For more information visit: http://www.mxchange.org * * * * This program is free software; you can redistribute it and/or modify * @@ -31,122 +36,92 @@ * MA 02110-1301 USA * ************************************************************************/ -// APD call (if you have this apache extension and want to debug this script for us) -//apd_set_pprof_trace(); +// XDEBUG call +/* DEBUG: */ xdebug_start_trace(); -// Load security stuff here (Oh, I hope this is not unsecure? Am I paranoia??? ;-) ) -require_once ("inc/libs/security_functions.php"); +// Load security stuff here +require('inc/libs/security_functions.php'); -// Init "action" and "what" -global $what, $action, $startTime; +// Init start time $GLOBALS['startTime'] = microtime(true); -$CSS = 0; -$GLOBALS['what'] = ""; $GLOBALS['action'] = ""; -$GLOBALS['userid'] = 0; - -if (!empty($_GET['action'])) $GLOBALS['action'] = secureString($_GET['action']); -if (!empty($_GET['what'])) $GLOBALS['what'] = secureString($_GET['what']); -if (empty($_GET['module'])) $_GET['module'] = "index"; -// Secure the module name (very important line!) -$GLOBALS['module'] = htmlentities(strip_tags($_GET['module']), ENT_QUOTES); +// Init output mode and module +$GLOBALS['output_mode'] = 0; +$GLOBALS['module'] = ''; // Needed include files -require ("inc/config.php"); - -// Check if logged in -if (IS_LOGGED_IN()) { - // Is still logged in so we welcome him with his name - $result = SQL_QUERY_ESC("SELECT surname, family FROM "._MYSQL_PREFIX."_user_data WHERE userid=%s LIMIT 1", - array($GLOBALS['userid']), __FILE__, __LINE__); - if (SQL_NUMROWS($result) == 1) { - // Load surname and family's name and build the username - list($s, $f) = SQL_FETCHROW($result); - $username = $s." ".$f; - - // Update only cookies and no login data! - UPDATE_LOGIN_DATA(false); - } else { - - // Hmmm, logged in and no valid cookies??? - $username = ""._UNKNOWN.""; - } - - // Free memory - SQL_FREERESULT($result); -} elseif (IS_ADMIN()) { - $username = _ADMIN; -} else { - // He's a guest, hello there... ;-) - $username = _GUEST; -} +require('inc/config-global.php'); + +// Set content type +setContentType('text/html'); + +// Fix missing module to 'index' +if (!isGetRequestElementSet('module')) setRequestGetElement('module', 'index'); // The header file -include (PATH."inc/header.php"); +loadIncludeOnce('inc/header.php'); // Modules are by default not valid! -$MOD_VALID = false; $check = "failed"; -if ((!empty($_CONFIG['maintenance'])) && ($_CONFIG['maintenance'] == "Y") && (!IS_ADMIN()) && ($GLOBALS['module'] != "admin")) { +$isModuleValid = false; +$URL = ''; +$check = 'failed'; + +// Is the maintenance mode active or goes all well? +if ((isExtensionActive('maintenance')) && (getConfig('maintenance') == 'Y') && (!isAdmin()) && (getModule() != 'admin')) { // Maintain mode is active and you are no admin - ADD_FATAL(LANG_DOWN_MAINTAINCE); -} elseif (($link) && ($db) && (sizeof($FATAL) == 0)) { - // Did we found the module listed in allowed modules and are we successfully connected? - $check = CHECK_MODULE($GLOBALS['module']); - switch ($check) - { - case "admin_only": - case "mem_only": - case "done": - // Construct module name - define('__MODULE', sprintf("%sinc/modules/%s.php", PATH, $GLOBALS['module'])); - - // Does the module exists on local file system? - if (((file_exists(__MODULE)) && (is_readable(__MODULE))) && (sizeof($FATAL) == 0)) { - // Module is valid, active and located on the local disc... - $MOD_VALID = true; - } elseif (!empty($URL)) { - // An URL was specified so we load the de-referrer module - LOAD_URL(DEREFERER($URL)); - } elseif (sizeof($FATAL) == 0) { - ADD_FATAL(LANG_MOD_REG_404_1.$GLOBALS['module'].LANG_MOD_REG_404_2); - } - break; - - case "404": - ADD_FATAL(LANG_MOD_REG_404_1.$GLOBALS['module'].LANG_MOD_REG_404_2); - break; - - case "locked": - if (!file_exists(PATH."inc/modules/".$GLOBALS['module'].".php")) - { - // Module does addionally not exists - ADD_FATAL(LANG_MOD_REG_404_1.$GLOBALS['module'].LANG_MOD_REG_404_2); - } - ADD_FATAL(LANG_MOD_LOCKED_1.$GLOBALS['module'].LANG_MOD_LOCKED_2); - break; - - default: - ADD_FATAL(LANG_MOD_UNKNOWN_1.$check.LANG_MOD_UNKNOWN_2); - break; - } -} - elseif (sizeof($FATAL) == 0) -{ + addFatalMessage(__FILE__, __LINE__, getMessage('LANG_DOWN_MAINTAINCE')); +} elseif ((SQL_IS_LINK_UP()) && (getTotalFatalErrors() == 0)) { + // Construct module name + $GLOBALS['module_inc'] = sprintf("inc/modules/%s.php", getModule()); + + // Check module permission (again) + $check = checkModulePermissions(); + switch ($check) { + case 'cache_miss': // The cache is gone + case 'admin_only': // Admin-only access + case 'mem_only': // Member-only access + case 'done': // All fine! + // Does the module exists on local file system? + if ((isIncludeReadable($GLOBALS['module_inc'])) && (getTotalFatalErrors() == 0)) { + // Module is valid, active and located on the local disc... + $isModuleValid = true; + } elseif (getTotalFatalErrors() == 0) { + // Module not found! + addFatalMessage(__FILE__, __LINE__, sprintf(getMessage('LANG_MOD_REG_404'), getModule())); + } + break; + + case '404': + addFatalMessage(__FILE__, __LINE__, sprintf(getMessage('LANG_MOD_REG_404'), getModule())); + break; + + case 'locked': + if (!isIncludeReadable($GLOBALS['module_inc'])) { + // Module does addionally not exists + addFatalMessage(__FILE__, __LINE__, sprintf(getMessage('LANG_MOD_REG_404'), getModule())); + } // END - if + + // Add fatal message + addFatalMessage(__FILE__, __LINE__, sprintf(getMessage('LANG_MOD_REG_LOCKED'), getModule())); + break; + + default: + logDebugMessage(__FILE__, __LINE__, sprintf("Unknown status %s return from module check. Module=%s", $check, getModule())); + addFatalMessage(__FILE__, __LINE__, sprintf(getMessage('LANG_MOD_REG_UNKNOWN'), $check)); + break; + } // END - switch +} elseif (getTotalFatalErrors() == 0) { // MySQL problems! - ADD_FATAL(MYSQL_ERRORS); + addFatalMessage(__FILE__, __LINE__, getMessage('MYSQL_ERRORS')); } -if ($MOD_VALID) { - ///////////////////////////////////////////// - // Main including line DO NOT REMOVE/EDIT! // - ///////////////////////////////////////////// - // +if (($isModuleValid === true) && (isset($GLOBALS['module_inc']))) { // Everything is okay so we can load the module - include (__MODULE); -} + loadIncludeOnce($GLOBALS['module_inc']); +} // END - if -// Next-to-end add the footer -include (PATH."inc/footer.php"); +// Add the footer (this will call shutdown()) +loadIncludeOnce('inc/footer.php'); -// +// [EOF] ?>