| Finance-Bank-Cahoot documentation | Contained in the Finance-Bank-Cahoot distribution. |
Finance::Bank::Cahoot::CredentialsProvider - Abstract base class for credentials providers
my $credentials = Finance::Bank::Cahoot::CredentialsProvider::Acme->new(
credentials => [qw(account password)],
options => {account => 'acmeuser'});
Provides an abstract base class for deriving new credentials providers with a
defined interface. Derived classes MUST implement _init and get
methods.
Create a new instance of a credentials provider. Each credential is available with its own access method of the same name. All methods may be optionally supplied a character offset in the credentials value (first character is 0).
Initialization routine for the derived class to implement. Called by new
with the credentials options as a hash reference. In the following example,
taken from the the Constant credentials provider, _init simply stores
each option value in the class:
sub _init
{
my ($self, $options) = @_;
while (my ($credential, $value) = each %{$options}) {
croak 'Invalid credential '.$credential.' supplied with callback'
if not $self->can($credential);
$self->{$credential} = $value;
}
}
Public access method for the derived class to implement. Called with the
name of the credential to supply and an optional character offset (0 is
the first character). In the following example, taken from the the
Constant credentials provider, the credential is simply returned from
class members created by the previous _init method:
sub get
{
my ($self, $credential, $offset) = @_;
return substr ($self->{$credential}, $offset, 1)
if defined $offset;
return $self->{$credential};
}
Jon Connell <jon@figsandfudge.com>
This module takes its inspiration from Finance::Bank::Natwest by Jody Belka.
Copyright 2007 by Jon Connell
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
| Finance-Bank-Cahoot documentation | Contained in the Finance-Bank-Cahoot distribution. |
# Copyright (c) 2007 Jon Connell. # All Rights Reserved. # # This program is free software; you can redistribute it and/or # modify it under the same terms as Perl itself. package Finance::Bank::Cahoot::CredentialsProvider; use strict; use warnings 'all'; use vars qw($VERSION); $VERSION = '1.07'; use Carp qw(croak); use English '-no_match_vars'; sub new { my ($class, %args) = @_; croak 'Calling abstract base class constructor for '.__PACKAGE__.' is forbidden' if $class eq __PACKAGE__; croak 'Must provide a list of credentials' if not exists $args{credentials}; croak 'credentials is not an array ref' if ref $args{credentials} ne 'ARRAY'; if (exists $args{options}) { croak 'options must be a hash ref' if ref $args{options} ne 'HASH'; my @o = keys %{$args{options}}; croak 'Empty list of options' if $#o < 0; } my $self = { }; bless $self, $class; $self->{_credentials} = $args{credentials}; foreach my $credential (@{$args{credentials}}) { no strict 'refs'; ## no critic *{"${class}::$credential"} = sub { my ($self, $offset) = @_; return $self->get($credential, $offset); }; } $self->_init($args{options}); return $self; } sub get { my ($self) = @_; my $class = ref $self; croak 'Calling abstract base class get method for '.$class.' is forbidden'; } 1; __END__