ab34702a6310a335f7122edaa71f813aa35699c7
[kivitendo-erp.git] / bin / mozilla / admin.pl
1 #=====================================================================
2 # LX-Office ERP
3 # Copyright (C) 2004
4 # Based on SQL-Ledger Version 2.1.9
5 # Web http://www.lx-office.org
6 #
7 #=====================================================================
8 # SQL-Ledger Accounting
9 # Copyright (c) 2002
10 #
11 #  Author: Dieter Simader
12 #   Email: dsimader@sql-ledger.org
13 #     Web: http://www.sql-ledger.org
14 #
15 #
16 # This program is free software; you can redistribute it and/or modify
17 # it under the terms of the GNU General Public License as published by
18 # the Free Software Foundation; either version 2 of the License, or
19 # (at your option) any later version.
20 #
21 # This program is distributed in the hope that it will be useful,
22 # but WITHOUT ANY WARRANTY; without even the implied warranty of
23 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
24 # GNU General Public License for more details.
25 # You should have received a copy of the GNU General Public License
26 # along with this program; if not, write to the Free Software
27 # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
28 #======================================================================
29 #
30 # setup module
31 # add/edit/delete users
32 #
33 #======================================================================
34
35 use DBI;
36 use CGI;
37 use English qw(-no_match_vars);
38 use Fcntl;
39 use File::Copy;
40 use IO::File;
41 use POSIX qw(strftime);
42 use Sys::Hostname;
43
44 use SL::Auth;
45 use SL::Form;
46 use SL::Mailer;
47 use SL::User;
48 use SL::Common;
49 use SL::Inifile;
50 use SL::DBUpgrade2;
51 use SL::DBUtils;
52
53 require "bin/mozilla/common.pl";
54 require "bin/mozilla/admin_groups.pl";
55
56 use strict;
57
58 our $cgi;
59 our $form;
60 our $locale;
61 our $auth;
62
63 sub run {
64   $::lxdebug->enter_sub;
65   my $session_result = shift;
66
67   $cgi    = $::cgi;
68   $form   = $::form;
69   $locale = $::locale;
70   $auth   = $::auth;
71
72   $::auth->set_session_value('rpw', $::form->{rpw}) if $session_result == SL::Auth->SESSION_OK;
73
74   $form->{stylesheet} = "lx-office-erp.css";
75   $form->{favicon}    = "favicon.ico";
76
77   if ($form->{action}) {
78     if ($auth->authenticate_root($form->{rpw}, 0) != $auth->OK()) {
79       $form->{error_message} = $locale->text('Incorrect Password!');
80       adminlogin();
81     } else {
82       $auth->create_or_refresh_session() if ($auth->session_tables_present());
83       call_sub($locale->findsub($form->{action}));
84     }
85   } elsif ($auth->authenticate_root($form->{rpw}, 0) == $auth->OK()) {
86
87     $auth->create_or_refresh_session() if ($auth->session_tables_present());
88
89     login();
90   } else {
91     # if there are no drivers bail out
92     $form->error($locale->text('No Database Drivers available!'))
93       unless (User->dbdrivers);
94
95     adminlogin();
96   }
97   $::lxdebug->leave_sub;
98 }
99
100 sub adminlogin {
101   my $form   = $main::form;
102   my $locale = $main::locale;
103
104   $form->{title} = qq|Lx-Office ERP $form->{version} | . $locale->text('Administration');
105
106   $form->header();
107   print $form->parse_html_template('admin/adminlogin');
108 }
109
110 sub login {
111   check_auth_db_and_tables();
112   list_users();
113 }
114
115 sub logout {
116   $main::auth->destroy_session();
117   adminlogin();
118 }
119
120 sub check_auth_db_and_tables {
121   my $form   = $main::form;
122   my $locale = $main::locale;
123
124   my %params;
125
126   map { $params{"db_${_}"} = $main::auth->{DB_config}->{$_} } keys %{ $auth->{DB_config} };
127
128   if (!$main::auth->check_database()) {
129     $form->{title} = $locale->text('Authentification database creation');
130     $form->header();
131     print $form->parse_html_template('admin/check_auth_database', \%params);
132
133     ::end_of_request();
134   }
135
136   if (!$main::auth->check_tables()) {
137     $form->{title} = $locale->text('Authentification tables creation');
138     $form->header();
139     print $form->parse_html_template('admin/check_auth_tables', \%params);
140
141     ::end_of_request();
142   }
143
144   if (-f $main::memberfile) {
145     my $memberdir = "";
146
147     if ($main::memberfile =~ m|^.*/|) {
148       $memberdir = $&;
149     }
150
151     my $backupdir = "${memberdir}member-file-migration";
152
153     $form->{title} = $locale->text('User data migration');
154     $form->header();
155     print $form->parse_html_template('admin/user_migration', { 'memberfile' => $main::memberfile,
156                                                                'backupdir'  => $backupdir });
157
158     ::end_of_request();
159   }
160 }
161
162 sub create_auth_db {
163   my $form = $main::form;
164
165   $main::auth->create_database('superuser'          => $form->{db_superuser},
166                                'superuser_password' => $form->{db_superuser_password},
167                                'template'           => $form->{db_template});
168   login();
169 }
170
171 sub create_auth_tables {
172   my $form   = $main::form;
173   my $locale = $main::locale;
174
175   $main::auth->create_tables();
176   $main::auth->set_session_value('rpw', $form->{rpw});
177   $main::auth->create_or_refresh_session();
178
179   if (!-f $main::memberfile) {
180     # New installation -- create a standard group with full access
181     my %members;
182     my $group = {
183       'name'        => $locale->text('Full Access'),
184       'description' => $locale->text('Full access to all functions'),
185       'rights'      => { map { $_ => 1 } SL::Auth::all_rights() },
186       'members'     => [ map { $_->{id} } values %members ],
187     };
188
189     $main::auth->save_group($group);
190   }
191
192   login();
193 }
194
195 sub migrate_users {
196   $main::lxdebug->enter_sub();
197
198   my $form      = $main::form;
199   my $locale    = $main::locale;
200
201   my $memberdir = "";
202
203   if ($main::memberfile =~ m|^.*/|) {
204     $memberdir = $&;
205   }
206
207   my $backupdir = "${memberdir}member-file-migration";
208
209   if (! -d $backupdir && !mkdir $backupdir, 0700) {
210     $form->error(sprintf($locale->text('The directory "%s" could not be created:\n%s'), $backupdir, $!));
211   }
212
213   copy $main::memberfile, "users/member-file-migration/members";
214
215   my $in = IO::File->new($main::memberfile, "r");
216
217   $form->error($locale->text('Could not open the old memberfile.')) if (!$in);
218
219   my (%members, $login);
220
221   while (<$in>) {
222     chomp;
223
224     next if (m/^\s*\#/);
225
226     if (m/^\[.*\]/) {
227       $login = $_;
228       $login =~ s/(\[|\])//g;
229       $login =~ s/^\s*//;
230       $login =~ s/\s*$//;
231
232       $members{$login} = { "login" => $login };
233       next;
234     }
235
236     if ($login && m/=/) {
237       my ($key, $value) = split m/\s*=\s*/, $_, 2;
238       $key   =~ s|^\s*||;
239       $value =~ s|\s*$||;
240
241       $value =~ s|\\r||g;
242       $value =~ s|\\n|\n|g;
243
244       $members{$login}->{$key} = $value;
245     }
246   }
247
248   $in->close();
249
250   delete $members{"root login"};
251
252   map { $_->{dbpasswd} = unpack 'u', $_->{dbpasswd} } values %members;
253
254   while (my ($login, $params) = each %members) {
255     $main::auth->save_user($login, %{ $params });
256     $main::auth->change_password($login, $params->{password}, 1);
257
258     my $conf_file = "${memberdir}${login}.conf";
259
260     if (-f $conf_file) {
261       copy   $conf_file, "${backupdir}/${login}.conf";
262       unlink $conf_file;
263     }
264   }
265
266   unlink $main::memberfile;
267
268   my @member_list = sort { lc $a->{login} cmp lc $b->{login} } values %members;
269
270   $form->{title} = $locale->text('User data migration');
271   $form->header();
272   print $form->parse_html_template('admin/user_migration_done', { 'MEMBERS' => \@member_list });
273
274   $main::lxdebug->leave_sub();
275 }
276
277 sub create_standard_group_ask {
278   my $form   = $main::form;
279   my $locale = $main::locale;
280
281   $form->{title} = $locale->text('Create a standard group');
282
283   $form->header();
284   print $form->parse_html_template("admin/create_standard_group_ask");
285 }
286
287 sub create_standard_group {
288   my $form    = $main::form;
289   my $locale  = $main::locale;
290
291   my %members = $main::auth->read_all_users();
292
293   my $groups  = $main::auth->read_groups();
294
295   foreach my $group (values %{$groups}) {
296     if (($form->{group_id} != $group->{id})
297         && ($form->{name} eq $group->{name})) {
298       $form->show_generic_error($locale->text("A group with that name does already exist."));
299     }
300   }
301
302   my $group = {
303     'name'        => $locale->text('Full Access'),
304     'description' => $locale->text('Full access to all functions'),
305     'rights'      => { map { $_ => 1 } SL::Auth::all_rights() },
306     'members'     => [ map { $_->{id} } values %members ],
307   };
308
309   $main::auth->save_group($group);
310
311   user_migration_complete(1);
312 }
313
314 sub dont_create_standard_group {
315   user_migration_complete(0);
316 }
317
318 sub user_migration_complete {
319   my $standard_group_created = shift;
320
321   my $form                   = $main::form;
322   my $locale                 = $main::locale;
323
324   $form->{title} = $locale->text('User migration complete');
325   $form->header();
326
327   print $form->parse_html_template('admin/user_migration_complete', { 'standard_group_created' => $standard_group_created });
328 }
329
330 sub list_users {
331   my $form    = $main::form;
332   my $locale  = $main::locale;
333
334   my %members = $main::auth->read_all_users();
335
336   delete $members{"root login"};
337
338   map { $_->{templates} =~ s|.*/||; } values %members;
339
340   $form->{title}   = "Lx-Office ERP " . $locale->text('Administration');
341   $form->{LOCKED}  = -e "$main::userspath/nologin";
342   $form->{MEMBERS} = [ @members{sort { lc $a cmp lc $b } keys %members} ];
343
344   $form->header();
345   print $form->parse_html_template("admin/list_users");
346 }
347
348 sub add_user {
349   my $form         = $main::form;
350   my $locale       = $main::locale;
351
352   $form->{title}   = "Lx-Office ERP " . $locale->text('Administration') . " / " . $locale->text('Add User');
353
354   my $myconfig     = {
355     "vclimit"      => 200,
356     "countrycode"  => "de",
357     "numberformat" => "1.000,00",
358     "dateformat"   => "dd.mm.yy",
359     "stylesheet"   => "lx-office-erp.css",
360     "menustyle"    => "v3",
361   };
362
363   edit_user_form($myconfig);
364 }
365
366 sub edit_user {
367   my $form       = $main::form;
368   my $locale     = $main::locale;
369
370   $form->{title} = "Lx-Office ERP " . $locale->text('Administration') . " / " . $locale->text('Edit User');
371   $form->{edit}  = 1;
372
373   $form->isblank("login", $locale->text("The login is missing."));
374
375   # get user
376   my $myconfig = new User($form->{login});
377
378   # strip basedir from templates directory
379   $myconfig->{templates} =~ s|.*/||;
380
381   edit_user_form($myconfig);
382 }
383
384 sub edit_user_form {
385   my ($myconfig) = @_;
386
387   my $form       = $main::form;
388   my $locale     = $main::locale;
389
390   my @valid_dateformats = qw(mm-dd-yy mm/dd/yy dd-mm-yy dd/mm/yy dd.mm.yy yyyy-mm-dd);
391   $form->{ALL_DATEFORMATS} = [ map { { "format" => $_, "selected" => $_ eq $myconfig->{dateformat} } } @valid_dateformats ];
392
393   my @valid_numberformats = ('1,000.00', '1000.00', '1.000,00', '1000,00');
394   $form->{ALL_NUMBERFORMATS} = [ map { { "format" => $_, "selected" => $_ eq $myconfig->{numberformat} } } @valid_numberformats ];
395
396   my %countrycodes = User->country_codes;
397   $form->{ALL_COUNTRYCODES} = [];
398   foreach my $countrycode (sort { $countrycodes{$a} cmp $countrycodes{$b} } keys %countrycodes) {
399     push @{ $form->{ALL_COUNTRYCODES} }, { "value"    => $countrycode,
400                                            "name"     => $countrycodes{$countrycode},
401                                            "selected" => $countrycode eq $myconfig->{countrycode} };
402   }
403
404   # is there a templates basedir
405   if (!-d "$main::templates") {
406     $form->error(sprintf($locale->text("The directory %s does not exist."), $main::templates));
407   }
408
409   opendir TEMPLATEDIR, "$main::templates/." or $form->error("$main::templates : $ERRNO");
410   my @all     = readdir(TEMPLATEDIR);
411   my @alldir  = sort grep { -d "$main::templates/$_" && !/^\.\.?$/ } @all;
412   my @allhtml = sort grep { -f "$main::templates/$_" && /\.html$/ } @all;
413   closedir TEMPLATEDIR;
414
415   @alldir = grep !/\.(html|tex|sty|odt|xml|txb)$/, @alldir;
416   @alldir = grep !/^(webpages|\.svn)$/, @alldir;
417
418   @allhtml = reverse grep !/Default/, @allhtml;
419   push @allhtml, 'Default';
420   @allhtml = reverse @allhtml;
421
422   $form->{ALL_TEMPLATES} = [ map { { "name", => $_, "selected" => $_ eq $myconfig->{templates} } } @alldir ];
423
424   my $lastitem = $allhtml[0];
425   $lastitem =~ s/-.*//g;
426   $form->{ALL_MASTER_TEMPLATES} = [ { "name" => $lastitem, "selected" => $lastitem eq "German" } ];
427   foreach my $item (@allhtml) {
428     $item =~ s/-.*//g;
429     next if ($item eq $lastitem);
430
431     push @{ $form->{ALL_MASTER_TEMPLATES} }, { "name" => $item, "selected" => $item eq "German" };
432     $lastitem = $item;
433   }
434
435   # css dir has styles that are not intended as general layouts.
436   # reverting to hardcoded list
437   $form->{ALL_STYLESHEETS} = [ map { { "name" => $_, "selected" => $_ eq $myconfig->{stylesheet} } } qw(lx-office-erp.css Win2000.css) ];
438
439   $form->{"menustyle_" . $myconfig->{menustyle} } = 1;
440
441   map { $form->{"myc_${_}"} = $myconfig->{$_} } keys %{ $myconfig };
442
443   my $groups = [];
444
445   if ($form->{edit}) {
446     my $user_id    = $main::auth->get_user_id($form->{login});
447     my $all_groups = $main::auth->read_groups();
448
449     foreach my $group (values %{ $all_groups }) {
450       push @{ $groups }, $group if (grep { $user_id == $_ } @{ $group->{members} });
451     }
452
453     $groups = [ sort { lc $a->{name} cmp lc $b->{name} } @{ $groups } ];
454   }
455
456   $form->{CAN_CHANGE_PASSWORD} = $main::auth->can_change_password();
457
458   $form->header();
459   print $form->parse_html_template("admin/edit_user", { 'GROUPS' => $groups });
460 }
461
462 sub save_user {
463   my $form          = $main::form;
464   my $locale        = $main::locale;
465
466   $form->{dbdriver} = 'Pg';
467
468   # no spaces allowed in login name
469   $form->{login} =~ s|\s||g;
470   $form->isblank("login", $locale->text('Login name missing!'));
471
472   # check for duplicates
473   if (!$form->{edit}) {
474     my %members = $main::auth->read_all_users();
475     if ($members{$form->{login}}) {
476       $form->show_generic_error($locale->text('Another user with the login #1 does already exist.', $form->{login}), 'back_button' => 1);
477     }
478   }
479
480   # no spaces allowed in directories
481   ($form->{newtemplates}) = split / /, $form->{newtemplates};
482
483   if ($form->{newtemplates}) {
484     $form->{templates} = $form->{newtemplates};
485   } else {
486     $form->{templates} =
487       ($form->{usetemplates}) ? $form->{usetemplates} : $form->{login};
488   }
489
490   # is there a basedir
491   if (!-d "$main::templates") {
492     $form->error(sprintf($locale->text("The directory %s does not exist."), $main::templates));
493   }
494
495   # add base directory to $form->{templates}
496   $form->{templates} =~ s|.*/||;
497   $form->{templates} =  "$main::templates/$form->{templates}";
498
499   my $myconfig = new User($form->{login});
500
501   $form->isblank("dbname", $locale->text('Dataset missing!'));
502   $form->isblank("dbuser", $locale->text('Database User missing!'));
503
504   foreach my $item (keys %{$form}) {
505     $myconfig->{$item} = $form->{$item};
506   }
507
508   delete $myconfig->{stylesheet};
509   if ($form->{userstylesheet}) {
510     $myconfig->{stylesheet} = $form->{userstylesheet};
511   }
512
513   $myconfig->save_member();
514
515   if ($main::auth->can_change_password()
516       && defined $form->{new_password}
517       && ($form->{new_password} ne '********')) {
518     $main::auth->change_password($form->{login}, $form->{new_password});
519   }
520
521   $form->{templates}       =~ s|.*/||;
522   $form->{templates}       =  "$main::templates/$form->{templates}";
523   $form->{mastertemplates} =~ s|.*/||;
524
525   # create user template directory and copy master files
526   if (!-d "$form->{templates}") {
527     umask(002);
528
529     if (mkdir "$form->{templates}", oct("771")) {
530
531       umask(007);
532
533       # copy templates to the directory
534       opendir TEMPLATEDIR, "$main::templates/." or $form->error("$main::templates : $ERRNO");
535       my @templates = grep /$form->{mastertemplates}.*?\.(html|tex|sty|odt|xml|txb)$/,
536         readdir TEMPLATEDIR;
537       closedir TEMPLATEDIR;
538
539       foreach my $file (@templates) {
540         open(TEMP, "$main::templates/$file")
541           or $form->error("$main::templates/$file : $ERRNO");
542
543         $file =~ s/\Q$form->{mastertemplates}\E-//;
544         open(NEW, ">$form->{templates}/$file")
545           or $form->error("$form->{templates}/$file : $ERRNO");
546
547         while (my $line = <TEMP>) {
548           print NEW $line;
549         }
550         close(TEMP);
551         close(NEW);
552       }
553     } else {
554       $form->error("$ERRNO: $form->{templates}");
555     }
556   }
557
558   # Add new user to his groups.
559   if (ref $form->{new_user_group_ids} eq 'ARRAY') {
560     my $all_groups = $main::auth->read_groups();
561     my %user       = $main::auth->read_user($form->{login});
562
563     foreach my $group_id (@{ $form->{new_user_group_ids} }) {
564       my $group = $all_groups->{$group_id};
565
566       next if !$group;
567
568       push @{ $group->{members} }, $user{id};
569       $main::auth->save_group($group);
570     }
571   }
572
573   $form->redirect($locale->text('User saved!'));
574
575 }
576
577 sub save_user_as_new {
578   my $form       = $main::form;
579
580   $form->{login} = $form->{new_user_login};
581   delete @{$form}{qw(edit new_user_login)};
582
583   save_user();
584 }
585
586 sub delete_user {
587   my $form      = $main::form;
588   my $locale    = $main::locale;
589
590   my %members   = $main::auth->read_all_users();
591   my $templates = $members{$form->{login}}->{templates};
592
593   $main::auth->delete_user($form->{login});
594
595   if ($templates) {
596     my $templates_in_use = 0;
597
598     foreach my $login (keys %members) {
599       next if $form->{login} eq $login;
600       next if $members{$login}->{templates} ne $templates;
601       $templates_in_use = 1;
602       last;
603     }
604
605     if (!$templates_in_use && -d $templates) {
606       unlink <$templates/*>;
607       rmdir $templates;
608     }
609   }
610
611   $form->redirect($locale->text('User deleted!'));
612
613 }
614
615 sub login_name {
616   my $login = shift;
617
618   $login =~ s/\[\]//g;
619   return ($login) ? $login : undef;
620
621 }
622
623 sub get_value {
624   my $line           = shift;
625   my ($null, $value) = split(/=/, $line, 2);
626
627   # remove comments
628   $value =~ s/\s#.*//g;
629
630   # remove any trailing whitespace
631   $value =~ s/^\s*(.*?)\s*$/$1/;
632
633   $value;
634 }
635
636 sub pg_database_administration {
637   my $form = $main::form;
638
639   $form->{dbdriver} = 'Pg';
640   dbselect_source();
641
642 }
643
644 sub dbselect_source {
645   my $form           = $main::form;
646   my $locale         = $main::locale;
647
648   $form->{dbport}    = '5432';
649   $form->{dbuser}    = 'postgres';
650   $form->{dbdefault} = 'template1';
651   $form->{dbhost}    = 'localhost';
652
653   $form->{title}     = "Lx-Office ERP / " . $locale->text('Database Administration');
654
655   # Intentionnaly disabled unless fixed to work with the authentication DB.
656   $form->{ALLOW_DBBACKUP} = 0; # "$pg_dump_exe" ne "DISABLED";
657
658   $form->header();
659   print $form->parse_html_template("admin/dbadmin");
660 }
661
662 sub test_db_connection {
663   my $form   = $main::form;
664   my $locale = $main::locale;
665
666   $form->{dbdriver} = 'Pg';
667   User::dbconnect_vars($form, $form->{dbname});
668
669   my $dbh = DBI->connect($form->{dbconnect}, $form->{dbuser}, $form->{dbpasswd});
670
671   $form->{connection_ok} = $dbh ? 1 : 0;
672   $form->{errstr}        = $DBI::errstr;
673
674   $dbh->disconnect() if ($dbh);
675
676   $form->{title} = $locale->text('Database Connection Test');
677   $form->header();
678   print $form->parse_html_template("admin/test_db_connection");
679 }
680
681 sub continue {
682   call_sub($main::form->{"nextsub"});
683 }
684
685 sub update_dataset {
686   my $form              = $main::form;
687   my $locale            = $main::locale;
688
689   $form->{title}        = "Lx-Office ERP " . $locale->text('Database Administration') . " / " . $locale->text('Update Dataset');
690
691   my @need_updates      = User->dbneedsupdate($form);
692   $form->{NEED_UPDATES} = \@need_updates;
693   $form->{ALL_UPDATED}  = !scalar @need_updates;
694
695   $form->header();
696   print $form->parse_html_template("admin/update_dataset");
697 }
698
699 sub dbupdate {
700   my $form            = $main::form;
701   my $locale          = $main::locale;
702
703   $form->{stylesheet} = "lx-office-erp.css";
704   $form->{title}      = $locale->text("Dataset upgrade");
705   $form->header();
706
707   my $rowcount           = $form->{rowcount} * 1;
708   my @update_rows        = grep { $form->{"update_$_"} } (1 .. $rowcount);
709   $form->{NOTHING_TO_DO} = !scalar @update_rows;
710   my $saved_form         = save_form();
711
712   $| = 1;
713
714   print $form->parse_html_template("admin/dbupgrade_all_header");
715
716   foreach my $i (@update_rows) {
717     restore_form($saved_form);
718
719     map { $form->{$_} = $form->{"${_}_${i}"} } qw(dbname dbdriver dbhost dbport dbuser dbpasswd);
720
721     my $controls = parse_dbupdate_controls($form, $form->{dbdriver});
722
723     print $form->parse_html_template("admin/dbupgrade_header");
724
725     $form->{dbupdate}        = $form->{dbname};
726     $form->{$form->{dbname}} = 1;
727
728     User->dbupdate($form);
729     User->dbupdate2($form, $controls);
730
731     print $form->parse_html_template("admin/dbupgrade_footer");
732   }
733
734   print $form->parse_html_template("admin/dbupgrade_all_done");
735 }
736
737 sub create_dataset {
738   my $form           = $main::form;
739   my $locale         = $main::locale;
740
741   $form->{dbsources} = join " ", map { "[${_}]" } sort User->dbsources($form);
742
743   $form->{CHARTS}    = [];
744
745   opendir SQLDIR, "sql/." or $form->error($ERRNO);
746   foreach my $item (sort grep /-chart\.sql\z/, readdir SQLDIR) {
747     next if ($item eq 'Default-chart.sql');
748     $item =~ s/-chart\.sql//;
749     push @{ $form->{CHARTS} }, { "name"     => $item,
750                                  "selected" => $item eq "Germany-DATEV-SKR03EU" };
751   }
752   closedir SQLDIR;
753
754   my $default_charset = $main::dbcharset;
755   $default_charset ||= Common::DEFAULT_CHARSET;
756
757   my $cluster_encoding = User->dbclusterencoding($form);
758   if ($cluster_encoding && ($cluster_encoding =~ m/^(?:UTF-?8|UNICODE)$/i)) {
759     if ($main::dbcharset !~ m/^UTF-?8$/i) {
760       $form->show_generic_error($locale->text('The selected  PostgreSQL installation uses UTF-8 as its encoding. ' .
761                                               'Therefore you have to configure Lx-Office to use UTF-8 as well.'),
762                                 'back_button' => 1);
763     }
764
765     $form->{FORCE_DBENCODING} = 'UNICODE';
766
767   } else {
768     $form->{DBENCODINGS} = [];
769
770     foreach my $encoding (@Common::db_encodings) {
771       push @{ $form->{DBENCODINGS} }, { "dbencoding" => $encoding->{dbencoding},
772                                         "label"      => $encoding->{label},
773                                         "selected"   => $encoding->{charset} eq $default_charset };
774     }
775   }
776
777   $form->{title} = "Lx-Office ERP " . $locale->text('Database Administration') . " / " . $locale->text('Create Dataset');
778
779   $form->header();
780   print $form->parse_html_template("admin/create_dataset");
781 }
782
783 sub dbcreate {
784   my $form   = $main::form;
785   my $locale = $main::locale;
786
787   $form->isblank("db", $locale->text('Dataset missing!'));
788
789   User->dbcreate(\%$form);
790
791   $form->{title} = "Lx-Office ERP " . $locale->text('Database Administration') . " / " . $locale->text('Create Dataset');
792
793   $form->header();
794   print $form->parse_html_template("admin/dbcreate");
795 }
796
797 sub delete_dataset {
798   my $form      = $main::form;
799   my $locale    = $main::locale;
800
801   my @dbsources = User->dbsources_unused($form);
802   $form->error($locale->text('Nothing to delete!')) unless @dbsources;
803
804   $form->{title}     = "Lx-Office ERP " . $locale->text('Database Administration') . " / " . $locale->text('Delete Dataset');
805   $form->{DBSOURCES} = [ map { { "name", $_ } } sort @dbsources ];
806
807   $form->header();
808   print $form->parse_html_template("admin/delete_dataset");
809 }
810
811 sub dbdelete {
812   my $form   = $main::form;
813   my $locale = $main::locale;
814
815   if (!$form->{db}) {
816     $form->error($locale->text('No Dataset selected!'));
817   }
818
819   User->dbdelete(\%$form);
820
821   $form->{title} = "Lx-Office ERP " . $locale->text('Database Administration') . " / " . $locale->text('Delete Dataset');
822   $form->header();
823   print $form->parse_html_template("admin/dbdelete");
824 }
825
826 sub backup_dataset {
827   my $form       = $main::form;
828   my $locale     = $main::locale;
829
830   $form->{title} = "Lx-Office ERP " . $locale->text('Database Administration') . " / " . $locale->text('Backup Dataset');
831
832   if ("$main::pg_dump_exe" eq "DISABLED") {
833     $form->error($locale->text('Database backups and restorations are disabled in lx-erp.conf.'));
834   }
835
836   my @dbsources         = sort User->dbsources($form);
837   $form->{DATABASES}    = [ map { { "dbname" => $_ } } @dbsources ];
838   $form->{NO_DATABASES} = !scalar @dbsources;
839
840   my $username  = getpwuid $UID || "unknown-user";
841   my $hostname  = hostname() || "unknown-host";
842   $form->{from} = "Lx-Office Admin <${username}\@${hostname}>";
843
844   $form->header();
845   print $form->parse_html_template("admin/backup_dataset");
846 }
847
848 sub backup_dataset_start {
849   my $form       = $main::form;
850   my $locale     = $main::locale;
851
852   $form->{title} = "Lx-Office ERP " . $locale->text('Database Administration') . " / " . $locale->text('Backup Dataset');
853
854   $main::pg_dump_exe ||= "pg_dump";
855
856   if ("$main::pg_dump_exe" eq "DISABLED") {
857     $form->error($locale->text('Database backups and restorations are disabled in lx-erp.conf.'));
858   }
859
860   $form->isblank("dbname", $locale->text('The dataset name is missing.'));
861   $form->isblank("to", $locale->text('The email address is missing.')) if $form->{destination} eq "email";
862
863   my $tmpdir = "/tmp/lx_office_backup_" . Common->unique_id();
864   mkdir $tmpdir, 0700 || $form->error($locale->text('A temporary directory could not be created:') . " $ERRNO");
865
866   my $pgpass = IO::File->new("${tmpdir}/.pgpass", O_WRONLY | O_CREAT, 0600);
867
868   if (!$pgpass) {
869     unlink $tmpdir;
870     $form->error($locale->text('A temporary file could not be created:') . " $ERRNO");
871   }
872
873   print $pgpass "$form->{dbhost}:$form->{dbport}:$form->{dbname}:$form->{dbuser}:$form->{dbpasswd}\n";
874   $pgpass->close();
875
876   $ENV{HOME} = $tmpdir;
877
878   my @args = ("-Ft", "-c", "-o", "-h", $form->{dbhost}, "-U", $form->{dbuser});
879   push @args, ("-p", $form->{dbport}) if ($form->{dbport});
880   push @args, $form->{dbname};
881
882   my $cmd  = "$main::pg_dump_exe " . join(" ", map { s/\\/\\\\/g; s/\"/\\\"/g; $_ } @args);
883   my $name = "dataset_backup_$form->{dbname}_" . strftime("%Y%m%d", localtime()) . ".tar";
884
885   if ($form->{destination} ne "email") {
886     my $in = IO::File->new("$cmd |");
887
888     if (!$in) {
889       unlink "${tmpdir}/.pgpass";
890       rmdir $tmpdir;
891
892       $form->error($locale->text('The pg_dump process could not be started.'));
893     }
894
895     print "content-type: application/x-tar\n";
896     print "content-disposition: attachment; filename=\"${name}\"\n\n";
897
898     while (my $line = <$in>) {
899       print $line;
900     }
901
902     $in->close();
903
904     unlink "${tmpdir}/.pgpass";
905     rmdir $tmpdir;
906
907   } else {
908     my $tmp = $tmpdir . "/dump_" . Common::unique_id();
909
910     if (system("$cmd > $tmp") != 0) {
911       unlink "${tmpdir}/.pgpass", $tmp;
912       rmdir $tmpdir;
913
914       $form->error($locale->text('The pg_dump process could not be started.'));
915     }
916
917     my $mail = new Mailer;
918
919     map { $mail->{$_} = $form->{$_} } qw(from to cc subject message);
920
921     $mail->{charset}     = $main::dbcharset ? $main::dbcharset : Common::DEFAULT_CHARSET;
922     $mail->{attachments} = [ { "filename" => $tmp, "name" => $name } ];
923     $mail->send();
924
925     unlink "${tmpdir}/.pgpass", $tmp;
926     rmdir $tmpdir;
927
928     $form->{title} = "Lx-Office ERP " . $locale->text('Database Administration') . " / " . $locale->text('Backup Dataset');
929
930     $form->header();
931     print $form->parse_html_template("admin/backup_dataset_email_done");
932   }
933 }
934
935 sub restore_dataset {
936   my $form       = $main::form;
937   my $locale     = $main::locale;
938
939   $form->{title} = "Lx-Office ERP " . $locale->text('Database Administration') . " / " . $locale->text('Restore Dataset');
940
941   if ("$main::pg_restore_exe" eq "DISABLED") {
942     $form->error($locale->text('Database backups and restorations are disabled in lx-erp.conf.'));
943   }
944
945   my $default_charset   = $main::dbcharset;
946   $default_charset    ||= Common::DEFAULT_CHARSET;
947
948   $form->{DBENCODINGS}  = [];
949
950   foreach my $encoding (@Common::db_encodings) {
951     push @{ $form->{DBENCODINGS} }, { "dbencoding" => $encoding->{dbencoding},
952                                       "label"      => $encoding->{label},
953                                       "selected"   => $encoding->{charset} eq $default_charset };
954   }
955
956   $form->header();
957   print $form->parse_html_template("admin/restore_dataset");
958 }
959
960 sub restore_dataset_start {
961   my $form       = $main::form;
962   my $locale     = $main::locale;
963
964   $form->{title} = "Lx-Office ERP " . $locale->text('Database Administration') . " / " . $locale->text('Restore Dataset');
965
966   $main::pg_restore_exe ||= "pg_restore";
967
968   if ("$main::pg_restore_exe" eq "DISABLED") {
969     $form->error($locale->text('Database backups and restorations are disabled in lx-erp.conf.'));
970   }
971
972   $form->isblank("new_dbname", $locale->text('The dataset name is missing.'));
973   $form->isblank("content", $locale->text('No backup file has been uploaded.'));
974
975   # Create temporary directories. Write the backup file contents to a temporary
976   # file. Create a .pgpass file with the username and password for the pg_restore
977   # utility.
978
979   my $tmpdir = "/tmp/lx_office_backup_" . Common->unique_id();
980   mkdir $tmpdir, 0700 || $form->error($locale->text('A temporary directory could not be created:') . " $ERRNO");
981
982   my $pgpass = IO::File->new("${tmpdir}/.pgpass", O_WRONLY | O_CREAT, 0600);
983
984   if (!$pgpass) {
985     unlink $tmpdir;
986     $form->error($locale->text('A temporary file could not be created:') . " $ERRNO");
987   }
988
989   print $pgpass "$form->{dbhost}:$form->{dbport}:$form->{new_dbname}:$form->{dbuser}:$form->{dbpasswd}\n";
990   $pgpass->close();
991
992   $ENV{HOME} = $tmpdir;
993
994   my $tmp = $tmpdir . "/dump_" . Common::unique_id();
995   my $tmpfile;
996
997   if (substr($form->{content}, 0, 2) eq "\037\213") {
998     $tmpfile = IO::File->new("| gzip -d > $tmp");
999     $tmpfile->binary();
1000
1001   } else {
1002     $tmpfile = IO::File->new($tmp, O_WRONLY | O_CREAT | O_BINARY, 0600);
1003   }
1004
1005   if (!$tmpfile) {
1006     unlink "${tmpdir}/.pgpass";
1007     rmdir $tmpdir;
1008
1009     $form->error($locale->text('A temporary file could not be created:') . " $ERRNO");
1010   }
1011
1012   print $tmpfile $form->{content};
1013   $tmpfile->close();
1014
1015   delete $form->{content};
1016
1017   # Try to connect to the database. Find out if a database with the same name exists.
1018   # If yes, then drop the existing database. Create a new one with the name and encoding
1019   # given by the user.
1020
1021   User::dbconnect_vars($form, "template1");
1022
1023   my %myconfig = map { $_ => $form->{$_} } grep /^db/, keys %{ $form };
1024   my $dbh      = $form->dbconnect(\%myconfig) || $form->dberror();
1025
1026   my ($query, $sth);
1027
1028   $form->{new_dbname} =~ s|[^a-zA-Z0-9_\-]||g;
1029
1030   $query = qq|SELECT COUNT(*) FROM pg_database WHERE datname = ?|;
1031   my ($count) = selectrow_query($form, $dbh, $query, $form->{new_dbname});
1032   if ($count) {
1033     do_query($form, $dbh, qq|DROP DATABASE $form->{new_dbname}|);
1034   }
1035
1036   my $found = 0;
1037   foreach my $item (@Common::db_encodings) {
1038     if ($item->{dbencoding} eq $form->{dbencoding}) {
1039       $found = 1;
1040       last;
1041     }
1042   }
1043   $form->{dbencoding} = "LATIN9" unless $form->{dbencoding};
1044
1045   do_query($form, $dbh, qq|CREATE DATABASE $form->{new_dbname} ENCODING ? TEMPLATE template0|, $form->{dbencoding});
1046
1047   $dbh->disconnect();
1048
1049   # Spawn pg_restore on the temporary file.
1050
1051   my @args = ("-h", $form->{dbhost}, "-U", $form->{dbuser}, "-d", $form->{new_dbname});
1052   push @args, ("-p", $form->{dbport}) if ($form->{dbport});
1053   push @args, $tmp;
1054
1055   my $cmd = "$main::pg_restore_exe " . join(" ", map { s/\\/\\\\/g; s/\"/\\\"/g; $_ } @args);
1056
1057   my $in = IO::File->new("$cmd 2>&1 |");
1058
1059   if (!$in) {
1060     unlink "${tmpdir}/.pgpass", $tmp;
1061     rmdir $tmpdir;
1062
1063     $form->error($locale->text('The pg_restore process could not be started.'));
1064   }
1065
1066   $English::AUTOFLUSH = 1;
1067
1068   $form->header();
1069   print $form->parse_html_template("admin/restore_dataset_start_header");
1070
1071   while (my $line = <$in>) {
1072     print $line;
1073   }
1074   $in->close();
1075
1076   $form->{retval} = $CHILD_ERROR >> 8;
1077   print $form->parse_html_template("admin/restore_dataset_start_footer");
1078
1079   unlink "${tmpdir}/.pgpass", $tmp;
1080   rmdir $tmpdir;
1081 }
1082
1083 sub unlock_system {
1084   my $form   = $main::form;
1085   my $locale = $main::locale;
1086
1087   unlink "$main::userspath/nologin";
1088
1089   $form->{callback} = "admin.pl?action=list_users";
1090
1091   $form->redirect($locale->text('Lockfile removed!'));
1092
1093 }
1094
1095 sub lock_system {
1096   my $form   = $main::form;
1097   my $locale = $main::locale;
1098
1099   open(FH, ">$main::userspath/nologin")
1100     or $form->error($locale->text('Cannot create Lock!'));
1101   close(FH);
1102
1103   $form->{callback} = "admin.pl?action=list_users";
1104
1105   $form->redirect($locale->text('Lockfile created!'));
1106
1107 }
1108
1109 sub yes {
1110   call_sub($main::form->{yes_nextsub});
1111 }
1112
1113 sub no {
1114   call_sub($main::form->{no_nextsub});
1115 }
1116
1117 sub add {
1118   call_sub($main::form->{add_nextsub});
1119 }
1120
1121 sub edit {
1122   my $form = $main::form;
1123
1124   $form->{edit_nextsub} ||= 'edit_user';
1125
1126   call_sub($form->{edit_nextsub});
1127 }
1128
1129 sub delete {
1130   my $form     = $main::form;
1131
1132   $form->{delete_nextsub} ||= 'delete_user';
1133
1134   call_sub($form->{delete_nextsub});
1135 }
1136
1137 sub save {
1138   my $form = $main::form;
1139
1140   $form->{save_nextsub} ||= 'save_user';
1141
1142   call_sub($form->{save_nextsub});
1143 }
1144
1145 sub back {
1146   call_sub($main::form->{back_nextsub});
1147 }
1148
1149 sub dispatcher {
1150   my $form   = $main::form;
1151   my $locale = $main::locale;
1152
1153   foreach my $action (qw(create_standard_group dont_create_standard_group
1154                          save_user delete_user save_user_as_new)) {
1155     if ($form->{"action_${action}"}) {
1156       call_sub($action);
1157       return;
1158     }
1159   }
1160
1161   call_sub($form->{default_action}) if ($form->{default_action});
1162
1163   $form->error($locale->text('No action defined.'));
1164 }
1165
1166 1;