X-Git-Url: https://ruin.nu/git/?a=blobdiff_plain;ds=sidebyside;f=NDWeb%2FXMLPage.pm;fp=NDWeb%2FXMLPage.pm;h=0000000000000000000000000000000000000000;hb=49c23244b1ba61909b726bb9189665a33027a1af;hp=288bfb20b01321cc3df8e48d5575f1b4ed24482e;hpb=8250eb360c341a4eeaa76e5e3fc0f57cf0014a60;p=ndwebbie.git diff --git a/NDWeb/XMLPage.pm b/NDWeb/XMLPage.pm deleted file mode 100644 index 288bfb2..0000000 --- a/NDWeb/XMLPage.pm +++ /dev/null @@ -1,141 +0,0 @@ -#************************************************************************** -# Copyright (C) 2006 by Michael Andreen * -# * -# This program is free software; you can redistribute it and/or modify * -# it under the terms of the GNU General Public License as published by * -# the Free Software Foundation; either version 2 of the License, or * -# (at your option) any later version. * -# * -# This program is distributed in the hope that it will be useful, * -# but WITHOUT ANY WARRANTY; without even the implied warranty of * -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * -# GNU General Public License for more details. * -# * -# You should have received a copy of the GNU General Public License * -# along with this program; if not, write to the * -# Free Software Foundation, Inc., * -# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * -#**************************************************************************/ - -package NDWeb::XMLPage; -use strict; -use warnings; -use CGI qw/:standard/; -use HTML::Template; - -use ND::Include; -use NDWeb::Page; -use NDWeb::Include; - -use base qw/NDWeb::Page/; - -sub noAccess () { - HTML::Template->new(filename => 'templates/NoAccess.tmpl', global_vars => 1, cache => 1); -}; - -sub process : method { -} - -sub listTargets () : method { - my $self = shift; - my $DBH = $self->{DBH}; - my $query = $DBH->prepare(qq{SELECT t.id, r.id AS raid, r.tick+c.wave-1 AS landingtick, - (released_coords AND old_claim(timestamp)) AS released_coords, coords(x,y,z),c.launched,c.wave,c.joinable -FROM raid_claims c - JOIN raid_targets t ON c.target = t.id - JOIN raids r ON t.raid = r.id - JOIN current_planet_stats p ON t.planet = p.id -WHERE c.uid = ? AND r.tick+c.wave > ? AND r.open AND not r.removed -ORDER BY r.tick+c.wave,x,y,z}); - $query->execute($ND::UID,$self->{TICK}); - my @targets; - while (my $target = $query->fetchrow_hashref){ - my $coords = "Target $target->{id}"; - $coords = $target->{coords} if $target->{released_coords}; - push @targets,{Coords => $coords, Launched => $target->{launched}, Raid => $target->{raid} - , Target => $target->{id}, Tick => $target->{landingtick}, Wave => $target->{wave} - , AJAX => $self->{AJAX}, JoinName => $target->{joinable} ? 'N' : 'J' - , Joinable => $target->{joinable} ? 'FALSE' : 'TRUE', JoinableTitle => $target->{joinable} ? 'Disable join' : 'Make target joinable'}; - } - my $template = HTML::Template->new(filename => "templates/targetlist.tmpl", cache => 1); - $template->param(Targets => \@targets); - return $template->output; -} - - -sub render : method { - my $self = shift; - my $DBH = $self->{DBH}; - - - chdir '/var/www/ndawn/code'; - - my $template = HTML::Template->new(filename => 'templates/skel.tmpl', global_vars => 1, cache => 1); - - my $TICK = $self->{TICK}; - my $ATTACKER = $self->{ATTACKER}; - - $self->{XML} = 0; - $self->{AJAX} = 1; - - $self->process; - - my $type = 'text/html'; - if ($self->{HTTP_ACCEPT} =~ m{application/xhtml\+xml}){ - $type = 'application/xhtml+xml' - } - my $body; - if ($self->{XML}){ - $type = 'text/xml'; - $template = HTML::Template->new(filename => "templates/xml.tmpl", cache => 1); - $body = HTML::Template->new(filename => "templates/$self->{PAGE}.xml.tmpl", cache => 1); - }else{ - $body = HTML::Template->new(filename => "templates/$self->{PAGE}.tmpl", global_vars => 1 - , cache => 1, loop_context_vars => 1, default_escape => 'HTML'); - $body->param(PAGE => $self->{PAGE}); - } - - $body = $self->render_body($body); - - unless ($body){ - return; - } - - unless ($self->{XML}){ - #TODO: Need to fix this with new stuff. - my $fleetupdate = $DBH->selectrow_array(q{SELECT tick FROM fleets WHERE sender = ? AND mission = 'Full fleet' AND tick > tick() - 24},undef,$self->{PLANET}); - - $fleetupdate = 0 unless defined $fleetupdate; - - my ($last_forum_visit) = $DBH->selectrow_array(q{SELECT last_forum_visit FROM users WHERE uid = $1} - ,undef,$self->{UID}) or $ND::ERROR .= p($DBH->errstr); - my ($unread,$newposts) = $DBH->selectrow_array(unread_query(),undef,$self->{UID},$last_forum_visit) - or $ND::ERROR .= p($DBH->errstr); - - $template->param(UnreadPosts => $unread); - $template->param(NewPosts => $newposts); - $template->param(Tick => $TICK); - $template->param(isMember => $self->isMember); - $template->param(Planet => $self->{PLANET}); - $template->param(isHC => $self->isHC); - $template->param(isDC => $self->isDC()); - $template->param(isBC => $self->isBC()); - $template->param(isIntel => $self->isIntel()); - $template->param(isAttacker => $ATTACKER && (!$self->isMember() || ((($TICK - $fleetupdate < 24) || $self->isScanner()) && $self->{PLANET}))); - if ($ATTACKER && (!$self->isMember() || ((($TICK - $fleetupdate < 24) || $self->isScanner()) && $self->{PLANET}))){ - $template->param(Targets => $self->listTargets); - } - $template->param(Coords => param('coords') ? param('coords') : '1:1:1'); - my ($css) = $DBH->selectrow_array(q{SELECT css FROM users WHERE uid = $1},undef,$ND::UID); - $template->param(CSS => $css); - $template->param(TITLE => $self->{TITLE}); - } - $template->param(Error => $ND::ERROR); - $template->param(BODY => $body->output); - my $output = $template->output; - $output =~ s/[^\x{9}\x{A}\x{D}\x{20}-\x{D7FF}\x{E000}-\x{FFFD}\x{10000}-\x{10FFFF}]//g; - print header(-type=> $type, -charset => 'utf-8', -Content_Length => length $output); - print $output; -}; - -1;