]> git.mxchange.org Git - mailer.git/blobdiff - inc/install/install_page_finalize.php
Non-AJAX installation rewritten to use single includes instead of switch()
[mailer.git] / inc / install / install_page_finalize.php
diff --git a/inc/install/install_page_finalize.php b/inc/install/install_page_finalize.php
new file mode 100644 (file)
index 0000000..5c1e09e
--- /dev/null
@@ -0,0 +1,151 @@
+<?php
+/************************************************************************
+ * Mailer v0.2.1-FINAL                                Start: 10/02/2012 *
+ * ===================                          Last change: 10/02/2012 *
+ *                                                                      *
+ * -------------------------------------------------------------------- *
+ * File              : install-page_finalize.php                        *
+ * -------------------------------------------------------------------- *
+ * Short description : Installation page include file                   *
+ * -------------------------------------------------------------------- *
+ * Kurzbeschreibung  : Include-Datei fuer Installationsseite            *
+ * -------------------------------------------------------------------- *
+ * $Revision::                                                        $ *
+ * $Date::                                                            $ *
+ * $Tag:: 0.2.1-FINAL                                                 $ *
+ * $Author::                                                          $ *
+ * -------------------------------------------------------------------- *
+ * Copyright (c) 2003 - 2009 by Roland Haeder                           *
+ * 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 *
+ * the Free Software Foundation; either version 2 of the License, or    *
+ * (at your option) any later version.                                  *
+ *                                                                      *
+ * This program is distributed in the hope that it will be useful,      *
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
+ * GNU General Public License for more details.                         *
+ *                                                                      *
+ * You should have received a copy of the GNU General Public License    *
+ * along with this program; if not, write to the Free Software          *
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
+ * MA  02110-1301  USA                                                  *
+ ************************************************************************/
+
+// Some security stuff...
+if ((!defined('__SECURITY')) || (!isInstallationPhase())) {
+       die();
+} // END - if
+
+// Check pre-conditions
+if ((isPostRequestElementSet('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 database 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(postRequestElement('spath') . 'install/tables.sql')) || (!isFileReadable(postRequestElement('spath') . 'install/menu-'.getLanguage().'.sql'))) {
+                               // Installation area not found
+                               reportBug(__FILE__, __LINE__, 'SQL dumps not found. Please extract ALL files from the archive or checkout all files out from SVN.');
+                               return;
+                       } // END - if
+
+                       // Any errors detected?
+                       if (!ifFatalErrorsDetected()) {
+                               // Set type, prefix from POST data and database name for later queries
+                               setConfigEntry('_TABLE_TYPE'  , postRequestElement('mysql', 'type'));
+                               setConfigEntry('_MYSQL_PREFIX', postRequestElement('mysql', 'prefix'));
+                               setConfigEntry('__DB_NAME'    , $GLOBALS['install_mysql']['dbase']);
+
+                               // 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 = readSqlDump($FQFN);
+
+                                               // Split it up against ";\n" and merge it into existing SQLs
+                                               mergeSqls(explode(";\n", $fileContent), 'install');
+                                       } else {
+                                               // Not readable!
+                                               reportBug(__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__, '{--INSTALLER_SQL_IMPORT_FAILED--}');
+                                       return;
+                               } // END - if
+
+                               // Now run all queries through
+                               runFilterChain('run_sqls');
+
+                               // Copy the config template and verify it
+                               doInstallWriteLocalConfigurationFile(postRequestElement('spath'));
+                       } // END - if
+               } // END - if
+       } // END - if
+
+       // Are some fatal errors there?
+       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']      = 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);
+
+               // We have handled all fatal errors here
+               initFatalMessages();
+       } else {
+               // Register ext-sql_patches and ext-task
+               if ((registerExtension('sql_patches', NULL)) && (registerExtension('task', NULL))) {
+                       // Installation is done!
+                       redirectToUrl('install.php?install_page=finished');
+               } else {
+                       // Something goes wrong on registration of ext-sql_patches
+                       addFatalMessage(__FILE__, __LINE__, '{--INSTALLER_FINALIZER_CANNOT_REGISTER_SQL_PATCHES--}');
+               }
+       }
+} else {
+       // Something goes wrong during installation! :-(
+       addFatalMessage(__FILE__, __LINE__, '{--INSTALLER_FINALIZER_FAILED--}');
+}
+
+// [EOF]
+?>