From: Jesse Sheidlower Date: Sun, 30 Oct 2005 15:00:41 +0000 (+0000) Subject: Cookbook: added require-user-login patch from Chisel X-Git-Tag: 5.7099_04~1083 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=commitdiff_plain;h=d761e049eb79bc0e73b9f2bcaf88fbc89c6536b6 Cookbook: added require-user-login patch from Chisel --- diff --git a/lib/Catalyst/Manual/Cookbook.pod b/lib/Catalyst/Manual/Cookbook.pod index ff80c19..a7bfbd6 100644 --- a/lib/Catalyst/Manual/Cookbook.pod +++ b/lib/Catalyst/Manual/Cookbook.pod @@ -616,6 +616,110 @@ You can manually set errors in your code to trigger this page by calling $c->error( 'You broke me!' ); +=head2 Require user logins + +It's often useful to restrict access to your application to a set of +registered users, forcing everyone else to the login page until they're +signed in. + +To implement this in your application make sure you have a customer +table with username and password fields and a corresponding Model class +in your Catalyst application, then make the following changes: + +=head3 lib/MyApp.pm + + use Catalyst qw/Session::FastMmap Authentication::CDBI/; + + __PACKAGE__->config->{authentication} = { + 'user_class' => 'ScratchPad::M::MyDB::Customer', + 'user_field' => 'username', + 'password_field' => 'password', + 'password_hash' => '', + }; + + sub auto : Private { + my ($self, $c) = @_; + my $login_path = 'user/login'; + + # allow people to actually reach the login page! + if ($c->req->path eq $login_path) { + return 1; + } + + # if we have a user ... we're OK + if ( $c->req->user ) { + $c->session->{'authed_user'} = + MyApp::M::MyDB::Customer->retrieve( + 'username' => $c->req->user + ); + } + + # otherwise they're not logged in + else { + # force the login screen to be shown + $c->res->redirect($c->req->base . $login_path); + } + + # continue with the processing chain + return 1; + } + +=head3 lib/MyApp/C/User.pm + + sub login : Path('/user/login') { + my ($self, $c) = @_; + + # default template + $c->stash->{'template'} = "user/login.tt"; + # default form message + $c->stash->{'message'} = 'Please enter your username and password'; + + if ( $c->req->param('username') ) { + # try to log the user in + $c->session_login( + $c->req->param('username'), + $c->req->param('password'), + ); + + # if we have a user we're logged in + if ( $c->req->user ) { + $c->res->redirect('/some/page'); + } + + # otherwise we failed to login, try again! + else { + $c->stash->{'message'} = + 'Unable to authenticate the login details supplied'; + } + } + } + + sub logout : Path('/user/logout') { + my ($self, $c) = @_; + # logout the session, and remove information we've stashed + $c->session_logout; + delete $c->session->{'authed_user'}; + + # do the 'default' action + $c->res->redirect($c->req->base); +} + + +=head3 root/base/user/login.tt + + [% INCLUDE header.tt %] +
+ [% message %]
+
+
+ +
+
+ + +
+ [% INCLUDE footer.tt %] + =head1 AUTHOR Sebastian Riedel, C