Authen::CAS::External - Authenticate with CAS servers as a browser


Authen-CAS-External documentation  | view source Contained in the Authen-CAS-External distribution.

Index


NAME

Top

Authen::CAS::External - Authenticate with CAS servers as a browser would.

VERSION

Top

This documentation refers to Authen::CAS::External version 0.06

SYNOPSIS

Top

  my $cas_auth = Authen::CAS::External->new(
      cas_url => 'https://cas.mydomain.com/',
  );

  # Set the username and password
  $cas_auth->username('joe_smith');
  $cas_auth->password('hAkaT5eR');

  my $response = $cas_auth->authentiate();

  my $secured_page = $ua->get($response->destination);

DESCRIPTION

Top

Provides a way to authenticate with a CAS server just as a browser would. This is useful with web scrapers needing to login to a CAS site.

CONSTRUCTOR

Top

This is fully object-oriented, and as such before any method can be used, the constructor needs to be called to create an object to work with.

new

This will construct a new object.

new(%attributes)

%attributes is a HASH where the keys are attributes (specified in the ATTRIBUTES section).

new($attributes)

$attributes is a HASHREF where the keys are attributes (specified in the ATTRIBUTES section).

ATTRIBUTES

Top

cas_url

This is the URL of the CAS site excluding /login. This can be a URI object or a string of a URL.

password

This is the password to use for logging in to the CAS site. When set, this clears the ticket_granting_cookie.

username

This is the username to use for logging in to the CAS site. When set, this clears the ticket_granting_cookie.

METHODS

Top

authenticate

This method will authenticate against the CAS service using the already supplied username and password and will return a Authen::CAS::External::Response object.

This method takes a HASH with the following keys:

gateway

This is a Boolean of if the gateway parameter should be sent to the CAS server. The default is to not send any gateway parameter.

renew

This is a Boolean of if the renew parameter should be sent to the CAS server. The default is to not send any renew parameter.

service

This is a string that specifies the service value to send to the CAS server. The default is to not send any service parameter.

get_cas_credentials

This method is not actually used, but is required for classes to consume the Authen::CAS::External::UserAgent role as this class does. This method will return the currently set username and password to the user agent.

DEPENDENCIES

Top

* Moose 0.89
* MooseX::StrictConstructor 0.08
* MooseX::Types::Moose
* URI 1.22
* namespace::clean 0.04

AUTHOR

Top

Douglas Christopher Wilson, <doug at somethingdoug.com>

BUGS AND LIMITATIONS

Top

Please report any bugs or feature requests to bug-authen-cas-external at rt.cpan.org, or through the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Authen-CAS-External. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.

I highly encourage the submission of bugs and enhancements to my modules.

SUPPORT

Top

You can find documentation for this module with the perldoc command.

  perldoc Authen::CAS::External

You can also look for information at:

* RT: CPAN's request tracker

http://rt.cpan.org/NoAuth/Bugs.html?Dist=Authen-CAS-External

* AnnoCPAN: Annotated CPAN documentation

http://annocpan.org/dist/Authen-CAS-External

* CPAN Ratings

http://cpanratings.perl.org/d/Authen-CAS-External

* Search CPAN

http://search.cpan.org/dist/Authen-CAS-External/

LICENSE AND COPYRIGHT

Top


Authen-CAS-External documentation  | view source Contained in the Authen-CAS-External distribution.