Several kinky code smoothed, fixes for admin login
[mailer.git] / inc / config-functions.php
index a3a07e62ae9712a4ee40cff0453a15e1f355d0cb..8f25e9223c51a002747d11f8911c170ceeacf166 100644 (file)
@@ -17,7 +17,7 @@
  * 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 *
 
 // Some security stuff...
 if (!defined('__SECURITY')) {
-       $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), '/inc') + 4) . '/security.php';
-       require($INC);
-}
+       die();
+} // END - if
 
 // Init the config array
 function initConfig () {
        // Init not if already found
-       if ((isset($GLOBALS['config'])) && (count($GLOBALS['config']) >= 3)) {
+       if (isConfigurationLoaded()) {
                // Already initialized
-               trigger_error(sprintf("[%s:%s] Configuration is already initialized.", __FUNCTION__, __LINE__));
+               debug_report_bug(sprintf("[%s:%s] Configuration is already initialized.", __FUNCTION__, __LINE__));
        } // END - if
 
-       // Set a minimum of configuration, required to by-pass some errors triggers in getConfig()
+       // Set a minimum of configuration, required to by-pass some error triggers in getConfig()
        $GLOBALS['config'] = array(
-               'code_length'      => 0,
-               'patch_level'      => 0,
-               'last_update'      => time(),
-               'DEFAULT_LANG'     => 'de',
-               'DEBUG_MODE'       => 'N',
-               'DEBUG_RESET'      => 'N',
-               'DEBUG_MONTHLY'    => 'N',
-               'DEBUG_WEEKLY'     => 'N',
-               'DEBUG_REGEX'      => 'N',
-               'ADMIN_REGISTERED' => 'N',
-               'sql_count'        => 0,
-               'num_templates'    => 0,
-               'default_theme'    => 'default',
+               'sql_time'            => 0,
+               'sql_count'           => 0,
+               'num_templates'       => 0,
+               // 'DEFAULT_SALT_LENGTH' => 40,
+               // 'DEBUG_MODE'          => 'N',
+               // 'DEBUG_RESET'         => 'N',
+               // 'DEBUG_MONTHLY'       => 'N',
+               // 'DEBUG_WEEKLY'        => 'N',
+               // 'DEBUG_REGEX'         => 'N',
+               // 'ADMIN_REGISTERED'    => 'N',
+               // 'verbose_sql'         => 'Y',
+               // For installation phase:
+               'SMTP_HOSTNAME'       => '',
+               'SMTP_USER'           => '',
+               'SMTP_PASSWORD'       => '',
+               'MT_WORD'             => '{--DEFAULT_MT_WORD--}',
        );
 }
 
@@ -74,9 +76,13 @@ function getConfig ($configEntry) {
        $value = null;
 
        // Is the entry there?
-       if (!isConfigEntrySet($configEntry)) {
+       if (!isset($GLOBALS['config'][$configEntry])) {
                // Raise an error of missing entries
-               trigger_error(sprintf("[%s:%s] Configuration entry <em>%s</em> is missing.", __FUNCTION__, __LINE__, $configEntry));
+               debug_report_bug(sprintf("[%s:%s] Configuration entry <em>%s</em> is missing.",
+                       __FUNCTION__,
+                       __LINE__,
+                       $configEntry
+               ));
        } // END - if
 
        // Return it
@@ -85,21 +91,13 @@ function getConfig ($configEntry) {
 
 // Setter for $GLOBALS['config'] entries
 function setConfigEntry ($configEntry, $value) {
-       // Secure the entry name
-       if (function_exists('SQL_ESCAPE')) {
-               // Use our secure function
-               $configEntry = SQL_ESCAPE($configEntry);
-       } else {
-               // Use maybe insecure function
-               $configEntry = smartAddSlashes($configEntry);
-       }
-
-       // And set it
+       // Just set it (unsecured won't hurt?)
        $GLOBALS['config'][$configEntry] = $value;
 }
 
 // Checks wether the given config entry is set
 function isConfigEntrySet ($configEntry) {
+       //* DEBUG: */ print __FUNCTION__.':'.$configEntry.'='.intval(isset($GLOBALS['config'][$configEntry])).'<br />';
        return (isset($GLOBALS['config'][$configEntry]));
 }
 
@@ -119,51 +117,18 @@ function incrementConfigEntry ($configEntry, $value=1) {
 }
 
 // Checks wether the configuration array is set so the config is loaded
-function isConfigLoaded () {
+function isConfigurationLoaded () {
        // Check all
-       return ((isset($GLOBALS['config'])) && (is_array($GLOBALS['config'])) && (count($GLOBALS['config']) > 0));
-}
-
-// Load configuration and return it as an arry
-function loadConfiguration ($no = '0') {
-       // Check for cache extension, cache-array and if the requested configuration is in cache
-       if ((isset($GLOBALS['cache_array'])) && (is_array($GLOBALS['cache_array'])) && (isset($GLOBALS['cache_array']['config'][$no])) && (is_array($GLOBALS['cache_array']['config'][$no]))) {
-               // Load config from cache
-               //* DEBUG: */ OUTPUT_HTML(gettype($GLOBALS['cache_array']['config'][$no])."<br />");
-               foreach ($GLOBALS['cache_array']['config'][$no] as $key => $value) {
-                       setConfigEntry($key, $value);
-               } // END - foreach
-
-               // Count cache hits if exists
-               if ((isConfigEntrySet('cache_hits')) && (EXT_IS_ACTIVE('cache'))) {
-                       incrementConfigEntry('cache_hits');
-               } // END - if
-       } elseif ((!EXT_IS_ACTIVE('cache')) || (!isset($GLOBALS['cache_array']['config'][$no]))) {
-               // Load config from DB
-               $result_config = SQL_QUERY_ESC("SELECT * FROM `{!_MYSQL_PREFIX!}_config` WHERE config=%d LIMIT 1",
-                       array(bigintval($no)), __FUNCTION__, __LINE__);
-
-               // Is the config there?
-               if (SQL_NUMROWS($result_config) == 1) {
-                       // Get config from database
-                       mergeConfig(SQL_FETCHARRAY($result_config));
-               } // END - if
-
-               // Free result
-               SQL_FREERESULT($result_config);
-
-               // Remember this config in the array
-               $GLOBALS['cache_array']['config'][$no] = getConfigArray();
-       }
+       return (isset($GLOBALS['config']['config']));
 }
 
 // Getter for whole $GLOBALS['config'] array
 function getConfigArray () {
        // Default is null
-       $return = null;
+       $return = array();
 
        // Is the config set?
-       if (isConfigLoaded()) {
+       if (isset($GLOBALS['config'])) {
                // Then use it
                $return = $GLOBALS['config'];
        } // END - if
@@ -177,32 +142,33 @@ function updateOldConfigFile () {
        // Watch out for these lines and execute them as single command
        // @TODO Make this all better... :-/
        $watchLines = array(
-               "define('SITE_KEY',"           => 'SITE_KEY',
-               "define('DEFAULT_LANG',"       => 'DEFAULT_LANG',
-               "define('warn_no_pass',"       => 'WARN_NO_PASS',
-               "define('WRITE_FOOTER',"       => 'WRITE_FOOTER',
-               "define('OUTPUT_MODE',"        => 'OUTPUT_MODE',
-               "define('MAIN_TITLE',"         => 'MAIN_TITLE',
-               "define('SLOGAN',"             => 'SLOGAN',
-               "define('WEBMASTER',"          => 'WEBMASTER',
-               "define('mxchange_installed'," => 'MXCHANGE_INSTALLED',
-               "define('admin_registered',"   => 'ADMIN_REGISTERED',
-               "define('_MYSQL_PREFIX',"      => '_MYSQL_PREFIX',
-               "define('_TABLE_TYPE',"        => '_TABLE_TYPE',
-               "define('_DB_TYPE',"           => '_DB_TYPE',
-               "define('SMTP_HOSTNAME',"      => 'SMTP_HOSTNAME',
-               "define('SMTP_USER'"           => 'SMTP_USER',
-               "define('SMTP_PASSWORD',"      => 'SMTP_PASSWORD',
-               "define('ENABLE_BACKLINK',"    => 'ENABLE_BACKLINK',
+               'SITE_KEY'           => 'SITE_KEY',
+               'DEFAULT_LANG'       => 'DEFAULT_LANG',
+               'warn_no_pass'       => 'WARN_NO_PASS',
+               'WRITE_FOOTER'       => 'WRITE_FOOTER',
+               'OUTPUT_MODE'        => 'OUTPUT_MODE',
+               'MAIN_TITLE'         => 'MAIN_TITLE',
+               'SLOGAN'             => 'SLOGAN',
+               'WEBMASTER'          => 'WEBMASTER',
+               'mxchange_installed' => 'MXCHANGE_INSTALLED',
+               'admin_registered'   => 'ADMIN_REGISTERED',
+               '_MYSQL_PREFIX'      => '_MYSQL_PREFIX',
+               '_TABLE_TYPE'        => '_TABLE_TYPE',
+               '_DB_TYPE'           => '_DB_TYPE',
+               'SMTP_HOSTNAME'      => 'SMTP_HOSTNAME',
+               'SMTP_USER'           => 'SMTP_USER',
+               'SMTP_PASSWORD'      => 'SMTP_PASSWORD',
+               'ENABLE_BACKLINK'    => 'ENABLE_BACKLINK',
+               'MAIN_TITLE'         => 'MAIN_TITLE',
+               'SLOGAN'             => 'SLOGAN',
+               'WEBMASTER'          => 'WEBMASTER',
+               'PATH'               => 'PATH',
+               'URL'                => 'URL',
        );
 
        // Make these lower-case! (damn stupid code...)
        $lowerCase = array('WARN_NO_PASS', 'MXCHANGE_INSTALLED', 'ADMIN_REGISTERED');
 
-       // These are still constants...
-       // @TODO Rewrite these all to config entries, if somehow possible
-       $constants = array('MAIN_TITLE', 'SLOGAN', 'WEBMASTER');
-
        // Special comments...
        $comments = array(
                'WARN_NO_PASS'       => 'NULLPASS-WARNING',
@@ -219,7 +185,7 @@ function updateOldConfigFile () {
        );
 
        // Copy template to new file destionation
-       copyFileVerified(getConfig('PATH') . 'inc/config-local.php.dist', getConfig('PATH') . 'inc/cache/config-local.php', 0644);
+       copyFileVerified(getConfig('PATH') . 'inc/config-local.php.dist', getConfig('CACHE_PATH') . 'config-local.php', 0644);
 
        // First of all, load the old one!
        $oldConfig = explode("\n", readFromFile(getConfig('PATH') . 'inc/config.php'));
@@ -229,10 +195,13 @@ function updateOldConfigFile () {
        foreach ($oldConfig as $line) {
                // Check all watch lines
                foreach ($watchLines as $old => $new) {
+                       // Add define() command around old one
+                       $old = "define('" . $old . "',";
+
                        // Is the line found?
                        if ((substr($line, 0, strlen($old)) == $old) && (!isset($done[$old]))) {
                                // Entry found!
-                               //* DEBUG: */ OUTPUT_HTML(htmlentities($line) . " - FOUND!<br />");
+                               //* DEBUG: */ outputHtml(htmlentities($line) . " - FOUND!<br />");
 
                                // Eval the line...
                                eval($line);
@@ -240,12 +209,6 @@ function updateOldConfigFile () {
                                // Setting config entry is new default behaviour!
                                $function = 'setConfigEntry';
 
-                               // Still some old constants left?
-                               if (in_array($new, $constants)) {
-                                       // Then switch over...
-                                       $function = 'define';
-                               } // END - if
-
                                // Default comment
                                $comment = str_replace('_', '-', $new);
 
@@ -263,9 +226,9 @@ function updateOldConfigFile () {
                                } // END - if
 
                                /// ... and write it to the new config
-                               //* DEBUG: */ OUTPUT_HTML('function=' . $function . ',new=' . $new . ',comment=' . $comment . "<br />");
-                               changeDataInFile(getConfig('PATH') . 'inc/cache/config-local.php', $comment, $function . "('" . $oldNew . "', \"", "\");", constant($new), 0);
-                               //* DEBUG: */ OUTPUT_HTML("CHANGED!<br />");
+                               //* DEBUG: */ outputHtml('function=' . $function . ',new=' . $new . ',comment=' . $comment . "<br />");
+                               changeDataInFile(getConfig('CACHE_PATH') . 'config-local.php', $comment, $function . "('" . $oldNew . "', \"", "\");", constant($new), 0);
+                               //* DEBUG: */ outputHtml("CHANGED!<br />");
 
                                // Mark it as done
                                $done[$old] = 1;
@@ -296,14 +259,14 @@ function updateOldConfigFile () {
                        }
 
                        // Debug output only
-                       //* DEBUG: */ OUTPUT_HTML(htmlentities($line) . " - MySQL!<br />");
+                       //* DEBUG: */ outputHtml(htmlentities($line) . " - MySQL!<br />");
 
                        // Split parts so we can check them and prepare them
                        $parts = explode('=>', $line);
                        $key = substr(trim($parts[0]), 1, -1); $value = substr(trim($parts[1]), 1, -2);
 
                        // We can now save the right part in new config file
-                       changeDataInFile(getConfig('PATH') . 'inc/cache/config-local.php', $comments[$key], "   '".$key."'     => \"", "\",", $value, 0);
+                       changeDataInFile(getConfig('CACHE_PATH') . 'config-local.php', $comments[$key], "       '".$key."'     => \"", "\",", $value, 0);
                }
        } // END - foreach
 
@@ -311,13 +274,13 @@ function updateOldConfigFile () {
        removeFile(getConfig('PATH') . 'inc/config.php');
 
        // Redirect to same URL to reload our new config
-       redirectToUrl($_SERVER['REQUEST_URI']);
+       redirectToUrl(getRequestUri());
 }
 
 // Update config entries
 function updateConfiguration ($entries, $values, $updateMode='') {
        // Do not update config in CSS mode
-       if ((getOutputMode() == '1') || (getOutputMode() == -1)) {
+       if ((getOutputMode() == 1) || (getOutputMode() == -1) || (isInstallationPhase())) {
                return;
        } // END - if
 
@@ -329,8 +292,7 @@ function updateConfiguration ($entries, $values, $updateMode='') {
                        // Update mode set?
                        if (!empty($updateMode)) {
                                // Update entry
-                               // @TODO Find a way for updating configuration here
-                               $all .= sprintf("`%s`=%s%s%s,", $entry, $entry, $updateMode, (float)$values[$idx]);
+                               $all .= sprintf("`%s`=`%s`%s%s,", $entry, $entry, $updateMode, (float)$values[$idx]);
                        } else {
                                // Check if string or number
                                if (($values[$idx] + 0) === $values[$idx]) {
@@ -343,10 +305,10 @@ function updateConfiguration ($entries, $values, $updateMode='') {
                                        // String detected
                                        $all .= sprintf("`%s`='%s',", $entry, SQL_ESCAPE($values[$idx]));
                                }
-                       }
 
-                       // Set it in config as well
-                       setConfigEntry($entry, $values[$idx]);
+                               // Set it in config as well
+                               setConfigEntry($entry, $values[$idx]);
+                       }
                } // END - foreach
 
                // Remove last comma
@@ -364,15 +326,46 @@ function updateConfiguration ($entries, $values, $updateMode='') {
        }
 
        // Run database update
-       //* DEBUG: */ DEBUG_LOG(__FUNCTION__, __LINE__, "entries={$entries}");
-       SQL_QUERY("UPDATE `{!_MYSQL_PREFIX!}_config` SET ".$entries." WHERE `config`=0 LIMIT 1", __FUNCTION__, __LINE__);
-
-       // Get affected rows
-       $affectedRows = SQL_AFFECTEDROWS();
-       //* DEBUG: */ OUTPUT_HTML(__FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>):entries={$entries},affectedRows={$affectedRows}<br />");
+       //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, "entries={$entries}");
+       SQL_QUERY("UPDATE `{?_MYSQL_PREFIX?}_config` SET ".$entries." WHERE `config`=0 LIMIT 1", __FUNCTION__, __LINE__);
+       //* DEBUG: */ outputHtml(__FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>):entries={$entries},affectedRows={$affectedRows}<br />");
 
        // Rebuild cache
-       rebuildCacheFiles('config', 'config');
+       rebuildCacheFile('config', 'config');
+}
+
+// Filter for loading configuration
+function FILTER_LOAD_CONFIGURATION ($no = 0) {
+       // Check for cache extension, cache-array and if the requested configuration is in cache
+       if ((isset($GLOBALS['cache_array']['config'][$no])) && (is_array($GLOBALS['cache_array']['config'][$no]))) {
+               // Load config from cache
+               //* DEBUG: */ outputHtml(gettype($GLOBALS['cache_array']['config'][$no])."<br />");
+               mergeConfig($GLOBALS['cache_array']['config'][$no]);
+               //foreach ($GLOBALS['cache_array']['config'][$no] as $key => $value) {
+               //      setConfigEntry($key, $value);
+               //} // END - foreach
+
+               // Count cache hits if exists
+               if ((isStatsEntrySet('cache_hits')) && (isExtensionActive('cache'))) {
+                       incrementStatsEntry('cache_hits');
+               } // END - if
+       } elseif ((!isExtensionActive('cache')) || (!isset($GLOBALS['cache_array']['config'][$no]))) {
+               // Load config from DB
+               $result_config = SQL_QUERY_ESC("SELECT * FROM `{?_MYSQL_PREFIX?}_config` WHERE `config`='%s' LIMIT 1",
+                       array(bigintval($no)), __FUNCTION__, __LINE__);
+
+               // Is the config there?
+               if (SQL_NUMROWS($result_config) == 1) {
+                       // Get config from database
+                       mergeConfig(SQL_FETCHARRAY($result_config));
+               } // END - if
+
+               // Free result
+               SQL_FREERESULT($result_config);
+
+               // Remember this config in the array
+               $GLOBALS['cache_array']['config'][$no] = getConfigArray();
+       }
 }
 
 // [EOF]