]> ruin.nu Git - ndwebbie.git/blob - NDWeb/Pages/GalaxyRankings.pm
318f4f47986f1deb60188e54de3f1e21e24781ba
[ndwebbie.git] / NDWeb / Pages / GalaxyRankings.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::GalaxyRankings;
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{galaxyrankings} = __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 Galaxies';
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|planets|xprank|avgscore)$/){
59                 $order = $1;
60         }
61         $BODY->param(Order => $order);
62         $order .= ' DESC' unless $order =~ /rank$/;
63
64
65         #my $extra_columns = '';
66         #if ($self->isHC){
67         #       $extra_columns = ",galaxy_status,hit_us, galaxy,relationship,nick";
68         #}
69         my $query = $DBH->prepare(qq{SELECT x,y,
70                 size, size_gain, size_gain_day,
71                 score,score_gain,score_gain_day,
72                 value,value_gain,value_gain_day,
73                 xp,xp_gain,xp_gain_day,
74                 sizerank,sizerank_gain,sizerank_gain_day,
75                 scorerank,scorerank_gain,scorerank_gain_day,
76                 valuerank,valuerank_gain,valuerank_gain_day,
77                 xprank,xprank_gain,xprank_gain_day,
78                 planets,planets_gain,planets_gain_day
79         FROM galaxies g WHERE tick = ( SELECT max(tick) AS max FROM galaxies)
80         ORDER BY $order LIMIT 100 OFFSET ?});
81         $query->execute($offset) or $error .= p($DBH->errstr);
82         my @galaxies;
83         while (my $galaxy = $query->fetchrow_hashref){
84                 for my $type (qw/planets size score xp value/){
85                         #$galaxy->{$type} = prettyValue($galaxy->{$type});
86                         next unless defined $galaxy->{"${type}_gain_day"};
87                         $galaxy->{"${type}img"} = 'stay';
88                         $galaxy->{"${type}img"} = 'up' if $galaxy->{"${type}_gain_day"} > 0;
89                         $galaxy->{"${type}img"} = 'down' if $galaxy->{"${type}_gain_day"} < 0;
90                         unless( $type eq 'planets'){
91                                 $galaxy->{"${type}rankimg"} = 'stay';
92                                 $galaxy->{"${type}rankimg"} = 'up' if $galaxy->{"${type}rank_gain_day"} < 0;
93                                 $galaxy->{"${type}rankimg"} = 'down' if $galaxy->{"${type}rank_gain_day"} > 0;
94                         }
95                         for my $type ($type,"${type}_gain","${type}_gain_day"){
96                                 $galaxy->{$type} =~ s/(^[-+]?\d+?(?=(?>(?:\d{3})+)(?!\d))|\G\d{3}(?=\d))/$1,/g; #Add comma for ever 3 digits, i.e. 1000 => 1,000
97                         }
98                 }
99                 push @galaxies,$galaxy;
100         }
101         $BODY->param(Galaxies => \@galaxies);
102         $BODY->param(Error => $error);
103         return $BODY;
104 }
105
106 1;