]> ruin.nu Git - ndwebbie.git/blob - index.pl
11789fa70378bfd883ab1e16ec3edf2394f42351
[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 $USER = $ENV{'REMOTE_USER'};
35
36 our $TEMPLATE = HTML::Template->new(filename => 'templates/skel.tmpl');
37
38 for my $file ("db.pl","include.pl"){
39         unless (my $return = do $file){
40                 print "couldn't parse $file: $@" if $@;
41                 print "couldn't do $file: $!"    unless defined $return;
42                 print "couldn't run $file"       unless $return;
43         }
44 }
45
46 our ($UID,$PLANET) = $DBH->selectrow_array('SELECT uid,planet FROM users WHERE username = ?'
47         ,undef,$ENV{'REMOTE_USER'});
48
49 our ($TICK) = $DBH->selectrow_array('SELECT tick()',undef);
50
51
52 my $query = $DBH->prepare('SELECT groupname,attack,gid from groupmembers NATURAL JOIN groups WHERE uid = ?');
53 $query->execute($UID);
54
55 our $ATTACKER = 0;
56 undef our %GROUPS;
57 while (my ($name,$attack,$gid) = $query->fetchrow()){
58         $GROUPS{$name} = $gid;
59         $ATTACKER = 1 if $attack;
60 }
61
62
63 our $LOG = $DBH->prepare('INSERT INTO log (uid,text) VALUES(?,?)');
64
65 my $page = 'main';
66 if (param('page') =~ /^(main|check|motd|points|covop|top100|launchConfirmation|addintel|defrequest|raids|editRaid|calls|intel|users)$/){
67         $page = $1;
68 }
69
70 our $XML = 0;
71 $XML = 1 if param('xml') and $page =~ /^(raids)$/;
72
73 my $type = 'text/html';
74 if ($XML){
75         $type = 'text/xml';
76         $ND::TEMPLATE = HTML::Template->new(filename => "templates/xml.tmpl");
77         $ND::BODY = HTML::Template->new(filename => "templates/${page}.xml.tmpl");
78 }else{
79         $ND::BODY = HTML::Template->new(filename => "templates/${page}.tmpl");
80 }
81
82
83 unless (my $return = do "${page}.pl"){
84         print "<p><b>couldn't parse $page: $@</b></p>" if $@;
85         print "<p><b>couldn't do $page: $!</b></p>"    unless defined $return;
86         print "<p><b>couldn't run $page</b></p>"       unless $return;
87 }
88
89 unless ($XML){
90         my $fleetupdate = $DBH->selectrow_array('SELECT landing_tick FROM fleets WHERE uid = ? AND fleet = 0',undef,$UID);
91
92
93         $TEMPLATE->param(Tick => $TICK);
94         $TEMPLATE->param(isMember => (($TICK - $fleetupdate < 24) || isScanner()) && $PLANET && isMember());
95         $TEMPLATE->param(isHC => isHC());
96         $TEMPLATE->param(isDC => isDC());
97         $TEMPLATE->param(isBC => isBC());
98         $TEMPLATE->param(isAttacker => $ATTACKER && (!isMember() || ((($TICK - $fleetupdate < 24) || isScanner()) && $PLANET)));
99         if ($ATTACKER && (!isMember() || ((($TICK - $fleetupdate < 24) || isScanner()) && $PLANET))){
100                 $ND::TEMPLATE->param(Targets => listTargets());
101         }
102         $TEMPLATE->param(Coords => param('coords') ? param('coords') : '1:1:1');
103
104 }
105 $ND::TEMPLATE->param(BODY => $ND::BODY->output);
106 my $output = $TEMPLATE->output;
107 print header(-type=> $type, -charset => 'utf-8', -Content_Length => length $output);
108 print $output;
109
110
111 $DBH->disconnect;
112 $DBH = undef;
113 $UID = undef;
114 $USER = undef;
115 $PLANET = undef;
116 $TEMPLATE = undef;
117 $TICK = undef;
118 %GROUPS = undef;
119 $ND::BODY = undef;
120
121 exit;