]> ruin.nu Git - ndwebbie.git/blob - lib/NDWeb/Controller/Root.pm
Login/Logout and session support with roles + convert to html 4.01.
[ndwebbie.git] / lib / NDWeb / Controller / Root.pm
1 package NDWeb::Controller::Root;
2
3 use strict;
4 use warnings;
5 use parent 'Catalyst::Controller';
6
7 use ND::Include;
8
9 #
10 # Sets the actions in this controller to be registered with no prefix
11 # so they function identically to actions created in MyApp.pm
12 #
13 __PACKAGE__->config->{namespace} = '';
14
15 =head1 NAME
16
17 NDWeb::Controller::Root - Root Controller for NDWeb
18
19 =head1 DESCRIPTION
20
21 [enter your description here]
22
23 =head1 METHODS
24
25 =cut
26
27 =head2 default
28
29 =cut
30
31 sub index : Local Path Args(0) {
32         my ( $self, $c ) = @_;
33 }
34
35 sub default : Path {
36         my ( $self, $c ) = @_;
37         $c->res->body( 'Page not found' );
38         $c->response->status(404);
39 }
40
41 sub login : Local {
42         my ($self, $c) = @_;
43         if ($c->login){
44                 $c->res->redirect($c->uri_for('index'));
45                 return;
46         }
47
48         $c->stash(error => 'Bad password');
49         $c->stash(template => 'index.tt2');
50         $c->forward('index');
51 }
52
53 sub logout : Local {
54         my ($self, $c) = @_;
55         $c->logout;
56         $c->res->redirect($c->uri_for('index'));
57 }
58
59 #sub begin : private {
60 #}
61
62 sub listTargets : Private {
63         my ($self, $c) = @_;
64
65         my $dbh = $c ->model;
66
67         my $query = $dbh->prepare(q{SELECT t.id, r.id AS raid, r.tick+c.wave-1 AS landingtick, 
68                 (released_coords AND old_claim(timestamp)) AS released_coords, coords(x,y,z),c.launched,c.wave,c.joinable
69 FROM raid_claims c
70         JOIN raid_targets t ON c.target = t.id
71         JOIN raids r ON t.raid = r.id
72         JOIN current_planet_stats p ON t.planet = p.id
73 WHERE c.uid = $1 AND r.tick+c.wave > tick() AND r.open AND not r.removed
74 ORDER BY r.tick+c.wave,x,y,z});
75         $query->execute($c->user->id) or die $dbh->errstr;
76         my @targets;
77         while (my $target = $query->fetchrow_hashref){
78                 push @targets, $target;
79         }
80
81         $c->stash(targets => \@targets);
82 }
83
84 sub auto : Private {
85         my ($self, $c) = @_;
86         my $dbh = $c ->model;
87
88         $c->stash(dbh => $dbh);
89
90         $dbh->do(q{SET timezone = 'GMT'});
91
92         $c->stash(TICK =>$dbh->selectrow_array('SELECT tick()',undef));
93         $c->stash->{game}->{tick} = $c->stash->{TICK};
94
95         if ($c->user_exists){
96                 $c->stash(UID => $c->user->id);
97         }else{
98                 $c->stash(UID => -4);
99         }
100
101 }
102
103 sub access_denied : Private {
104         my ($self, $c, $action) = @_;
105
106         $c->log->debug('moo' . $action);
107
108         # Set the error message
109         $c->stash->{template} = 'access_denied.tt2';
110
111 }
112
113 =head2 end
114
115 Attempt to render a view, if needed.
116
117 =cut 
118
119 sub end : ActionClass('RenderView') {
120         my ($self, $c) = @_;
121
122         my $dbh = $c ->model;
123
124         if ($c->user_exists && $c->res->status == 200){
125                 my $fleetupdate = 0;
126                 if ($c->check_user_roles(qw/member_menu/)){
127                         $fleetupdate = $dbh->selectrow_array(q{SELECT tick FROM fleets WHERE sender = ?
128                                 AND mission = 'Full fleet' AND tick > tick() - 24
129                                 },undef,$c->user->planet);
130                         $fleetupdate = 0 unless defined $fleetupdate;
131                 }
132
133                 my ($unread,$newposts) = $dbh->selectrow_array(unread_query,undef,$c->user->id) or die $dbh->errstr;
134
135                 $c->stash(user => {
136                         id => $c->user->id,
137                         name => $c->user->username,
138                         css => $c->user->css,
139                         newposts => $newposts,
140                         unreadposts => $unread
141                 });
142                 $c->stash->{user}->{attacker} = $c->check_user_roles(qw/attack_menu/)
143                         && (!$c->check_user_roles(qw/member_menu/)
144                                 || ($c->user->planet && (($c->stash->{TICK} - $fleetupdate < 24)
145                                         || $c->check_user_roles(qw/no_fleet_update/)))),
146                 $c->forward('listTargets');
147         }
148 }
149
150 =head1 AUTHOR
151
152 Michael Andreen (harv@ruin.nu)
153
154 =head1 LICENSE
155
156 GPL 2, or later.
157
158 =cut
159
160 1;