]> ruin.nu Git - ndwebbie.git/blob - index.pl
initial commit of the new perl webbie
[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 => '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 $TEMPLATE->param(TICK => $TICK);
53
54
55 print header;
56
57 my $page = 'main.pl';
58 if (param('page') =~ /^(main)$/){
59         $page = "$1.pl";
60 }
61
62 unless (my $return = do $page){
63         warn "couldn't parse $page: $@" if $@;
64         warn "couldn't do $page: $!"    unless defined $return;
65         warn "couldn't run $page"       unless $return;
66 }
67
68 print $TEMPLATE->output;
69
70
71 $DBH->disconnect;
72 $DBH = undef;
73 $UID = undef;
74 $PLANET = undef;
75 $TEMPLATE = undef;
76 $TICK = undef;
77
78 exit;