]> ruin.nu Git - ndwebbie.git/blob - NDWeb/Pages/CovOp.pm
ddb8aa0720b974b627ded2684c95eb9ac8c82f8f
[ndwebbie.git] / NDWeb / Pages / CovOp.pm
1 #**************************************************************************
2 #   Copyright (C) 2006 by Michael Andreen <harvATruinDOTnu>               *
3 #                                                                         *
4 #   This program is free software; you can redistribute it and/or modify  *
5 #   it under the terms of the GNU General Public License as published by  *
6 #   the Free Software Foundation; either version 2 of the License, or     *
7 #   (at your option) any later version.                                   *
8 #                                                                         *
9 #   This program is distributed in the hope that it will be useful,       *
10 #   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
11 #   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
12 #   GNU General Public License for more details.                          *
13 #                                                                         *
14 #   You should have received a copy of the GNU General Public License     *
15 #   along with this program; if not, write to the                         *
16 #   Free Software Foundation, Inc.,                                       *
17 #   51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.         *
18 #**************************************************************************/
19
20 package NDWeb::Pages::CovOp;
21 use strict;
22 use warnings FATAL => 'all';
23 use CGI qw/:standard/;
24 use NDWeb::Include;
25
26 use base qw/NDWeb::XMLPage/;
27
28 $NDWeb::Page::PAGES{covop} = __PACKAGE__;
29
30 sub parse {
31         my ($uri) = @_;
32         if ($uri =~ m{^/.*/(\w+)$}){
33                 param('list',$1);
34         }
35 }
36
37 sub render_body {
38         my $self = shift;
39         my ($BODY) = @_;
40         $self->{TITLE} = 'CovOp Targets';
41         my $DBH = $self->{DBH};
42
43         return $self->noAccess unless $self->isMember;
44
45         my $show = q{AND (NOT planet_status IN ('Friendly','NAP')) AND  (relationship IS NULL OR NOT relationship IN ('Friendly','NAP'))};
46         $show = '' if defined param('show') && param('show') eq 'all';
47         if (defined param('covop') && param('covop') =~ /^(\d+)$/){
48                 my $update = $DBH->prepare('UPDATE covop_targets SET covop_by = ?, last_covop = tick() WHERE planet = ? ');
49                 $update->execute($ND::UID,$1);
50         }
51
52         my $list = '';
53         my $where = '';
54         if (defined param('list') && param('list') eq 'distwhores'){
55                 $list = '&amp;list=distwhores';
56                 $where = qq{AND distorters > 0 $show
57                 ORDER BY distorters DESC,COALESCE(seccents::float/structures*100,0)ASC}
58         }else{
59                 $where = qq{AND MaxResHack > 130000
60                 $show
61                 ORDER BY COALESCE(seccents::float/structures*100,0) ASC,MaxResHack DESC,metal+crystal+eonium DESC};
62         }
63
64         my $query = $DBH->prepare(qq{SELECT id, coords, metal, crystal, eonium
65                 , seccents::float/structures*100 AS secs, distorters
66                 , MaxResHack
67                 FROM (SELECT p.id,coords(x,y,z), metal,crystal,eonium,
68                         seccents,NULLIF(ss.total,0) AS structures,distorters
69                         ,max_bank_hack(metal,crystal,eonium,p.value
70                                 ,(SELECT value FROM current_planet_stats WHERE id = ?)) AS MaxResHack
71                         , planet_status, relationship
72                         FROM current_planet_stats p
73                                 LEFT OUTER JOIN planet_scans ps ON p.id = ps.planet
74                                 LEFT OUTER JOIN structure_scans ss ON p.id = ss.planet
75                         ) AS foo
76                 WHERE (metal IS NOT NULL OR seccents IS NOT NULL)
77                 $where
78         });
79         $query->execute($self->{PLANET});
80
81         my @targets;
82         while (my ($id,$coords,$metal,$crystal,$eonium,$seccents,$dists,$max) = $query->fetchrow){
83                 push @targets,{Target => $id, Coords => $coords
84                         , Metal => $metal, Crystal => $crystal, Eonium => $eonium, SecCents => $seccents
85                         , Dists => $dists, MaxResHack => $max, List => $list};
86         }
87         $BODY->param(Targets => \@targets);
88         return $BODY;
89 }
90
91 1;