]> git.sesse.net Git - foosball/blobdiff - www/index.pl
Made the front page a bit more... different.
[foosball] / www / index.pl
index 8e0b8f59814e8de16aef435f2e0b1eacf532dc5d..a9f2d43b7d022a7dd133f424b004dc3436afba1d 100755 (executable)
@@ -15,6 +15,8 @@ $q->execute();
 while (my $ref = $q->fetchrow_hashref) {
        my $username = $ref->{'username'};
        my ($rating, $rd) = foosball::find_single_rating($dbh, $username);
+       next if ($rating == 0 || $rating == 1500);
+
        my ($oldrating) = foosball::find_single_rating($dbh, $username, 'AND ratetime::date < current_date ');
 
        my $trend = "";
@@ -39,6 +41,8 @@ $q->execute();
 while (my $ref = $q->fetchrow_hashref) {
        my $username = $ref->{'username'};
        my ($rating, $rd) = foosball::find_double_rating($dbh, $username);
+       next if ($rating == 0 || $rating == 1500);
+
        my ($oldrating) = foosball::find_double_rating($dbh, $username, 'AND ratetime::date < current_date ');
 
        my $trend = "";
@@ -58,9 +62,70 @@ while (my $ref = $q->fetchrow_hashref) {
 
 # Last games
 my @last_games = ();
-$q = $dbh->prepare('select * from ( select to_char(gametime, \'IYYY-MM-DD HH24:MI\') as gametime,\'Double\' as type,team1_username1 || \' / \' || team1_username2 as username1, team2_username1 || \' / \' || team2_username2 as username2,score1,score2 from double_results union all select to_char(gametime, \'IYYY-MM-DD HH24:MI\') as gametime,\'Single\' as type,username1,username2,score1,score2 from single_results ) t1 order by gametime desc limit 10');
+$q = $dbh->prepare('
+select * from (
+    select
+        gametime as sort_gametime,
+        to_char(gametime, \'IYYY-MM-DD HH24:MI\') as gametime,
+        \'Double\' as type,
+       team1_username1 || \' / \' || team1_username2 as username1,
+        team2_username1 || \' / \' || team2_username2 as username2,
+       score1,
+       score2,
+       ra1.rating_diff as diff1, 
+       ra2.rating_diff as diff2, 
+       ra3.rating_diff as diff3, 
+       ra4.rating_diff as diff4 
+    from
+        double_results re
+        join double_rating ra1
+            on re.gametime=ra1.ratetime
+           and re.team1_username1=ra1.username
+       join double_rating ra2
+           on re.gametime=ra2.ratetime
+           and re.team1_username2=ra2.username
+       join double_rating ra3
+           on re.gametime=ra3.ratetime
+           and re.team2_username1=ra3.username
+       join double_rating ra4
+           on re.gametime=ra4.ratetime
+           and re.team2_username2=ra4.username
+    union all
+    select
+        gametime as sort_gametime,
+        to_char(gametime, \'IYYY-MM-DD HH24:MI\') as gametime,
+       \'Single\' as type,
+       username1,
+       username2,
+       score1,
+       score2,
+       ra1.rating_diff as diff1, 
+       null as diff2, 
+       ra2.rating_diff as diff3,
+       null as diff4 
+    from
+        single_results re
+        join single_rating ra1
+            on re.gametime=ra1.ratetime
+           and re.username1=ra1.username
+       join single_rating ra2
+           on re.gametime=ra2.ratetime
+           and re.username2=ra2.username
+) t1
+order by sort_gametime desc limit 10');
 $q->execute();
 while (my $ref = $q->fetchrow_hashref) {
+       if (defined($ref->{'diff2'})) {
+               $ref->{'diff1'} = sprintf "%+d / %+d",
+                       int($ref->{'diff1'} + 0.5),
+                       int($ref->{'diff2'} + 0.5);
+               $ref->{'diff2'} = sprintf "%+d / %+d",
+                       int($ref->{'diff3'} + 0.5),
+                       int($ref->{'diff4'} + 0.5);
+       } else {
+               $ref->{'diff1'} = sprintf "%+d", int($ref->{'diff1'} + 0.5);
+               $ref->{'diff2'} = sprintf "%+d", int($ref->{'diff3'} + 0.5);
+       }
        push @last_games, $ref;
 }
 
@@ -69,8 +134,8 @@ $dbh->disconnect;
 print CGI->header(-type=>'application/xhtml+xml');
 
 my $doc = XML::Template::process_file('index.xml', {
-       '#singletop' => \@single_top,
-       '#doubletop' => \@double_top,
-       '#lastgames' => \@last_games,
+       '#singletop' => XML::Template::alternate('tr/class', \@single_top, 'odd', 'even'),
+       '#doubletop' => XML::Template::alternate('tr/class', \@double_top, 'odd', 'even'),
+       '#lastgames' => XML::Template::alternate('tr/class', \@last_games, 'odd', 'even'),
 });
 print $doc->toString;