X-Git-Url: https://ruin.nu/git/?a=blobdiff_plain;f=lib%2FNDWeb%2FController%2FRoot.pm;h=05f2ef8fe258801968c6099b47a8dec127d7ece1;hb=c66b1b9074d880fb13a825bc75c1bc842ec65f75;hp=8a6ab6abce00df8223909fbd281a55399fcad48f;hpb=efcd1b9a43e47cf1fa5dff3afe1c348bcc2421fb;p=ndwebbie.git diff --git a/lib/NDWeb/Controller/Root.pm b/lib/NDWeb/Controller/Root.pm index 8a6ab6a..05f2ef8 100644 --- a/lib/NDWeb/Controller/Root.pm +++ b/lib/NDWeb/Controller/Root.pm @@ -60,10 +60,10 @@ sub login : Local { $log->execute($c->user->id,$c->req->address ,$country,$c->sessionid,$remember); - my $ref = $c->req->referer; - $ref =~ s/^http:/https:/ unless $c->debug; - $c->res->redirect($ref); + $c->forward('redirect'); return; + } elsif ($c->req->method eq 'POST'){ + $c->res->status(400); } } @@ -142,7 +142,11 @@ sub auto : Private { }else{ $c->stash(UID => -4); } +} +sub redirect : Private { + my ($self, $c) = @_; + $c->res->redirect($c->uri_for('/'.$c->flash->{referrer})); } sub access_denied : Private { @@ -161,6 +165,10 @@ Attempt to render a view, if needed. sub end : ActionClass('RenderView') { my ($self, $c) = @_; + if ($c->res->status == 302){ + return; + } + my $dbh = $c ->model; if (scalar @{ $c->error } ){ @@ -205,6 +213,10 @@ sub end : ActionClass('RenderView') { }); $birthdays->execute; $c->stash(birthdays => $birthdays->fetchall_arrayref({})); + + if ($c->res->status == 200){ + $c->flash(referrer => $c->req->path); + } } =head1 AUTHOR