]> ruin.nu Git - ndwebbie.git/blobdiff - ND/Web/Pages/Check.pm
gal rankings and fixed a bug with gal graph caching
[ndwebbie.git] / ND / Web / Pages / Check.pm
index 832eeb9b6d21c4dde9944682a46f9b928ab0f357..394c8b02ee95c8061a8688a81b3a84c4edbabcb8 100644 (file)
@@ -104,14 +104,15 @@ sub render_body {
        while (my $planet = $query->fetchrow_hashref){
                $planet_id = $planet->{id};
                for my $type (qw/size score value xp/){
-                       #$planet->{$type} = prettyValue($planet->{$type});
-                       $planet->{$type} =~ s/(^[-+]?\d+?(?=(?>(?:\d{3})+)(?!\d))|\G\d{3}(?=\d))/$1,/g; #Add comma for ever 3 digits, i.e. 1000 => 1,000
                        $planet->{"${type}img"} = 'stay';
                        $planet->{"${type}img"} = 'up' if $planet->{"${type}_gain_day"} > 0;
                        $planet->{"${type}img"} = 'down' if $planet->{"${type}_gain_day"} < 0;
                        $planet->{"${type}rankimg"} = 'stay';
                        $planet->{"${type}rankimg"} = 'up' if $planet->{"${type}rank_gain_day"} < 0;
                        $planet->{"${type}rankimg"} = 'down' if $planet->{"${type}rank_gain_day"} > 0;
+                       for my $type ($type,"${type}_gain","${type}_gain_day"){
+                               $planet->{$type} =~ s/(^[-+]?\d+?(?=(?>(?:\d{3})+)(?!\d))|\G\d{3}(?=\d))/$1,/g; #Add comma for ever 3 digits, i.e. 1000 => 1,000
+                       }
                }
                if ($self->isMember && ($self->isOfficer || $self->isBC)){
                        if ($z && $planet->{alliance} eq 'NewDawn' && not ($self->isHC || $self->isOfficer)){
@@ -165,6 +166,14 @@ sub render_body {
                $scan .= q{</table>};
                push @scans, {Scan => $scan};
 
+               $query = $DBH->prepare(q{SELECT DISTINCT ON (type) type,scan_id, tick, scan FROM scans WHERE planet = ?
+                       GROUP BY type,scan_id, tick, scan ORDER BY type,tick DESC});
+               $query->execute($planet_id);
+               my %scans;
+               while (my($type,$scan_id,$tick,$scan) = $query->fetchrow){
+                       $scans{$type} = [$scan_id,$tick,$scan];
+               }
+
                $query = $DBH->prepare(q{SELECT x,y,z,tick FROM planet_stats WHERE id = ? ORDER BY tick ASC});
                $scan = q{
                <p>Previous Coords</p>
@@ -180,16 +189,10 @@ sub render_body {
                        }
                }
                $scan .= q{</table>};
+               $scan .= $scans{'Ship Classes'}->[2] if $scans{'Ship Classes'};
                push @scans, {Scan => $scan};
 
-               $query = $DBH->prepare(q{SELECT DISTINCT ON (type) type,scan_id, tick, scan FROM scans WHERE planet = ?
-                       GROUP BY type,scan_id, tick, scan ORDER BY type,tick DESC});
-               $query->execute($planet_id);
-               my %scans;
-               while (my($type,$scan_id,$tick,$scan) = $query->fetchrow){
-                       $scans{$type} = [$scan_id,$tick,$scan];
-               }
-               for my $type ('Planet','Jumpgate','Unit','Military','Fleet Analysis','Surface Analysis','Technology Analysis','News'){
+               for my $type ('Planet','Jumpgate','Unit','Advanced Unit','Surface Analysis','Technology Analysis','Fleet Analysis','News'){
                        next unless exists $scans{$type};
                        my $scan_id = $scans{$type}->[0];
                        my $tick = $scans{$type}->[1];