File Coverage

blib/lib/CGI/Application/Plugin/Authentication/Driver/Dummy.pm
Criterion Covered Total %
statement 11 11 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod 1 1 100.0
total 16 16 100.0


line stmt bran cond sub pod time code
1             package CGI::Application::Plugin::Authentication::Driver::Dummy;
2              
3 3     3   950 use strict;
  3         6  
  3         103  
4 3     3   15 use warnings;
  3         5  
  3         146  
5             our $VERSION = '0.20';
6              
7 3     3   43 use base qw(CGI::Application::Plugin::Authentication::Driver);
  3         6  
  3         931  
8              
9             =head1 NAME
10              
11             CGI::Application::Plugin::Authentication::Driver::Dummy - Dummy Authentication driver which
12             lets anyone authenticate regardless of the password they provide
13              
14             =head1 VERSION
15              
16             This document describes CGI::Application::Plugin::Authentication::Driver::Dummy version 0.20
17              
18             =head1 SYNOPSIS
19              
20             use base qw(CGI::Application);
21             use CGI::Application::Plugin::Authentication;
22              
23             __PACKAGE__->authen->config(
24             DRIVER => 'Dummy',
25             );
26              
27             =head1 DESCRIPTION
28              
29             This Driver is the anti-authentication driver, since it doesn't check the
30             credentials at all, and just accepts whatever the user has entered.
31             It can be useful in development, or if you want a guest based system without
32             passwords.
33              
34              
35             =head1 EXAMPLE
36              
37             __PACKAGE__->authen->config(
38             DRIVER => 'Dummy',
39             );
40              
41              
42             =head1 METHODS
43              
44             =head2 verify_credentials
45              
46             This method will automatically return the first credential as the username without checking
47             anything else.
48              
49             =cut
50              
51             sub verify_credentials {
52 4     4 1 6 my $self = shift;
53 4         19 return shift;
54             }
55              
56              
57             =head1 SEE ALSO
58              
59             L, L, perl(1)
60              
61              
62             =head1 LICENCE AND COPYRIGHT
63              
64             Copyright (c) 2005, SiteSuite. All rights reserved.
65              
66             This module is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
67              
68              
69             =head1 DISCLAIMER OF WARRANTY
70              
71             BECAUSE THIS SOFTWARE IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE SOFTWARE, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE SOFTWARE "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE SOFTWARE IS WITH YOU. SHOULD THE SOFTWARE PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR, OR CORRECTION.
72              
73             IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE SOFTWARE AS PERMITTED BY THE ABOVE LICENCE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE SOFTWARE (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE SOFTWARE TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
74              
75             =cut
76              
77             1;