]> ruin.nu Git - ndwebbie.git/blob - NDWeb/Pages/CovOp.pm
possible to mark planets as cov opped
[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(q{INSERT INTO covop_attacks (uid,id,tick) VALUES(?,?,tick())});
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 = '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         $BODY->param(List => $list);
64
65         my $query = $DBH->prepare(qq{SELECT id, coords, metal, crystal, eonium
66                 , seccents::float/structures*100 AS seccents, distorters
67                 , MaxResHack,co.tick AS lastcovop
68                 FROM (SELECT p.id,coords(x,y,z), metal,crystal,eonium,
69                         seccents,NULLIF(ss.total,0) AS structures,distorters
70                         ,max_bank_hack(metal,crystal,eonium,p.value
71                                 ,(SELECT value FROM current_planet_stats WHERE id = ?)) AS MaxResHack
72                         , planet_status, relationship
73                         FROM current_planet_stats p
74                                 LEFT OUTER JOIN planet_scans ps ON p.id = ps.planet
75                                 LEFT OUTER JOIN structure_scans ss ON p.id = ss.planet
76                         ) AS foo
77                         LEFT OUTER JOIN (SELECT id,max(tick) AS tick FROM covop_attacks GROUP BY id) co USING (id)
78                 WHERE (metal IS NOT NULL OR seccents IS NOT NULL)
79                 $where
80         });
81         $query->execute($self->{PLANET});
82
83         my @targets;
84         while (my $target = $query->fetchrow_hashref){
85                 push @targets,$target;
86         }
87         $BODY->param(Targets => \@targets);
88         return $BODY;
89 }
90
91 1;