]> ruin.nu Git - ndwebbie.git/blob - ND/Web/Pages/Top100.pm
use base instead of setting @ISA manually
[ndwebbie.git] / ND / Web / Pages / Top100.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 ND::Web::Pages::Top100;
21 use strict;
22 use warnings FATAL => 'all';
23 use CGI qw/:standard/;
24 use ND::Web::Include;
25
26 use base qw/ND::Web::XMLPage/;
27
28 $ND::Web::Page::PAGES{top100} = __PACKAGE__;
29
30 sub parse {
31         #TODO: Need to fix some links first
32         #if ($uri =~ m{^/[^/]+/(\w+)}){
33         #       param('order',$1);
34         #}
35 }
36
37 sub render_body {
38         my $self = shift;
39         my ($BODY) = @_;
40         $self->{TITLE} = 'Top planets';
41         my $DBH = $self->{DBH};
42
43         return $self->noAccess unless $self->isMember;
44
45         my $error = '';
46
47         $BODY->param(isHC => $self->isHC);
48
49         my $offset = 0;
50         if (defined param('offset') && param('offset') =~ /^(\d+)$/){
51                 $offset = $1;
52         }
53         $BODY->param(Offset => $offset);
54         $BODY->param(PrevOffset => $offset - 100);
55         $BODY->param(NextOffset => $offset + 100);
56
57         my $order = 'scorerank';
58         if (defined param('order') && param('order') =~ /^(scorerank|sizerank|valuerank|xprank|hit_us)$/){
59                 $order = $1;
60         }
61         $BODY->param(Order => $order);
62         $order .= ' DESC' if ($order eq 'hit_us');
63
64
65         my $extra_columns = '';
66         if ($self->isHC){
67                 $extra_columns = ",planet_status,hit_us, alliance,relationship,nick";
68         }
69         my $query = $DBH->prepare(qq{SELECT coords(x,y,z),((ruler || ' OF ') || planet) as planet,race,
70                 size, score, value, xp, sizerank, scorerank, valuerank, xprank
71                 $extra_columns FROM current_planet_stats ORDER BY $order LIMIT 100 OFFSET ?});
72         $query->execute($offset) or $error .= p($DBH->errstr);
73         my @planets;
74         my $i = 0;
75         while (my $planet = $query->fetchrow_hashref){
76                 $i++;
77                 $planet->{ODD} = $i % 2;
78                 push @planets,$planet;
79         }
80         $BODY->param(Planets => \@planets);
81         $BODY->param(Error => $error);
82         return $BODY;
83 }
84
85 1;