Remove Authen::TypeKey borkedness warning
[catagits/Catalyst-Authentication-Credential-HTTP-Proxy.git] / lib / Catalyst / Plugin / Authentication / Credential / TypeKey.pm
CommitLineData
2e823d32 1package Catalyst::Plugin::Authentication::Credential::TypeKey;
3bb8633b 2
3use strict;
19c14a20 4use warnings;
5
3bb8633b 6use Authen::TypeKey;
3bb8633b 7use File::Spec;
19c14a20 8use Catalyst::Utils ();
9use NEXT;
10use UNIVERSAL::require;
209fb56b 11use Scalar::Util ();
3bb8633b 12
0758419e 13our $VERSION = '0.2';
3bb8633b 14
19c14a20 15sub setup {
16 my $c = shift;
17
18 my $config = $c->config->{authentication}{typekey} ||= {};
19
20 $config->{typekey_object} ||= do {
52262613 21 ( $config->{user_class} ||=
209fb56b 22 "Catalyst::Plugin::Authentication::User::Hash" )->require;
19c14a20 23
24 $config->{key_cache} ||=
25 File::Spec->catfile( Catalyst::Utils::class2tempdir( $c, 1 ),
26 'regkeys.txt' );
27
28 my $typekey = Authen::TypeKey->new;
29
209fb56b 30 for ( grep { exists $config->{$_} }
31 qw/expires key_cache key_url token version skip_expiry_check/ )
32 {
6f758b52 33 $typekey->$_( $config->{$_} );
19c14a20 34 }
35
36 $typekey;
37 };
38
39 $c->NEXT::setup(@_);
40}
e42cd610 41
3bb8633b 42sub authenticate_typekey {
e0a35f10 43 my ( $c, @p ) = @_;
209fb56b 44
45 my ( $user, $p );
46 if ( @p == 1 ) {
47 if ( Scalar::Util::blessed( $p[0] ) ) {
48 $user = $p[0];
49 Catalyst::Exception->throw(
50 "Attempted to authenticate user object, but "
51 . "user doesnt't support 'typekey_credentials'" )
52 unless $user->supports(qw/typekey_credentials/);
53 $p = $user->typekey_credentials;
54 }
55 else {
56 $p = $p[0];
57 }
58 }
59 else {
60 $p = @p ? {@p} : undef;
61 }
3bb8633b 62
19c14a20 63 my $config = $c->config->{authentication}{typekey};
3bb8633b 64
e0a35f10 65 my $typekey = $p && delete( $p->{typekey_object} )
19c14a20 66 || $config->{typekey_object};
67
209fb56b 68 $p ||= $c->req;
69
70 if ( my $res = $typekey->verify($p) ) {
e0a35f10 71 $c->log->debug("Successfully authenticated user '$res->{name}'.")
19c14a20 72 if $c->debug;
3bb8633b 73
209fb56b 74 if ( !$user and my $store = $config->{auth_store} ) {
19c14a20 75 $store = $c->get_auth_store($store) unless ref $store;
e0a35f10 76 $user = $store->get_user( $p, $res );
19c14a20 77 }
52262613 78
209fb56b 79 if ( !$user ) {
19c14a20 80 my $user_class = $config->{user_class};
209fb56b 81 $user = $user_class->new($res);
19c14a20 82 }
83
84 $c->set_authenticated($user);
85
86 return 1;
3bb8633b 87 }
19c14a20 88 else {
89 $c->log->debug(
90 sprintf "Failed to authenticate user '%s'. Reason: '%s'",
209fb56b 91 $p->{name} || $p->param("name"),
92 $typekey->errstr
93 )
19c14a20 94 if $c->debug;
3bb8633b 95
19c14a20 96 return;
97 }
3bb8633b 98}
99
1001;
101
102__END__
103
104=head1 NAME
105
2e823d32 106Catalyst::Plugin::Authentication::Credential::TypeKey - TypeKey Authentication
19c14a20 107for Catalyst.
3bb8633b 108
109=head1 SYNOPSIS
110
e0a35f10 111 use Catalyst qw/Authentication::Credential::TypeKey/;
3bb8633b 112
e0a35f10 113 MyApp->config->{authentication}{typekey} = {
114 token => 'xxxxxxxxxxxxxxxxxxxx',
3bb8633b 115 };
116
19c14a20 117 sub foo : Local {
118 my ( $self, $c ) = @_;
119
e0a35f10 120 if ( $c->authenticate_typekey ) {
121
122 # you can also specify the params manually: $c->authenticate_typekey(
123 # name => $name,
124 # email => $email,
125 # ...
126 #)
127
19c14a20 128 # successful autentication
129
e0a35f10 130 $c->user; # this is set
19c14a20 131 }
132 }
133
134
135 sub auto : Private {
136 my ( $self, $c ) = @_;
137
e0a35f10 138 $c->authenticate_typekey; # uses $c->req
19c14a20 139
140 return 1;
141 }
3bb8633b 142
143=head1 DESCRIPTION
144
19c14a20 145This module integrates L<Authen::TypeKey> with
146L<Catalyst::Plugin::Authentication>.
147
148=head1 METHODS
149
ed18d7e6 150=head3 authenticate_typekey %parameters
19c14a20 151
ed18d7e6 152=head3 authenticate_typekey
19c14a20 153
ed18d7e6 154=head3 EXTENDED METHODS
19c14a20 155
ed18d7e6 156=head3 setup
19c14a20 157
158Fills the config with defaults.
159
160=head1 CONFIGURATION
161
162C<<$c->config->{autentication}{typekey}>> is a hash with these fields (all can
163be left out):
164
165=over 4
166
167=item typekey_object
168
169If this field does not exist an L<Authen::TypeKey> object will be created based
170on the other param and put here.
171
172=item expires
173
174=item key_url
175
176=item token
177
178=item version
179
180See L<Authen::TypeKey> for all of these. If they aren't specified
181L<Authen::TypeKey>'s defaults will be used.
182
183=item key_cache
184
185Also see L<Authen::TypeKey>.
186
187Defaults to C<regkeys.txt> under L<Catalyst::Utils/class2tempdir>.
188
189=item auth_store
190
191A store (or store name) to retrieve the user from.
192
193When a user is successfully authenticated it will call this:
194
e0a35f10 195 $store->get_user( $parameters, $result_of_verify );
19c14a20 196
e0a35f10 197Where C<$parameters> is a the hash reference passed to
198L<Authen::TypeKey/verify>, and C<$result_of_verify> is the value returned by
199L<Authen::TypeKey/verify>.
19c14a20 200
97676d77 201If this is unset, L<Catalyst::Plugin::Authentication/default_auth_store> will
202be used instead.
203
19c14a20 204=item user_class
205
97676d77 206If C<auth_store> or the default store returns nothing from get_user, this class
207will be used to instantiate an object by calling C<new> on the class with the
208return value from L<Authen::TypeKey/verify>.
19c14a20 209
210=back
3bb8633b 211
212=head1 SEE ALSO
213
19c14a20 214L<Authen::TypeKey>, L<Catalyst>, L<Catalyst::Plugin::Authentication>.
3bb8633b 215
216=head1 AUTHOR
217
19c14a20 218Christian Hansen
219
220Yuval Kogman, C<nothingmuch@woobling.org>
3bb8633b 221
222=head1 LICENSE
223
224This library is free software . You can redistribute it and/or modify it under
225the same terms as perl itself.
226
227=cut