X-Git-Url: https://ruin.nu/git/?a=blobdiff_plain;f=ND.pm;fp=ND.pm;h=dd017f3a4201c73c8a579373ace4d9446e0d1eb1;hb=9ce5a8529e75cb109ed9ba3fc788c94ef47b1080;hp=e95198a8898fbc709b1a595fe9b87f6b85834531;hpb=03830799201db0b0f28e9c494fdd1b5b5143749c;p=ndwebbie.git diff --git a/ND.pm b/ND.pm index e95198a..dd017f3 100755 --- a/ND.pm +++ b/ND.pm @@ -31,6 +31,9 @@ use Fcntl 'O_RDONLY'; use strict; use warnings FATAL => 'all'; +chdir '/var/www/ndawn/code'; +our %PAGES; +our $NOACCESS = HTML::Template->new(filename => 'templates/NoAccess.tmpl', global_vars => 1, cache => 1); sub handler { local $ND::r = shift; @@ -49,15 +52,16 @@ sub handler { if ($ENV{'SCRIPT_NAME'} =~ /(\w+)(\.(pl|php|pm))?$/){ $ND::PAGE = $1 unless $1 eq 'index' and $3 eq 'pl'; } - if ($ENV{REQUEST_URI} =~ m{^.*/(\w+)$}){ - param($1,1); - } - $ND::PAGE = '' unless defined $ND::PAGE; - page(); + $ND::PAGE = 'main' unless exists $PAGES{$ND::PAGE}; + + $PAGES{$ND::PAGE}->{parse}->($ENV{REQUEST_URI}); + + page($ND::PAGE); return Apache2::Const::OK; } sub page { + my ($PAGE) = @_; our $DBH = ND::DB::DB(); $DBH->do(q{SET timezone = 'GMT'}); @@ -84,14 +88,11 @@ sub page { $ATTACKER = 1 if $attack; } - tie my @pages, 'Tie::File', "/var/www/ndawn/code/pages", mode => O_RDONLY, memory => 0 or die $!; - $ND::PAGE = 'main' unless grep { /^$ND::PAGE$/ } @pages; - our $XML = 0; - $XML = 1 if param('xml') and $ND::PAGE =~ /^(raids)$/; - our $AJAX = 1; + $PAGES{$PAGE}->{process}->(); + my $type = 'text/html'; if ($XML){ $type = 'text/xml'; @@ -102,11 +103,7 @@ sub page { $ND::BODY->param(PAGE => '/'.$ND::PAGE); } - unless (my $return = do "$ND::PAGE.pl"){ - $ERROR .= "

couldn't parse $ND::PAGE: $@

" if $@; - $ERROR .= "

couldn't do $ND::PAGE: $!

" unless defined $return && defined $!; - $ERROR .= "

couldn't run $ND::PAGE

" unless $return; - } + $ND::BODY = $PAGES{$PAGE}->{render}->($DBH,$ND::BODY); unless ($XML){ my $fleetupdate = $DBH->selectrow_array('SELECT landing_tick FROM fleets WHERE uid = ? AND fleet = 0',undef,$UID);