| Lemonldap-NG-Portal documentation | Contained in the Lemonldap-NG-Portal distribution. |
Lemonldap::NG::Portal::AuthTwitter - Perl extension for building Lemonldap::NG compatible portals with Twitter authentication.
use Lemonldap::NG::Portal::SharedConf;
my $portal = new Lemonldap::NG::Portal::Simple(
configStorage => {...}, # See Lemonldap::NG::Portal
authentication => 'Twitter',
);
if($portal->process()) {
# Write here the menu with CGI methods. This page is displayed ONLY IF
# the user was not redirected here.
print $portal->header('text/html; charset=utf8'); # DON'T FORGET THIS (see CGI(3))
print "...";
}
else {
# If the user enters here, IT MEANS THAT CAS REDIRECTION DOES NOT WORK
print $portal->header('text/html; charset=utf8'); # DON'T FORGET THIS (see CGI(3))
print "<html><body><h1>Unable to work</h1>";
print "This server isn't well configured. Contact your administrator.";
print "</body></html>";
}
This library just overload few methods of Lemonldap::NG::Portal::Simple to use Twitter authentication mechanism.
See Lemonldap::NG::Portal::Simple for usage and other methods.
Thomas Chemineau, <thomas.chemineau@linagora.com>, Xavier Guimard, <x.guimard@free.fr>
Use OW2 system to report bug or ask for features: http://jira.ow2.org
Lemonldap::NG is available at http://forge.objectweb.org/project/showfiles.php?group_id=274
Copyright (C) 2010 by Xavier Guimard <x.guimard@free.fr>
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.10.0 or, at your option, any later version of Perl 5 you may have available.
| Lemonldap-NG-Portal documentation | Contained in the Lemonldap-NG-Portal distribution. |
##@file # Twitter authentication backend file ##@class # Twitter authentication backend class. package Lemonldap::NG::Portal::AuthTwitter; use strict; use Lemonldap::NG::Portal::Simple; our $VERSION = '1.0.0'; our $initDone; BEGIN { eval { require threads::shared; threads::shared::share($initDone); }; } ## @apmethod int authInit() # @return Lemonldap::NG::Portal constant sub authInit { my $self = shift; return PE_OK if ($initDone); unless ( $self->{twitterKey} and $self->{twitterSecret} ) { $self->abort( 'Bad configuration', 'twitterKey and twitterSecret parameters are required' ); } eval { require Net::Twitter }; $self->abort("Unable to load Net::Twitter: $@") if ($@); $initDone = 1; PE_OK; } ## @apmethod int extractFormInfo() # Authenticate users by Twitter and set user # @return Lemonldap::NG::Portal constant sub extractFormInfo { my $self = shift; # Build Net::Twitter object $self->{_twitter} = Net::Twitter->new( traits => [qw/API::REST OAuth/], consumer_key => $self->{twitterKey}, consumer_secret => $self->{twitterSecret}, clientname => $self->{twitterAppName} || 'Lemonldap::NG' ); # 1. Request to authenticate unless ( $self->param('twitterback') ) { $self->lmLog( 'Redirection to Twitter', 'debug' ); my $url; # 1.1 Try to get token to dialog with Twitter eval { $url = $self->{_twitter}->get_authorization_url( callback => "$self->{portal}?twitterback=1&url=" . $self->get_url() ); }; # If 401 is returned => application not declared on Twitter if ($@) { if ( $@ =~ /\b401\b/ ) { $self->abort('Twitter application undeclared'); } $self->lmLog( "Net::Twitter error: $@", 'error' ); return PE_ERROR; } # 1.2 Store token key and secret in cookies push @{ $self->{cookie} }, $self->cookie( -name => '_twitTok', -value => $self->{_twitter}->request_token, -expires => '+3m' ), $self->cookie( -name => '_twitSec', -value => $self->{_twitter}->request_token_secret, -expires => '+3m' ); # 1.3 Redirect user to Twitter $self->redirect( -uri => $url ); $self->quit(); } # 2. User is back from Twitter my $request_token = $self->param('oauth_token'); my $verifier = $self->param('oauth_verifier'); unless ( $request_token and $verifier ) { $self->lmLog( 'Twitter OAuth protocol error', 'error' ); return PE_ERROR; } # 2.1 Reconnect to Twitter ( $self->{sessionInfo}->{_access_token}, $self->{sessionInfo}->{_access_token_secret} ) = $self->{_twitter}->request_access_token( token => $self->cookie('_twitTok'), token_secret => $self->cookie('_twitSec'), verifier => $verifier ); # 2.2 Ask for user_timeline : I've not found an other way to access to user # datas ! my $status = eval { $self->{_twitter}->user_timeline( { count => 1 } ) }; # 2.3 Check if user has accepted authentication if ($@) { if ( $@ =~ /\b401\b/ ) { $self->userError('Twitter authentication refused'); return PE_BADCREDENTIALS; } $self->lmLog( "Net::Twitter error: $@", 'error' ); } # 2.4 Set $self->{user} to twitter.com/<username> $self->{_twitterUser} = $status->[0]->{user}; $self->{user} = 'twitter.com/' . $status->{_twitterUser}->{screen_name}; $self->lmLog( "Good Twitter authentication for $self->{user}", 'debug' ); # Force redirection to avoid displaying OAuth datas $self->{mustRedirect} = 1; # Clean temporaries cookies push @{ $self->{cookie} }, $self->cookie( -name => '_twitTok', -value => 0, -expires => '-3m' ), $self->cookie( -name => '_twitSec', -value => 0, -expires => '-3m' ); PE_OK; } ## @apmethod int setAuthSessionInfo() # Set authenticationLevel and Twitter attributes. # @return Lemonldap::NG::Portal constant sub setAuthSessionInfo { my $self = shift; # TODO: set a parameter to choose this foreach (qw(screen_name location lang name url)) { $self->{sessionInfo}->{$_} = $self->{_twitterUser}->{$_}; } $self->{sessionInfo}->{authenticationLevel} = $self->{twitterAuthnLevel}; PE_OK; } ## @apmethod int authenticate() # Does nothing. # @return Lemonldap::NG::Portal constant sub authenticate { PE_OK; } ## @apmethod int authFinish() # Does nothing. # @return Lemonldap::NG::Portal constant sub authFinish { PE_OK; } ## @apmethod int authLogout() # Does nothing # @return Lemonldap::NG::Portal constant sub authLogout { PE_OK; } ## @apmethod boolean authForce() # Does nothing # @return result sub authForce { return 0; } 1; __END__