Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

catalyst::plugin::authentication::credential::openid(3pm) [debian man page]

Catalyst::Plugin::Authentication::Credential::OpenID(3pmUser Contributed Perl DocumentatiCatalyst::Plugin::Authentication::Credential::OpenID(3pm)

NAME
Catalyst::Plugin::Authentication::Credential::OpenID - OpenID credential for Catalyst::Auth framework SYNOPSIS
use Catalyst qw/ Authentication Authentication::Credential::OpenID Session Session::Store::FastMmap Session::State::Cookie /; # MyApp.yaml -- optional authentication: openid: use_session: 1 user_class: MyApp::M::User::OpenID # whatever in your Controller pm sub default : Private { my($self, $c) = @_; if ($c->user_exists) { ... } } sub signin_openid : Local { my($self, $c) = @_; if ($c->authenticate_openid) { $c->res->redirect( $c->uri_for('/') ); } } # foo.tt <form action="[% c.uri_for('/signin_openid') %]" method="GET"> <input type="text" name="openid_url" class="openid" /> <input type="submit" value="Sign in with OpenID" /> </form> DESCRIPTION
Catalyst::Plugin::Authentication::Credential::OpenID is an OpenID credential for Catalyst::Plugin::Authentication framework. METHODS
authenticate_openid $c->authenticate_openid; Call this method in the action you'd like to authenticate the user via OpenID. Returns 0 if auth is not successful, and 1 if user is authenticated. User class specified with user_class config, which defaults to Catalyst::Plugin::Authentication::User::Hash, will be instantiated with the following parameters. By default, authenticate_openid method looks for claimed URI parameter from the form field named "openid_url", "openid_identifier" or "claimed_uri". If you want to use another form field name, call it like: $c->authenticate_openid( $c->req->param('myopenid_param') ); url display rss atom foaf declared_rss declared_atom declared_foaf foafmaker See Net::OpenID::VerifiedIdentity for details. DIFFERENCE WITH Authentication::OpenID There's already Catalyst::Plugin::Authentication::OpenID (Auth::OpenID) and this plugin tries to deprecate it. o Don't use this plugin with Auth::OpenID since method names will conflict and your app won't work. o Auth::OpenID uses your root path (/) as an authentication callback but this plugin uses the current path, which means you can use this plugin with other Credential plugins, like Flickr or TypeKey. o This plugin is NOT a drop-in replacement for Auth::OpenID, but your app needs only slight modifications to work with this one. o This plugin is based on Catalyst authentication framework, which means you can specify user_class or auth_store in your app config and this modules does the right thing, like other Credential modules. This crates new User object if authentication is successful, and works with Session too. AUTHOR
Six Apart, Ltd. <cpan@sixapart.com> LICENSE
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself. SEE ALSO
Catalyst::Plugin::Authentication::OpenID, Catalyst::Plugin::Authentication::Credential::Flickr perl v5.10.1 2007-10-26 Catalyst::Plugin::Authentication::Credential::OpenID(3pm)

Check Out this Related Man Page

Catalyst::Authentication::Credential::Authen::Simple(3pmUser Contributed Perl DocumentatiCatalyst::Authentication::Credential::Authen::Simple(3pm)

NAME
Catalyst::Authentication::Credential::Authen::Simple - Verify credentials with the Authen::Simple framework SYNOPSIS
use Catalyst qw(Authentication); # later on ... if ($c->authenticate({ username => 'myusername', password => 'mypassword' })){ my $long_name = $c->user->get('LongName'); # Hello Mr $long_name } DESCRIPTION
This module helps your Cataylst Application authenticate against a lot of credential databases thanks to the Authen::Simple framework. USAGE
Just configure your Catalyst App Authentication to use class 'Authen::Simple' as the credential verifier, and give it a set of Authen::Simple classes. You can pass arguments to the Authen::Simple:XXX class constructors with the 'args' key. Note that the authen key is an array. If more than one class is specified, when your app authenticates, the username and password is submitted to each class until one of the classes returns that the user/pass pair is valid. If no class validates the credentials, the user is not able to log in. 'Plugin::Authentication' => { 'realms' => { 'default' => { 'store' => { ... } 'credential' => { 'class' => 'Authen::Simple', 'authen' => [ { 'class' => 'Passwd', 'args' => { 'path' => '/etc/shadow' } }, { 'class' => 'SSH', 'args' => { 'host' => 'host.company.com' } } ] } } } } If the Catalyst log object is compatible with the Authen::Simple log object, Authen::Simple classes will log through Catalyst. new Called by Catalyst::Authentication. Instances the Authen::Simple classes read from the configuration. authenticate Usage : Call $c->authenticate({ username => ..., password => ...}); Returns : User object if the credentials are verified successfully. undef if user not authenticated. AUTHOR
Jose Luis Martinez CPAN ID: JLMARTIN CAPSiDE jlmartinez@capside.com http://www.pplusdomain.net THANKS
Tobjorn Lindahl, Dylan Martin, Tomas Doran and Inigo Tejedor Arrondo for patches and recommedations COPYRIGHT
Copyright (c) 2008 by Jose Luis Martinez Torres This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. The full text of the license can be found in the LICENSE file included with this module. SEE ALSO
Authen::Simple and all of the Authen::Simple::XXX classes perl v5.14.2 2009-11-16 Catalyst::Authentication::Credential::Authen::Simple(3pm)
Man Page