X-Git-Url: https://ruin.nu/git/?a=blobdiff_plain;f=ND%2FWeb%2FXMLPage.pm;h=68fd96b246b078f333d9dcd770fc4a432a0c26df;hb=add4b96ab08441ea81a200af0014a3016df9e1d0;hp=8381a1fc7035de628816b9770b352b9f11a49f4c;hpb=5e8e40894860b7bab39783a43c32d98d080801c9;p=ndwebbie.git diff --git a/ND/Web/XMLPage.pm b/ND/Web/XMLPage.pm index 8381a1f..68fd96b 100644 --- a/ND/Web/XMLPage.pm +++ b/ND/Web/XMLPage.pm @@ -27,7 +27,7 @@ use ND::Include; use ND::Web::Page; use ND::Web::Include; -our @ISA = qw/ND::Web::Page/; +use base qw/ND::Web::Page/; sub noAccess () { HTML::Template->new(filename => 'templates/NoAccess.tmpl', global_vars => 1, cache => 1); @@ -36,6 +36,32 @@ sub noAccess () { 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, 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'}; + } + 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}; @@ -53,7 +79,8 @@ sub render : method { $self->process; - my $type = 'text/html'; + my $type = 'application/xhtml+xml'; + $type = 'text/html' if $self->{USER_AGENT} =~ /MSIE/; my $body; if ($self->{XML}){ $type = 'text/xml'; @@ -86,7 +113,7 @@ sub render : method { $template->param(isIntel => $self->isBC()); $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 => listTargets()); + $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); @@ -99,11 +126,6 @@ sub render : method { my $output = $template->output; print header(-type=> $type, -charset => 'utf-8', -Content_Length => length $output); print $output; - - - $DBH->rollback unless $DBH->{AutoCommit}; - $DBH->disconnect; - }; 1;