]> ruin.nu Git - ndwebbie.git/blobdiff - NDWeb/Pages/MemberIntel.pm
Converted alliances page
[ndwebbie.git] / NDWeb / Pages / MemberIntel.pm
index fa1552d9ffb1b598cb057936e40041867d8866f4..292d985d54afb27f92665befca4fcf2f11d6ac40 100644 (file)
@@ -19,7 +19,7 @@
 
 package NDWeb::Pages::MemberIntel;
 use strict;
-use warnings FATAL => 'all';
+use warnings;
 use CGI qw/:standard/;
 use NDWeb::Include;
 
@@ -54,24 +54,97 @@ sub render_body {
 
        if ($user){
                $BODY->param(UID => $user->{uid});
+               my $query = $DBH->prepare(q{
+                       SELECT coords(t.x,t.y,t.z), i.eta, i.tick, rt.id AS ndtarget, rc.launched, inc.landing_tick
+                       FROM users u
+                       LEFT OUTER JOIN (SELECT DISTINCT eta,tick,sender,target,mission,name FROM fleets WHERE amount IS NULL) i ON i.sender = u.planet
+                       LEFT OUTER JOIN current_planet_stats t ON i.target = t.id
+                       LEFT OUTER JOIN (SELECT rt.id,planet,tick FROM raids r 
+                                       JOIN raid_targets rt ON r.id = rt.raid) rt ON rt.planet = i.target 
+                               AND (rt.tick + 12) > i.tick AND rt.tick <= i.tick 
+                       LEFT OUTER JOIN raid_claims rc ON rt.id = rc.target AND rc.uid = u.uid AND i.tick = rt.tick + rc.wave - 1
+                       LEFT OUTER JOIN (SELECT sender, eta, landing_tick FROM calls c 
+                                               JOIN incomings i ON i.call = c.id) inc ON inc.sender = i.target 
+                                       AND (inc.landing_tick + inc.eta) >= i.tick 
+                                       AND (inc.landing_tick - inc.eta - 1) <= (i.tick - i.eta) 
+                       WHERE u.uid = $1 AND i.mission = 'Attack'
+                       ORDER BY (i.tick - i.eta)
+                       });
+               $query->execute($user->{uid}) or $error .= $DBH->errstr;
+               my @nd_attacks;
+               my @other_attacks;
+               while (my $intel = $query->fetchrow_hashref){
+                       my $attack = {target => $intel->{coords}, tick => $intel->{tick}};
+                       if ($intel->{ndtarget}){
+                               if (defined $intel->{launched}){
+                                       $attack->{Other} = 'Claimed '.($intel->{launched} ? 'and confirmed' : 'but NOT confirmed');
+                               }else{
+                                       $attack->{Other} = 'Launched at a tick that was not claimed';
+                               }
+                               push @nd_attacks, $attack;
+                       }else{
+                               push @other_attacks, $attack;
+                       }
+               }
+               my @attacks;
+               push @attacks, {name => 'ND Attacks', list => \@nd_attacks, class => 'AllyDef'};
+               push @attacks, {name => 'Other', list => \@other_attacks, class => 'Attack'};
+               $BODY->param(Attacks => \@attacks);
+
+               $query = $DBH->prepare(q{
+                       SELECT coords(t.x,t.y,t.z),t.alliance_id, t.alliance, i.eta, i.tick, i.ingal
+                       FROM users u
+                       JOIN (SELECT DISTINCT name,eta,tick,sender,target,mission,ingal FROM fleets WHERE amount IS NULL) i ON i.sender = u.planet
+                       LEFT OUTER JOIN current_planet_stats t ON i.target = t.id
+                       WHERE u.uid = $1 AND (i.mission = 'Defend' OR i.mission = 'AllyDef')
+                       ORDER BY (i.tick - i.eta)
+                       });
+               $query->execute($user->{uid}) or $error .= $DBH->errstr;
+               my @nd_def;
+               my @ingal_def;
+               my @other_def;
+               while (my $intel = $query->fetchrow_hashref){
+                       my $def = {target => $intel->{coords}.(defined $intel->{alliance} ? " ($intel->{alliance})" : ''), tick => $intel->{tick}};
+                       if (defined $intel->{alliance_id} && $intel->{alliance_id} == 1){
+                               push @nd_def, $def;
+                       }elsif($intel->{ingal}){
+                               push @ingal_def, $def;
+                       }else{
+                               push @other_def, $def;
+                       }
+               }
+               my @defenses;
+               push @defenses, {name => 'ND Def', list => \@nd_def, class => 'AllyDef'};
+               push @defenses, {name => 'Ingal Def', list => \@ingal_def, class => 'Defend'};
+               push @defenses, {name => 'Other', list => \@other_def, class => 'Attack'};
+               $BODY->param(Defenses => \@defenses);
+
        }else{
-               my $query = $DBH->prepare(q{SELECT u.uid,u.username,u.attack_points, u.defense_points, n.tick
+               my $order = "attacks";
+               if (defined param('order') && param('order') =~ /^(attacks|defenses|attack_points|defense_points|solo|bad_def)$/){
+                       $order = $1;
+               }
+
+               my $query = $DBH->prepare(qq{SELECT u.uid,u.username,u.attack_points, u.defense_points, n.tick
                        ,count(CASE WHEN i.mission = 'Attack' THEN 1 ELSE NULL END) AS attacks
                        ,count(CASE WHEN (i.mission = 'Defend' OR i.mission = 'AllyDef') THEN 1 ELSE NULL END) AS defenses
+                       ,count(CASE WHEN i.mission = 'Attack' AND rt.id IS NULL THEN 1 ELSE NULL END) AS solo
+                       ,count(CASE WHEN i.mission = 'Defend' OR i.mission = 'AllyDef' THEN NULLIF(i.ingal OR (t.alliance_id = 1),TRUE) ELSE NULL END) AS bad_def
                        FROM users u
                        JOIN groupmembers gm USING (uid)
                        LEFT OUTER JOIN (SELECT DISTINCT ON (planet) planet,tick from scans where type = 'News' ORDER BY planet,tick DESC) n USING (planet)
-                       LEFT OUTER JOIN (SELECT * FROM intel WHERE amount = -1) i ON i.sender = u.planet
+                       LEFT OUTER JOIN (SELECT DISTINCT name,eta,tick,sender,target,mission,ingal FROM fleets WHERE amount IS NULL) i ON i.sender = u.planet
                        LEFT OUTER JOIN current_planet_stats t ON i.target = t.id
+                       LEFT OUTER JOIN (SELECT rt.id,planet,tick FROM raids r 
+                                       JOIN raid_targets rt ON r.id = rt.raid) rt ON rt.planet = i.target 
+                               AND (rt.tick + 12) > i.tick AND rt.tick <= i.tick 
+                       LEFT OUTER JOIN raid_claims rc ON rt.id = rc.target AND rc.uid = u.uid AND i.tick = rt.tick + rc.wave - 1
                        WHERE gm.gid = 2
                        GROUP BY u.uid,u.username,u.attack_points, u.defense_points,n.tick
-                       ORDER BY attacks DESC,defenses DESC, attack_points DESC, defense_points DESC});
+                       ORDER BY $order DESC});
                $query->execute() or $error .= $DBH->errstr;
                my @members;
-               my $i = 0;
                while (my $intel = $query->fetchrow_hashref){
-                       $i++;
-                       $intel->{ODD} = $i % 2;
                        $intel->{OLD} = 'OLD' if (!defined $intel->{tick} || $self->{TICK} > $intel->{tick} + 60);
                        delete $intel->{tick};
                        push @members,$intel;