]> ruin.nu Git - ndwebbie.git/blob - index.pl
some more done
[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 my $cgi = new CGI;
29
30 chdir $ENV{'DOCUMENT_ROOT'};
31
32 our $DBH = undef;
33 our $UID = undef;
34 our $PLANET = undef;
35 our $TEMPLATE = undef;
36 our $TICK = undef;
37
38 $ND::TEMPLATE = HTML::Template->new(filename => 'templates/skel.tmpl');
39
40 for my $file ("db.pl"){
41         unless (my $return = do $file){
42                 warn "couldn't parse $file: $@" if $@;
43                 warn "couldn't do $file: $!"    unless defined $return;
44                 warn "couldn't run $file"       unless $return;
45         }
46 }
47
48 ($UID,$PLANET) = $DBH->selectrow_array('SELECT uid,planet FROM users WHERE username = ?'
49         ,undef,$ENV{'REMOTE_USER'});
50
51 ($TICK) = $DBH->selectrow_array('SELECT tick()',undef);
52
53 my $query = $DBH->prepare('SELECT groupname,attack,gid from groupmembers NATURAL JOIN groups WHERE uid = ?');
54 $query->execute($UID);
55
56 our $ATTACKER = 0;
57 our @GROUPS = ();
58 while (my ($name,$attack,$gid) = $query->fetchrow()){
59         push @GROUPS,{name => $name, gid => $gid};
60         $ATTACKER = 1 if $attack;
61 }
62
63
64 $TEMPLATE->param(Tick => $TICK);
65 $TEMPLATE->param(isMember => 1);
66 $TEMPLATE->param(isAttacker => $ATTACKER);
67
68
69
70 my $page = 'main';
71 if (param('page') =~ /^(main)$/){
72         $page = $1;
73 }
74
75 $ND::BODY = HTML::Template->new(filename => "templates/${page}.tmpl");
76
77 unless (my $return = do "${page}.pl"){
78         print "couldn't parse $page: $@" if $@;
79         print "couldn't do $page: $!"    unless defined $return;
80         print "couldn't run $page"       unless $return;
81 }
82
83 print header;
84 $ND::TEMPLATE->param(BODY => $ND::BODY->output);
85 print $TEMPLATE->output;
86
87
88 $DBH->disconnect;
89 $DBH = undef;
90 $UID = undef;
91 $PLANET = undef;
92 $TEMPLATE = undef;
93 $TICK = undef;
94 @GROUPS = undef;
95 $ND::BODY = undef;
96
97 exit;