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