Fixed many issues in output HTML code according to HTML 4.01 Transitional format.
[fa-stable.git] / admin / create_coy.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_CREATECOMPANY';
13 $path_to_root="..";
14 include_once($path_to_root . "/includes/session.inc");
15
16 include_once($path_to_root . "/includes/date_functions.inc");
17 include_once($path_to_root . "/admin/db/company_db.inc");
18 include_once($path_to_root . "/admin/db/maintenance_db.inc");
19 include_once($path_to_root . "/includes/ui.inc");
20
21 page(_($help_context = "Create/Update Company"));
22
23 $comp_subdirs = array('images', 'pdf_files', 'backup','js_cache', 'reporting', 'attachments');
24
25 //---------------------------------------------------------------------------------------------
26 if (isset($_GET['selected_id']))
27 {
28         $selected_id = (int)$_GET['selected_id'];
29 }
30 elseif (isset($_POST['selected_id']))
31 {
32         $selected_id = (int)$_POST['selected_id'];
33 }
34 else
35         $selected_id = -1;
36
37 //---------------------------------------------------------------------------------------------
38
39 function check_data()
40 {
41         global $db_connections, $tb_pref_counter, $selected_id;
42
43         if($selected_id != -1) {
44                 if ($_POST['name'] == "")
45                 {
46                         display_error(_("Database settings are not specified."));
47                         return false;
48                 }
49         } else {
50                 if ($_POST['name'] == "" || $_POST['host'] == "" || $_POST['dbuser'] == "" || $_POST['dbname'] == "")
51                 {
52                         display_error(_("Database settings are not specified."));
53                         return false;
54                 }
55                 foreach($db_connections as $id=>$con)
56                 {
57                  if($id != $selected_id && $_POST['host'] == $con['host'] 
58                         && $_POST['dbname'] == $con['dbname'])
59                         {
60                                 if ($_POST['tbpref'] == $con['tbpref'])
61                                 {
62                                         display_error(_("This database settings are already used by another company."));
63                                         return false;
64                                 }
65                                 if (($_POST['tbpref'] == 0) ^ ($con['tbpref'] == ''))
66                                 {
67                                         display_error(_("You cannot have table set without prefix together with prefixed sets in the same database."));
68                                         return false;
69                                 }
70                         }
71                 }
72         }
73         return true;
74 }
75
76 //---------------------------------------------------------------------------------------------
77
78 function remove_connection($id) {
79         global $db_connections;
80
81         $err = db_drop_db($db_connections[$id]);
82
83         unset($db_connections[$id]);
84         $conn = array_values($db_connections);
85         $db_connections = $conn;
86         //$$db_connections = array_values($db_connections);
87     return $err;
88 }
89 //---------------------------------------------------------------------------------------------
90
91 function handle_submit()
92 {
93         global $db_connections, $def_coy, $tb_pref_counter, $db,
94             $comp_subdirs, $path_to_root, $selected_id;
95
96         $error = false;
97         if (!check_data())
98                 return false;
99
100         if ($selected_id==-1)
101                 $selected_id = count($db_connections);
102
103         $new = !isset($db_connections[$selected_id]);
104
105         if ((bool)$_POST['def'] == true)
106                 $def_coy = $selected_id;
107
108         $db_connections[$selected_id]['name'] = $_POST['name'];
109         if($new) {
110                 $db_connections[$selected_id]['host'] = $_POST['host'];
111                 $db_connections[$selected_id]['dbuser'] = $_POST['dbuser'];
112                 $db_connections[$selected_id]['dbpassword'] = $_POST['dbpassword'];
113                 $db_connections[$selected_id]['dbname'] = $_POST['dbname'];
114                 if (is_numeric($_POST['tbpref']))
115                 {
116                         $db_connections[$selected_id]['tbpref'] = $_POST['tbpref'] == 1 ?
117                           $tb_pref_counter."_" : '';
118                 }
119                 else if ($_POST['tbpref'] != "")
120                         $db_connections[$selected_id]['tbpref'] = $_POST['tbpref'];
121                 else
122                         $db_connections[$selected_id]['tbpref'] = "";
123
124                 $conn = $db_connections[$selected_id];
125                 if (($db = db_create_db($conn)) == 0)
126                 {
127                         display_error(_("Error creating Database: ") . $conn['dbname'] . _(", Please create it manually"));
128                         $error = true;
129                 } else {
130                         if (!db_import($path_to_root.'/sql/'.get_post('coa'), $conn, $selected_id)) {
131                                 display_error(_('Cannot create new company due to bugs in sql file.'));
132                                 $error = true;
133                         } 
134                         else
135                         {
136                                 if (!isset($_POST['admpassword']) || $_POST['admpassword'] == "")
137                                         $_POST['admpassword'] = "password";
138                                 update_admin_password($conn, md5($_POST['admpassword']));
139                         }       
140                 }
141                 set_global_connection();
142                 if ($error) {
143                         remove_connection($selected_id);
144                         return false;
145                 }
146         }
147         $error = write_config_db($new);
148         if ($error == -1)
149                 display_error(_("Cannot open the configuration file - ") . $path_to_root . "/config_db.php");
150         else if ($error == -2)
151                 display_error(_("Cannot write to the configuration file - ") . $path_to_root . "/config_db.php");
152         else if ($error == -3)
153                 display_error(_("The configuration file ") . $path_to_root . "/config_db.php" . _(" is not writable. Change its permissions so it is, then re-run the operation."));
154         if ($error != 0)
155         {
156                 return false;
157         }
158
159         if ($new)
160         {
161                 create_comp_dirs(company_path($selected_id), $comp_subdirs);
162         }
163         $exts = get_company_extensions();
164         write_extensions($exts, $selected_id);
165         display_notification($new ? _('New company has been created.') : _('Company has been updated.'));
166         return true;
167 }
168
169 //---------------------------------------------------------------------------------------------
170
171 function handle_delete()
172 {
173         global $def_coy, $db_connections, $comp_subdirs, $path_to_root;
174
175         $id = (int)$_GET['id'];
176
177         // First make sure all company directories from the one under removal are writable. 
178         // Without this after operation we end up with changed per-company owners!
179         for($i = $id; $i < count($db_connections); $i++) {
180                         $comp_path = company_path($i);
181                 if (!is_dir($comp_path) || !is_writable($comp_path)) {
182                         display_error(_('Broken company subdirectories system. You have to remove this company manually.'));
183                         return;
184                 }
185         }
186         // make sure config file is writable
187         if (!is_writeable($path_to_root . "/config_db.php"))
188         {
189                 display_error(_("The configuration file ") . $path_to_root . "/config_db.php" . _(" is not writable. Change its permissions so it is, then re-run the operation."));
190                 return;
191         }
192         // rename directory to temporary name to ensure all
193         // other subdirectories will have right owners even after
194         // unsuccessfull removal.
195         $cdir = company_path($id);
196         $tmpname  = company_path('/old_'.$id);
197         if (!@rename($cdir, $tmpname)) {
198                 display_error(_('Cannot rename subdirectory to temporary name.'));
199                 return;
200         }
201         // 'shift' company directories names
202         for ($i = $id+1; $i < count($db_connections); $i++) {
203                 if (!rename(company_path($i), company_path($i-1))) {
204                         display_error(_("Cannot rename company subdirectory"));
205                         return;
206                 }
207         }
208         $err = remove_connection($id);
209         if ($err == 0)
210                 display_error(_("Error removing Database: ") . $dbase . _(", please remove it manually"));
211
212         if ($def_coy == $id)
213                 $def_coy = 0;
214         $error = write_config_db();
215         if ($error == -1)
216                 display_error(_("Cannot open the configuration file - ") . $path_to_root . "/config_db.php");
217         else if ($error == -2)
218                 display_error(_("Cannot write to the configuration file - ") . $path_to_root . "/config_db.php");
219         else if ($error == -3)
220                 display_error(_("The configuration file ") . $path_to_root . "/config_db.php" . _(" is not writable. Change its permissions so it is, then re-run the operation."));
221         if ($error != 0) {
222                 @rename($tmpname, $cdir);
223                 return;
224         }
225         // finally remove renamed company directory
226         @flush_dir($tmpname, true);
227         if (!@rmdir($tmpname))
228         {
229                 display_error(_("Cannot remove temporary renamed company data directory ") . $tmpname);
230                 return;
231         }
232         display_notification(_("Selected company has been deleted"));
233 }
234
235 //---------------------------------------------------------------------------------------------
236
237 function display_companies()
238 {
239         global $def_coy, $db_connections;
240
241         $coyno = $_SESSION["wa_current_user"]->company;
242
243         echo "
244                 <script type='text/javascript'>
245                 function deleteCompany(id, name) {
246                         if (!confirm('" . _("Are you sure you want to delete company no. ") . "'+id+' '+name+'?'))
247                                 return
248                         document.location.replace('create_coy.php?c=df&id='+id)
249                 }
250                 </script>";
251         start_table(TABLESTYLE);
252
253         $th = array(_("Company"), _("Database Host"), _("Database User"),
254                 _("Database Name"), _("Table Pref"), _("Default"), "", "");
255         table_header($th);
256
257         $k=0;
258         $conn = $db_connections;
259         $n = count($conn);
260         for ($i = 0; $i < $n; $i++)
261         {
262                 if ($i == $def_coy)
263                         $what = _("Yes");
264                 else
265                         $what = _("No");
266                 if ($i == $coyno)
267                 start_row("class='stockmankobg'");
268         else
269                 alt_table_row_color($k);
270
271                 label_cell($conn[$i]['name']);
272                 label_cell($conn[$i]['host']);
273                 label_cell($conn[$i]['dbuser']);
274                 label_cell($conn[$i]['dbname']);
275                 label_cell($conn[$i]['tbpref']);
276                 label_cell($what);
277                 $edit = _("Edit");
278                 $delete = _("Delete");
279                 if (user_graphic_links())
280                 {
281                         $edit = set_icon(ICON_EDIT, $edit);
282                         $delete = set_icon(ICON_DELETE, $delete);
283                 }
284         label_cell("<a href='" . $_SERVER['PHP_SELF']. "?selected_id=$i'>$edit</a>");
285         $name = "\"".$conn[$i]['name']."\"";
286                 label_cell( $i == $coyno ? '' :
287                         "<a href='javascript:deleteCompany($i, $name)'>$delete</a>");
288                 end_row();
289         }
290
291         end_table();
292     display_note(_("The marked company is the current company which cannot be deleted."), 0, 0, "class='currentfg'");
293     display_note(_("If no Admin Password is entered, the new Admin Password will be '<b>password</b>' by default "), 1, 0, "class='currentfg'");
294 }
295
296 //---------------------------------------------------------------------------------------------
297
298 function display_company_edit($selected_id)
299 {
300         global $def_coy, $db_connections, $tb_pref_counter;
301
302         start_form();
303
304         start_table(TABLESTYLE2);
305
306         if ($selected_id != -1)
307         {
308                 $conn = $db_connections[$selected_id];
309                 $_POST['name'] = $conn['name'];
310                 $_POST['host']  = $conn['host'];
311                 $_POST['dbuser']  = $conn['dbuser'];
312                 $_POST['dbpassword']  = $conn['dbpassword'];
313                 $_POST['dbname']  = $conn['dbname'];
314                 $_POST['tbpref']  = $conn['tbpref'];
315                 if ($selected_id == $def_coy)
316                         $_POST['def'] = true;
317                 else
318                         $_POST['def'] = false;
319                 $_POST['dbcreate']  = false;
320                 hidden('selected_id', $selected_id);
321                 hidden('tbpref', $_POST['tbpref']);
322                 hidden('dbpassword', $_POST['dbpassword']);
323         }
324         else
325         {
326                 $_POST['tbpref'] = $tb_pref_counter."_";
327                 // Insert the current settings as default
328                 $conn = $db_connections[user_company()];
329                 $_POST['name'] = '';
330                 $_POST['host']  = $conn['host'];
331                 $_POST['dbuser']  = $conn['dbuser'];
332                 $_POST['dbpassword']  = $conn['dbpassword'];
333                 $_POST['dbname']  = $conn['dbname'];
334         }
335
336         text_row_ex(_("Company"), 'name', 50);
337
338         if ($selected_id == -1)
339         {
340                 text_row_ex(_("Host"), 'host', 30, 60);
341                 text_row_ex(_("Database User"), 'dbuser', 30);
342                 text_row_ex(_("Database Password"), 'dbpassword', 30);
343                 text_row_ex(_("Database Name"), 'dbname', 30);
344                 yesno_list_row(_("Table Pref"), 'tbpref', 1, $_POST['tbpref'], _("None"), false);
345         } else {
346                 label_row(_("Host"), $_POST['host']);
347                 label_row(_("Database User"), $_POST['dbuser']);
348                 label_row(_("Database Name"), $_POST['dbname']);
349                 label_row(_("Table Pref"), $_POST['tbpref']);
350         }
351         yesno_list_row(_("Default"), 'def', null, "", "", false);
352
353         if ($selected_id == -1)
354         {
355                 coa_list_row(_("Database Script"), 'coa');
356                 text_row_ex(_("New script Admin Password"), 'admpassword', 20);
357         }
358         end_table(1);
359
360         submit_center('save', _("Save"));
361
362         end_form();
363 }
364
365
366 //---------------------------------------------------------------------------------------------
367
368 if (isset($_GET['c']) && $_GET['c'] == 'df') {
369         handle_delete();
370         $selected_id = -1;
371 }
372
373 if (get_post('save')) {
374         if (handle_submit())
375                 $selected_id = -1;
376 }
377
378 //---------------------------------------------------------------------------------------------
379
380 display_companies();
381
382 hyperlink_no_params($_SERVER['PHP_SELF'], _("Create a new company"));
383
384 display_company_edit($selected_id);
385
386 //---------------------------------------------------------------------------------------------
387 end_page();
388
389 ?>