1 package C4
::Auth_with_cas
;
3 # Copyright 2009 BibLibre SARL
5 # This file is part of Koha.
7 # Koha is free software; you can redistribute it and/or modify it
8 # under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 3 of the License, or
10 # (at your option) any later version.
12 # Koha is distributed in the hope that it will be useful, but
13 # WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 # GNU General Public License for more details.
17 # You should have received a copy of the GNU General Public License
18 # along with Koha; if not, see <http://www.gnu.org/licenses>.
25 use Koha
::AuthUtils
qw(get_script_name);
26 use Authen
::CAS
::Client
;
32 use vars
qw(@ISA @EXPORT @EXPORT_OK %EXPORT_TAGS $debug);
38 @EXPORT = qw(check_api_auth_cas checkpw_cas login_cas logout_cas login_cas_url);
42 my $yamlauthfile = C4
::Context
->config('intranetdir') . "/C4/Auth_cas_servers.yaml";
45 # If there's a configuration for multiple cas servers, then we get it
47 ($defaultcasserver, $casservers) = YAML
::LoadFile
($yamlauthfile);
48 $defaultcasserver = $defaultcasserver->{'default'};
50 # Else, we fall back to casServerUrl syspref
51 $defaultcasserver = 'default';
52 $casservers = { 'default' => C4
::Context
->preference('casServerUrl') };
55 # Is there a configuration file for multiple cas servers?
57 return (-e
qq($yamlauthfile));
60 # Returns configured CAS servers' list if multiple authentication is enabled
67 my ($query, $type) = @_;
68 my ( $cas, $uri ) = _get_cas_and_service
($query, undef, $type);
69 print $query->redirect( $cas->logout_url(url
=> $uri));
74 my ($query, $type) = @_;
75 my ( $cas, $uri ) = _get_cas_and_service
($query, undef, $type);
76 print $query->redirect( $cas->login_url($uri));
79 # Returns CAS login URL with callback to the requesting URL
81 my ( $query, $key, $type ) = @_;
82 my ( $cas, $uri ) = _get_cas_and_service
( $query, $key, $type );
83 return $cas->login_url($uri);
86 # Checks for password correctness
87 # In our case : is there a ticket, is it valid and does it match one of our users ?
89 $debug and warn "checkpw_cas";
90 my ($dbh, $ticket, $query, $type) = @_;
92 my ( $cas, $uri ) = _get_cas_and_service
($query, undef, $type);
96 $debug and warn "Got ticket : $ticket";
98 # We try to validate it
99 my $val = $cas->service_validate($uri, $ticket );
102 if ( $val->is_success() ) {
104 my $userid = $val->user();
105 $debug and warn "User CAS authenticated as: $userid";
107 # Does it match one of our users ?
108 my $sth = $dbh->prepare("select cardnumber from borrowers where userid=?");
109 $sth->execute($userid);
111 $retnumber = $sth->fetchrow;
112 return ( 1, $retnumber, $userid );
114 $sth = $dbh->prepare("select userid from borrowers where cardnumber=?");
115 $sth->execute($userid);
117 $retnumber = $sth->fetchrow;
118 return ( 1, $retnumber, $userid );
121 # If we reach this point, then the user is a valid CAS user, but not a Koha user
122 $debug and warn "User $userid is not a valid Koha user";
125 $debug and warn "Problem when validating ticket : $ticket";
126 $debug and warn "Authen::CAS::Client::Response::Error: " . $val->error() if $val->is_error();
127 $debug and warn "Authen::CAS::Client::Response::Failure: " . $val->message() if $val->is_failure();
128 $debug and warn Data
::Dumper
::Dumper
($@
) if $val->is_error() or $val->is_failure();
136 sub check_api_auth_cas
{
137 $debug and warn "check_api_auth_cas";
138 my ($dbh, $PT, $query, $type) = @_;
140 my ( $cas, $uri ) = _get_cas_and_service
($query, undef, $type);
142 # If we have a Proxy Ticket
144 my $r = $cas->proxy_validate( $uri, $PT );
147 if ( $r->is_success ) {
149 # We've got a username !
150 $debug and warn "User authenticated as: ", $r->user, "\n";
151 $debug and warn "Proxied through:\n";
152 $debug and warn " $_\n" for $r->proxies;
154 my $userid = $r->user;
156 # Does it match one of our users ?
157 my $sth = $dbh->prepare("select cardnumber from borrowers where userid=?");
158 $sth->execute($userid);
160 $retnumber = $sth->fetchrow;
161 return ( 1, $retnumber, $userid );
163 $sth = $dbh->prepare("select userid from borrowers where cardnumber=?");
165 $sth->execute($userid);
167 $retnumber = $sth->fetchrow;
168 return ( 1, $retnumber, $userid );
171 # If we reach this point, then the user is a valid CAS user, but not a Koha user
172 $debug and warn "User $userid is not a valid Koha user";
175 $debug and warn "Proxy Ticket authentication failed";
182 # Get CAS handler and service URI
183 sub _get_cas_and_service
{
185 my $key = shift; # optional
188 my $uri = _url_with_get_params
($query, $type);
190 my $casparam = $defaultcasserver;
191 $casparam = $query->param('cas') if defined $query->param('cas');
192 $casparam = $key if defined $key;
193 my $cas = Authen
::CAS
::Client
->new( $casservers->{$casparam} );
195 return ( $cas, $uri );
198 # Get the current URL with parameters contained directly into URL (GET params)
199 # This method replaces $query->url() which will give both GET and POST params
200 sub _url_with_get_params
{
204 my $uri_base_part = ($type eq 'opac') ?
205 C4
::Context
->preference('OPACBaseURL') . get_script_name
() :
206 C4
::Context
->preference('staffClientBaseURL');
208 my $uri_params_part = '';
209 foreach my $param ( $query->url_param() ) {
210 # url_param() always returns parameters that were deleted by delete()
211 # This additional check ensure that parameter was not deleted.
212 my $uriPiece = $query->param($param);
214 $uri_params_part .= '&' if $uri_params_part;
215 $uri_params_part .= $param . '=';
216 $uri_params_part .= URI
::Escape
::uri_escape
( $uriPiece );
219 $uri_base_part .= '?' if $uri_params_part;
221 return $uri_base_part . $uri_params_part;
229 C4::Auth - Authenticates Koha users
233 use C4::Auth_with_cas;