Alle Vorkommen von dbdriver, sid, Oracle entfernt
[kivitendo-erp.git] / SL / DBUpgrade2.pm
1 package SL::DBUpgrade2;
2
3 use English qw(-no_match_vars);
4 use IO::File;
5 use List::MoreUtils qw(any);
6
7 use SL::Common;
8 use SL::DBUpgrade2::Base;
9 use SL::DBUtils;
10 use SL::Iconv;
11
12 use strict;
13
14 sub new {
15   my $package = shift;
16
17   return bless({}, $package)->init(@_);
18 }
19
20 sub init {
21   my ($self, %params) = @_;
22
23   if ($params{auth}) {
24     $params{path_suffix} = "-auth";
25     $params{schema}      = "auth.";
26   }
27
28   $params{path_suffix} ||= '';
29   $params{schema}      ||= '';
30   $params{path}          = "sql/Pg-upgrade2" . $params{path_suffix};
31
32   map { $self->{$_} = $params{$_} } keys %params;
33
34   return $self;
35 }
36
37 sub path {
38   $_[0]{path};
39 }
40
41 sub parse_dbupdate_controls {
42   $::lxdebug->enter_sub();
43
44   my ($self) = @_;
45
46   my $form   = $self->{form};
47   my $locale = $::locale;
48
49   local *IN;
50   my %all_controls;
51
52   my $path = $self->path;
53
54   foreach my $file_name (<$path/*.sql>, <$path/*.pl>) {
55     next unless (open(IN, $file_name));
56
57     my $file = $file_name;
58     $file =~ s|.*/||;
59
60     my $control = {
61       "priority" => 1000,
62       "depends"  => [],
63     };
64
65     while (<IN>) {
66       chomp();
67       next unless (/^(--|\#)\s*\@/);
68       s/^(--|\#)\s*\@//;
69       s/\s*$//;
70       next if ($_ eq "");
71
72       my @fields = split(/\s*:\s*/, $_, 2);
73       next unless (scalar(@fields) == 2);
74
75       if ($fields[0] eq "depends") {
76         push(@{$control->{"depends"}}, split(/\s+/, $fields[1]));
77       } else {
78         $control->{$fields[0]} = $fields[1];
79       }
80     }
81
82     next if ($control->{ignore});
83
84     $control->{charset} = 'UTF-8' if $file =~ m/\.pl$/;
85     $control->{charset} = $control->{charset} || $control->{encoding} || Common::DEFAULT_CHARSET;
86
87     if (!$control->{"tag"}) {
88       _control_error($form, $file_name, $locale->text("Missing 'tag' field.")) ;
89     }
90
91     if ($control->{"tag"} =~ /[^a-zA-Z0-9_\(\)\-]/) {
92       _control_error($form, $file_name, $locale->text("The 'tag' field must only consist of alphanumeric characters or the carachters - _ ( )"))
93     }
94
95     if (defined($all_controls{$control->{"tag"}})) {
96       _control_error($form, $file_name, sprintf($locale->text("More than one control file with the tag '%s' exist."), $control->{"tag"}))
97     }
98
99     if (!$control->{"description"}) {
100       _control_error($form, $file_name, sprintf($locale->text("Missing 'description' field."))) ;
101     }
102
103     $control->{"priority"}  *= 1;
104     $control->{"priority"} ||= 1000;
105     $control->{"file"}       = $file;
106
107     delete @{$control}{qw(depth applied)};
108
109     $all_controls{$control->{"tag"}} = $control;
110
111     close(IN);
112   }
113
114   foreach my $control (values(%all_controls)) {
115     foreach my $dependency (@{$control->{"depends"}}) {
116       _control_error($form, $control->{"file"}, sprintf($locale->text("Unknown dependency '%s'."), $dependency)) if (!defined($all_controls{$dependency}));
117     }
118
119     map({ $_->{"loop"} = 0; } values(%all_controls));
120     _check_for_loops($form, $control->{"file"}, \%all_controls, $control->{"tag"});
121   }
122
123   map({ _dbupdate2_calculate_depth(\%all_controls, $_->{"tag"}) }
124       values(%all_controls));
125
126   $self->{all_controls} = \%all_controls;
127
128   $::lxdebug->leave_sub();
129
130   return $self;
131 }
132
133 sub process_query {
134   $::lxdebug->enter_sub();
135
136   my ($self, $dbh, $filename, $version_or_control, $db_charset) = @_;
137
138   my $form  = $self->{form};
139   my $fh    = IO::File->new($filename, "r") or $form->error("$filename : $!\n");
140   my $query = "";
141   my $sth;
142   my @quote_chars;
143
144   my $file_charset = Common::DEFAULT_CHARSET;
145   while (<$fh>) {
146     last if !/^--/;
147     next if !/^--\s*\@(?:charset|encoding):\s*(.+)/;
148     $file_charset = $1;
149     last;
150   }
151   $fh->seek(0, SEEK_SET);
152
153   $db_charset ||= Common::DEFAULT_CHARSET;
154
155   $dbh->begin_work();
156
157   while (<$fh>) {
158     $_ = SL::Iconv::convert($file_charset, $db_charset, $_);
159
160     # Remove DOS and Unix style line endings.
161     chomp;
162
163     # remove comments
164     s/--.*$//;
165
166     for (my $i = 0; $i < length($_); $i++) {
167       my $char = substr($_, $i, 1);
168
169       # Are we inside a string?
170       if (@quote_chars) {
171         if ($char eq $quote_chars[-1]) {
172           pop(@quote_chars);
173         } elsif (length $quote_chars[-1] > 1
174              &&  substr($_, $i, length $quote_chars[-1]) eq $quote_chars[-1]) {
175           $i   += length($quote_chars[-1]) - 1;
176           $char = $quote_chars[-1];
177           pop(@quote_chars);
178         }
179         $query .= $char;
180
181       } else {
182         my ($tag, $tag_end);
183         if (($char eq "'") || ($char eq "\"")) {
184           push(@quote_chars, $char);
185
186         } elsif ($char eq '$'                                            # start of dollar quoting
187              && ($tag_end  = index($_, '$', $i + 1)) > -1                # ends on same line
188              && (do { $tag = substr($_, $i + 1, $tag_end - $i - 1); 1 }) # extract tag
189              &&  $tag      =~ /^ (?= [A-Za-z_] [A-Za-z0-9_]* | ) $/x) {  # tag is identifier
190           push @quote_chars, $char = '$' . $tag . '$';
191           $i = $tag_end;
192         } elsif ($char eq ";") {
193
194           # Query is complete. Send it.
195
196           $sth = $dbh->prepare($query);
197           if (!$sth->execute()) {
198             my $errstr = $dbh->errstr;
199             $sth->finish();
200             $dbh->rollback();
201             $form->dberror("The database update/creation did not succeed. " .
202                            "The file ${filename} containing the following " .
203                            "query failed:<br>${query}<br>" .
204                            "The error message was: ${errstr}<br>" .
205                            "All changes in that file have been reverted.");
206           }
207           $sth->finish();
208
209           $char  = "";
210           $query = "";
211         }
212
213         $query .= $char;
214       }
215     }
216
217     # Insert a space at the end of each line so that queries split
218     # over multiple lines work properly.
219     if ($query ne '') {
220       $query .= @quote_chars ? "\n" : ' ';
221     }
222   }
223
224   if (ref($version_or_control) eq "HASH") {
225     $dbh->do("INSERT INTO " . $self->{schema} . "schema_info (tag, login) VALUES (" . $dbh->quote($version_or_control->{"tag"}) . ", " . $dbh->quote($form->{"login"}) . ")");
226   } elsif ($version_or_control) {
227     $dbh->do("UPDATE defaults SET version = " . $dbh->quote($version_or_control));
228   }
229   $dbh->commit();
230
231   $fh->close();
232
233   $::lxdebug->leave_sub();
234 }
235
236 # Process a Perl script which updates the database.
237 # If the script returns 1 then the update was successful.
238 # Return code "2" means "needs more interaction; remove
239 # users/nologin and end current request".
240 # All other return codes are fatal errors.
241 sub process_perl_script {
242   $::lxdebug->enter_sub();
243
244   my ($self, $dbh, $filename, $version_or_control, $db_charset) = @_;
245
246   my %form_values = map { $_ => $::form->{$_} } qw(dbconnect dbdefault dbhost dbmbkiviunstable dbname dboptions dbpasswd dbport dbupdate dbuser login template_object version);
247
248   $dbh->begin_work;
249
250   # setup dbup_ export vars & run script
251   my %dbup_myconfig = map { ($_ => $::form->{$_}) } qw(dbname dbuser dbpasswd dbhost dbport dbconnect);
252   my $result        = eval {
253     SL::DBUpgrade2::Base::execute_script(
254       file_name => $filename,
255       tag       => $version_or_control->{tag},
256       dbh       => $dbh,
257       myconfig  => \%dbup_myconfig,
258     );
259   };
260
261   my $error = $EVAL_ERROR;
262
263   $dbh->rollback if 1 != ($result // -1);
264
265   if (!defined($result)) {
266     print $::form->parse_html_template("dbupgrade/error", { file  => $filename, error => $error });
267     ::end_of_request();
268   } elsif (1 != $result) {
269     unlink("users/nologin") if (2 == $result);
270     ::end_of_request();
271   }
272
273   if (ref($version_or_control) eq "HASH") {
274     $dbh->do("INSERT INTO " . $self->{schema} . "schema_info (tag, login) VALUES (" . $dbh->quote($version_or_control->{tag}) . ", " . $dbh->quote($::form->{login}) . ")");
275   } elsif ($version_or_control) {
276     $dbh->do("UPDATE defaults SET version = " . $dbh->quote($version_or_control));
277   }
278   $dbh->commit();
279
280   # Clear $::form of values that may have been set so that following
281   # Perl upgrade scripts won't have to work with old data (think of
282   # the usual 'continued' mechanism that's used for determining
283   # whether or not the upgrade form must be displayed).
284   delete @{ $::form }{ keys %{ $::form } };
285   $::form->{$_} = $form_values{$_} for keys %form_values;
286
287   $::lxdebug->leave_sub();
288 }
289
290 sub process_file {
291   my ($self, $dbh, $filename, $version_or_control, $db_charset) = @_;
292
293   if ($filename =~ m/sql$/) {
294     $self->process_query($dbh, $filename, $version_or_control, $db_charset);
295   } else {
296     $self->process_perl_script($dbh, $filename, $version_or_control, $db_charset);
297   }
298 }
299
300 sub update_available {
301   my ($self, $cur_version) = @_;
302
303   local *SQLDIR;
304
305   opendir SQLDIR, "sql/Pg-upgrade" || error("", "sql/Pg-upgrade: $!");
306   my @upgradescripts = grep /Pg-upgrade-\Q$cur_version\E.*\.(sql|pl)$/, readdir SQLDIR;
307   closedir SQLDIR;
308
309   return ($#upgradescripts > -1);
310 }
311
312 sub update2_available {
313   $::lxdebug->enter_sub();
314
315   my ($self, $dbh) = @_;
316
317   map { $_->{applied} = 0; } values %{ $self->{all_controls} };
318
319   my $sth = $dbh->prepare(qq|SELECT tag FROM | . $self->{schema} . qq|schema_info|);
320   if ($sth->execute) {
321     while (my ($tag) = $sth->fetchrow_array) {
322       $self->{all_controls}->{$tag}->{applied} = 1 if defined $self->{all_controls}->{$tag};
323     }
324   }
325   $sth->finish();
326
327   my $needs_update = any { !$_->{applied} } values %{ $self->{all_controls} };
328
329   $::lxdebug->leave_sub();
330
331   return $needs_update;
332 }
333
334 sub unapplied_upgrade_scripts {
335   my ($self, $dbh) = @_;
336
337   my @all_scripts = map { $_->{applied} = 0; $_ } $self->sort_dbupdate_controls;
338
339   my $query = qq|SELECT tag FROM | . $self->{schema} . qq|schema_info|;
340   my $sth   = $dbh->prepare($query);
341   $sth->execute || $self->{form}->dberror($query);
342   while (my ($tag) = $sth->fetchrow_array()) {
343     $self->{all_controls}->{$tag}->{applied} = 1 if defined $self->{all_controls}->{$tag};
344   }
345   $sth->finish;
346
347   return grep { !$_->{applied} } @all_scripts;
348 }
349
350 sub apply_admin_dbupgrade_scripts {
351   my ($self, $called_from_admin) = @_;
352
353   return 0 if !$self->{auth};
354
355   my $dbh               = $::auth->dbconnect;
356   my @unapplied_scripts = $self->unapplied_upgrade_scripts($dbh);
357
358   return 0 if !@unapplied_scripts;
359
360   my $db_charset           = $::lx_office_conf{system}->{dbcharset} || Common::DEFAULT_CHARSET;
361   $self->{form}->{login} ||= 'admin';
362
363   map { $_->{description} = SL::Iconv::convert($_->{charset}, $db_charset, $_->{description}) } values %{ $self->{all_controls} };
364
365   if ($called_from_admin) {
366     $self->{form}->{title} = $::locale->text('Dataset upgrade');
367     $self->{form}->header;
368   }
369
370   print $self->{form}->parse_html_template("dbupgrade/header", { dbname => $::auth->{DB_config}->{db} });
371
372   foreach my $control (@unapplied_scripts) {
373     $::lxdebug->message(LXDebug->DEBUG2(), "Applying Update $control->{file}");
374     print $self->{form}->parse_html_template("dbupgrade/upgrade_message2", $control);
375
376     $self->process_file($dbh, "sql/Pg-upgrade2-auth/$control->{file}", $control, $db_charset);
377   }
378
379   print $self->{form}->parse_html_template("dbupgrade/footer", { is_admin => 1 }) if $called_from_admin;
380
381   return 1;
382 }
383
384 sub _check_for_loops {
385   my ($form, $file_name, $controls, $tag, @path) = @_;
386
387   push(@path, $tag);
388
389   my $ctrl = $controls->{$tag};
390
391   if ($ctrl->{"loop"} == 1) {
392     # Not done yet.
393     _control_error($form, $file_name, $::locale->text("Dependency loop detected:") . " " . join(" -> ", @path))
394
395   } elsif ($ctrl->{"loop"} == 0) {
396     # Not checked yet.
397     $ctrl->{"loop"} = 1;
398     map({ _check_for_loops($form, $file_name, $controls, $_, @path); } @{ $ctrl->{"depends"} });
399     $ctrl->{"loop"} = 2;
400   }
401 }
402
403 sub _control_error {
404   my ($form, $file_name, $message) = @_;
405
406   $form = $::form;
407   my $locale = $::locale;
408
409   $form->error(sprintf($locale->text("Error in database control file '%s': %s"), $file_name, $message));
410 }
411
412 sub _dbupdate2_calculate_depth {
413   $::lxdebug->enter_sub(2);
414
415   my ($tree, $tag) = @_;
416
417   my $node = $tree->{$tag};
418
419   return $::lxdebug->leave_sub(2) if (defined($node->{"depth"}));
420
421   my $max_depth = 0;
422
423   foreach $tag (@{$node->{"depends"}}) {
424     _dbupdate2_calculate_depth($tree, $tag);
425     my $value = $tree->{$tag}->{"depth"};
426     $max_depth = $value if ($value > $max_depth);
427   }
428
429   $node->{"depth"} = $max_depth + 1;
430
431   $::lxdebug->leave_sub(2);
432 }
433
434 sub sort_dbupdate_controls {
435   my $self = shift;
436
437   $self->parse_dbupdate_controls unless $self->{all_controls};
438
439   return sort { ($a->{depth} <=> $b->{depth}) || ($a->{priority} <=> $b->{priority}) || ($a->{tag} cmp $b->{tag}) } values %{ $self->{all_controls} };
440 }
441
442 1;
443 __END__
444
445 =pod
446
447 =encoding utf8
448
449 =head1 NAME
450
451 SL::DBUpgrade2 - Parse database upgrade files stored in
452 C<sql/Pg-upgrade2> and C<sql/Pg-upgrade2-auth> (and also in
453 C<SQL/Pg-upgrade>)
454
455 =head1 SYNOPSIS
456
457   use SL::User;
458   use SL::DBUpgrade2;
459
460   # Apply outstanding updates to the authentication database
461   my $scripts = SL::DBUpgrade2->new(
462     form     => $::form,
463     auth     => 1
464   );
465   $scripts->apply_admin_dbupgrade_scripts(1);
466
467   # Apply updates to a user database
468   my $scripts = SL::DBUpgrade2->new(
469     form     => $::form,
470     auth     => 1
471   );
472   User->dbupdate2($form, $scripts->parse_dbupdate_controls);
473
474 =head1 OVERVIEW
475
476 Database upgrade files are used to upgrade the database structure and
477 content of both the authentication database and the user
478 databases. They're applied when a user logs in. As long as the
479 authentication database is not up to date users cannot log in in
480 general, and the admin has to log in first in order to get his
481 database updated.
482
483 Database scripts form a tree by specifying which upgrade file depends
484 on which other upgrade file. This means that such files are always
485 applied in a well-defined order.
486
487 Each script is run in a separate transaction. If a script fails the
488 current transaction is rolled back and the whole upgrade process is
489 stopped. The user/admin is required to fix the issue manually.
490
491 A list of applied upgrade scripts is maintained in a table called
492 C<schema_info> for the user database and C<auth.schema_info>) for the
493 authentication database. They contain the tags, the login name of the
494 user having applied the script and the timestamp when the script was
495 applied.
496
497 Database upgrade files come in two flavours: SQL files and Perl
498 files. For both there are control fields that determine the order in
499 which they're executed, what charset the scripts are written in
500 etc. The control fields are tag/value pairs contained in comments.
501
502 =head1 OLD UPGRADE FILES
503
504 The files in C<sql/Pg-upgrade> are so old that I don't bother
505 documenting them. They're handled by this class, too, but new files
506 are only created as C<Pg-upgrade2> files.
507
508 =head1 CONTROL FIELDS
509
510 =head2 SYNTAX
511
512 Control fields for Perl files:
513
514   # @tag1: value1
515   # @tag2: some more values
516   sub do_stuff {
517   }
518   1;
519
520 Control fields for SQL files:
521
522   -- @tag1: value1
523   -- @tag2: some more values
524   ALTER TABLE ...;
525
526 =head2 TAGS AND THEIR MEANING
527
528 The following tags are recognized:
529
530 =over 4
531
532 =item tag
533
534 The name for this file. The C<tag> is also used for dependency
535 resolution (see C<depends>).
536
537 This is mandatory.
538
539 =item description
540
541 A description presented to the user when the update is applied.
542
543 This is mandatory.
544
545 =item depends
546
547 A space-separated list of tags of scripts this particular script
548 depends on. All other upgrades listed in C<depends> will be applied
549 before the current one is applied.
550
551 =item charset
552
553 =item encoding
554
555 The charset this file uses. Defaults to C<ISO-8859-15> if
556 missing. Both terms are recognized.
557
558 =item priority
559
560 Ordering the scripts by their dependencies alone produces a lot of
561 groups of scripts that could be applied at the same time (e.g. if both
562 B and C depend only on A then B could be applied before C or the other
563 way around). This field determines the order inside such a
564 group. Scripts with lower priority fields are executed before scripts
565 with higher priority fields.
566
567 If two scripts have equal priorities then their tag name decides.
568
569 The priority defaults to 1000.
570
571 =back
572
573 =head1 FUNCTIONS
574
575 =over 4
576
577 =item C<apply_admin_dbupgrade_scripts $called_from_admin>
578
579 Applies all unapplied upgrade files to the authentication/admin
580 database. The parameter C<$called_from_admin> should be truish if the
581 function is called from the web interface and falsish if it's called
582 from e.g. a command line script like C<scripts/dbupgrade2_tool.pl>.
583
584 =item C<init %params>
585
586 Initializes the object. Is called directly from L<new> and should not
587 be called again.
588
589 =item C<new %params>
590
591 Creates a new object. Possible parameters are:
592
593 =over 4
594
595 =item path
596
597 Path to the upgrade files to parse. Required.
598
599 =item form
600
601 C<SL::Form> object to use. Required.
602
603 =item auth
604
605 Optional parameter defaulting to 0. If trueish then the scripts read
606 are the ones applying to the authentication database.
607
608 =back
609
610 =item C<parse_dbupdate_controls>
611
612 Parses all files located in C<path> (see L<new>), ananlyzes their
613 control fields, builds the tree, and signals errors if control fields
614 are missing/wrong (e.g. a tag name listed in C<depends> is not
615 found). Sets C<$Self-&gt;{all_controls}> to the list of database
616 scripts.
617
618 =item C<process_file $dbh, $filename, $version_or_control, $db_charset>
619
620 Applies a single database upgrade file. Calls L<process_perl_script>
621 for Perl update files and C<process_query> for SQL update
622 files. Requires an open database handle(C<$dbh>), the file name
623 (C<$filename>), a hash structure of the file's control fields as
624 produced by L<parse_dbupdate_controls> (C<$version_or_control>) and
625 the database charset (for on-the-fly charset recoding of the script if
626 required, C<$db_charset>).
627
628 Returns the result of the actual function called.
629
630 =item C<process_perl_script $dbh, $filename, $version_or_control, $db_charset>
631
632 Applies a single Perl database upgrade file. Requires an open database
633 handle(C<$dbh>), the file name (C<$filename>), a hash structure of the
634 file's control fields as produced by L<parse_dbupdate_controls>
635 (C<$version_or_control>) and the database charset (for on-the-fly
636 charset recoding of the script if required, C<$db_charset>).
637
638 Perl scripts are executed via L<eval>. If L<eval> returns falsish then
639 an error is expected. There are two special return values: If the
640 script returns C<1> then the update was successful. Return code C<2>
641 means "needs more interaction from the user; remove users/nologin and
642 end current upgrade process". All other return codes are fatal errors.
643
644 Inside the Perl script several local variables exist that can be used:
645
646 =over 4
647
648 =item $dbup_locale
649
650 A locale object for translating messages
651
652 =item $dbh
653
654 The database handle (inside a transaction).
655
656 =item $::form
657
658 The global C<SL::Form> object.
659
660 =back
661
662 A Perl script can actually implement queries that fail while
663 continueing the process by handling the transaction itself, e.g. with
664 the following function:
665
666   sub do_query {
667     my ($query, $may_fail) = @_;
668
669     if (!$dbh->do($query)) {
670       die($dbup_locale->text("Database update error:") . "<br>$msg<br>" . $DBI::errstr) unless $may_fail;
671       $dbh->rollback();
672       $dbh->begin_work();
673     }
674   }
675
676 =item C<process_query $dbh, $filename, $version_or_control, $db_charset>
677
678 Applies a single SQL database upgrade file. Requires an open database
679 handle(C<$dbh>), the file name (C<$filename>), a hash structure of the
680 ofile's control fields as produced by L<parse_dbupdate_controls>
681 (C<$version_or_control>) and the database charset (for on-the-fly
682 charset recoding of the script if required, C<$db_charset>).
683
684 =item C<sort_dbupdate_controls>
685
686 Sorts the database upgrade scripts according to their C<tag> and
687 C<priority> control fields. Returns a list of their hash
688 representations that can be applied in order.
689
690 =item C<unapplied_upgrade_scripts $dbh>
691
692 Returns a list if upgrade scripts (their internal hash representation)
693 that haven't been applied to a database yet. C<$dbh> is an open handle
694 to the database that is checked.
695
696 Requires that the scripts have been parsed.
697
698 =item C<update2_available $dbh>
699
700 Returns trueish if at least one upgrade script hasn't been applied to
701 a database yet. C<$dbh> is an open handle to the database that is
702 checked.
703
704 Requires that the scripts have been parsed.
705
706 =back
707
708 =head1 BUGS
709
710 Nothing here yet.
711
712 =head1 AUTHOR
713
714 Moritz Bunkus E<lt>m.bunkus@linet-services.deE<gt>
715
716 =cut