Egg-Release-Authorize
view release on metacpan or search on metacpan
lib/Egg/Model/Auth/Base/API.pm view on Meta::CPAN
L<Egg::Model::Auth::API::DBI>,
L<Egg::Model::Auth::API::DBIC>,
L<Egg::Model::Auth::API::File>,
=head1 CONFIGURATION
eAPINXpRtBO[VŤÊÌÚÅ·B
=head1 METHODS
=head2 new
Constructor.
my $auth= $e->model('auth_label_name');
my $api = $auth->api('File');
=head2 valid_id ([INPUT_ID])
The format of INPUT_ID is checked.
The format can be defined by setting the regular expression to 'user_id_regexp'
of the configuration for each API.
Default is '[A-Za-z0-9\_\-]{4,16}'.
=head2 valid_pasword ([INPUT_PASSWORD])
The format of INPUT_PASSWORD is checked.
The format can be defined by setting the regular expression to 'password_regexp'
of the configuration for each API.
Default is '[\x00-\x7F]{4,16}'.
=head2 password_check ([REGIST_PASSWORD], [INPUT_PASSWORD])
If REGIST_PASSWORD is corresponding to INPUT_PASSWORD, effective is returned.
if ($api->password_check($reg_psw, $in_psw)) {
.........
} else {
.........
}
It is not possible to correspond by this method when encrypted for the registered
password. Please set up the component of the Crypt system to API class.
package MyApp::Model::Auth::MyAuth;
...........
....
__PACKAGE__->setup_api( File=> qw/ Crypt::SHA1 / );
see
L<Egg::Model::Auth::Crypt::SHA1>,
L<Egg::Model::Auth::Crypt::MD5>,
L<Egg::Model::Auth::Crypt::Func>,
L<Egg::Model::Auth::Crypt::CBC>,
=head1 SEE ALSO
L<Egg::Release>,
L<Egg::Model::Auth>,
L<Egg::Model::Auth::Base>,
L<Egg::Base>,
L<Egg::Component>,
=head1 AUTHOR
Masatoshi Mizuno E<lt>lusheE<64>cpan.orgE<gt>
=head1 COPYRIGHT AND LICENSE
Copyright (C) 2008 Bee Flag, Corp. E<lt>L<http://egg.bomcity.com/>E<gt>.
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.
=cut
( run in 0.590 second using v1.01-cache-2.11-cpan-e1769b4cff6 )