]> git.mxchange.org Git - mailer.git/blobdiff - inc/install-inc.php
config.php partly solved, see #117
[mailer.git] / inc / install-inc.php
index 6073f4e66d211a08f437efa8c3ec24d813e6e1d8..3b938296277fc3c2282137a9d7c9c5c73e2ca1f5 100644 (file)
@@ -44,7 +44,7 @@
 if (!defined('__SECURITY')) {
        $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), '/inc') + 4) . '/security.php';
        require($INC);
-}
+} // END - if
 
 // Init variables
 $mysql = array();
@@ -79,30 +79,29 @@ if ((REQUEST_ISSET_GET('page') && (REQUEST_GET('page') == 5))) {
 } // END - if
 
 // Is MXChange installed or no admin registered so far?
-if ((!isInstalled()) || (!isAdminRegistered()))
-{
+if ((!isInstalled()) || (!isAdminRegistered())) {
        // Set URL for FORM actions
        define('__BURL_ACTION', constant('URL'));
 
        // Output page for entered value
        switch (REQUEST_GET('page'))
        {
-       case "welcome": // Welcome to the installation!
-               LOAD_TEMPLATE("install_welcome");
+       case 'welcome': // Welcome to the installation!
+               LOAD_TEMPLATE('install_welcome');
                break;
 
-       case "1": // Server path, base URL
+       case '1': // Server path, base URL
                // @Profi-Concept: Hab meine Meinung doch geaendert! :-)
                // Load template
-               LOAD_TEMPLATE("install_page1");
+               LOAD_TEMPLATE('install_page1');
                break;
 
-       case "2": // MySQL data (alone!)
-               if (empty($mysql['dbase']))  $mysql['dbase']  = "your_database";
-               if (empty($mysql['login']))  $mysql['login']  = "your_login";
-               if (empty($mysql['host']))   $mysql['host']   = "localhost";
-               if (empty($mysql['prefix'])) $mysql['prefix'] = "mxchange";
-               if (empty($mysql['type']))   $mysql['type']   = "MyISAM";
+       case '2': // MySQL data (alone!)
+               if (empty($mysql['dbase']))  $mysql['dbase']  = 'your_database';
+               if (empty($mysql['login']))  $mysql['login']  = 'your_login';
+               if (empty($mysql['host']))   $mysql['host']   = 'localhost';
+               if (empty($mysql['prefix'])) $mysql['prefix'] = 'mxchange';
+               if (empty($mysql['type']))   $mysql['type']   = 'MyISAM';
                if (getTotalFatalErrors() > 0) {
                        OUTPUT_HTML("<span class=\"install_fatal\">");
                        foreach (getFatalArray() as $key => $err) {
@@ -122,10 +121,10 @@ if ((!isInstalled()) || (!isAdminRegistered()))
                define('__EMAIL_VALUE' , REQUEST_POST('email'));
 
                // Load template
-               LOAD_TEMPLATE("install_page2");
+               LOAD_TEMPLATE('install_page2');
                break;
 
-       case "3":
+       case '3':
                // Set more values
                define('__SPATH_VALUE' , REQUEST_POST('spath'));
                define('__BURL_VALUE'  , REQUEST_POST('burl'));
@@ -134,14 +133,18 @@ if ((!isInstalled()) || (!isAdminRegistered()))
                define('__EMAIL_VALUE' , REQUEST_POST('email'));
 
                // Use default SMTP data
-               $smtpHost  = constant('SMTP_HOSTNAME');
-               $smtpUser  = constant('SMTP_USER');
-               $smtpPass1 = constant('SMTP_PASSWORD');
-               $smtpPass2 = constant('SMTP_PASSWORD');
+               $smtpHost  = getConfig('SMTP_HOSTNAME');
+               $smtpUser  = getConfig('SMTP_USER');
+               $smtpPass1 = getConfig('SMTP_PASSWORD');
+               $smtpPass2 = getConfig('SMTP_PASSWORD');
 
                // Overwrite it with the data from sent (failed) form
                if (REQUEST_ISSET_POST(('smtp_host'))) $smtpHost = REQUEST_POST('smtp_host');
                if (REQUEST_ISSET_POST(('smtp_user'))) $smtpUser = REQUEST_POST('smtp_user');
+               if (REQUEST_ISSET_POST(('smtp_pass'))) {
+                       $smtpPass1 = REQUEST_POST('smtp_pass');
+                       $smtpPass2 = REQUEST_POST('smtp_pass');
+               } // END - if
 
                // MySQL settings
                define('__MYSQL_HOST'  , $mysql['host']);
@@ -159,10 +162,10 @@ if ((!isInstalled()) || (!isAdminRegistered()))
                define('__SMTP_PASS2', $smtpPass2);
 
                // Load template
-               LOAD_TEMPLATE("install_page3");
+               LOAD_TEMPLATE('install_page3');
                break;
 
-       case "5": // Misc settings
+       case '5': // Misc settings
                // General settings
                define('__SPATH_VALUE' , REQUEST_POST('spath'));
                define('__BURL_VALUE'  , REQUEST_POST('burl'));
@@ -199,12 +202,8 @@ if ((!isInstalled()) || (!isAdminRegistered()))
   <td class=\"install\" align=\"right\">{--LANG_OUTPUT_MODE--}:&nbsp;&nbsp;</td>
   <td>
     <select name=\"omode\" size=\"1\" class=\"install_select\">
-      <option value=\"render\"");
-               if (constant('OUTPUT_MODE') == 'render') OUTPUT_HTML(' selected="selected"');
-               OUTPUT_HTML(">{--MODE_RENDER--}</option>
-      <option value=\"direct\"");
-               if (constant('OUTPUT_MODE') == 'direct') OUTPUT_HTML(' selected="selected"');
-               OUTPUT_HTML(">{--MODE_DIRECT--}</option>
+      <option value=\"render\">{--MODE_RENDER--}</option>
+      <option value=\"direct\">{--MODE_DIRECT--}</option>
     </select>
   </td>
 </tr>
@@ -213,12 +212,8 @@ if ((!isInstalled()) || (!isAdminRegistered()))
   <td class=\"install\" align=\"right\">{--WARN_NO_PASSWORD--}:&nbsp;&nbsp;</td>
   <td>
     <select name=\"warn_no_pass\" size=\"1\" class=\"install_select\">
-      <option value=\"true\"");
-               if (isBooleanConstantAndTrue('warn_no_pass')) OUTPUT_HTML(' selected="selected"');
-               OUTPUT_HTML(">{--YES--}</option>
-      <option value=\"false\"");
-               if (!isBooleanConstantAndTrue('warn_no_pass')) OUTPUT_HTML(' selected="selected"');
-               OUTPUT_HTML(">{--NO--}</option>
+      <option value=\"Y\">{--YES--}</option>
+      <option value=\"N\">{--NO--}</option>
     </select>
   </td>
 </tr>
@@ -227,12 +222,8 @@ if ((!isInstalled()) || (!isAdminRegistered()))
   <td class=\"install\" align=\"right\">{--LANG_WRITE_FOOTER--}:&nbsp;&nbsp;</td>
   <td>
     <select name=\"wfooter\" size=\"1\" class=\"install_select\">
-      <option value=\"true\"");
-               if (isBooleanConstantAndTrue('WRITE_FOOTER')) OUTPUT_HTML(' selected="selected"');
-               OUTPUT_HTML(">{--YES--}</option>
-      <option value=\"false\"");
-               if (!isBooleanConstantAndTrue('WRITE_FOOTER')) OUTPUT_HTML(' selected="selected"');
-               OUTPUT_HTML(">{--NO--}</option>
+      <option value=\"Y\">{--YES--}</option>
+      <option value=\"N\">{--NO--}</option>
     </select>
   </td>
 </tr>
@@ -241,12 +232,8 @@ if ((!isInstalled()) || (!isAdminRegistered()))
   <td class=\"install\" align=\"right\">{--INSTALL_ENABLE_BACKLINK--}:&nbsp;&nbsp;</td>
   <td>
     <select name=\"blink\" size=\"1\" class=\"install_select\">
-      <option value=\"true\"");
-               if (isBooleanConstantAndTrue('ENABLE_BACKLINK')) OUTPUT_HTML(' selected="selected"');
-               OUTPUT_HTML(">{--YES--}</option>
-      <option value=\"false\"");
-               if (!isBooleanConstantAndTrue('ENABLE_BACKLINK')) OUTPUT_HTML(' selected="selected"');
-               OUTPUT_HTML(">{--NO--}</option>
+      <option value=\"Y\">{--YES--}</option>
+      <option value=\"N\">{--NO--}</option>
     </select>
   </td>
 </tr>
@@ -272,7 +259,7 @@ if ((!isInstalled()) || (!isAdminRegistered()))
 </form>");
                break;
 
-       case "finalize": // Write captured data to files
+       case 'finalize': // Write captured data to files
                if ((REQUEST_ISSET_POST(('finalize'))) && (!isInstalled())) {
                        // You have submitted data then we have to reset the SQLs
                        INIT_SQLS();
@@ -283,7 +270,7 @@ if ((!isInstalled()) || (!isAdminRegistered()))
                                // Seems to work, also right database?
                                if (SQL_SELECT_DB($mysql['dbase'], __FILE__, __LINE__) === true) {
                                        // Automatically run install.sql
-                                       if ((isFileReadable(REQUEST_POST('spath').'install/tables.sql')) && (isFileReadable(REQUEST_POST('spath').'install/menu-'.getLanguage().'.sql'))) {
+                                       if ((isFileReadable(REQUEST_POST('spath') . 'install/tables.sql')) && (isFileReadable(REQUEST_POST('spath') . 'install/menu-'.getLanguage().'.sql'))) {
                                                // Both exists so import them
                                                foreach (array('tables', 'menu-'.getLanguage()) as $dump) {
                                                        // Should be save here because file_exists() is there but we check it again. :)
@@ -301,8 +288,8 @@ if ((!isInstalled()) || (!isAdminRegistered()))
                                                                        } // END - while
                                                                } // END - foreach
 
-                                                               // And split it up against ;\n ...
-                                                               SET_SQLS(merge_array(GET_SQLS(), explode(";\n", $fileContent)));
+                                                               // Split it up against ";\n" and merge it into existing SQLs
+                                                               MERGE_SQLS(explode(";\n", $fileContent));
                                                        } else {
                                                                // Not readable!
                                                                debug_report_bug(sprintf("SQL dump %s is not readable!", $dump));
@@ -319,26 +306,37 @@ if ((!isInstalled()) || (!isAdminRegistered()))
                                                // Now run all queries through and try to keep out empty or comment queries
                                                runFilterChain('run_sqls');
 
+                                               // Copy the config template and verify it
+                                               copyFileVerified(REQUEST_POST('spath') . 'inc/config-local.php.dist', REQUEST_POST('spath') . 'inc/cache/config-local.php', 0644);
+
                                                // Ok, all done. So we can write the config data to the php files
-                                               if (REQUEST_POST('spath') != constant('PATH')) changeDataInFile(REQUEST_POST('spath')."inc/config.php", "SERVER-PATH", "define('PATH', \"", "\");", REQUEST_POST('spath'), 0);
-                                               if (REQUEST_POST('burl')  != constant('URL'))  changeDataInFile(REQUEST_POST('spath')."inc/config.php", "HOST-URL", "define('URL', \"", "\");", REQUEST_POST('burl'), 0);
-                                               changeDataInFile(REQUEST_POST('spath')."inc/config.php", "MAIN_TITLE", "define('MAIN_TITLE', \"", "\");", REQUEST_POST('title'), 0);
-                                               changeDataInFile(REQUEST_POST('spath')."inc/config.php", "SLOGAN", "define('SLOGAN', \"", "\");", REQUEST_POST('slogan'), 0);
-                                               changeDataInFile(REQUEST_POST('spath')."inc/config.php", "WEBMASTER", "define('WEBMASTER', \"", "\");", REQUEST_POST('email'), 0);
-                                               changeDataInFile(REQUEST_POST('spath')."inc/config.php", "NULLPASS-WARNING", "define('warn_no_pass', ", ");", REQUEST_POST('warn_no_pass'), 0);
-                                               changeDataInFile(REQUEST_POST('spath')."inc/config.php", "WRITE-FOOTER", "define('WRITE_FOOTER', ", ");", REQUEST_POST('wfooter'), 0);
-                                               changeDataInFile(REQUEST_POST('spath')."inc/config.php", "BACKLINK", "define('ENABLE_BACKLINK', ", ");", REQUEST_POST('blink'), 0);
-                                               // DEACTIVATED: changeDataInFile(REQUEST_POST('spath')."inc/config.php", "OUTPUT-MODE", "define('OUTPUT_MODE', \"", "\");", REQUEST_POST('omode'), 0);
-                                               changeDataInFile(REQUEST_POST('spath')."inc/config.php", "MYSQL-HOST", "        'host'     => \"", "\",", $mysql['host'], 0);
-                                               changeDataInFile(REQUEST_POST('spath')."inc/config.php", "MYSQL-DBASE", "       'dbase'    => \"", "\",", $mysql['dbase'], 0);
-                                               changeDataInFile(REQUEST_POST('spath')."inc/config.php", "MYSQL-LOGIN", "       'login'    => \"", "\",", $mysql['login'], 0);
-                                               changeDataInFile(REQUEST_POST('spath')."inc/config.php", "MYSQL-PASSWORD", "    'password' => \"", "\",", $mysql['pass1'], 0);
-                                               changeDataInFile(REQUEST_POST('spath')."inc/config.php", "MYSQL-PREFIX", "define('_MYSQL_PREFIX', \"", "\");", $mysql['prefix'], 0);
-                                               changeDataInFile(REQUEST_POST('spath')."inc/config.php", "TABLE-TYPE", "define('_TABLE_TYPE', \"", "\");", $mysql['type'], 0);
-                                               changeDataInFile(REQUEST_POST('spath')."inc/config.php", "SMTP-HOSTNAME", "define('SMTP_HOSTNAME', \"", "\");", REQUEST_POST('smtp_host'), 0);
-                                               changeDataInFile(REQUEST_POST('spath')."inc/config.php", "SMTP-USER", "define('SMTP_USER', \"", "\");", REQUEST_POST('smtp_user'), 0);
-                                               changeDataInFile(REQUEST_POST('spath')."inc/config.php", "SMTP-PASSWORD", "define('SMTP_PASSWORD', \"", "\");", REQUEST_POST('smtp_pass1'), 0);
-                                               changeDataInFile(REQUEST_POST('spath')."inc/config.php", "INSTALLED", "define('mxchange_installed', ", ");", "true", 0);
+                                               if (REQUEST_POST('spath') != constant('PATH')) changeDataInFile(REQUEST_POST('spath') . 'inc/cache/config-local.php', "SERVER-PATH", "define('PATH', \"", "\");", REQUEST_POST('spath'), 0);
+                                               if (REQUEST_POST('burl')  != constant('URL'))  changeDataInFile(REQUEST_POST('spath') . 'inc/cache/config-local.php', "HOST-URL", "define('URL', \"", "\");", REQUEST_POST('burl'), 0);
+                                               changeDataInFile(REQUEST_POST('spath') . 'inc/cache/config-local.php', "MAIN-TITLE", "define('MAIN_TITLE', \"", "\");", REQUEST_POST('title'), 0);
+                                               changeDataInFile(REQUEST_POST('spath') . 'inc/cache/config-local.php', "SLOGAN", "define('SLOGAN', \"", "\");", REQUEST_POST('slogan'), 0);
+                                               changeDataInFile(REQUEST_POST('spath') . 'inc/cache/config-local.php', "WEBMASTER", "define('WEBMASTER', \"", "\");", REQUEST_POST('email'), 0);
+                                               changeDataInFile(REQUEST_POST('spath') . 'inc/cache/config-local.php', "NULLPASS-WARNING", "setConfigEntry('WARN_NO_PASS', \"", "\");", REQUEST_POST('warn_no_pass'), 0);
+                                               changeDataInFile(REQUEST_POST('spath') . 'inc/cache/config-local.php', "WRITE-FOOTER", "setConfigEntry('WRITE_FOOTER', \"", "\");", REQUEST_POST('wfooter'), 0);
+                                               changeDataInFile(REQUEST_POST('spath') . 'inc/cache/config-local.php', "BACKLINK", "setConfigEntry('ENABLE_BACKLINK', \"", "\");", REQUEST_POST('blink'), 0);
+                                               // DEACTIVATED: changeDataInFile(REQUEST_POST('spath') . 'inc/cache/config-local.php', "OUTPUT-MODE", "define('OUTPUT_MODE', \"", "\");", REQUEST_POST('omode'), 0);
+                                               changeDataInFile(REQUEST_POST('spath') . 'inc/cache/config-local.php', "MYSQL-HOST", "  'host'     => \"", "\",", $mysql['host'], 0);
+                                               changeDataInFile(REQUEST_POST('spath') . 'inc/cache/config-local.php', "MYSQL-DBASE", " 'dbase'    => \"", "\",", $mysql['dbase'], 0);
+                                               changeDataInFile(REQUEST_POST('spath') . 'inc/cache/config-local.php', "MYSQL-LOGIN", " 'login'    => \"", "\",", $mysql['login'], 0);
+                                               changeDataInFile(REQUEST_POST('spath') . 'inc/cache/config-local.php', "MYSQL-PASSWORD", "      'password' => \"", "\",", $mysql['pass1'], 0);
+                                               changeDataInFile(REQUEST_POST('spath') . 'inc/cache/config-local.php', "MYSQL-PREFIX", "setConfigEntry('_MYSQL_PREFIX', \"", "\");", $mysql['prefix'], 0);
+                                               changeDataInFile(REQUEST_POST('spath') . 'inc/cache/config-local.php', "TABLE-TYPE", "setConfigEntry('_TABLE_TYPE', \"", "\");", $mysql['type'], 0);
+                                               changeDataInFile(REQUEST_POST('spath') . 'inc/cache/config-local.php', "SMTP-HOSTNAME", "setConfigEntry('SMTP_HOSTNAME', \"", "\");", REQUEST_POST('smtp_host'), 0);
+                                               changeDataInFile(REQUEST_POST('spath') . 'inc/cache/config-local.php', "SMTP-USER", "setConfigEntry('SMTP_USER', \"", "\");", REQUEST_POST('smtp_user'), 0);
+                                               changeDataInFile(REQUEST_POST('spath') . 'inc/cache/config-local.php', "SMTP-PASSWORD", "setConfigEntry('SMTP_PASSWORD', \"", "\");", REQUEST_POST('smtp_pass1'), 0);
+
+                                               // Generate a long site key
+                                               $siteKey = generatePassword(50);
+
+                                               // And write it
+                                               changeDataInFile(REQUEST_POST('spath') . 'inc/cache/config-local.php', "SITE-KEY", "setConfigEntry('SITE_KEY', \"", "\");", $siteKey, 0);
+
+                                               // Script is now installed
+                                               changeDataInFile(REQUEST_POST('spath') . 'inc/cache/config-local.php', "INSTALLED", "setConfigEntry('MXCHANGE_INSTALLED', \"", "\");", 'Y', 0);
                                        } else {
                                                // Installation area not found!
                                                addFatalMessage(__FILE__, __LINE__, getMessage('INSTALL_MISSING_DUMPS'));