X-Git-Url: https://git.sesse.net/?p=ccbs;a=blobdiff_plain;f=html%2Fdo-edit-scores.pl;h=1ae15471634267a1ff51290d9395222c0d9e81a8;hp=997d9659be23eaf5582237b44007c31b6b509ff8;hb=58cde1344f8427cdcd4612bda0aadd4b4f3ec32d;hpb=9181c99a0c28191b9d6049377b990a0a03e8ba4b diff --git a/html/do-edit-scores.pl b/html/do-edit-scores.pl index 997d965..1ae1547 100755 --- a/html/do-edit-scores.pl +++ b/html/do-edit-scores.pl @@ -8,7 +8,37 @@ my $dbh = ccbs::db_connect(); my $cgi = new CGI; my $tournament = $cgi->param('tournament'); +my $round = $cgi->param('round'); +my $group = $cgi->param('group'); +$dbh->{AutoCommit} = 0; + +# Loop through all parameters and see what parameters differ between old- and current +# versions +for my $p ($cgi->param()) { + next if ($p =~ /^old-(.*?)$/); + next unless (defined($cgi->param('old-' . $p))); + next if ($cgi->param($p) eq $cgi->param('old-' . $p)); + + my $val = $cgi->param($p); + undef $val if ($val =~ /^\s*$/); + + if ($p =~ /^score(\d+)-(\d+)/) { + $dbh->do('UPDATE scores SET score=? WHERE tournament=? AND round=? AND parallel=? AND player=? AND songnumber=?', undef, + $val, $tournament, $round, $group, $1, $2); + } elsif ($p =~ /^playmode(\d+)-(\d+)/) { + $dbh->do('UPDATE scores SET playmode=? WHERE tournament=? AND round=? AND parallel=? AND player=? AND songnumber=?', undef, + $val, $tournament, $round, $group, $1, $2); + } elsif ($p =~ /^difficulty(\d+)-(\d+)/) { + $dbh->do('UPDATE scores SET difficulty=? WHERE tournament=? AND round=? AND parallel=? AND player=? AND songnumber=?', undef, + $val, $tournament, $round, $group, $1, $2); + } elsif ($p =~ /^song(\d+)-(\d+)/) { + $dbh->do('UPDATE scores SET song=? WHERE tournament=? AND round=? AND parallel=? AND player=? AND songnumber=? AND chosen=\'t\'', undef, + $val, $tournament, $round, $group, $1, $2); + } +} + +$dbh->commit; $dbh->disconnect; ccbs::print_see_other('show-tournament.pl?id=' . $tournament);