lemonldap-ng/modules/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/_CAS.pm

242 lines
5.7 KiB
Perl
Raw Normal View History

2010-08-25 16:23:45 +02:00
## @file
# Common CAS functions
## @class
# Common CAS functions
package Lemonldap::NG::Portal::_CAS;
use strict;
our $VERSION = '0.01';
## @method hashref getCasSession(string id)
# Try to recover the CAS session corresponding to id and return session datas
# If id is set to undef, return a new session
# @param id session reference
# @return session datas
sub getCasSession {
my ( $self, $id ) = splice @_;
my %h;
# Trying to recover session from CAS session storage
eval { tie %h, $self->{casStorage}, $id, $self->{casStorageOptions}; };
if ( $@ or not tied(%h) ) {
# Session not available
if ($id) {
$self->lmLog( "CAS session $id isn't yet available", 'info' );
}
else {
$self->lmLog( "Unable to create new CAS session: $@", 'error' );
}
return 0;
}
return \%h;
}
## @method void returnCasValidateError()
# Return an error for CAS VALIDATE request
# @return nothing
sub returnCasValidateError {
my ($self) = splice @_;
2010-08-26 14:24:38 +02:00
$self->lmLog( "Return CAS validate error", 'debug' );
print $self->header();
print "no\n\n";
$self->quit();
}
## @method void returnCasValidateSuccess(string username)
# Return success for CAS VALIDATE request
# @param username User name
# @return nothing
sub returnCasValidateSuccess {
my ( $self, $username ) = splice @_;
2010-08-26 14:24:38 +02:00
$self->lmLog( "Return CAS validate success with username $username",
'debug' );
print $self->header();
print "yes\n$username\n";
$self->quit();
}
2010-08-26 14:24:38 +02:00
## @method void returnCasServiceValidateError(string code, string text)
# Return an error for CAS SERVICE VALIDATE request
# @param code CAS error code
# @param text Error text
# @return nothing
sub returnCasServiceValidateError {
my ( $self, $code, $text ) = splice @_;
$code ||= 'INTERNAL_ERROR';
$text ||= 'No description provided';
$self->lmLog( "Return CAS service validate error $code ($text)", 'debug' );
print $self->header( -type => 'application/xml' );
print "<cas:serviceResponse xmlns:cas='http://www.yale.edu/tp/cas'>\n";
print "\t<cas:authenticationFailure code=\"$code\">\n";
print "\t\t$text\n";
print "\t</cas:authenticationFailure>\n";
print "</cas:serviceResponse>\n";
$self->quit();
}
## @method void returnCasServiceValidateSuccess(string username)
# Return success for CAS SERVICE VALIDATE request
# @param username User name
# @return nothing
sub returnCasServiceValidateSuccess {
my ( $self, $username ) = splice @_;
$self->lmLog( "Return CAS service validate success with username $username",
'debug' );
print $self->header( -type => 'application/xml' );
print "<cas:serviceResponse xmlns:cas='http://www.yale.edu/tp/cas'>\n";
print "\t<cas:authenticationSuccess>\n";
print "\t\t<cas:user>$username</cas:user>\n";
print "\t</cas:authenticationSuccess>\n";
print "</cas:serviceResponse>\n";
$self->quit();
}
## @method boolean deleteCasSecondarySessions(string session_id)
# Find and delete CAS sessions bounded to a primary session
# @param session_id Primary session ID
# @return result
sub deleteCasSecondarySessions {
my ( $self, $session_id ) = splice @_;
my $result = 1;
# Find CAS sessions
my $cas_sessions =
$self->{casStorage}
->searchOn( $self->{casStorageOptions}, "_cas_id", $session_id );
if ( my @cas_sessions_keys = keys %$cas_sessions ) {
foreach my $cas_session (@cas_sessions_keys) {
# Get session
$self->lmLog( "Retrieve CAS session $cas_session", 'debug' );
2010-08-26 12:25:58 +02:00
my $casSessionInfo = $self->getCasSession($cas_session);
# Delete session
2010-08-26 14:24:38 +02:00
$result = $self->deleteCasSession($casSessionInfo);
}
}
else {
$self->lmLog( "No CAS session found for session $session_id ",
'debug' );
}
return $result;
}
2010-08-26 14:24:38 +02:00
## @method boolean deleteCasSession(hashref session)
# Delete an opened CAS session
# @param session Tied session object
# @return result
sub deleteCasSession {
my ( $self, $session ) = splice @_;
# Check session object
unless ( ref($session) eq 'HASH' ) {
$self->lmLog( "Provided session is not a HASH reference", 'error' );
return 0;
}
# Get session_id
my $session_id = $session->{_session_id};
# Delete session
eval { tied(%$session)->delete() };
if ($@) {
$self->lmLog( "Unable to delete CAS session $session_id: $@", 'error' );
return 0;
}
$self->lmLog( "CAS session $session_id deleted", 'debug' );
return 1;
}
1;
2010-08-25 16:23:45 +02:00
__END__
=head1 NAME
=encoding utf8
Lemonldap::NG::Portal::_CAS - Common CAS functions
=head1 SYNOPSIS
use Lemonldap::NG::Portal::_CAS;
=head1 DESCRIPTION
This module contains common methods for CAS
=head1 METHODS
=head2 getCasSession
Try to recover the CAS session corresponding to id and return session datas
If id is set to undef, return a new session
=head2 returnCasValidateError
Return an error for CAS VALIDATE request
=head2 returnCasValidateSuccess
Return success for CAS VALIDATE request
=head2 deleteCasSecondarySessions
Find and delete CAS sessions bounded to a primary session
2010-08-26 14:24:38 +02:00
=head2 returnCasServiceValidateError
Return an error for CAS SERVICE VALIDATE request
=head2 returnCasServiceValidateSuccess
Return success for CAS SERVICE VALIDATE request
=head2 deleteCasSession
Delete an opened CAS session
2010-08-25 16:23:45 +02:00
=head1 SEE ALSO
L<Lemonldap::NG::Portal::IssuerDBCAS>
2010-08-25 16:23:45 +02:00
=head1 AUTHOR
Clement Oudot, E<lt>coudot@linagora.comE<gt>
=head1 COPYRIGHT AND LICENSE
Copyright (C) 2010 by Clement Oudot
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.
=cut