Opps :(
[mailer.git] / js / install-common.js
1 /**
2  * JavaScript for common installer functions
3  * --------------------------------------------------------------------
4  * $Revision::                                                        $
5  * $Date::                                                            $
6  * $Tag:: 0.2.1-FINAL                                                 $
7  * $Author::                                                          $
8  * --------------------------------------------------------------------
9  * Copyright (c) 2003 - 2009 by Roland Haeder
10  * Copyright (c) 2009 - 2013 by Mailer Developer Team
11  * For more information visit: http://mxchange.org
12  *
13  * This program is free software; you can redistribute it and/or modify
14  * it under the terms of the GNU General Public License as published by
15  * the Free Software Foundation; either version 2 of the License, or
16  * (at your option) any later version.
17  *
18  * This program is distributed in the hope that it will be useful,
19  * but WITHOUT ANY WARRANTY; without even the implied warranty of
20  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
21  * GNU General Public License for more details.
22  *
23  * You should have received a copy of the GNU General Public License
24  * along with this program; if not, write to the Free Software
25  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,
26  * MA  02110-1301  USA
27  */
28
29 // Installation steps array
30 var installationSteps = new Array();
31
32 // Failed step
33 var failedStep = '';
34
35 // Init all installation steps
36 installationSteps[0] = 'import_tables_sql';
37 installationSteps[1] = 'import_menu_sql';
38 installationSteps[2] = 'install_extensions';
39 installationSteps[3] = 'register_first_admin';
40
41 // Always keep as last step
42 installationSteps[installationSteps.length] = 'write_local_config';
43
44 // Switches instaler by redirecting
45 function switchInstaller (installer) {
46         // Switch installer
47         document.location.href = 'install.php?installer=' + installer;
48 }
49
50 // User has clicked on 'finish'
51 function doFinishInstallation () {
52         // First disable all buttons button
53         resetFooterNavigation();
54
55         // Display progress window
56         displayProgressWindow('install', 'Init ...');
57
58         // Wait for window fader
59         $().ready(function () {
60                 // Start installation loop delayed
61                 window.setTimeout('doInstallationLoop()', 500);
62
63                 // Wait here
64                 $('body').delay(500);
65         });
66 }
67
68 // Does the "installation loop"
69 function doInstallationLoop () {
70         // For-loop for all installation steps
71         for (var i = 0; i < installationSteps.length; i++) {
72                 // Output message
73                 outputInstallationStepMessage(installationSteps[i]);
74
75                 // Initialize next step
76                 if (sendInstallationStepRequest(i) === false) {
77                         // Failed step, so remember it for later display
78                         failedStep = installationSteps[i];
79
80                         // Stop here
81                         break;
82                 } // END - if
83
84                 // Wait a little
85                 $('body').delay(500);
86
87                 // Update progress bar
88                 updateProgressBar(installationSteps.length);
89         } // END - for
90
91         // Is success counter same as array size
92         if (counterSuccess != installationSteps.length) {
93                 // Display error message
94                 displayErrorWindow('install', getAjaxContent() + ':' + counterSuccess + '/' + installationSteps.length + ':' + failedStep);
95         } else {
96                 // Redirect to admin.php
97                 document.location.href = 'admin.php';
98         }
99 }
100
101 // Sends an "installation step" request out
102 function sendInstallationStepRequest (i) {
103         // Is it set?
104         if (installationSteps[i] == undefined) {
105                 // Not set installation step, so don't send it out
106                 throw new 'installationSteps[' + i + '] is not set.';
107         } // END - if
108
109         // Send out the request
110         return sendAjaxRequest('install', 'do_step', '&step=' + installationSteps[i], false);
111 }
112
113 // Outputs a "step message"
114 function outputInstallationStepMessage (step) {
115         // Set content
116         // @TODO Progress bar is out-of-order: + '<div id="progressbar"></div>'
117         setProgressContent('install', step);
118 }