X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=scripts%2Fdbupgrade2_tool.pl;h=74d6326a5fc70bfca2784eb5e7979797a4eda088;hb=829f6742c99fdf3b3ef78713c3ce1c1266f67d98;hp=e290adefac30d67a6e76f07a4d576aec2c1aa48c;hpb=2381f1e308db61970b8ab3bb760bd3854cdcbb18;p=kivitendo-erp.git diff --git a/scripts/dbupgrade2_tool.pl b/scripts/dbupgrade2_tool.pl index e290adefa..74d6326a5 100755 --- a/scripts/dbupgrade2_tool.pl +++ b/scripts/dbupgrade2_tool.pl @@ -10,15 +10,20 @@ BEGIN { push @INC, "modules/fallback"; # Only use our own versions of modules if there's no system version. } + +use strict; + +use utf8; use English '-no_match_vars'; use DBI; use Data::Dumper; use Getopt::Long; +use Text::Iconv; use SL::LXDebug; -$lxdebug = LXDebug->new(); +our $lxdebug = LXDebug->new(); use SL::Auth; use SL::Form; @@ -26,15 +31,17 @@ use SL::User; use SL::Locale; use SL::DBUpgrade2; use SL::DBUtils; +use SL::Dispatcher; ####### ####### ####### my ($opt_list, $opt_tree, $opt_rtree, $opt_nodeps, $opt_graphviz, $opt_help); -my ($opt_user, $opt_apply, $opt_applied, $opt_format); +my ($opt_user, $opt_apply, $opt_applied, $opt_format, $opt_test_utf8); +my ($opt_dbhost, $opt_dbport, $opt_dbname, $opt_dbuser, $opt_dbpassword); -our (%myconfig, $form, $user, $auth); +our (%myconfig, $form, $user, $auth, $locale, $controls); sub show_help { my $help_text = <<"END_HELP" @@ -66,11 +73,21 @@ dbupgrade2_tool.pl [options] then the option \'--user\' must be used as well. --applied List the applied database upgrades for the database that the user given with \'--user\' uses. + --test-utf8 Tests a PostgreSQL cluster for proper UTF-8 support. + You have to specify the database to test with the + parameters --dbname, --dbhost, --dbport, --dbuser + and --dbpassword. --help Show this help and exit. Options: --user=name The name of the user configuration to use for database connectivity. + --dbname=name Database connection options for the UTF-8 + --dbhost=host handling test. + --dbport=port + --dbuser=user + --dbpassword=pw + END_HELP ; @@ -96,7 +113,7 @@ sub dump_list { print "LIST VIEW\n\n" . "number tag depth priority\n"; - $i = 0; + my $i = 0; foreach (@sorted_controls) { print "$i $_->{tag} $_->{depth} $_->{priority}\n"; $i++; @@ -165,7 +182,7 @@ sub dump_graphviz { calc_rev_depends(); - $dot = "|dot -T${format} "; + my $dot = "|dot -T${format} "; open OUT, "${dot}> \"${file_name}\"" || die; print OUT @@ -234,9 +251,9 @@ sub apply_upgrade { $user->create_schema_info_table($form, $dbh); my $query = qq|SELECT tag FROM schema_info|; - $sth = $dbh->prepare($query); + my $sth = $dbh->prepare($query); $sth->execute() || $form->dberror($query); - while (($tag) = $sth->fetchrow_array()) { + while (my ($tag) = $sth->fetchrow_array()) { $controls->{$tag}->{applied} = 1 if defined $controls->{$tag}; } $sth->finish(); @@ -302,7 +319,7 @@ sub dump_applied { $user->create_schema_info_table($form, $dbh); my $query = qq|SELECT tag, login, itime FROM schema_info ORDER BY itime|; - $sth = $dbh->prepare($query); + my $sth = $dbh->prepare($query); $sth->execute() || $form->dberror($query); while (my $ref = $sth->fetchrow_hashref()) { push @results, $ref; @@ -321,14 +338,14 @@ sub dump_applied { sub build_upgrade_order { my $name = shift; my $order = shift; - my $tag = shift; + my $tags = shift; my $control = $controls->{$name}; foreach my $dependency (@{ $control->{depends} }) { next if $tags->{$dependency}; $tags->{$dependency} = 1; - build_upgrade_order($dependency, $order, $tag); + build_upgrade_order($dependency, $order, $tags); } push @{ $order }, $name; @@ -343,22 +360,28 @@ eval { require "config/lx-erp.conf"; }; eval { require "config/lx-erp-local.conf"; } if (-f "config/lx-erp-local.conf"); $form = Form->new(); -$locale = Locale->new("de", "login"); +$locale = Locale->new("de"); ####### ####### ####### -GetOptions("list" => \$opt_list, - "tree" => \$opt_tree, - "rtree" => \$opt_rtree, - "nodeps" => \$opt_nodeps, - "graphviz:s" => \$opt_graphviz, - "format:s" => \$opt_format, - "user=s" => \$opt_user, - "apply=s" => \$opt_apply, - "applied" => \$opt_applied, - "help" => \$opt_help, +GetOptions("list" => \$opt_list, + "tree" => \$opt_tree, + "rtree" => \$opt_rtree, + "nodeps" => \$opt_nodeps, + "graphviz:s" => \$opt_graphviz, + "format:s" => \$opt_format, + "user=s" => \$opt_user, + "apply=s" => \$opt_apply, + "applied" => \$opt_applied, + "test-utf8" => \$opt_test_utf8, + "dbhost:s" => \$opt_dbhost, + "dbport:s" => \$opt_dbport, + "dbname:s" => \$opt_dbname, + "dbuser:s" => \$opt_dbuser, + "dbpassword:s" => \$opt_dbpassword, + "help" => \$opt_help, ); show_help() if ($opt_help); @@ -401,3 +424,29 @@ if ($opt_applied) { $form->error("--applied used but no user name given with --user.") if (!$user); dump_applied(); } + +if ($opt_test_utf8) { + $form->error("--test-utf8 used but no database name given with --dbname.") if (!$opt_dbname); + + my $umlaut_upper = 'Ä'; + + my $dbconnect = "dbi:Pg:dbname=${opt_dbname}"; + $dbconnect .= ";host=${opt_dbhost}" if ($opt_dbhost); + $dbconnect .= ";port=${opt_dbport}" if ($opt_dbport); + + my $dbh = DBI->connect($dbconnect, $opt_dbuser, $opt_dbpassword, { pg_enable_utf8 => 1 }); + + $form->error("UTF-8 test: Database connect failed (" . $DBI::errstr . ")") if (!$dbh); + + my ($umlaut_lower) = $dbh->selectrow_array(qq|SELECT lower(?)|, undef, $umlaut_upper); + + $dbh->disconnect(); + + if ($umlaut_lower eq 'ä') { + print "UTF-8 test was successful.\n"; + } elsif ($umlaut_lower eq 'Ä') { + print "UTF-8 test was NOT successful: Umlauts are not modified (this might be partially ok, but you should probably not use UTF-8 on this cluster).\n"; + } else { + print "UTF-8 test was NOT successful: Umlauts are destroyed. Do not use UTF-8 on this cluster.\n"; + } +}