| Egg-Release-Authorize documentation | Contained in the Egg-Release-Authorize distribution. |
Egg::Model::Auth::API::File - API component to treat attestation data of file base.
package MyApp::Model::Auth::MyAuth;
..........
__PACKAGE__->config(
file => {
path => MyApp->path_to(qw/ etc members /),
delimiter => qr{\s*\:\s*},
fields => [qw/ user_id password active a_group ..... /],
id_field => 'user_id',
password_field => 'password',
active_field => 'active',
group_field => 'a_group',
},
);
__PACKAGE__->setup_api('File');
It is API component to treat the attestation data of the file base of Comma Separated Value etc.
The setting of 'file' is added to the configuration to use it and 'File' is set by 'setup_api' method.
Additionally, there is a common configuration to API class.
It is passing of the data file.
The delimiter to take out the column of each record is set by the regular expression.
Default is '\s*\t\s*'.
After the column is taken out, the name of the key to take the data into HASH is set by the list.
Own API label name is returned.
The data of LOGIN_ID is acquired from the attestation data base, and the HASH reference is returned.
Masatoshi Mizuno <lushe&64;cpan.org>
Copyright (C) 2008 Bee Flag, Corp. <http://egg.bomcity.com/>.
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.8.6 or, at your option, any later version of Perl 5 you may have available.
| Egg-Release-Authorize documentation | Contained in the Egg-Release-Authorize distribution. |
package Egg::Model::Auth::API::File; # # Masatoshi Mizuno E<lt>lusheE<64>cpan.orgE<gt> # # $Id: File.pm 347 2008-06-14 18:57:53Z lushe $ # use strict; use warnings; use Carp qw/ croak /; use FileHandle; our $VERSION= '0.01'; sub myname { 'file' } sub _setup { my($class, $e)= @_; my $c= $class->config->{file} ||= {}; $class->mk_classdata($_) for qw/ columns delimiter path /; my $path= $class->path($c->{path}) || die q{I want config file-> 'path'.}; -e $path || die qq{'$path' is not found.}; my $fields= $class->columns($c->{fields}) || die q{I want config file-> 'fields'.}; ref($fields) eq 'ARRAY' || die q{I want set file-> 'fields' with ARRAY.}; $class->delimiter($c->{delimiter} || qr{\s*\t\s*}); $class->_setup_filed($c); $class->next::method($e); } sub restore_member { my $self= shift; my $id = shift || croak __PACKAGE__. ' - I want user id.'; my $fh = FileHandle->new($self->path) || die ref($self). " - $! [@{[ $self->path ]}]"; my($id_col, $colmuns, $delimiter)= ($self->id_col, $self->columns, $self->delimiter); for ($fh->getlines) { next if (! $_ or /^#/); chomp; my %col; @col{@$colmuns}= split /$delimiter/; my $user= $col{$id_col} || next; return $self->_restore_result(\%col) if $user eq $id; } return 0; } 1; __END__