rewritten to new functions, some parts rewritten to filters
[mailer.git] / inc / install-inc.php
1 <?php
2 /************************************************************************
3  * MXChange v0.2.1                                    Start: 08/29/2003 *
4  * ===============                              Last change: 11/11/2004 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : install-inc.php                                  *
8  * -------------------------------------------------------------------- *
9  * Short description : Functions for installation procedure             *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Funktionen fuer die Installationsroutine         *
12  * -------------------------------------------------------------------- *
13  *                                                                      *
14  * -------------------------------------------------------------------- *
15  * Copyright (c) 2003 - 2008 by Roland Haeder                           *
16  * For more information visit: http://www.mxchange.org                  *
17  *                                                                      *
18  * This program is free software; you can redistribute it and/or modify *
19  * it under the terms of the GNU General Public License as published by *
20  * the Free Software Foundation; either version 2 of the License, or    *
21  * (at your option) any later version.                                  *
22  *                                                                      *
23  * This program is distributed in the hope that it will be useful,      *
24  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
25  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
26  * GNU General Public License for more details.                         *
27  *                                                                      *
28  * You should have received a copy of the GNU General Public License    *
29  * along with this program; if not, write to the Free Software          *
30  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
31  * MA  02110-1301  USA                                                  *
32  ************************************************************************/
33
34 /************************************************************************
35  *      YOU MAY ALSO WANT TO REMOVE THIS FILE AFTER INSTALLTION!        *
36  ************************************************************************/
37
38 // Some security stuff...
39 if (!defined('__SECURITY')) {
40         $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
41         require($INC);
42 }
43
44 // Load sql_patches here
45 LOAD_EXTENSION("sql_patches");
46
47 // Init variables
48 $mysql = "";
49 if ((REQUEST_ISSET_POST(('mysql'))) && (is_array(REQUEST_POST('mysql')))) $mysql = REQUEST_POST('mysql');
50
51 // Check if both passwords from SMTP are matching
52 if ((REQUEST_ISSET_GET(('page')) && (REQUEST_GET('page') == 5))) {
53         // Okay, we have to check it
54         if (REQUEST_ISSET_POST(('smtp_user')) && (!REQUEST_ISSET_POST(('smtp_host')))) {
55                 // Hostname not set
56                 OUTPUT_HTML(getMessage('INSTALL_SMTP_HOSTNAME_EMPTY')."<br />");
57                 REQUEST_SET_GET('page', 3);
58         } // END - if
59
60         if ((!REQUEST_ISSET_POST(('smtp_pass1'))) && (REQUEST_ISSET_POST(('smtp_pass2')))) {
61                 // Password is empty
62                 OUTPUT_HTML(getMessage('INSTALL_SMTP_PASS1_EMPTY')."<br />");
63                 REQUEST_SET_GET('page', 3);
64         } // END - if
65
66         if ((REQUEST_ISSET_POST(('smtp_pass1'))) && (!REQUEST_ISSET_POST(('smtp_pass2')))) {
67                 // Password repeat is empty
68                 OUTPUT_HTML(getMessage('INSTALL_SMTP_PASS2_EMPTY')."<br />");
69                 REQUEST_SET_GET('page', 3);
70         } // END - if
71
72         if (REQUEST_POST('smtp_pass1') != REQUEST_POST('smtp_pass1')) {
73                 // Passwords are not matching
74                 OUTPUT_HTML(getMessage('INSTALL_SMTP_PASS_MISMATCH')."<br />");
75                 REQUEST_SET_GET('page', 3);
76         } // END - if
77 } // END - if
78
79 // Is MXChange installed or no admin registered so far?
80 if ((!isInstalled()) || (!isAdminRegistered()))
81 {
82         // Set URL for FORM actions
83         define('__BURL_ACTION', constant('URL'));
84
85         // Output page for entered value
86         switch (REQUEST_GET('page'))
87         {
88         case "welcome": // Welcome to the installation!
89                 LOAD_TEMPLATE("install_welcome");
90                 break;
91
92         case "1": // Server path, base URL
93                 // @Profi-Concept: Hab meine Meinung doch geaendert! :-)
94                 // Load template
95                 LOAD_TEMPLATE("install_page1");
96                 break;
97
98         case "2": // MySQL data (alone!)
99                 if (empty($mysql['dbase']))  $mysql['dbase']  = "your_database";
100                 if (empty($mysql['login']))  $mysql['login']  = "your_login";
101                 if (empty($mysql['host']))   $mysql['host']   = "localhost";
102                 if (empty($mysql['prefix'])) $mysql['prefix'] = "mxchange_";
103                 if (getTotalFatalErrors() > 0) {
104                         OUTPUT_HTML("<span class=\"install_fatal\">");
105                         foreach (getFatalArray() as $key => $err) {
106                                 OUTPUT_HTML("  <strong>&middot;</strong>&nbsp;{--FATAL_NO--}".($key + 1).":&nbsp;".$err."<br />");
107                         }
108                         OUTPUT_HTML("</span><br />");
109                 }
110                 define('__MYSQL_HOST'  , $mysql['host']);
111                 define('__MYSQL_DBASE' , $mysql['dbase']);
112                 define('__MYSQL_PREFIX', $mysql['prefix']);
113                 define('__MYSQL_LOGIN' , $mysql['login']);
114                 define('__SPATH_VALUE' , REQUEST_POST('spath'));
115                 define('__BURL_VALUE'  , REQUEST_POST('burl'));
116                 define('__TITLE_VALUE' , REQUEST_POST('title'));
117                 define('__SLOGAN_VALUE', REQUEST_POST('slogan'));
118                 define('__EMAIL_VALUE' , REQUEST_POST('email'));
119
120                 // Load template
121                 LOAD_TEMPLATE("install_page2");
122                 break;
123
124         case "3":
125                 // Set more values
126                 define('__SPATH_VALUE'  , REQUEST_POST('spath'));
127                 define('__BURL_VALUE'   , REQUEST_POST('burl'));
128                 define('__TITLE_VALUE'  , REQUEST_POST('title'));
129                 define('__SLOGAN_VALUE' , REQUEST_POST('slogan'));
130                 define('__EMAIL_VALUE'  , REQUEST_POST('email'));
131
132                 // Use default SMTP data
133                 $smtpHost  = constant('SMTP_HOSTNAME');
134                 $smtpUser  = constant('SMTP_USER');
135                 $smtpPass1 = constant('SMTP_PASSWORD');
136                 $smtpPass2 = constant('SMTP_PASSWORD');
137
138                 // Overwrite it with the data from sent (failed) form
139                 if (REQUEST_ISSET_POST(('smtp_host'))) $smtpHost = REQUEST_POST('smtp_host');
140                 if (REQUEST_ISSET_POST(('smtp_user'))) $smtpUser = REQUEST_POST('smtp_user');
141
142                 // MySQL settings
143                 define('__MYSQL_HOST'   , $mysql['host']);
144                 define('__MYSQL_DBASE'  , $mysql['dbase']);
145                 define('__MYSQL_PREFIX' , $mysql['prefix']);
146                 define('__MYSQL_LOGIN'  , $mysql['login']);
147                 define('__MYSQL_PASS1'  , $mysql['pass1']);
148                 define('__MYSQL_PASS2'  , $mysql['pass2']);
149
150                 // Set constants for SMTP data
151                 define('__SMTP_HOST'    , $smtpHost);
152                 define('__SMTP_USER'    , $smtpUser);
153                 define('__SMTP_PASS1'   , $smtpPass1);
154                 define('__SMTP_PASS2'   , $smtpPass2);
155
156                 // Load template
157                 LOAD_TEMPLATE("install_page3");
158                 break;
159
160         case "5": // Misc settings
161                 // General settings
162                 define('__SPATH_VALUE'  , REQUEST_POST('spath'));
163                 define('__BURL_VALUE'   , REQUEST_POST('burl'));
164                 define('__TITLE_VALUE'  , REQUEST_POST('title'));
165                 define('__SLOGAN_VALUE' , REQUEST_POST('slogan'));
166                 define('__EMAIL_VALUE'  , REQUEST_POST('email'));
167
168                 // MySQL settings
169                 define('__MYSQL_HOST'   , $mysql['host']);
170                 define('__MYSQL_DBASE'  , $mysql['dbase']);
171                 define('__MYSQL_PREFIX' , $mysql['prefix']);
172                 define('__MYSQL_LOGIN'  , $mysql['login']);
173
174                 // SMTP settings
175                 define('__SMTP_HOST'    , REQUEST_POST('smtp_host'));
176                 define('__SMTP_USER'    , REQUEST_POST('smtp_user'));
177                 define('__SMTP_PASS'    , REQUEST_POST('smtp_pass1'));
178                 OUTPUT_HTML("<form action=\"{!__BURL_ACTION!}/install.php?page=finalize\" method=\"POST\" target=\"_self\">
179 <table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" class=\"install_content\">
180 <tr>
181   <td colspan=\"2\" align=\"center\">
182     <div class=\"install\">{--HEADER_TEXT_PAGE5--}</strong>
183   </td>
184 </tr>
185 <tr><td colspan=\"2\" height=\"21\" class=\"seperator\">&nbsp;</td></tr>
186 <tr>
187   <td colspan=\"2\"><span class=\"install_intro\">
188     {--TEXT_PAGE_5--}
189   </span></td>
190 </tr>
191 <tr><td colspan=\"2\" height=\"21\" class=\"seperator\">&nbsp;</td></tr>
192 <tr>
193   <td class=\"install\" align=\"right\">{--LANG_OUTPUT_MODE--}:&nbsp;&nbsp;</td>
194   <td>
195     <select name=\"omode\" size=\"1\" class=\"install_select\">
196       <option value=\"render\"");
197                 if (constant('OUTPUT_MODE') == "render") OUTPUT_HTML(" selected=\"selected\"");
198                 OUTPUT_HTML(">{--MODE_RENDER--}</option>
199       <option value=\"direct\"");
200                 if (constant('OUTPUT_MODE') == "direct") OUTPUT_HTML(" selected=\"selected\"");
201                 OUTPUT_HTML(">{--MODE_DIRECT--}</option>
202     </select>
203   </td>
204 </tr>
205 <tr><td colspan=\"2\" height=\"10\" class=\"seperator\">&nbsp;</td></tr>
206 <tr>
207   <td class=\"install\" align=\"right\">{--WARN_NO_PASSWORD--}:&nbsp;&nbsp;</td>
208   <td>
209     <select name=\"warn_no_pass\" size=\"1\" class=\"install_select\">
210       <option value=\"true\"");
211                 if (isBooleanConstantAndTrue('warn_no_pass')) OUTPUT_HTML(" selected=\"selected\"");
212                 OUTPUT_HTML(">{--YES--}</option>
213       <option value=\"false\"");
214                 if (!isBooleanConstantAndTrue('warn_no_pass')) OUTPUT_HTML(" selected=\"selected\"");
215                 OUTPUT_HTML(">{--NO--}</option>
216     </select>
217   </td>
218 </tr>
219 <tr><td colspan=\"2\" height=\"10\" class=\"seperator\">&nbsp;</td></tr>
220 <tr>
221   <td class=\"install\" align=\"right\">{--LANG_WRITE_FOOTER--}:&nbsp;&nbsp;</td>
222   <td>
223     <select name=\"wfooter\" size=\"1\" class=\"install_select\">
224       <option value=\"true\"");
225                 if (isBooleanConstantAndTrue('WRITE_FOOTER')) OUTPUT_HTML(" selected=\"selected\"");
226                 OUTPUT_HTML(">{--YES--}</option>
227       <option value=\"false\"");
228                 if (!isBooleanConstantAndTrue('WRITE_FOOTER')) OUTPUT_HTML(" selected=\"selected\"");
229                 OUTPUT_HTML(">{--NO--}</option>
230     </select>
231   </td>
232 </tr>
233 <tr><td colspan=\"2\" height=\"10\" class=\"seperator\">&nbsp;</td></tr>
234 <tr>
235   <td class=\"install\" align=\"right\">{--INSTALL_ENABLE_BACKLINK--}:&nbsp;&nbsp;</td>
236   <td>
237     <select name=\"blink\" size=\"1\" class=\"install_select\">
238       <option value=\"true\"");
239                 if (isBooleanConstantAndTrue('ENABLE_BACKLINK')) OUTPUT_HTML(" selected=\"selected\"");
240                 OUTPUT_HTML(">{--YES--}</option>
241       <option value=\"false\"");
242                 if (!isBooleanConstantAndTrue('ENABLE_BACKLINK')) OUTPUT_HTML(" selected=\"selected\"");
243                 OUTPUT_HTML(">{--NO--}</option>
244     </select>
245   </td>
246 </tr>
247 <tr><td colspan=\"2\" height=\"21\" class=\"seperator\">&nbsp;</td></tr>
248 <tr>
249   <td colspan=\"2\" align=\"center\">");
250                 foreach ($mysql as $key => $value) {
251                         OUTPUT_HTML("    <input type=\"hidden\" name=\"mysql[".$key."]\" value=\"".$value."\">");
252                 }
253                 OUTPUT_HTML("    <input type=\"hidden\" name=\"spath\" value=\"{!__SPATH_VALUE!}\">
254     <input type=\"hidden\" name=\"burl\" value=\"{!__BURL_VALUE!}\" />
255     <input type=\"hidden\" name=\"title\" value=\"{!__TITLE_VALUE!}\" />
256     <input type=\"hidden\" name=\"slogan\" value=\"{!__SLOGAN_VALUE!}\" />
257     <input type=\"hidden\" name=\"email\" value=\"{!__EMAIL_VALUE!}\" />
258     <input type=\"hidden\" name=\"smtp_host\" value=\"{!__SMTP_HOST!}\" />
259     <input type=\"hidden\" name=\"smtp_user\" value=\"{!__SMTP_USER!}\" />
260     <input type=\"hidden\" name=\"smtp_pass\" value=\"{!__SMTP_PASS!}\" />
261     <input type=\"submit\" class=\"admin_submit submit\" name=\"finalize\" value=\"{--NEXT_PAGE--}\" class=\"install_submit\" />
262   </td>
263 </tr>
264 <tr><td colspan=\"2\" height=\"21\" class=\"seperator\">&nbsp;</td></tr>
265 </table>
266 </form>");
267                 break;
268
269         case "finalize": // Write captured data to files
270                 if ((REQUEST_ISSET_POST(('finalize'))) && (!isInstalled())) {
271                         // You have submitted data then we have to reset the fatal messages
272                         INIT_SQLS();
273
274                         // Connect to MySQL server
275                         SQL_CONNECT($mysql['host'], $mysql['login'], $mysql['pass1'], __FILE__, __LINE__);
276                         if (SQL_IS_LINK_UP()) {
277                                 // Seems to work, also right database?
278                                 if (SQL_SELECT_DB($mysql['dbase'], __FILE__, __LINE__) === true) {
279                                         // Automatically run install.sql
280                                         if ((FILE_READABLE(REQUEST_POST('spath')."install/tables.sql")) && (FILE_READABLE(REQUEST_POST('spath')."install/menu-".GET_LANGUAGE().".sql"))) {
281                                                 // Both exists so import them
282                                                 foreach (array("tables.sql", "menu-".GET_LANGUAGE().".sql") as $dump) {
283                                                         // Should be save here because file_exists() is there but we check it again. :)
284                                                         $FQFN = secureString(REQUEST_POST('spath')) . "install/" . $dump;
285                                                         if (FILE_READABLE($FQFN)) {
286                                                                 // Read the file
287                                                                 $fileContent = READ_FILE($FQFN, true);
288
289                                                                 // And split it up against ;\n ...
290                                                                 SET_SQLS(merge_array(GET_SQLS(), explode(";\n", $fileContent)));
291                                                         } else {
292                                                                 // Not readable!
293                                                                 debug_report_bug(sprintf("SQL dump %s is not readable!", $dump));
294                                                         }
295                                                 } // END - foreach
296
297                                                 // Are some SQLs found?
298                                                 if (COUNT_SQLS() == 0) {
299                                                         // Abort here
300                                                         addFatalMessage(__FILE__, __LINE__, getMessage('INSTALL_SQL_IMPORT_FAILED'));
301                                                         return;
302                                                 } // END - if
303
304                                                 // Now run all queries through and try to keep out empty or comment queries
305                                                 RUN_FILTER('run_sqls', array('dry_run' => false));
306
307                                                 // Ok, all done. So we can write the config data to the php files
308                                                 if (REQUEST_POST('spath') != constant('PATH')) changeDataInFile(REQUEST_POST('spath')."inc/config.php", "SERVER-PATH", "define('PATH', \"", "\");", REQUEST_POST('spath'), 0);
309                                                 if (REQUEST_POST('burl')  != constant('URL'))  changeDataInFile(REQUEST_POST('spath')."inc/config.php", "HOST-URL", "define('URL', \"", "\");", REQUEST_POST('burl'), 0);
310                                                 changeDataInFile(REQUEST_POST('spath')."inc/config.php", "MAIN_TITLE", "define('MAIN_TITLE', \"", "\");", REQUEST_POST('title'), 0);
311                                                 changeDataInFile(REQUEST_POST('spath')."inc/config.php", "SLOGAN", "define('SLOGAN', \"", "\");", REQUEST_POST('slogan'), 0);
312                                                 changeDataInFile(REQUEST_POST('spath')."inc/config.php", "WEBMASTER", "define('WEBMASTER', \"", "\");", REQUEST_POST('email'), 0);
313                                                 changeDataInFile(REQUEST_POST('spath')."inc/config.php", "NULLPASS-WARNING", "define('warn_no_pass', ", ");", REQUEST_POST('warn_no_pass'), 0);
314                                                 changeDataInFile(REQUEST_POST('spath')."inc/config.php", "WRITE-FOOTER", "define('WRITE_FOOTER', ", ");", REQUEST_POST('wfooter'), 0);
315                                                 changeDataInFile(REQUEST_POST('spath')."inc/config.php", "BACKLINK", "define('ENABLE_BACKLINK', ", ");", REQUEST_POST('blink'), 0);
316                                                 // DEACTIVATED: changeDataInFile(REQUEST_POST('spath')."inc/config.php", "OUTPUT-MODE", "define('OUTPUT_MODE', \"", "\");", REQUEST_POST('omode'), 0);
317                                                 changeDataInFile(REQUEST_POST('spath')."inc/config.php", "MYSQL-HOST", "        'host'     => \"", "\",", $mysql['host'], 0);
318                                                 changeDataInFile(REQUEST_POST('spath')."inc/config.php", "MYSQL-DBASE", "       'dbase'    => \"", "\",", $mysql['dbase'], 0);
319                                                 changeDataInFile(REQUEST_POST('spath')."inc/config.php", "MYSQL-LOGIN", "       'login'    => \"", "\",", $mysql['login'], 0);
320                                                 changeDataInFile(REQUEST_POST('spath')."inc/config.php", "MYSQL-PASSWORD", "    'password' => \"", "\",", $mysql['pass1'], 0);
321                                                 changeDataInFile(REQUEST_POST('spath')."inc/config.php", "MYSQL-PREFIX", "define('_MYSQL_PREFIX', \"", "\");", $mysql['prefix'], 0);
322                                                 changeDataInFile(REQUEST_POST('spath')."inc/config.php", "SMTP-HOSTNAME", "define('SMTP_HOSTNAME', \"", "\");", REQUEST_POST('smtp_host'), 0);
323                                                 changeDataInFile(REQUEST_POST('spath')."inc/config.php", "SMTP-USER", "define('SMTP_USER', \"", "\");", REQUEST_POST('smtp_user'), 0);
324                                                 changeDataInFile(REQUEST_POST('spath')."inc/config.php", "SMTP-PASSWORD", "define('SMTP_PASSWORD', \"", "\");", REQUEST_POST('smtp_pass1'), 0);
325                                                 changeDataInFile(REQUEST_POST('spath')."inc/config.php", "INSTALLED", "define('mxchange_installed', ", ");", "true", 0);
326                                         } else {
327                                                 // Installation area not found!
328                                                 addFatalMessage(__FILE__, __LINE__, getMessage('INSTALL_MISSING_DUMPS'));
329                                         }
330                                 } // END - if
331                         } // END - if
332
333                         if (getTotalFatalErrors() > 0) {
334                                 $OUT = "";
335                                 foreach (getFatalArray() as $value) {
336                                         $OUT .= "    <li>".$value."</li>\n";
337                                 } // END foreach
338                                 define('__FATAL_ERROR_LI', $OUT);
339                                 $OUT = "";
340                                 foreach ($mysql as $key => $value) {
341                                         $OUT .= "    <input type=\"hidden\" name=\"mysql[".$key."]\" value=\"".$value."\">\n";
342                                 } // END foreach
343                                 define('__MYSQL_DATA'   , $OUT);
344                                 define('__SPATH_VALUE'  , REQUEST_POST('spath'));
345                                 define('__BURL_VALUE'   , REQUEST_POST('burl'));
346                                 define('__TITLE_VALUE'  , REQUEST_POST('title'));
347                                 define('__SMTP_HOST'    , REQUEST_POST('smtp_host'));
348                                 define('__SMTP_USER'    , REQUEST_POST('smtp_user'));
349                                 define('__SMTP_PASS'    , REQUEST_POST('smtp_pass1'));
350
351                                 // Load template
352                                 LOAD_TEMPLATE("install_fatal_errors");
353                         } else {
354                                 // Installation is done!
355                                 LOAD_URL("install.php?page=finalize");
356                         }
357                 } elseif (isInstalled()) {
358                         // Redirection after writing data... :-)
359                         LOAD_TEMPLATE("install_finished");
360                 } else {
361                         // Something goes wrong during installation! :-(
362                         addFatalMessage(__FILE__, __LINE__, getMessage('INSTALL_FINALIZER_FAILED'));
363                         LOAD_INC("inc/fatal_errors.php");
364                 }
365                 break;
366
367         default:
368                 DEBUG_LOG(__FILE__, __LINE__, sprintf("Wrong page %s detected", REQUEST_GET('page')));
369                 OUTPUT_HTML("    <div class=\"install_error\">{--WRONG_PAGE--}</strong>");
370                 break;
371         }
372 } else {
373         // Already installed!
374         addFatalMessage(__FILE__, __LINE__, getMessage('ALREADY_INSTALLED'));
375 }
376
377 //
378 ?>