Datenbankupgrade: In der Tabelle defaults wird jetzt auch der verwendete Kontenrahmen...
[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   $query = "UPDATE defaults SET coa = " . $dbh->quote($form->{"chart"});
392   $dbh->do($query) || $form->dberror($query);
393
394   $dbh->disconnect;
395
396   $main::lxdebug->leave_sub();
397 }
398
399 # Process a Perl script which updates the database.
400 # If the script returns 1 then the update was successful.
401 # Return code "2" means "needs more interaction; remove
402 # users/nologin and exit".
403 # All other return codes are fatal errors.
404 sub process_perl_script {
405   $main::lxdebug->enter_sub();
406
407   my ($self, $form, $dbh, $filename, $version) = @_;
408
409   open(FH, "$filename") or $form->error("$filename : $!\n");
410   my $contents = join("", <FH>);
411   close(FH);
412
413   $dbh->begin_work();
414
415   my %dbup_myconfig = ();
416   map({ $dbup_myconfig{$_} = $form->{$_}; }
417       qw(dbname dbuser dbpasswd dbhost dbport dbconnect));
418
419   my $nls_file = $filename;
420   $nls_file =~ s|.*/||;
421   $nls_file =~ s|.pl$||;
422   my $dbup_locale = Locale->new($main::language, $nls_file);
423
424   my $result = eval($contents);
425
426   if (1 != $result) {
427     $dbh->rollback();
428     $dbh->disconnect();
429   }
430
431   if (!defined($result)) {
432     print($form->parse_html_template("dbupgrade/error",
433                                      { "file" => $filename,
434                                        "error" => $@ }));
435     exit(0);
436   } elsif (1 != $result) {
437     unlink("users/nologin") if (2 == $result);
438     exit(0);
439   }
440
441   if ($version) {
442     $dbh->do("UPDATE defaults SET version = " . $dbh->quote($version));
443   }
444   $dbh->commit();
445
446   $main::lxdebug->leave_sub();
447 }
448
449 sub process_query {
450   $main::lxdebug->enter_sub();
451
452   my ($self, $form, $dbh, $filename, $version) = @_;
453
454   #  return unless (-f $filename);
455
456   open(FH, "$filename") or $form->error("$filename : $!\n");
457   my $query = "";
458   my $sth;
459   my @quote_chars;
460
461   $dbh->begin_work();
462
463   while (<FH>) {
464
465     # Remove DOS and Unix style line endings.
466     chomp;
467
468     # remove comments
469     s/--.*$//;
470
471     for (my $i = 0; $i < length($_); $i++) {
472       my $char = substr($_, $i, 1);
473
474       # Are we inside a string?
475       if (@quote_chars) {
476         if ($char eq $quote_chars[-1]) {
477           pop(@quote_chars);
478         }
479         $query .= $char;
480
481       } else {
482         if (($char eq "'") || ($char eq "\"")) {
483           push(@quote_chars, $char);
484
485         } elsif ($char eq ";") {
486
487           # Query is complete. Send it.
488
489           $sth = $dbh->prepare($query);
490           if (!$sth->execute()) {
491             my $errstr = $dbh->errstr;
492             $sth->finish();
493             $dbh->rollback();
494             $form->dberror("The database update/creation did not succeed. The file ${filename} containing the following query failed:<br>${query}<br>" .
495                            "The error message was: ${errstr}<br>" .
496                            "All changes in that file have been reverted.");
497           }
498           $sth->finish();
499
500           $char  = "";
501           $query = "";
502         }
503
504         $query .= $char;
505       }
506     }
507   }
508
509   if ($version) {
510     $dbh->do("UPDATE defaults SET version = " . $dbh->quote($version));
511   }
512   $dbh->commit();
513
514   close FH;
515
516   $main::lxdebug->leave_sub();
517 }
518
519 sub dbdelete {
520   $main::lxdebug->enter_sub();
521
522   my ($self, $form) = @_;
523
524   my %dbdelete = ('Pg'     => qq|DROP DATABASE "$form->{db}"|,
525                   'Oracle' => qq|DROP USER $form->{db} CASCADE|);
526
527   $form->{sid} = $form->{dbdefault};
528   &dbconnect_vars($form, $form->{dbdefault});
529   my $dbh =
530     DBI->connect($form->{dbconnect}, $form->{dbuser}, $form->{dbpasswd})
531     or $form->dberror;
532   my $query = qq|$dbdelete{$form->{dbdriver}}|;
533   $dbh->do($query) || $form->dberror($query);
534
535   $dbh->disconnect;
536
537   $main::lxdebug->leave_sub();
538 }
539
540 sub dbsources_unused {
541   $main::lxdebug->enter_sub();
542
543   my ($self, $form, $memfile) = @_;
544
545   my @dbexcl    = ();
546   my @dbsources = ();
547
548   $form->error('File locked!') if (-f "${memfile}.LCK");
549
550   # open members file
551   open(FH, "$memfile") or $form->error("$memfile : $!");
552
553   while (<FH>) {
554     if (/^dbname=/) {
555       my ($null, $item) = split(/=/);
556       push @dbexcl, $item;
557     }
558   }
559
560   close FH;
561
562   $form->{only_acc_db} = 1;
563   my @db = &dbsources("", $form);
564
565   push @dbexcl, $form->{dbdefault};
566
567   foreach $item (@db) {
568     unless (grep /$item$/, @dbexcl) {
569       push @dbsources, $item;
570     }
571   }
572
573   $main::lxdebug->leave_sub();
574
575   return @dbsources;
576 }
577
578 sub dbneedsupdate {
579   $main::lxdebug->enter_sub();
580
581   my ($self, $form) = @_;
582
583   my %dbsources = ();
584   my $query;
585
586   $form->{sid} = $form->{dbdefault};
587   &dbconnect_vars($form, $form->{dbdefault});
588
589   my $dbh =
590     DBI->connect($form->{dbconnect}, $form->{dbuser}, $form->{dbpasswd})
591     or $form->dberror;
592
593   if ($form->{dbdriver} eq 'Pg') {
594
595     $query = qq|SELECT d.datname FROM pg_database d, pg_user u
596                 WHERE d.datdba = u.usesysid
597                 AND u.usename = '$form->{dbuser}'|;
598     my $sth = $dbh->prepare($query);
599     $sth->execute || $form->dberror($query);
600
601     while (my ($db) = $sth->fetchrow_array) {
602
603       next if ($db =~ /^template/);
604
605       &dbconnect_vars($form, $db);
606
607       my $dbh =
608         DBI->connect($form->{dbconnect}, $form->{dbuser}, $form->{dbpasswd})
609         or $form->dberror;
610
611       $query = qq|SELECT t.tablename FROM pg_tables t
612                   WHERE t.tablename = 'defaults'|;
613       my $sth = $dbh->prepare($query);
614       $sth->execute || $form->dberror($query);
615
616       if ($sth->fetchrow_array) {
617         $query = qq|SELECT version FROM defaults|;
618         my $sth = $dbh->prepare($query);
619         $sth->execute;
620
621         if (my ($version) = $sth->fetchrow_array) {
622           $dbsources{$db} = $version;
623         }
624         $sth->finish;
625       }
626       $sth->finish;
627       $dbh->disconnect;
628     }
629     $sth->finish;
630   }
631
632   if ($form->{dbdriver} eq 'Oracle') {
633     $query = qq|SELECT o.owner FROM dba_objects o
634                 WHERE o.object_name = 'DEFAULTS'
635                 AND o.object_type = 'TABLE'|;
636
637     $sth = $dbh->prepare($query);
638     $sth->execute || $form->dberror($query);
639
640     while (my ($db) = $sth->fetchrow_array) {
641
642       $form->{dbuser} = $db;
643       &dbconnect_vars($form, $db);
644
645       my $dbh =
646         DBI->connect($form->{dbconnect}, $form->{dbuser}, $form->{dbpasswd})
647         or $form->dberror;
648
649       $query = qq|SELECT version FROM defaults|;
650       my $sth = $dbh->prepare($query);
651       $sth->execute;
652
653       if (my ($version) = $sth->fetchrow_array) {
654         $dbsources{$db} = $version;
655       }
656       $sth->finish;
657       $dbh->disconnect;
658     }
659     $sth->finish;
660   }
661
662   $dbh->disconnect;
663
664   $main::lxdebug->leave_sub();
665
666   return %dbsources;
667 }
668
669 ## LINET
670 sub calc_version {
671   $main::lxdebug->enter_sub(2);
672
673   my (@v, $version, $i);
674
675   @v = split(/\./, $_[0]);
676   while (scalar(@v) < 4) {
677     push(@v, 0);
678   }
679   $version = 0;
680   for ($i = 0; $i < 4; $i++) {
681     $version *= 1000;
682     $version += $v[$i];
683   }
684
685   $main::lxdebug->leave_sub(2);
686   return $version;
687 }
688
689 sub cmp_script_version {
690   my ($a_from, $a_to, $b_from, $b_to);
691   my ($i, $res_a, $res_b);
692   my ($my_a, $my_b) = ($a, $b);
693
694   $my_a =~ s/.*-upgrade-//;
695   $my_a =~ s/.sql$//;
696   $my_b =~ s/.*-upgrade-//;
697   $my_b =~ s/.sql$//;
698   ($my_a_from, $my_a_to) = split(/-/, $my_a);
699   ($my_b_from, $my_b_to) = split(/-/, $my_b);
700
701   $res_a = calc_version($my_a_from);
702   $res_b = calc_version($my_b_from);
703
704   if ($res_a == $res_b) {
705     $res_a = calc_version($my_a_to);
706     $res_b = calc_version($my_b_to);
707   }
708
709   return $res_a <=> $res_b;
710 }
711 ## /LINET
712
713 sub update_available {
714   my ($dbdriver, $cur_version) = @_;
715
716   opendir SQLDIR, "sql/${dbdriver}-upgrade" or &error("", "sql/${dbdriver}-upgrade: $!");
717   my @upgradescripts =
718     grep(/$form->{dbdriver}-upgrade-\Q$cur_version\E.*\.(sql|pl)/, readdir(SQLDIR));
719   closedir SQLDIR;
720
721   return ($#upgradescripts > -1);
722 }
723
724 sub dbupdate {
725   $main::lxdebug->enter_sub();
726
727   my ($self, $form) = @_;
728
729   $form->{sid} = $form->{dbdefault};
730
731   my @upgradescripts = ();
732   my $query;
733   my $rc = -2;
734
735   if ($form->{dbupdate}) {
736
737     # read update scripts into memory
738     opendir SQLDIR, "sql/" . $form->{dbdriver} . "-upgrade" or &error("", "sql/" . $form->{dbdriver} . "-upgrade : $!");
739     ## LINET
740     @upgradescripts =
741       sort(cmp_script_version
742            grep(/$form->{dbdriver}-upgrade-.*?\.(sql|pl)$/, readdir(SQLDIR)));
743     ## /LINET
744     closedir SQLDIR;
745   }
746
747   foreach my $db (split / /, $form->{dbupdate}) {
748
749     next unless $form->{$db};
750
751     # strip db from dataset
752     $db =~ s/^db//;
753     &dbconnect_vars($form, $db);
754
755     my $dbh =
756       DBI->connect($form->{dbconnect}, $form->{dbuser}, $form->{dbpasswd})
757       or $form->dberror;
758
759     # check version
760     $query = qq|SELECT version FROM defaults|;
761     my $sth = $dbh->prepare($query);
762
763     # no error check, let it fall through
764     $sth->execute;
765
766     my $version = $sth->fetchrow_array;
767     $sth->finish;
768
769     next unless $version;
770
771     ## LINET
772     $version = calc_version($version);
773     ## /LINET
774
775     foreach my $upgradescript (@upgradescripts) {
776       my $a = $upgradescript;
777       $a =~ s/^$form->{dbdriver}-upgrade-|\.(sql|pl)$//g;
778       my $file_type = $1;
779
780       my ($mindb, $maxdb) = split /-/, $a;
781       my $str_maxdb = $maxdb;
782       ## LINET
783       $mindb = calc_version($mindb);
784       $maxdb = calc_version($maxdb);
785       ## /LINET
786
787       next if ($version >= $maxdb);
788
789       # if there is no upgrade script exit
790       last if ($version < $mindb);
791
792       # apply upgrade
793       $main::lxdebug->message(DEBUG2, "Appliying Update $upgradescript");
794       if ($file_type eq "sql") {
795         $self->process_query($form, $dbh, "sql/" . $form->{"dbdriver"} . "-upgrade/$upgradescript", $str_maxdb);
796       } else {
797         $self->process_perl_script($form, $dbh, "sql/" . $form->{"dbdriver"} . "-upgrade/$upgradescript", $str_maxdb);
798       }
799
800       $version = $maxdb;
801
802     }
803
804     $rc = 0;
805     $dbh->disconnect;
806
807   }
808
809   $main::lxdebug->leave_sub();
810
811   return $rc;
812 }
813
814 sub create_config {
815   $main::lxdebug->enter_sub();
816
817   my ($self, $filename) = @_;
818
819   @config = &config_vars;
820
821   open(CONF, ">$filename") or $self->error("$filename : $!");
822
823   # create the config file
824   print CONF qq|# configuration file for $self->{login}
825
826 \%myconfig = (
827 |;
828
829   foreach $key (sort @config) {
830     $self->{$key} =~ s/\'/\\\'/g;
831     print CONF qq|  $key => '$self->{$key}',\n|;
832   }
833
834   print CONF qq|);\n\n|;
835
836   close CONF;
837
838   $main::lxdebug->leave_sub();
839 }
840
841 sub save_member {
842   $main::lxdebug->enter_sub();
843
844   my ($self, $memberfile, $userspath) = @_;
845
846   my $newmember = 1;
847
848   # format dbconnect and dboptions string
849   &dbconnect_vars($self, $self->{dbname});
850
851   $self->error('File locked!') if (-f "${memberfile}.LCK");
852   open(FH, ">${memberfile}.LCK") or $self->error("${memberfile}.LCK : $!");
853   close(FH);
854
855   open(CONF, "+<$memberfile") or $self->error("$memberfile : $!");
856
857   @config = <CONF>;
858
859   seek(CONF, 0, 0);
860   truncate(CONF, 0);
861
862   while ($line = shift @config) {
863     if ($line =~ /^\[$self->{login}\]/) {
864       $newmember = 0;
865       last;
866     }
867     print CONF $line;
868   }
869
870   # remove everything up to next login or EOF
871   while ($line = shift @config) {
872     last if ($line =~ /^\[/);
873   }
874
875   # this one is either the next login or EOF
876   print CONF $line;
877
878   while ($line = shift @config) {
879     print CONF $line;
880   }
881
882   print CONF qq|[$self->{login}]\n|;
883
884   if ((($self->{dbpasswd} ne $self->{old_dbpasswd}) || $newmember)
885       && $self->{root}) {
886     $self->{dbpasswd} = pack 'u', $self->{dbpasswd};
887     chop $self->{dbpasswd};
888   }
889   if (defined($self->{new_password})) {
890     if ($self->{new_password} ne $self->{old_password}) {
891       $self->{password} = crypt $self->{new_password},
892         substr($self->{login}, 0, 2)
893         if $self->{new_password};
894     }
895   } else {
896     if ($self->{password} ne $self->{old_password}) {
897       $self->{password} = crypt $self->{password}, substr($self->{login}, 0, 2)
898         if $self->{password};
899     }
900   }
901
902   if ($self->{'root login'}) {
903     @config = ("password");
904   } else {
905     @config = &config_vars;
906   }
907
908   # replace \r\n with \n
909   map { $self->{$_} =~ s/\r\n/\\n/g } qw(address signature);
910   foreach $key (sort @config) {
911     print CONF qq|$key=$self->{$key}\n|;
912   }
913
914   print CONF "\n";
915   close CONF;
916   unlink "${memberfile}.LCK";
917
918   # create conf file
919   $self->create_config("$userspath/$self->{login}.conf")
920     unless $self->{'root login'};
921
922   $main::lxdebug->leave_sub();
923 }
924
925 sub config_vars {
926   $main::lxdebug->enter_sub();
927
928   my @conf = qw(acs address admin businessnumber charset company countrycode
929     currency dateformat dbconnect dbdriver dbhost dbport dboptions
930     dbname dbuser dbpasswd email fax name numberformat in_numberformat password
931     printer role sid signature stylesheet tel templates vclimit angebote bestellungen rechnungen
932     anfragen lieferantenbestellungen einkaufsrechnungen steuernummer co_ustid duns menustyle);
933
934   $main::lxdebug->leave_sub();
935
936   return @conf;
937 }
938
939 sub error {
940   $main::lxdebug->enter_sub();
941
942   my ($self, $msg) = @_;
943
944   if ($ENV{HTTP_USER_AGENT}) {
945     print qq|Content-Type: text/html
946
947 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN">
948
949 <body bgcolor=ffffff>
950
951 <h2><font color=red>Error!</font></h2>
952 <p><b>$msg</b>|;
953
954   }
955
956   die "Error: $msg\n";
957
958   $main::lxdebug->leave_sub();
959 }
960
961 1;
962