]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/src/perlmods/OpenILS/Application/Auth.pm
changed to new storage API call
[Evergreen.git] / Open-ILS / src / perlmods / OpenILS / Application / Auth.pm
1 use strict; use warnings;
2 package OpenILS::Application::Auth;
3 use OpenSRF::Application;
4 use base qw/OpenSRF::Application/;
5 use OpenSRF::Utils::Cache;
6 use Digest::MD5 qw(md5_hex);
7 use OpenSRF::Utils::Logger qw(:level);
8 use OpenILS::Utils::Fieldmapper;
9
10 # memcache handle
11 my $cache_handle;
12
13
14
15 # -------------------------------------------------------------
16 # Methods
17 # -------------------------------------------------------------
18 # -------------------------------------------------------------
19
20 __PACKAGE__->register_method(
21         method  => "init_authenticate",
22         api_name        => "open-ils.auth.authenticate.init",
23         argc            => 1, #(username) 
24         note            =>      <<TEXT,
25 Generates a random seed and returns it.  The client
26 must then perform md5_hex( \$seed . \$password ) and use that
27 as the passwordhash to open-ils.auth.authenticate.complete
28 TEXT
29 );
30
31 __PACKAGE__->register_method(
32         method  => "complete_authenticate",
33         api_name        => "open-ils.auth.authenticate.complete",
34         argc            => 2, #( barcode, passwdhash )
35         note            => <<TEXT,
36 Client provides the username and passwordhash (see 
37 open-ils.auth.authenticate.init).  If their password hash is 
38 correct for the given username, a session id is returned, 
39 if not, "0" is returned
40 TEXT
41 );
42
43 __PACKAGE__->register_method(
44         method  => "retrieve_session",
45         api_name        => "open-ils.auth.session.retrieve",
46         argc            => 1, #( sessionid )
47         note            => <<TEXT,
48 Pass in a sessionid and this returns the username associated with it
49 TEXT
50 );
51
52 __PACKAGE__->register_method(
53         method  => "delete_session",
54         api_name        => "open-ils.auth.session.delete",
55         argc            => 1, #( sessionid )
56         note            => <<TEXT,
57 Pass in a sessionid and this delete it from the cache 
58 TEXT
59 );
60
61
62 # -------------------------------------------------------------
63 # Implementation
64 # -------------------------------------------------------------
65 # -------------------------------------------------------------
66
67
68 # -------------------------------------------------------------
69 # connect to the memcache server
70 # -------------------------------------------------------------
71 sub initialize {
72
73         my $config_client = OpenSRF::Utils::SettingsClient->new();
74         my $memcache_servers = 
75                 $config_client->config_value( "apps","open-ils.auth", "app_settings","memcache" );
76
77         if( !$memcache_servers ) {
78                 throw OpenSRF::EX::Config ("No Memcache servers specified for open-ils.auth!");
79         }
80
81         if(!ref($memcache_servers)) {
82                 $memcache_servers = [$memcache_servers];
83         }
84         $cache_handle = OpenSRF::Utils::Cache->new( "open-ils.auth", 1, $memcache_servers );
85 }
86
87
88
89 # -------------------------------------------------------------
90 # We build a random hash and put the hash along with the 
91 # username into memcache (so that any backend may fulfill the
92 # auth request).
93 # -------------------------------------------------------------
94 sub init_authenticate {
95         my( $self, $client, $username ) = @_;
96         my $seed = md5_hex( time() . $$ . rand() . $username );
97         # cache login seed for 300 seconds (lower in production?) 
98         $cache_handle->put_cache( "_open-ils_seed_$username", $seed, 300 );
99         return $seed;
100 }
101
102 # -------------------------------------------------------------
103 # The temporary hash is removed from memcache.  
104 # We retrieve the password from storage and verify
105 # their password hash against our re-hashed version of the 
106 # password. If all goes well, we return the session id. 
107 # Otherwise, we return "0"
108 # -------------------------------------------------------------
109 sub complete_authenticate {
110         my( $self, $client, $username, $passwdhash ) = @_;
111
112         my $name = "open-ils.storage.actor.user.search.username";
113         my $method = $self->method_lookup( $name );
114
115         my $password = undef;
116         if(!$method) {
117                 throw OpenSRF::EX::PANIC ("Could not lookup method $name");
118         }
119
120         my ($user) = $method->run($username);
121         if(!$user) {
122                 throw OpenSRF::EX::ERROR ("No user for $username");
123         }
124
125         $password = $user->passwd();
126         if(!$password) {
127                 throw OpenSRF::EX::ERROR ("No password exists for $username", ERROR);
128         }
129
130         my $current_seed = $cache_handle->get_cache("_open-ils_seed_$username");
131         $cache_handle->delete_cache( "_open-ils_seed_$username" );
132
133         unless($current_seed) {
134                 throw OpenILS::EX::User 
135                         ("User must call open-ils.auth.init_authenticate first (or respond faster)");
136         }
137
138         my $hash = md5_hex($current_seed . $password);
139
140         if( $hash eq $passwdhash ) {
141
142                 my $session_id = md5_hex( time() . $$ . rand() ); 
143                 $cache_handle->put_cache( $session_id, $user, 28800 );
144                 return $session_id;
145
146         } else {
147
148                 return 0;
149         }
150 }
151
152 sub retrieve_session {
153         my( $self, $client, $sessionid ) = @_;
154         return $cache_handle->get_cache($sessionid);
155 }
156
157 sub delete_session {
158         my( $self, $client, $sessionid ) = @_;
159         return $cache_handle->delete_cache($sessionid);
160 }
161
162
163 1;