]> git.mxchange.org Git - mailer.git/blobdiff - inc/install-inc.php
Renamed templates + added some filters for mail order
[mailer.git] / inc / install-inc.php
index 9c0a5cf4840523956a4340bafa127139029c9df5..abf378c987c7ceb7d635fafe17fa3f94c3da61fb 100644 (file)
@@ -16,8 +16,8 @@
  * $Author::                                                          $ *
  * -------------------------------------------------------------------- *
  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
- * Copyright (c) 2009, 2010 by Mailer Developer Team                    *
- * For more information visit: http://www.mxchange.org                  *
+ * Copyright (c) 2009 - 2013 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')) || (!isInstaller())) {
        die();
 } // END - if
 
@@ -50,267 +46,63 @@ loadExtension('timezone', 'test');
 // Set config entry
 setConfigEntry('timezone', 'Europe/Berlin');
 
-// And init timezone
-FILTER_INIT_TIMEZONE();
+// Init some things
+FILTER_INIT_TIMEZONE(array());
+FILTER_INIT_RANDOMIZER();
+FILTER_INIT_RANDOM_NUMBER();
 
 // Init variables
 $GLOBALS['install_mysql'] = array();
-if ((isPostRequestParameterSet('mysql')) && (is_array(postRequestParameter('mysql')))) {
+if ((isPostRequestElementSet('mysql')) && (ifPostContainsSelections('mysql'))) {
        // Transfer 'mysql' array
-       $GLOBALS['install_mysql'] = postRequestParameter('mysql');
+       $GLOBALS['install_mysql'] = postRequestElement('mysql');
 } // END - if
 
 // Check if both passwords from SMTP are matching
-if ((isGetRequestParameterSet('page') && (getRequestParameter('page') == 5))) {
+if ((isGetRequestElementSet('install_page') && (getRequestElement('install_page') == 5))) {
        // Okay, we have to check it
-       if (isPostRequestParameterSet('smtp_user') && (!isPostRequestParameterSet('smtp_host'))) {
+       if (isPostRequestElementSet('smtp_user') && (!isPostRequestElementSet('smtp_host'))) {
                // Hostname not set
-               addToInstallContent('<div class="para">{--INSTALL_SMTP_HOSTNAME_EMPTY--}</div>');
-               setGetRequestParameter('page', 3);
+               addToInstallContent('<div class="para">{--INSTALLER_SMTP_HOSTNAME_EMPTY--}</div>');
+               setGetRequestElement('install_page', 3);
        } // END - if
 
-       if ((!isPostRequestParameterSet('smtp_pass1')) && (isPostRequestParameterSet('smtp_pass2'))) {
+       if ((!isPostRequestElementSet('smtp_password1')) && (isPostRequestElementSet('smtp_password2'))) {
                // Password is empty
-               addToInstallContent('<div class="para">{--INSTALL_SMTP_PASS1_EMPTY--}</div>');
-               setGetRequestParameter('page', 3);
+               addToInstallContent('<div class="para">{--INSTALLER_SMTP_PASSWORD1_EMPTY--}</div>');
+               setGetRequestElement('install_page', 3);
        } // END - if
 
-       if ((isPostRequestParameterSet('smtp_pass1')) && (!isPostRequestParameterSet('smtp_pass2'))) {
+       if ((isPostRequestElementSet('smtp_password1')) && (!isPostRequestElementSet('smtp_password2'))) {
                // Password repeat is empty
-               addToInstallContent('<div class="para">{--INSTALL_SMTP_PASS2_EMPTY--}</div>');
-               setGetRequestParameter('page', 3);
+               addToInstallContent('<div class="para">{--INSTALLER_SMTP_PASSWORD2_EMPTY--}</div>');
+               setGetRequestElement('install_page', 3);
        } // END - if
 
-       if (postRequestParameter('smtp_pass1') != postRequestParameter('smtp_pass1')) {
+       if (postRequestElement('smtp_password1') != postRequestElement('smtp_password1')) {
                // Passwords are not matching
-               addToInstallContent('<div class="para">{--INSTALL_SMTP_PASS_MISMATCH--}</div>');
-               setGetRequestParameter('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 (getRequestParameter('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($GLOBALS['install_mysql']['dbase']))  $GLOBALS['install_mysql']['dbase']  = 'your_database';
-                       if (empty($GLOBALS['install_mysql']['login']))  $GLOBALS['install_mysql']['login']  = 'your_login';
-                       if (empty($GLOBALS['install_mysql']['host']))   $GLOBALS['install_mysql']['host']   = 'localhost';
-                       if (empty($GLOBALS['install_mysql']['prefix'])) $GLOBALS['install_mysql']['prefix'] = 'mxchange';
-                       if (empty($GLOBALS['install_mysql']['type']))   $GLOBALS['install_mysql']['type']   = 'MyISAM';
-                       if (ifFatalErrorsDetected()) {
-                               addToInstallContent('<div class="install_fatal"><ul>');
-                               foreach (getFatalArray() as $key => $err) {
-                                       addToInstallContent('<li> {--FATAL_NO--}' . ($key + 1) . ': ' . $err . '</li>');
-                               } // END - foreach
-                               addToInstallContent('</ol></div>');
-                       } // END - if
-
-                       $content['mysql_host']   = $GLOBALS['install_mysql']['host'];
-                       $content['mysql_dbase']  = $GLOBALS['install_mysql']['dbase'];
-                       $content['mysql_prefix'] = $GLOBALS['install_mysql']['prefix'];
-                       $content['mysql_login']  = $GLOBALS['install_mysql']['login'];
-                       $content['table_type']   = $GLOBALS['install_mysql']['type'];
-                       $content['spath']        = postRequestParameter('spath');
-                       $content['burl']         = postRequestParameter('burl');
-                       $content['title']        = postRequestParameter('title');
-                       $content['slogan']       = postRequestParameter('slogan');
-                       $content['email']        = postRequestParameter('email');
-
-                       // Load template
-                       addTemplateToInstallContent('install_page2', $content);
-                       break;
-
-               case '3':
-                       // Set more values
-                       $content['spath']      = postRequestParameter('spath');
-                       $content['burl']       = postRequestParameter('burl');
-                       $content['title']      = postRequestParameter('title');
-                       $content['slogan']     = postRequestParameter('slogan');
-                       $content['email']      = postRequestParameter('email');
-
-                       // Use default SMTP data
-                       $smtpHost  = '{?SMTP_HOSTNAME?}';
-                       $smtpUser  = '{?SMTP_USER?}';
-                       $smtpPass1 = '{?SMTP_PASSWORD?}';
-                       $smtpPass2 = '{?SMTP_PASSWORD?}';
-
-                       // Overwrite it with the data from sent (failed) form
-                       if (isPostRequestParameterSet('smtp_host')) $smtpHost = postRequestParameter('smtp_host');
-                       if (isPostRequestParameterSet('smtp_user')) $smtpUser = postRequestParameter('smtp_user');
-                       if (isPostRequestParameterSet('smtp_pass')) {
-                               $smtpPass1 = postRequestParameter('smtp_pass');
-                               $smtpPass2 = postRequestParameter('smtp_pass');
-                       } // END - if
-
-                       // MySQL settings
-                       $content['mysql_host']   = $GLOBALS['install_mysql']['host'];
-                       $content['mysql_dbase']  = $GLOBALS['install_mysql']['dbase'];
-                       $content['mysql_prefix'] = $GLOBALS['install_mysql']['prefix'];
-                       $content['table_type']   = $GLOBALS['install_mysql']['type'];
-                       $content['mysql_login']  = $GLOBALS['install_mysql']['login'];
-                       $content['mysql_pass1']  = $GLOBALS['install_mysql']['pass1'];
-                       $content['mysql_pass2']  = $GLOBALS['install_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']  = postRequestParameter('spath');
-                       $content['burl']   = postRequestParameter('burl');
-                       $content['title']  = postRequestParameter('title');
-                       $content['slogan'] = postRequestParameter('slogan');
-                       $content['email']  = postRequestParameter('email');
-
-                       // SMTP settings
-                       $content['smtp_host'] = postRequestParameter('smtp_host');
-                       $content['smtp_user'] = postRequestParameter('smtp_user');
-                       $content['smtp_pass'] = postRequestParameter('smtp_pass1');
-
-                       // MySQL data
-                       $OUT = '';
-                       foreach ($GLOBALS['install_mysql'] as $key => $value) {
-                               $OUT .= '    <input type="hidden" name="mysql[' . $key . ']" value="' . $value . '" />';
-                       } // END - foreach
-                       $content['mysql_hidden'] = $OUT;
-
-                       // Load template
-                       addTemplateToInstallContent('install_page5', $content);
-                       break;
-
-               case 'finalize': // Write captured data to files
-                       if ((isPostRequestParameterSet('finalize')) && (!isInstalled())) {
-                               // You have submitted data then we have to reset the SQLs
-                               initSqls();
-
-                               // Restore PHPs error handler to prevent ours to handle errors,
-                               // e.g. failed connection attempts. We want to handle them on
-                               // our own.
-                               restore_error_handler();
-
-                               // Connect to MySQL server
-                               SQL_CONNECT($GLOBALS['install_mysql']['host'], $GLOBALS['install_mysql']['login'], $GLOBALS['install_mysql']['pass1'], __FILE__, __LINE__);
-
-                               // Is the link up?
-                               if (SQL_IS_LINK_UP()) {
-                                       // Seems to work, also right database?
-                                       if (SQL_SELECT_DB($GLOBALS['install_mysql']['dbase'], __FILE__, __LINE__) === true) {
-                                               // Check for dumps
-                                               if ((!isFileReadable(postRequestParameter('spath') . 'install/tables.sql')) || (!isFileReadable(postRequestParameter('spath') . 'install/menu-'.getLanguage().'.sql'))) {
-                                                       // Installation area not found!
-                                                       addFatalMessage(__FILE__, __LINE__, '{--INSTALL_MISSING_DUMPS--}');
-                                                       return;
-                                               } // END - if
-
-                                               // Any errors detected?
-                                               if (!ifFatalErrorsDetected()) {
-                                                       // Set type and prefix from POST data
-                                                       setConfigEntry('_TABLE_TYPE'  , postRequestParameter('mysql', 'type'));
-                                                       setConfigEntry('_MYSQL_PREFIX', postRequestParameter('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 = postRequestParameter('spath') . 'install/' . $dump . '.sql';
-
-                                                               // Is the file readable?
-                                                               if (isFileReadable($FQFN)) {
-                                                                       // Read the file
-                                                                       $fileContent = readSqlDump($FQFN);
-
-                                                                       // Split it up against ";\n" and merge it into existing SQLs
-                                                                       mergeSqls(explode(";\n", $fileContent), 'install');
-                                                               } else {
-                                                                       // Not readable!
-                                                                       debug_report_bug(__FILE__, __LINE__, sprintf("SQL dump %s is not readable!", $dump));
-                                                               }
-                                                       } // END - foreach
-                                                       //* DEBUG: */ die(__FUNCTION__.'['.__LINE__.']:'<pre>'.print_r(getSqls(), true).'</pre>');
-
-                                                       // Are some SQLs found?
-                                                       if (countSqls() == 0) {
-                                                               // Abort here
-                                                               addFatalMessage(__FILE__, __LINE__, '{--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 (ifFatalErrorsDetected()) {
-                                       $OUT = '';
-                                       foreach (getFatalArray() as $value) {
-                                               $OUT .= '    <li>' . $value . '</li>';
-                                       } // END foreach
-                                       $content['fatal_errors'] = $OUT;
-                                       $OUT = '';
-                                       foreach ($GLOBALS['install_mysql'] as $key => $value) {
-                                               $OUT .= '    <input type="hidden" name="mysql[' . $key . ']" value="' . $value . '" />';
-                                       } // END foreach
-                                       $content['mysql_hidden'] = $OUT;
-                                       $content['spath']      = postRequestParameter('spath');
-                                       $content['burl']       = postRequestParameter('burl');
-                                       $content['title']      = postRequestParameter('title');
-                                       $content['smtp_host']  = postRequestParameter('smtp_host');
-                                       $content['smtp_user']  = postRequestParameter('smtp_user');
-                                       $content['smtp_pass']  = postRequestParameter('smtp_pass1');
-
-                                       // Load template
-                                       addTemplateToInstallContent('install_fatal_errors', $content);
-
-                                       // We have handled all fatal errors here
-                                       initFatalMessages();
-                               } else {
-                                       // Installation is done!
-                                       redirectToUrl('install.php?page=finished');
-                               }
-                       } else {
-                               // Something goes wrong during installation! :-(
-                               addFatalMessage(__FILE__, __LINE__, '{--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", getRequestParameter('page')));
-                       addTemplateToInstallContent('admin_settings_unsaved', '{--WRONG_PAGE--}');
-                       break;
-       } // END - switch
+       // Construct include file name
+       $inc = 'inc/install/install_page_' . getRequestElement('install_page') . '.php';
+
+       // 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', '{%message,INSTALLER_WRONG_PAGE=' . getRequestElement('install_page') . '%}');
+       }
 } else {
        // Already installed!
-       addFatalMessage(__FILE__, __LINE__, '{--ALREADY_INSTALLED--}');
+       addFatalMessage(__FILE__, __LINE__, '{--MAILER_ALREADY_INSTALLED--}');
 }
 
 // [EOF]