]> ruin.nu Git - ndwebbie.git/blobdiff - lib/NDWeb/Controller/Root.pm
Login/Logout and session support with roles + convert to html 4.01.
[ndwebbie.git] / lib / NDWeb / Controller / Root.pm
index 0a41059c7bc3e7188202c6caf050c12cdb61d464..6685c8537c812e0a41624c6808c24de5dd6625f0 100644 (file)
@@ -4,6 +4,8 @@ use strict;
 use warnings;
 use parent 'Catalyst::Controller';
 
+use ND::Include;
+
 #
 # Sets the actions in this controller to be registered with no prefix
 # so they function identically to actions created in MyApp.pm
@@ -27,25 +29,84 @@ NDWeb::Controller::Root - Root Controller for NDWeb
 =cut
 
 sub index : Local Path Args(0) {
-    my ( $self, $c ) = @_;
-
-       $c->stash(abc => $c->req->base);
+       my ( $self, $c ) = @_;
 }
 
 sub default : Path {
-    my ( $self, $c ) = @_;
+       my ( $self, $c ) = @_;
        $c->res->body( 'Page not found' );
-    $c->response->status(404);
-    
+       $c->response->status(404);
 }
 
-sub auto : Private {
+sub login : Local {
+       my ($self, $c) = @_;
+       if ($c->login){
+               $c->res->redirect($c->uri_for('index'));
+               return;
+       }
+
+       $c->stash(error => 'Bad password');
+       $c->stash(template => 'index.tt2');
+       $c->forward('index');
+}
+
+sub logout : Local {
+       my ($self, $c) = @_;
+       $c->logout;
+       $c->res->redirect($c->uri_for('index'));
+}
+
+#sub begin : private {
+#}
+
+sub listTargets : Private {
        my ($self, $c) = @_;
 
        my $dbh = $c ->model;
+
+       my $query = $dbh->prepare(q{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 = $1 AND r.tick+c.wave > tick() AND r.open AND not r.removed
+ORDER BY r.tick+c.wave,x,y,z});
+       $query->execute($c->user->id) or die $dbh->errstr;
+       my @targets;
+       while (my $target = $query->fetchrow_hashref){
+               push @targets, $target;
+       }
+
+       $c->stash(targets => \@targets);
+}
+
+sub auto : Private {
+       my ($self, $c) = @_;
+       my $dbh = $c ->model;
+
        $c->stash(dbh => $dbh);
 
-       $c->stash->{game}->{tick} = $dbh->selectrow_array('SELECT tick()',undef);
+       $dbh->do(q{SET timezone = 'GMT'});
+
+       $c->stash(TICK =>$dbh->selectrow_array('SELECT tick()',undef));
+       $c->stash->{game}->{tick} = $c->stash->{TICK};
+
+       if ($c->user_exists){
+               $c->stash(UID => $c->user->id);
+       }else{
+               $c->stash(UID => -4);
+       }
+
+}
+
+sub access_denied : Private {
+       my ($self, $c, $action) = @_;
+
+       $c->log->debug('moo' . $action);
+
+       # Set the error message
+       $c->stash->{template} = 'access_denied.tt2';
 
 }
 
@@ -55,16 +116,44 @@ Attempt to render a view, if needed.
 
 =cut 
 
-sub end : ActionClass('RenderView') {}
+sub end : ActionClass('RenderView') {
+       my ($self, $c) = @_;
+
+       my $dbh = $c ->model;
+
+       if ($c->user_exists && $c->res->status == 200){
+               my $fleetupdate = 0;
+               if ($c->check_user_roles(qw/member_menu/)){
+                       $fleetupdate = $dbh->selectrow_array(q{SELECT tick FROM fleets WHERE sender = ?
+                               AND mission = 'Full fleet' AND tick > tick() - 24
+                               },undef,$c->user->planet);
+                       $fleetupdate = 0 unless defined $fleetupdate;
+               }
+
+               my ($unread,$newposts) = $dbh->selectrow_array(unread_query,undef,$c->user->id) or die $dbh->errstr;
+
+               $c->stash(user => {
+                       id => $c->user->id,
+                       name => $c->user->username,
+                       css => $c->user->css,
+                       newposts => $newposts,
+                       unreadposts => $unread
+               });
+               $c->stash->{user}->{attacker} = $c->check_user_roles(qw/attack_menu/)
+                       && (!$c->check_user_roles(qw/member_menu/)
+                               || ($c->user->planet && (($c->stash->{TICK} - $fleetupdate < 24)
+                                       || $c->check_user_roles(qw/no_fleet_update/)))),
+               $c->forward('listTargets');
+       }
+}
 
 =head1 AUTHOR
 
-Catalyst developer
+Michael Andreen        (harv@ruin.nu)
 
 =head1 LICENSE
 
-This library is free software, you can redistribute it and/or modify
-it under the same terms as Perl itself.
+GPL 2, or later.
 
 =cut