Cleanup.
[fa-stable.git] / install / index.php
1 <?php
2 /**********************************************************************
3     Copyright (C) FrontAccounting, LLC.
4         Released under the terms of the GNU General Public License, GPL, 
5         as published by the Free Software Foundation, either version 3 
6         of the License, or (at your option) any later version.
7     This program is distributed in the hope that it will be useful,
8     but WITHOUT ANY WARRANTY; without even the implied warranty of
9     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  
10     See the License here <http://www.gnu.org/licenses/gpl-3.0.html>.
11 ***********************************************************************/
12 $page_security = 'SA_OPEN';
13 $path_to_root="..";
14
15 //if (file_exists($path_to_root.'/config.php'))
16 //      header("Location: $path_to_root/index.php");
17
18 include($path_to_root . "/install/isession.inc");
19
20 page(_($help_context = "FrontAccouting ERP Installation Wizard"), true, false, "", '', false,
21         'stylesheet.css');
22
23 include($path_to_root . "/includes/ui.inc");
24 include($path_to_root . "/includes/system_tests.inc");
25 include($path_to_root . "/admin/db/maintenance_db.inc");
26 include($path_to_root . "/includes/packages.inc");
27 include($path_to_root . "/installed_extensions.php");
28 //-------------------------------------------------------------------------------------------------
29
30 function subpage_title($txt) 
31 {
32         global $path_to_root;
33         
34         echo '<center><img src="'.$path_to_root.'/themes/default/images/logo_frontaccounting.png" width="250" height="50" alt="Logo" />
35                 </center>';
36         $page = @$_POST['Page'] ? $_POST['Page'] : 1;
37
38         display_heading(
39                 $page==5 ? $txt :
40                         _("FrontAccouting ERP Installation Wizard").'<br>'
41                         . sprintf(_('Step %d: %s'),  $page , $txt));
42         br();
43 }
44
45 function display_coas()
46 {
47         start_table(TABLESTYLE);
48         $th = array(_("Chart of accounts"), _("Description"), _("Install"));
49         table_header($th);
50
51         $k = 0;
52         $charts = get_charts_list();
53
54         foreach($charts as $pkg_name => $coa)
55         {
56                 $available = @$coa['available'];
57                 $installed = @$coa['version'];
58                 $id = @$coa['local_id'];
59
60                 alt_table_row_color($k);
61                 label_cell($coa['name']);
62                 label_cell(is_array($coa['Descr']) ? implode('<br>', $coa['Descr']) :  $coa['Descr']);
63                 if ($installed)
64                         label_cell(_("Installed"));
65                 else
66                         check_cells(null, 'coas['.$coa['package'].']');
67
68                 end_row();
69         }
70         end_table(1);
71 }
72
73 function install_connect_db() {
74         global $db;
75
76         $conn = $_SESSION['inst_set'];
77         
78         $db = mysql_connect($conn["host"] , $conn["dbuser"], $conn["dbpassword"]);
79         if(!$db) {
80                 display_error('Cannot connect to database server. Host name, username and/or password incorrect.');
81                 return false;
82         }
83         if (!defined('TB_PREF'))
84                 define('TB_PREF', $conn["tbpref"]);
85
86         if (!mysql_select_db($conn["dbname"], $db)) {
87                 $sql = "CREATE DATABASE " . $conn["dbname"];
88                 if (!mysql_query($sql)) {
89                         display_error('Cannot create database. Check your permissions to database creation or selct already created database.');
90                         return false;
91                 }
92                 return mysql_select_db($conn["dbname"], $db);
93         }
94         return true;
95 }
96
97 function do_install() {
98         global $path_to_root, $db_connections, $def_coy, $installed_extensions;
99
100         $coa = $_SESSION['inst_set']['coa'];
101         if (install_connect_db() && db_import($path_to_root.'/sql/'.$coa, $_SESSION['inst_set'])) {
102                 $con = $_SESSION['inst_set'];
103                 $table_prefix = $con['tbpref'];
104                 update_admin_password($con, md5($con['pass']));
105                 update_company_prefs(array('coy_name'=>$con['name']));
106
107                 $def_coy = 0;
108                 $tb_pref_counter = 0;
109                 $db_connections = array (0=> array (
110                  'name' => $con['name'],
111                  'host' => $con['host'],
112                  'dbuser' => $con['dbuser'],
113                  'dbpassword' => $con['dbpassword'],
114                  'dbname' => $con['dbname'],
115                  'tbpref' => $table_prefix
116                 ));
117                 $err = write_config_db($table_prefix != "");
118
119                 if ($err == -1) {
120                         display_error(_("Cannot open the config_db.php configuration file:"));
121                         return false;
122                 } else if ($err == -2) {
123                         display_error(_("Cannot write to the config_db.php configuration file"));
124                         return false;
125                 } else if ($err == -3) {
126                         display_error(_("The configuration file config_db.php is not writable. Change its permissions so it is, then re-run step 5."));
127                         return false;
128                 }
129                 if (!copy($path_to_root. "/config.default.php", $path_to_root. "/config.php")) {
130                         display_error(_("Cannot save system configuration file config.php"));
131                         return false;
132                 }
133                 if (count($installed_extensions))
134                  if (!update_extensions($installed_extensions)) { // update company 0 extensions (charts)
135                         display_error(_("Can't update extensions configuration."));
136                         return false;
137                  }
138                 return true;
139         }
140         return false;
141 }
142
143 if (!isset($_SESSION['inst_set']))  // default settings
144         $_SESSION['inst_set'] = array(
145                 'host'=>'localhost', 
146                 'dbuser' => 'root',
147                 'dbpassword' => '',
148                 'username' => 'admin',
149                 'tbpref' => '0_',
150                 'admin' => 'admin',
151                 'coa_type' => 0
152         );
153
154 if (!@$_POST['Tests'])
155         $_POST['Page'] = 1; // set to start page
156
157 if (isset($_POST['back']) && (@$_POST['Page']>1)) {
158         $_POST['Page']--;
159         if ($_POST['Page'] == 3)
160                 $_POST['Page'] = 2;
161 }
162 elseif (isset($_POST['continue'])) {
163         $_POST['Page'] = 2;
164 }
165 elseif (isset($_POST['db_test'])) {
166         if (get_post('host')=='') {
167                 display_error(_('Host name cannot be empty'));
168                 set_focus('host');
169         }
170         elseif ($_POST['dbuser']=='') {
171                 display_error(_('Database user name cannot be empty'));
172                 set_focus('dbuser');
173         }
174         elseif ($_POST['dbname']=='') {
175                 display_error(_('Database name cannot be empty'));
176                 set_focus('dbname');
177         }
178         else {
179                 $_SESSION['inst_set'] = array_merge($_SESSION['inst_set'], array(
180                         'host' => $_POST['host'],
181                         'dbuser' => $_POST['dbuser'],
182                         'dbpassword' => $_POST['dbpassword'],
183                         'dbname' => $_POST['dbname'],
184                         'tbpref' => $_POST['tbpref'] ? '0_' : '',
185                 ));
186                 if (install_connect_db()) {
187                         $_POST['Page'] = check_value('sel_coas') ? 3 : 4;
188                 }
189         }
190 }
191 elseif(get_post('install_coas')) 
192 {
193         $ret = true;
194         if (isset($_POST['coas']))
195                 foreach($_POST['coas'] as $package => $ok) {
196                         $ret &= install_extension($package);
197                 }
198         if ($ret) {
199                 $_POST['Page'] = 4;
200         }
201 }
202 elseif (isset($_POST['set_admin'])) {
203         // check company settings
204         if (get_post('name')=='') {
205                 display_error(_('Company name cannot be empty.'));
206                 set_focus('name');
207         }
208         elseif (get_post('admin')=='') {
209                 display_error(_('Company admin name cannot be empty.'));
210                 set_focus('admin');
211         }
212         elseif (get_post('pass')=='') {
213                 display_error(_('Company admin password cannot be empty.'));
214                 set_focus('pass');
215         }
216         elseif (get_post('pass')!=get_post('repass')) {
217                 display_error(_('Company admin passwords differ.'));
218                 unset($_POST['pass'],$_POST['repass']);
219                 set_focus('pass');
220         }
221         else {
222
223                 $_SESSION['inst_set'] = array_merge($_SESSION['inst_set'], array(
224                         'coa' => $_POST['coa'],
225                         'pass' => $_POST['pass'],
226                         'name' => $_POST['name'],
227                         'admin' => $_POST['admin'],
228                 ));
229                 if (do_install()) {
230                         $_POST['Page'] = 5;
231                 }
232         }
233 }
234
235 start_form();
236         switch(@$_POST['Page']) {
237                 default:
238 //                      include ('../install.html');
239 //                      submit_center('continue', _('Continue >>'));
240 //                      break;
241                 case '1':
242                         subpage_title(_('System Diagnostics'));
243                         $_POST['Tests'] = display_system_tests(true);
244                         br();
245                         if (@$_POST['Tests']) {
246                                 display_notification(_('All application preliminary requirements seems to be correct. Please press Continue button below.'));
247                                 submit_center('continue', _('Continue >>'));
248                         } else {
249                                 display_error(_('Application cannot be installed. Please fix problems listed below in red, and press Refresh button.'));
250                                 submit_center('refresh', _('Refresh'));
251                         }
252                         break;
253
254                 case '2':
255                         if (!isset($_POST['host'])) {
256                                 foreach($_SESSION['inst_set'] as $name => $val)
257                                         $_POST[$name] = $val;
258                         }
259                         subpage_title(_('Database Server Settings'));
260                         start_table(TABLESTYLE);
261                         text_row_ex(_("Server Host"), 'host', 30);
262                         text_row_ex(_("Database User"), 'dbuser', 30);
263                         text_row_ex(_("Database Password"), 'dbpassword', 30);
264                         text_row_ex(_("Database Name"), 'dbname', 30);
265                         yesno_list_row(_("Use '0_' Table Prefix"), 'tbpref', 1, _('Yes'), _('No'), false);
266                         check_row(_("Install additional COAs form FA repository"), 'sel_coas');
267                         end_table(1);
268                         display_note(_('Use table prefix if you share selected database with another application, or you want to use it for more than one FA company.'));
269                         submit_center_first('back', _('<< Back'));
270                         submit_center_last('db_test', _('Continue >>'));
271                         break;
272
273                 case '3': // select COA
274                         subpage_title(_('Charts of accounts selection'));
275                         display_coas();
276                         submit_center_first('back', _('<< Back'));
277                         submit_center_last('install_coas', _('Continue >>'));
278                         break;
279
280                 case '4':
281                         if (!isset($_POST['name'])) {
282                                 foreach($_SESSION['inst_set'] as $name => $val)
283                                         $_POST[$name] = $val;
284                                 set_focus('name');
285                         }
286                         subpage_title(_('Company Settings'));
287                         start_table(TABLESTYLE);
288                         text_row_ex(_("Company Name"), 'name', 30);
289                         text_row_ex(_("Admin Login"), 'admin', 30);
290                         password_row(_("Admin Password"), 'pass', @$_POST['pass']);
291                         password_row(_("Reenter Password"), 'repass', @$_POST['repass']);
292                         coa_list_row(_("Select Chart of Accounts"), 'coa');
293                         end_table(1);
294                         submit_center_first('back', _('<< Back'));
295                         submit_center_last('set_admin', _('Continue >>'));
296                         break;
297
298                 case '5': // final screen
299                         subpage_title(_('FrontAccounting ERP has been installed successsfully.'));
300                         display_note(_('Please remove install wizard folder.'));
301                         $install_done = true;
302                         hyperlink_no_params($path_to_root.'/index.php', _('Click here to start.'));
303                         break;
304
305         }
306
307         hidden('Tests');
308         hidden('Page');
309 end_form(1);
310
311 end_page(false, false, true);
312
313 ?>