]> ruin.nu Git - ndwebbie.git/blob - index.pl
def request page
[ndwebbie.git] / index.pl
1 #!/usr/bin/perl -w
2 #**************************************************************************
3 #   Copyright (C) 2006 by Michael Andreen <harvATruinDOTnu>               *
4 #                                                                         *
5 #   This program is free software; you can redistribute it and/or modify  *
6 #   it under the terms of the GNU General Public License as published by  *
7 #   the Free Software Foundation; either version 2 of the License, or     *
8 #   (at your option) any later version.                                   *
9 #                                                                         *
10 #   This program is distributed in the hope that it will be useful,       *
11 #   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
12 #   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
13 #   GNU General Public License for more details.                          *
14 #                                                                         *
15 #   You should have received a copy of the GNU General Public License     *
16 #   along with this program; if not, write to the                         *
17 #   Free Software Foundation, Inc.,                                       *
18 #   51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.         *
19 #**************************************************************************/
20
21 package ND;
22 use CGI qw/:standard/;
23 use HTML::Template;
24 use DBI;
25 use DBD::Pg qw(:pg_types);
26 use strict;
27
28
29 my $cgi = new CGI;
30
31 chdir $ENV{'DOCUMENT_ROOT'};
32
33 our $DBH = undef;
34 our $UID = undef;
35 our $PLANET = undef;
36 our $TEMPLATE = undef;
37 our $TICK = undef;
38
39 $ND::TEMPLATE = HTML::Template->new(filename => 'templates/skel.tmpl');
40
41 for my $file ("db.pl","include.pl"){
42         unless (my $return = do $file){
43                 warn "couldn't parse $file: $@" if $@;
44                 warn "couldn't do $file: $!"    unless defined $return;
45                 warn "couldn't run $file"       unless $return;
46         }
47 }
48
49 ($UID,$PLANET) = $DBH->selectrow_array('SELECT uid,planet FROM users WHERE username = ?'
50         ,undef,$ENV{'REMOTE_USER'});
51
52 ($TICK) = $DBH->selectrow_array('SELECT tick()',undef);
53
54
55 my $query = $DBH->prepare('SELECT groupname,attack,gid from groupmembers NATURAL JOIN groups WHERE uid = ?');
56 $query->execute($UID);
57
58 our $ATTACKER = 0;
59 undef our %GROUPS;
60 while (my ($name,$attack,$gid) = $query->fetchrow()){
61         $GROUPS{$name} = $gid;
62         $ATTACKER = 1 if $attack;
63 }
64
65
66 our $LOG = $DBH->prepare('INSERT INTO log (uid,text) VALUES(?,?)');
67
68 my $page = 'main';
69 if (param('page') =~ /^(main|check|motd|points|covop|top100|launchConfirmation|addintel|defrequest)$/){
70         $page = $1;
71 }
72
73 print header;
74 $ND::BODY = HTML::Template->new(filename => "templates/${page}.tmpl");
75
76 unless (my $return = do "${page}.pl"){
77         print "<p><b>couldn't parse $page: $@</b></p>" if $@;
78         print "<p><b>couldn't do $page: $!</b></p>"    unless defined $return;
79         print "<p><b>couldn't run $page</b></p>"       unless $return;
80 }
81
82 my $fleetupdate = $DBH->selectrow_array('SELECT landing_tick FROM fleets WHERE uid = ? AND fleet = 0',undef,$UID);
83
84 $TEMPLATE->param(Tick => $TICK);
85 $TEMPLATE->param(isMember => (($TICK - $fleetupdate < 24) || isScanner()) && $PLANET && isMember());
86 $TEMPLATE->param(isHC => isHC());
87 $TEMPLATE->param(isDC => isDC());
88 $TEMPLATE->param(isBC => isBC());
89 $TEMPLATE->param(isAttacker => $ATTACKER && (!isMember() || ((($TICK - $fleetupdate < 24) || isScanner()) && $PLANET)));
90 if ($ATTACKER && (!isMember() || ((($TICK - $fleetupdate < 24) || isScanner()) && $PLANET))){
91         my $query = $DBH->prepare(qq{SELECT t.id, r.id AS raid, r.tick+c.wave-1 AS landingtick, released_coords, coords(x,y,z),c.launched
92 FROM raid_claims c
93         JOIN raid_targets t ON c.target = t.id
94         JOIN raids r ON t.raid = r.id
95         JOIN current_planet_stats p ON t.planet = p.id
96 WHERE c.uid = ? AND r.tick+c.wave > ? AND r.open AND not r.removed
97 ORDER BY r.tick+c.wave,x,y,z});
98         $query->execute($UID,$TICK);
99         my @targets;
100         while (my $target = $query->fetchrow_hashref){
101                 my $coords = "Target $target->{id}";
102                 $coords = $target->{coords} if $target->{released_coords};
103                 push @targets,{Coords => $coords, Launched => $target->{launched}, Raid => $target->{raid}
104                         , Target => $target->{id}, Tick => $target->{landingtick}};
105         }
106         $ND::TEMPLATE->param(Targets => \@targets);
107 }
108
109 $ND::TEMPLATE->param(BODY => $ND::BODY->output);
110 print $TEMPLATE->output;
111
112
113 $DBH->disconnect;
114 $DBH = undef;
115 $UID = undef;
116 $PLANET = undef;
117 $TEMPLATE = undef;
118 $TICK = undef;
119 %GROUPS = undef;
120 $ND::BODY = undef;
121
122 exit;