]> git.mxchange.org Git - mailer.git/blobdiff - inc/install-inc.php
Renamed language id, commented out a little noisy debug line :)
[mailer.git] / inc / install-inc.php
index 01c7ca8e0836c06f81f04376ed4cc987aad3aabe..2375cd5f526e866f8137dc8f45b88563dd6d4102 100644 (file)
  * $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 - 2009 by Roland Haeder                           *
- * For more information visit: http://www.mxchange.org                  *
+ * Copyright (c) 2009 - 2012 by Mailer Developer Team                   *
+ * For more information visit: http://mxchange.org                      *
  *                                                                      *
  * This program is free software; you can redistribute it and/or modify *
  * it under the terms of the GNU General Public License as published by *
  * MA  02110-1301  USA                                                  *
  ************************************************************************/
 
-/************************************************************************
- *      YOU MAY ALSO WANT TO REMOVE THIS FILE AFTER INSTALLTION!        *
- ************************************************************************/
-
 // Some security stuff...
-if (!defined('__SECURITY')) {
+if ((!defined('__SECURITY')) || (!isInstallationPhase())) {
        die();
 } // END - if
 
+// Load extension timezone
+loadExtension('timezone', 'test');
+
+// Set config entry
+setConfigEntry('timezone', 'Europe/Berlin');
+
+// And init timezone
+FILTER_INIT_TIMEZONE(array());
+
 // Init variables
-$mysql = array();
-if ((isPostRequestElementSet('mysql')) && (is_array(postRequestElement('mysql')))) {
+$GLOBALS['install_mysql'] = array();
+if ((isPostRequestElementSet('mysql')) && (ifPostContainsSelections('mysql'))) {
        // Transfer 'mysql' array
-       $mysql = postRequestElement('mysql');
+       $GLOBALS['install_mysql'] = postRequestElement('mysql');
 } // END - if
 
 // Check if both passwords from SMTP are matching
-if ((isGetRequestElementSet('page') && (getRequestElement('page') == 5))) {
+if ((isGetRequestElementSet('install_page') && (getRequestElement('install_page') == 5))) {
        // Okay, we have to check it
        if (isPostRequestElementSet('smtp_user') && (!isPostRequestElementSet('smtp_host'))) {
                // Hostname not set
-               addToInstallContent('<div class="para">' . getMessage('INSTALL_SMTP_HOSTNAME_EMPTY') . '</div>');
-               setRequestGetElement('page', 3);
+               addToInstallContent('<div class="para">{--INSTALLER_SMTP_HOSTNAME_EMPTY--}</div>');
+               setGetRequestElement('install_page', 3);
        } // END - if
 
        if ((!isPostRequestElementSet('smtp_pass1')) && (isPostRequestElementSet('smtp_pass2'))) {
                // Password is empty
-               addToInstallContent('<div class="para">' . getMessage('INSTALL_SMTP_PASS1_EMPTY') . '</div>');
-               setRequestGetElement('page', 3);
+               addToInstallContent('<div class="para">{--INSTALLER_SMTP_PASSWORD1_EMPTY--}</div>');
+               setGetRequestElement('install_page', 3);
        } // END - if
 
        if ((isPostRequestElementSet('smtp_pass1')) && (!isPostRequestElementSet('smtp_pass2'))) {
                // Password repeat is empty
-               addToInstallContent('<div class="para">' . getMessage('INSTALL_SMTP_PASS2_EMPTY') . '</div>');
-               setRequestGetElement('page', 3);
+               addToInstallContent('<div class="para">{--INSTALLER_SMTP_PASSWORD2_EMPTY--}</div>');
+               setGetRequestElement('install_page', 3);
        } // END - if
 
        if (postRequestElement('smtp_pass1') != postRequestElement('smtp_pass1')) {
                // Passwords are not matching
-               addToInstallContent('<div class="para">' . getMessage('INSTALL_SMTP_PASS_MISMATCH') . '</div>');
-               setRequestGetElement('page', 3);
+               addToInstallContent('<div class="para">{--INSTALLER_SMTP_PASS_MISMATCH--}</div>');
+               setGetRequestElement('install_page', 3);
        } // END - if
 } // END - if
 
 // Is the mailer installed or no admin registered so far?
 if ((!isInstalled()) || (!isAdminRegistered())) {
-       // Output page for entered value
-       switch (getRequestElement('page')) {
-               case 'welcome': // Welcome to the installation!
-                       addTemplateToInstallContent('install_welcome');
-                       break;
-
-               case '1': // Server path, base URL
-                       // Load template
-                       addTemplateToInstallContent('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';
-                       if (getTotalFatalErrors() > 0) {
-                               addToInstallContent('<div class="install_fatal">');
-                               foreach (getFatalArray() as $key => $err) {
-                                       addToInstallContent('<div class="para"><strong>&middot;</strong>&nbsp;{--FATAL_NO--}' . ($key + 1) . ':&nbsp;' . $err . '</div>');
-                               }
-                               addToInstallContent('</div>');
-                       }
-                       $content['mysql_host']   = $mysql['host'];
-                       $content['mysql_dbase']  = $mysql['dbase'];
-                       $content['mysql_prefix'] = $mysql['prefix'];
-                       $content['mysql_login']  = $mysql['login'];
-                       $content['table_type']   = $mysql['type'];
-                       $content['spath']        = postRequestElement('spath');
-                       $content['burl']         = postRequestElement('burl');
-                       $content['title']        = postRequestElement('title');
-                       $content['slogan']       = postRequestElement('slogan');
-                       $content['email']        = postRequestElement('email');
-
-                       // Load template
-                       addTemplateToInstallContent('install_page2', $content);
-                       break;
-
-               case '3':
-                       // Set more values
-                       $content['spath']      = postRequestElement('spath');
-                       $content['burl']       = postRequestElement('burl');
-                       $content['title']      = postRequestElement('title');
-                       $content['slogan']     = postRequestElement('slogan');
-                       $content['email']      = postRequestElement('email');
-
-                       // Use default SMTP data
-                       $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 (isPostRequestElementSet('smtp_host')) $smtpHost = postRequestElement('smtp_host');
-                       if (isPostRequestElementSet('smtp_user')) $smtpUser = postRequestElement('smtp_user');
-                       if (isPostRequestElementSet('smtp_pass')) {
-                               $smtpPass1 = postRequestElement('smtp_pass');
-                               $smtpPass2 = postRequestElement('smtp_pass');
-                       } // END - if
-
-                       // MySQL settings
-                       $content['mysql_host']   = $mysql['host'];
-                       $content['mysql_dbase']  = $mysql['dbase'];
-                       $content['mysql_prefix'] = $mysql['prefix'];
-                       $content['table_type']   = $mysql['type'];
-                       $content['mysql_login']  = $mysql['login'];
-                       $content['mysql_pass1']  = $mysql['pass1'];
-                       $content['mysql_pass2']  = $mysql['pass2'];
-
-                       // Set constants for SMTP data
-                       $content['smtp_host']  = $smtpHost;
-                       $content['smtp_user']  = $smtpUser;
-                       $content['smtp_pass1'] = $smtpPass1;
-                       $content['smtp_pass2'] = $smtpPass2;
-
-                       // Load template
-                       addTemplateToInstallContent('install_page3', $content);
-                       break;
-
-               case '5': // Misc settings
-                       // General settings
-                       $content['spath']  = postRequestElement('spath');
-                       $content['burl']   = postRequestElement('burl');
-                       $content['title']  = postRequestElement('title');
-                       $content['slogan'] = postRequestElement('slogan');
-                       $content['email']  = postRequestElement('email');
-
-                       // SMTP settings
-                       $content['smtp_host'] = postRequestElement('smtp_host');
-                       $content['smtp_user'] = postRequestElement('smtp_user');
-                       $content['smtp_pass'] = postRequestElement('smtp_pass1');
-
-                       // MySQL data
-                       $OUT = '';
-                       foreach ($mysql as $key => $value) {
-                               $OUT .= "    <input type=\"hidden\" name=\"mysql[" . $key . "]\" value=\"" . $value . "\" />\n";
-                       } // END - foreach
-                       $content['mysql_hidden'] = $OUT;
-
-                       // Load template
-                       addTemplateToInstallContent('install_page5', $content);
-                       break;
-
-               case 'finalize': // Write captured data to files
-                       if ((isPostRequestElementSet('finalize')) && (!isInstalled())) {
-                               // You have submitted data then we have to reset the SQLs
-                               initSqls();
-
-                               // Connect to MySQL server
-                               SQL_CONNECT($mysql['host'], $mysql['login'], $mysql['pass1'], __FILE__, __LINE__);
-                               if (SQL_IS_LINK_UP()) {
-                                       // Seems to work, also right database?
-                                       if (SQL_SELECT_DB($mysql['dbase'], __FILE__, __LINE__) === true) {
-                                               // Automatically run install.sql
-                                               if ((!isFileReadable(postRequestElement('spath') . 'install/tables.sql')) || (!isFileReadable(postRequestElement('spath') . 'install/menu-'.getLanguage().'.sql'))) {
-                                                       // Installation area not found!
-                                                       addFatalMessage(__FILE__, __LINE__, getMessage('INSTALL_MISSING_DUMPS'));
-                                               } // END - if
-
-                                               if (getTotalFatalErrors() == '0') {
-                                                       // Set type and prefix from POST data
-                                                       setConfigEntry('_TABLE_TYPE'  , postRequestElement('mysql', 'type'));
-                                                       setConfigEntry('_MYSQL_PREFIX', postRequestElement('mysql', 'prefix'));
-
-                                                       // 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. :)
-                                                               $FQFN = postRequestElement('spath') . 'install/' . $dump . '.sql';
-
-                                                               // Is the file readable?
-                                                               if (isFileReadable($FQFN)) {
-                                                                       // Read the file
-                                                                       $fileContent = readFromFile($FQFN, true);
-
-                                                                       // Split it up against ";\n" and merge it into existing SQLs
-                                                                       mergeSqls(explode(";\n", $fileContent), 'install');
-                                                               } else {
-                                                                       // Not readable!
-                                                                       debug_report_bug(sprintf("SQL dump %s is not readable!", $dump));
-                                                               }
-                                                       } // END - foreach
-                                                       //* DEBUG: */ die('<pre>'.print_r(getSqls(), true).'</pre>');
-
-                                                       // Are some SQLs found?
-                                                       if (countSqls() == '0') {
-                                                               // Abort here
-                                                               addFatalMessage(__FILE__, __LINE__, getMessage('INSTALL_SQL_IMPORT_FAILED'));
-                                                               return;
-                                                       } // END - if
-
-                                                       // Now run all queries through and try to keep out empty or comment queries
-                                                       runFilterChain('run_sqls');
-
-                                                       // Copy the config template and verify it
-                                                       doInstallWriteLocalConfig();
-                                               } // END - if
-                                       } // END - if
-                               } // END - if
-
-                               if (getTotalFatalErrors() > 0) {
-                                       $OUT = '';
-                                       foreach (getFatalArray() as $value) {
-                                               $OUT .= '    <li>' . $value . '</li>';
-                                       } // END foreach
-                                       $content['fatal_errors'] = $OUT;
-                                       $OUT = '';
-                                       foreach ($mysql as $key => $value) {
-                                               $OUT .= '    <input type="hidden" name="mysql[' . $key . ']" value="' . $value . '" />';
-                                       } // END foreach
-                                       $content['mysql_hidden'] = $OUT;
-                                       $content['spath']      = postRequestElement('spath');
-                                       $content['burl']       = postRequestElement('burl');
-                                       $content['title']      = postRequestElement('title');
-                                       $content['smtp_host']  = postRequestElement('smtp_host');
-                                       $content['smtp_user']  = postRequestElement('smtp_user');
-                                       $content['smtp_pass']  = postRequestElement('smtp_pass1');
-
-                                       // Load template
-                                       addTemplateToInstallContent('install_fatal_errors', $content);
-                               } else {
-                                       // Installation is done!
-                                       redirectToUrl('install.php?page=finished');
-                               }
-                       } else {
-                               // Something goes wrong during installation! :-(
-                               addFatalMessage(__FILE__, __LINE__, getMessage('INSTALL_FINALIZER_FAILED'));
-                       }
-                       break;
-
-               case 'finished':
-                       if (isInstalled()) {
-                               // Load template that we are finished
-                               addTemplateToInstallContent('install_finished');
-                       } else {
-                               // Not finished
-                               redirectToUrl('install.php');
-                       }
-                       break;
-
-               default:
-                       logDebugMessage(__FILE__, __LINE__, sprintf("Wrong page %s detected", getRequestElement('page')));
-                       addTemplateToInstallContent('admin_settings_saved', '<div class="install_error">{--WRONG_PAGE--}</div>');
-                       break;
-       } // END - switch
+       // Construct include file name
+       $inc = 'inc/install/install_page_' . getRequestElement('install_page');
+
+       // Is the include file there?
+       if (isIncludeReadable($inc)) {
+               // Then load it
+               loadIncludeOnce($inc);
+       } else {
+               // Not found, may be invalid page
+               logDebugMessage(__FILE__, __LINE__, sprintf("Wrong install_page=%s detected", getRequestElement('install_page')));
+               addTemplateToInstallContent('admin_settings_unsaved', '{--WRONG_PAGE--}');
+       }
 } else {
        // Already installed!
-       addFatalMessage(__FILE__, __LINE__, getMessage('ALREADY_INSTALLED'));
+       addFatalMessage(__FILE__, __LINE__, '{--MAILER_ALREADY_INSTALLED--}');
 }
 
 // [EOF]