Bio-Das-ProServer
view release on metacpan or search on metacpan
lib/Bio/Das/ProServer/Authenticator.pm view on Meta::CPAN
my $auth = Bio::Das::ProServer::Authenticator::<impl>->new({
...
'debug' => 1,
});
=head1 SUBROUTINES/METHODS
=head2 new : Instantiates a new object.
my $auth = Bio::Das::ProServer::Authenticator::<impl>->new({
'dsn' => $, # source name
'config' => $, # source config
'debug' => $, # debug flag
});
=head2 authenticate : Applies authentication to a request.
my $allow = $oAuth->authenticate({
'socket' => $, # handle
'peer_addr' => $, # packed
'peer_port' => $, # number
'request' => $, # HTTP::Request object
'cgi' => $, # CGI object
'call' => $, # DAS command
});
Authenticates a request by making use of various request data. If requests are
to be denied, the authentication operation should return an appropriate
HTTP::Response object. Otherwise nothing (undef) is returned.
This stub method denies all requests with a standard 403 (Forbidden) response.
=head2 deny : Convenience method useful for indicating authentication failure
sub authenticate {
my ($self, $params) = @_;
# Perform authentication
return $self->deny($params);
}
Returns a standard 403 (Forbidden) response.
=head2 allow : Convenience method useful for indicating authentication success
sub authenticate {
my ($self, $params) = @_;
# Perform authentication
return $self->allow($params);
}
Simply returns an undefined value.
=head2 init : Executed upon construction
This stub method does nothing.
=head1 INCOMPATIBILITIES
None reported.
=head1 BUGS AND LIMITATIONS
None reported.
=head1 DEPENDENCIES
=over
=item L<Carp|Carp>
=item L<HTTP::Response|HTTP::Response>
=back
=head1 AUTHOR
Andy Jenkinson <andy.jenkinson@ebi.ac.uk>
=head1 LICENSE AND COPYRIGHT
Copyright (c) 2008 EMBL-EBI
=cut
( run in 0.742 second using v1.01-cache-2.11-cpan-39bf76dae61 )