24774db20b9a9662b25fa51efc2060fbf9253ebc
[kivitendo-erp.git] / SL / User.pm
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) 2001
10 #
11 #  Author: Dieter Simader
12 #   Email: dsimader@sql-ledger.org
13 #     Web: http://www.sql-ledger.org
14 #
15 #  Contributors:
16 #
17 # This program is free software; you can redistribute it and/or modify
18 # it under the terms of the GNU General Public License as published by
19 # the Free Software Foundation; either version 2 of the License, or
20 # (at your option) any later version.
21 #
22 # This program is distributed in the hope that it will be useful,
23 # but WITHOUT ANY WARRANTY; without even the implied warranty of
24 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
25 # GNU General Public License for more details.
26 # You should have received a copy of the GNU General Public License
27 # along with this program; if not, write to the Free Software
28 # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
29 #=====================================================================
30 #
31 # user related functions
32 #
33 #=====================================================================
34
35 package User;
36
37 sub new {
38   $main::lxdebug->enter_sub();
39
40   my ($type, $memfile, $login) = @_;
41   my $self = {};
42
43   if ($login ne "") {
44     &error("", "$memfile locked!") if (-f "${memfile}.LCK");
45
46     open(MEMBER, "$memfile") or &error("", "$memfile : $!");
47
48     while (<MEMBER>) {
49       if (/^\[$login\]/) {
50         while (<MEMBER>) {
51           last if /^\[/;
52           next if /^(#|\s)/;
53
54           # remove comments
55           s/\s#.*//g;
56
57           # remove any trailing whitespace
58           s/^\s*(.*?)\s*$/$1/;
59
60           ($key, $value) = split(/=/, $_, 2);
61
62           if (($key eq "stylesheet") && ($value eq "sql-ledger.css")) {
63             $value = "lx-office-erp.css";
64           }
65
66           $self->{$key} = $value;
67         }
68
69         $self->{login} = $login;
70
71         last;
72       }
73     }
74     close MEMBER;
75   }
76
77   $main::lxdebug->leave_sub();
78   bless $self, $type;
79 }
80
81 sub country_codes {
82   $main::lxdebug->enter_sub();
83
84   my %cc       = ();
85   my @language = ();
86
87   # scan the locale directory and read in the LANGUAGE files
88   opendir DIR, "locale";
89
90   my @dir = grep !/(^\.\.?$|\..*)/, readdir DIR;
91
92   foreach my $dir (@dir) {
93     next unless open(FH, "locale/$dir/LANGUAGE");
94     @language = <FH>;
95     close FH;
96
97     $cc{$dir} = "@language";
98   }
99
100   closedir(DIR);
101
102   $main::lxdebug->leave_sub();
103
104   return %cc;
105 }
106
107 sub login {
108   $main::lxdebug->enter_sub();
109
110   my ($self, $form, $userspath) = @_;
111
112   my $rc = -3;
113
114   if ($self->{login}) {
115
116     if ($self->{password}) {
117       if ($form->{hashed_password}) {
118         $form->{password} = $form->{hashed_password};
119       } else {
120         $form->{password} = crypt($form->{password},
121                                   substr($self->{login}, 0, 2));
122       }
123       if ($self->{password} ne $form->{password}) {
124         $main::lxdebug->leave_sub();
125         return -1;
126       }
127     }
128
129     unless (-e "$userspath/$self->{login}.conf") {
130       $self->create_config("$userspath/$self->{login}.conf");
131     }
132
133     do "$userspath/$self->{login}.conf";
134     $myconfig{dbpasswd} = unpack 'u', $myconfig{dbpasswd};
135
136     # check if database is down
137     my $dbh =
138       DBI->connect($myconfig{dbconnect}, $myconfig{dbuser},
139                    $myconfig{dbpasswd})
140       or $self->error(DBI::errstr);
141
142     # we got a connection, check the version
143     my $query = qq|SELECT version FROM defaults|;
144     my $sth   = $dbh->prepare($query);
145     $sth->execute || $form->dberror($query);
146
147     my ($dbversion) = $sth->fetchrow_array;
148     $sth->finish;
149
150     # add login to employee table if it does not exist
151     # no error check for employee table, ignore if it does not exist
152     $query = qq|SELECT e.id FROM employee e WHERE e.login = '$self->{login}'|;
153     $sth   = $dbh->prepare($query);
154     $sth->execute;
155
156     my ($login) = $sth->fetchrow_array;
157     $sth->finish;
158
159     if (!$login) {
160       $query = qq|INSERT INTO employee (login, name, workphone, role)
161                   VALUES ('$self->{login}', '$myconfig{name}',
162                   '$myconfig{tel}', 'user')|;
163       $dbh->do($query);
164     }
165     $dbh->disconnect;
166
167     $rc = 0;
168
169     if (&update_available($myconfig{"dbdriver"}, $dbversion)) {
170
171       # update the tables
172       open FH, ">$userspath/nologin" or die "
173 $!";
174
175       map { $form->{$_} = $myconfig{$_} }
176         qw(dbname dbhost dbport dbdriver dbuser dbpasswd dbconnect);
177
178       $form->{dbupdate} = "db$myconfig{dbname}";
179       $form->{ $form->{dbupdate} } = 1;
180
181       $form->{"stylesheet"} = "lx-office-erp.css";
182       $form->{"title"} = $main::locale->text("Dataset upgrade");
183       $form->header();
184       print($form->parse_html_template("dbupgrade/header",
185                                        { "dbname" => $myconfig{dbname} }));
186
187       # required for Oracle
188       $form->{dbdefault} = $sid;
189
190       # ignore HUP, QUIT in case the webserver times out
191       $SIG{HUP}  = 'IGNORE';
192       $SIG{QUIT} = 'IGNORE';
193
194       $self->dbupdate($form);
195
196       # remove lock file
197       unlink "$userspath/nologin";
198
199       print($form->parse_html_template("dbupgrade/footer"));
200
201       $rc = -2;
202
203     }
204   }
205
206   $main::lxdebug->leave_sub();
207
208   return $rc;
209 }
210
211 sub dbconnect_vars {
212   $main::lxdebug->enter_sub();
213
214   my ($form, $db) = @_;
215
216   my %dboptions = (
217         'Pg' => { 'yy-mm-dd'   => 'set DateStyle to \'ISO\'',
218                   'yyyy-mm-dd' => 'set DateStyle to \'ISO\'',
219                   'mm/dd/yy'   => 'set DateStyle to \'SQL, US\'',
220                   'mm-dd-yy'   => 'set DateStyle to \'POSTGRES, US\'',
221                   'dd/mm/yy'   => 'set DateStyle to \'SQL, EUROPEAN\'',
222                   'dd-mm-yy'   => 'set DateStyle to \'POSTGRES, EUROPEAN\'',
223                   'dd.mm.yy'   => 'set DateStyle to \'GERMAN\''
224         },
225         'Oracle' => {
226           'yy-mm-dd'   => 'ALTER SESSION SET NLS_DATE_FORMAT = \'YY-MM-DD\'',
227           'yyyy-mm-dd' => 'ALTER SESSION SET NLS_DATE_FORMAT = \'YYYY-MM-DD\'',
228           'mm/dd/yy'   => 'ALTER SESSION SET NLS_DATE_FORMAT = \'MM/DD/YY\'',
229           'mm-dd-yy'   => 'ALTER SESSION SET NLS_DATE_FORMAT = \'MM-DD-YY\'',
230           'dd/mm/yy'   => 'ALTER SESSION SET NLS_DATE_FORMAT = \'DD/MM/YY\'',
231           'dd-mm-yy'   => 'ALTER SESSION SET NLS_DATE_FORMAT = \'DD-MM-YY\'',
232           'dd.mm.yy'   => 'ALTER SESSION SET NLS_DATE_FORMAT = \'DD.MM.YY\'',
233         });
234
235   $form->{dboptions} = $dboptions{ $form->{dbdriver} }{ $form->{dateformat} };
236
237   if ($form->{dbdriver} eq 'Pg') {
238     $form->{dbconnect} = "dbi:Pg:dbname=$db";
239   }
240
241   if ($form->{dbdriver} eq 'Oracle') {
242     $form->{dbconnect} = "dbi:Oracle:sid=$form->{sid}";
243   }
244
245   if ($form->{dbhost}) {
246     $form->{dbconnect} .= ";host=$form->{dbhost}";
247   }
248   if ($form->{dbport}) {
249     $form->{dbconnect} .= ";port=$form->{dbport}";
250   }
251
252   $main::lxdebug->leave_sub();
253 }
254
255 sub dbdrivers {
256   $main::lxdebug->enter_sub();
257
258   my @drivers = DBI->available_drivers();
259
260   $main::lxdebug->leave_sub();
261
262   return (grep { /(Pg|Oracle)/ } @drivers);
263 }
264
265 sub dbsources {
266   $main::lxdebug->enter_sub();
267
268   my ($self, $form) = @_;
269
270   my @dbsources = ();
271   my ($sth, $query);
272
273   $form->{dbdefault} = $form->{dbuser} unless $form->{dbdefault};
274   $form->{sid} = $form->{dbdefault};
275   &dbconnect_vars($form, $form->{dbdefault});
276
277   my $dbh =
278     DBI->connect($form->{dbconnect}, $form->{dbuser}, $form->{dbpasswd})
279     or $form->dberror;
280
281   if ($form->{dbdriver} eq 'Pg') {
282
283     $query = qq|SELECT datname FROM pg_database WHERE NOT ((datname = 'template0') OR (datname = 'template1'))|;
284     $sth   = $dbh->prepare($query);
285     $sth->execute || $form->dberror($query);
286
287     while (my ($db) = $sth->fetchrow_array) {
288
289       if ($form->{only_acc_db}) {
290
291         next if ($db =~ /^template/);
292
293         &dbconnect_vars($form, $db);
294         my $dbh =
295           DBI->connect($form->{dbconnect}, $form->{dbuser}, $form->{dbpasswd})
296           or $form->dberror;
297
298         $query = qq|SELECT p.tablename FROM pg_tables p
299                     WHERE p.tablename = 'defaults'
300                     AND p.tableowner = '$form->{dbuser}'|;
301         my $sth = $dbh->prepare($query);
302         $sth->execute || $form->dberror($query);
303
304         if ($sth->fetchrow_array) {
305           push @dbsources, $db;
306         }
307         $sth->finish;
308         $dbh->disconnect;
309         next;
310       }
311       push @dbsources, $db;
312     }
313   }
314
315   if ($form->{dbdriver} eq 'Oracle') {
316     if ($form->{only_acc_db}) {
317       $query = qq|SELECT o.owner FROM dba_objects o
318                   WHERE o.object_name = 'DEFAULTS'
319                   AND o.object_type = 'TABLE'|;
320     } else {
321       $query = qq|SELECT username FROM dba_users|;
322     }
323
324     $sth = $dbh->prepare($query);
325     $sth->execute || $form->dberror($query);
326
327     while (my ($db) = $sth->fetchrow_array) {
328       push @dbsources, $db;
329     }
330   }
331
332   $sth->finish;
333   $dbh->disconnect;
334
335   $main::lxdebug->leave_sub();
336
337   return @dbsources;
338 }
339
340 sub dbcreate {
341   $main::lxdebug->enter_sub();
342
343   my ($self, $form) = @_;
344
345   my %dbcreate = (
346     'Pg'     => qq|CREATE DATABASE "$form->{db}"|,
347     'Oracle' =>
348       qq|CREATE USER "$form->{db}" DEFAULT TABLESPACE USERS TEMPORARY TABLESPACE TEMP IDENTIFIED BY "$form->{db}"|
349   );
350
351   $dbcreate{Pg} .= " WITH ENCODING = '$form->{encoding}'" if $form->{encoding};
352
353   $form->{sid} = $form->{dbdefault};
354   &dbconnect_vars($form, $form->{dbdefault});
355   my $dbh =
356     DBI->connect($form->{dbconnect}, $form->{dbuser}, $form->{dbpasswd})
357     or $form->dberror;
358   my $query = qq|$dbcreate{$form->{dbdriver}}|;
359   $dbh->do($query) || $form->dberror($query);
360
361   if ($form->{dbdriver} eq 'Oracle') {
362     $query = qq|GRANT CONNECT,RESOURCE TO "$form->{db}"|;
363     $dbh->do($query) || $form->dberror($query);
364   }
365   $dbh->disconnect;
366
367   # setup variables for the new database
368   if ($form->{dbdriver} eq 'Oracle') {
369     $form->{dbuser}   = $form->{db};
370     $form->{dbpasswd} = $form->{db};
371   }
372
373   &dbconnect_vars($form, $form->{db});
374
375   $dbh = DBI->connect($form->{dbconnect}, $form->{dbuser}, $form->{dbpasswd})
376     or $form->dberror;
377
378   # create the tables
379   my $filename = qq|sql/lx-office.sql|;
380   $self->process_query($form, $dbh, $filename);
381
382   # load gifi
383   ($filename) = split /_/, $form->{chart};
384   $filename =~ s/_//;
385   $self->process_query($form, $dbh, "sql/${filename}-gifi.sql");
386
387   # load chart of accounts
388   $filename = qq|sql/$form->{chart}-chart.sql|;
389   $self->process_query($form, $dbh, $filename);
390
391   $dbh->disconnect;
392
393   $main::lxdebug->leave_sub();
394 }
395
396 # Process a Perl script which updates the database.
397 # If the script returns 1 then the update was successful.
398 # Return code "2" means "needs more interaction; remove
399 # users/nologin and exit".
400 # All other return codes are fatal errors.
401 sub process_perl_script {
402   $main::lxdebug->enter_sub();
403
404   my ($self, $form, $dbh, $filename, $version) = @_;
405
406   open(FH, "$filename") or $form->error("$filename : $!\n");
407   my $contents = join("", <FH>);
408   close(FH);
409
410   $dbh->begin_work();
411
412   my %dbup_myconfig = ();
413   map({ $dbup_myconfig{$_} = $form->{$_}; }
414       qw(dbname dbuser dbpasswd dbhost dbport dbconnect));
415
416   my $nls_file = $filename;
417   $nls_file =~ s|.*/||;
418   $nls_file =~ s|.pl$||;
419   my $dbup_locale = Locale->new($main::language, $nls_file);
420
421   my $result = eval($contents);
422
423   if (1 != $result) {
424     $dbh->rollback();
425     $dbh->disconnect();
426   }
427
428   if (!defined($result)) {
429     print($form->parse_html_template("dbupgrade/error",
430                                      { "file" => $filename,
431                                        "error" => $@ }));
432     exit(0);
433   } elsif (1 != $result) {
434     unlink("users/nologin") if (2 == $result);
435     exit(0);
436   }
437
438   if ($version) {
439     $dbh->do("UPDATE defaults SET version = " . $dbh->quote($version));
440   }
441   $dbh->commit();
442
443   $main::lxdebug->leave_sub();
444 }
445
446 sub process_query {
447   $main::lxdebug->enter_sub();
448
449   my ($self, $form, $dbh, $filename, $version) = @_;
450
451   #  return unless (-f $filename);
452
453   open(FH, "$filename") or $form->error("$filename : $!\n");
454   my $query = "";
455   my $sth;
456   my @quote_chars;
457
458   $dbh->begin_work();
459
460   while (<FH>) {
461
462     # Remove DOS and Unix style line endings.
463     chomp;
464
465     # remove comments
466     s/--.*$//;
467
468     for (my $i = 0; $i < length($_); $i++) {
469       my $char = substr($_, $i, 1);
470
471       # Are we inside a string?
472       if (@quote_chars) {
473         if ($char eq $quote_chars[-1]) {
474           pop(@quote_chars);
475         }
476         $query .= $char;
477
478       } else {
479         if (($char eq "'") || ($char eq "\"")) {
480           push(@quote_chars, $char);
481
482         } elsif ($char eq ";") {
483
484           # Query is complete. Send it.
485
486           $sth = $dbh->prepare($query);
487           if (!$sth->execute()) {
488             my $errstr = $dbh->errstr;
489             $sth->finish();
490             $dbh->rollback();
491             $form->dberror("The database update/creation did not succeed. The file ${filename} containing the following query failed:<br>${query}<br>" .
492                            "The error message was: ${errstr}<br>" .
493                            "All changes in that file have been reverted.");
494           }
495           $sth->finish();
496
497           $char  = "";
498           $query = "";
499         }
500
501         $query .= $char;
502       }
503     }
504   }
505
506   if ($version) {
507     $dbh->do("UPDATE defaults SET version = " . $dbh->quote($version));
508   }
509   $dbh->commit();
510
511   close FH;
512
513   $main::lxdebug->leave_sub();
514 }
515
516 sub dbdelete {
517   $main::lxdebug->enter_sub();
518
519   my ($self, $form) = @_;
520
521   my %dbdelete = ('Pg'     => qq|DROP DATABASE "$form->{db}"|,
522                   'Oracle' => qq|DROP USER $form->{db} CASCADE|);
523
524   $form->{sid} = $form->{dbdefault};
525   &dbconnect_vars($form, $form->{dbdefault});
526   my $dbh =
527     DBI->connect($form->{dbconnect}, $form->{dbuser}, $form->{dbpasswd})
528     or $form->dberror;
529   my $query = qq|$dbdelete{$form->{dbdriver}}|;
530   $dbh->do($query) || $form->dberror($query);
531
532   $dbh->disconnect;
533
534   $main::lxdebug->leave_sub();
535 }
536
537 sub dbsources_unused {
538   $main::lxdebug->enter_sub();
539
540   my ($self, $form, $memfile) = @_;
541
542   my @dbexcl    = ();
543   my @dbsources = ();
544
545   $form->error('File locked!') if (-f "${memfile}.LCK");
546
547   # open members file
548   open(FH, "$memfile") or $form->error("$memfile : $!");
549
550   while (<FH>) {
551     if (/^dbname=/) {
552       my ($null, $item) = split(/=/);
553       push @dbexcl, $item;
554     }
555   }
556
557   close FH;
558
559   $form->{only_acc_db} = 1;
560   my @db = &dbsources("", $form);
561
562   push @dbexcl, $form->{dbdefault};
563
564   foreach $item (@db) {
565     unless (grep /$item$/, @dbexcl) {
566       push @dbsources, $item;
567     }
568   }
569
570   $main::lxdebug->leave_sub();
571
572   return @dbsources;
573 }
574
575 sub dbneedsupdate {
576   $main::lxdebug->enter_sub();
577
578   my ($self, $form) = @_;
579
580   my %dbsources = ();
581   my $query;
582
583   $form->{sid} = $form->{dbdefault};
584   &dbconnect_vars($form, $form->{dbdefault});
585
586   my $dbh =
587     DBI->connect($form->{dbconnect}, $form->{dbuser}, $form->{dbpasswd})
588     or $form->dberror;
589
590   if ($form->{dbdriver} eq 'Pg') {
591
592     $query = qq|SELECT d.datname FROM pg_database d, pg_user u
593                 WHERE d.datdba = u.usesysid
594                 AND u.usename = '$form->{dbuser}'|;
595     my $sth = $dbh->prepare($query);
596     $sth->execute || $form->dberror($query);
597
598     while (my ($db) = $sth->fetchrow_array) {
599
600       next if ($db =~ /^template/);
601
602       &dbconnect_vars($form, $db);
603
604       my $dbh =
605         DBI->connect($form->{dbconnect}, $form->{dbuser}, $form->{dbpasswd})
606         or $form->dberror;
607
608       $query = qq|SELECT t.tablename FROM pg_tables t
609                   WHERE t.tablename = 'defaults'|;
610       my $sth = $dbh->prepare($query);
611       $sth->execute || $form->dberror($query);
612
613       if ($sth->fetchrow_array) {
614         $query = qq|SELECT version FROM defaults|;
615         my $sth = $dbh->prepare($query);
616         $sth->execute;
617
618         if (my ($version) = $sth->fetchrow_array) {
619           $dbsources{$db} = $version;
620         }
621         $sth->finish;
622       }
623       $sth->finish;
624       $dbh->disconnect;
625     }
626     $sth->finish;
627   }
628
629   if ($form->{dbdriver} eq 'Oracle') {
630     $query = qq|SELECT o.owner FROM dba_objects o
631                 WHERE o.object_name = 'DEFAULTS'
632                 AND o.object_type = 'TABLE'|;
633
634     $sth = $dbh->prepare($query);
635     $sth->execute || $form->dberror($query);
636
637     while (my ($db) = $sth->fetchrow_array) {
638
639       $form->{dbuser} = $db;
640       &dbconnect_vars($form, $db);
641
642       my $dbh =
643         DBI->connect($form->{dbconnect}, $form->{dbuser}, $form->{dbpasswd})
644         or $form->dberror;
645
646       $query = qq|SELECT version FROM defaults|;
647       my $sth = $dbh->prepare($query);
648       $sth->execute;
649
650       if (my ($version) = $sth->fetchrow_array) {
651         $dbsources{$db} = $version;
652       }
653       $sth->finish;
654       $dbh->disconnect;
655     }
656     $sth->finish;
657   }
658
659   $dbh->disconnect;
660
661   $main::lxdebug->leave_sub();
662
663   return %dbsources;
664 }
665
666 ## LINET
667 sub calc_version {
668   $main::lxdebug->enter_sub(2);
669
670   my (@v, $version, $i);
671
672   @v = split(/\./, $_[0]);
673   while (scalar(@v) < 4) {
674     push(@v, 0);
675   }
676   $version = 0;
677   for ($i = 0; $i < 4; $i++) {
678     $version *= 1000;
679     $version += $v[$i];
680   }
681
682   $main::lxdebug->leave_sub(2);
683   return $version;
684 }
685
686 sub cmp_script_version {
687   my ($a_from, $a_to, $b_from, $b_to);
688   my ($i, $res_a, $res_b);
689   my ($my_a, $my_b) = ($a, $b);
690
691   $my_a =~ s/.*-upgrade-//;
692   $my_a =~ s/.sql$//;
693   $my_b =~ s/.*-upgrade-//;
694   $my_b =~ s/.sql$//;
695   ($my_a_from, $my_a_to) = split(/-/, $my_a);
696   ($my_b_from, $my_b_to) = split(/-/, $my_b);
697
698   $res_a = calc_version($my_a_from);
699   $res_b = calc_version($my_b_from);
700
701   if ($res_a == $res_b) {
702     $res_a = calc_version($my_a_to);
703     $res_b = calc_version($my_b_to);
704   }
705
706   return $res_a <=> $res_b;
707 }
708 ## /LINET
709
710 sub update_available {
711   my ($dbdriver, $cur_version) = @_;
712
713   opendir SQLDIR, "sql/${dbdriver}-upgrade" or &error("", "sql/${dbdriver}-upgrade: $!");
714   my @upgradescripts =
715     grep(/$form->{dbdriver}-upgrade-\Q$cur_version\E.*\.(sql|pl)/, readdir(SQLDIR));
716   closedir SQLDIR;
717
718   return ($#upgradescripts > -1);
719 }
720
721 sub dbupdate {
722   $main::lxdebug->enter_sub();
723
724   my ($self, $form) = @_;
725
726   $form->{sid} = $form->{dbdefault};
727
728   my @upgradescripts = ();
729   my $query;
730   my $rc = -2;
731
732   if ($form->{dbupdate}) {
733
734     # read update scripts into memory
735     opendir SQLDIR, "sql/" . $form->{dbdriver} . "-upgrade" or &error("", "sql/" . $form->{dbdriver} . "-upgrade : $!");
736     ## LINET
737     @upgradescripts =
738       sort(cmp_script_version
739            grep(/$form->{dbdriver}-upgrade-.*?\.(sql|pl)$/, readdir(SQLDIR)));
740     ## /LINET
741     closedir SQLDIR;
742   }
743
744   foreach my $db (split / /, $form->{dbupdate}) {
745
746     next unless $form->{$db};
747
748     # strip db from dataset
749     $db =~ s/^db//;
750     &dbconnect_vars($form, $db);
751
752     my $dbh =
753       DBI->connect($form->{dbconnect}, $form->{dbuser}, $form->{dbpasswd})
754       or $form->dberror;
755
756     # check version
757     $query = qq|SELECT version FROM defaults|;
758     my $sth = $dbh->prepare($query);
759
760     # no error check, let it fall through
761     $sth->execute;
762
763     my $version = $sth->fetchrow_array;
764     $sth->finish;
765
766     next unless $version;
767
768     ## LINET
769     $version = calc_version($version);
770     ## /LINET
771
772     foreach my $upgradescript (@upgradescripts) {
773       my $a = $upgradescript;
774       $a =~ s/^$form->{dbdriver}-upgrade-|\.(sql|pl)$//g;
775       my $file_type = $1;
776
777       my ($mindb, $maxdb) = split /-/, $a;
778       my $str_maxdb = $maxdb;
779       ## LINET
780       $mindb = calc_version($mindb);
781       $maxdb = calc_version($maxdb);
782       ## /LINET
783
784       next if ($version >= $maxdb);
785
786       # if there is no upgrade script exit
787       last if ($version < $mindb);
788
789       # apply upgrade
790       $main::lxdebug->message(DEBUG2, "Appliying Update $upgradescript");
791       if ($file_type eq "sql") {
792         $self->process_query($form, $dbh, "sql/" . $form->{"dbdriver"} . "-upgrade/$upgradescript", $str_maxdb);
793       } else {
794         $self->process_perl_script($form, $dbh, "sql/" . $form->{"dbdriver"} . "-upgrade/$upgradescript", $str_maxdb);
795       }
796
797       $version = $maxdb;
798
799     }
800
801     $rc = 0;
802     $dbh->disconnect;
803
804   }
805
806   $main::lxdebug->leave_sub();
807
808   return $rc;
809 }
810
811 sub create_config {
812   $main::lxdebug->enter_sub();
813
814   my ($self, $filename) = @_;
815
816   @config = &config_vars;
817
818   open(CONF, ">$filename") or $self->error("$filename : $!");
819
820   # create the config file
821   print CONF qq|# configuration file for $self->{login}
822
823 \%myconfig = (
824 |;
825
826   foreach $key (sort @config) {
827     $self->{$key} =~ s/\'/\\\'/g;
828     print CONF qq|  $key => '$self->{$key}',\n|;
829   }
830
831   print CONF qq|);\n\n|;
832
833   close CONF;
834
835   $main::lxdebug->leave_sub();
836 }
837
838 sub save_member {
839   $main::lxdebug->enter_sub();
840
841   my ($self, $memberfile, $userspath) = @_;
842
843   my $newmember = 1;
844
845   # format dbconnect and dboptions string
846   &dbconnect_vars($self, $self->{dbname});
847
848   $self->error('File locked!') if (-f "${memberfile}.LCK");
849   open(FH, ">${memberfile}.LCK") or $self->error("${memberfile}.LCK : $!");
850   close(FH);
851
852   open(CONF, "+<$memberfile") or $self->error("$memberfile : $!");
853
854   @config = <CONF>;
855
856   seek(CONF, 0, 0);
857   truncate(CONF, 0);
858
859   while ($line = shift @config) {
860     if ($line =~ /^\[$self->{login}\]/) {
861       $newmember = 0;
862       last;
863     }
864     print CONF $line;
865   }
866
867   # remove everything up to next login or EOF
868   while ($line = shift @config) {
869     last if ($line =~ /^\[/);
870   }
871
872   # this one is either the next login or EOF
873   print CONF $line;
874
875   while ($line = shift @config) {
876     print CONF $line;
877   }
878
879   print CONF qq|[$self->{login}]\n|;
880
881   if ((($self->{dbpasswd} ne $self->{old_dbpasswd}) || $newmember)
882       && $self->{root}) {
883     $self->{dbpasswd} = pack 'u', $self->{dbpasswd};
884     chop $self->{dbpasswd};
885   }
886   if (defined($self->{new_password})) {
887     if ($self->{new_password} ne $self->{old_password}) {
888       $self->{password} = crypt $self->{new_password},
889         substr($self->{login}, 0, 2)
890         if $self->{new_password};
891     }
892   } else {
893     if ($self->{password} ne $self->{old_password}) {
894       $self->{password} = crypt $self->{password}, substr($self->{login}, 0, 2)
895         if $self->{password};
896     }
897   }
898
899   if ($self->{'root login'}) {
900     @config = ("password");
901   } else {
902     @config = &config_vars;
903   }
904
905   # replace \r\n with \n
906   map { $self->{$_} =~ s/\r\n/\\n/g } qw(address signature);
907   foreach $key (sort @config) {
908     print CONF qq|$key=$self->{$key}\n|;
909   }
910
911   print CONF "\n";
912   close CONF;
913   unlink "${memberfile}.LCK";
914
915   # create conf file
916   $self->create_config("$userspath/$self->{login}.conf")
917     unless $self->{'root login'};
918
919   $main::lxdebug->leave_sub();
920 }
921
922 sub config_vars {
923   $main::lxdebug->enter_sub();
924
925   my @conf = qw(acs address admin businessnumber charset company countrycode
926     currency dateformat dbconnect dbdriver dbhost dbport dboptions
927     dbname dbuser dbpasswd email fax name numberformat in_numberformat password
928     printer role sid signature stylesheet tel templates vclimit angebote bestellungen rechnungen
929     anfragen lieferantenbestellungen einkaufsrechnungen steuernummer co_ustid duns menustyle);
930
931   $main::lxdebug->leave_sub();
932
933   return @conf;
934 }
935
936 sub error {
937   $main::lxdebug->enter_sub();
938
939   my ($self, $msg) = @_;
940
941   if ($ENV{HTTP_USER_AGENT}) {
942     print qq|Content-Type: text/html
943
944 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN">
945
946 <body bgcolor=ffffff>
947
948 <h2><font color=red>Error!</font></h2>
949 <p><b>$msg</b>|;
950
951   }
952
953   die "Error: $msg\n";
954
955   $main::lxdebug->leave_sub();
956 }
957
958 1;
959