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 under the
8 # terms of the GNU General Public License as published by the Free Software
9 # Foundation; either version 2 of the License, or (at your option) any later
12 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
13 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
14 # A PARTICULAR PURPOSE. See the GNU General Public License for more details.
16 # You should have received a copy of the GNU General Public License along
17 # with Koha; if not, write to the Free Software Foundation, Inc.,
18 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
25 use Authen
::CAS
::Client
;
30 use vars
qw($VERSION @ISA @EXPORT @EXPORT_OK %EXPORT_TAGS $debug);
34 $VERSION = 3.07.00.049; # set the version for version checking
37 @EXPORT = qw(check_api_auth_cas checkpw_cas login_cas logout_cas login_cas_url);
39 my $context = C4
::Context
->new() or die 'C4::Context->new failed';
42 my $yamlauthfile = "../C4/Auth_cas_servers.yaml";
45 # If there's a configuration for multiple cas servers, then we get it
47 ($defaultcasserver, $casservers) = YAML
::LoadFile
(qq($FindBin::Bin
/$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($FindBin::Bin
/$yamlauthfile));
60 # Returns configured CAS servers' list if multiple authentication is enabled
68 my $uri = C4
::Context
->preference('OPACBaseURL') . $query->script_name();
69 my $casparam = $query->param('cas');
70 # FIXME: This should be more generic and handle whatever parameters there might be
71 $uri .= "?cas=" . $casparam if (defined $casparam);
72 $casparam = $defaultcasserver if (not defined $casparam);
73 my $cas = Authen
::CAS
::Client
->new($casservers->{$casparam});
74 print $query->redirect( $cas->logout_url($uri));
80 my $uri = C4
::Context
->preference('OPACBaseURL') . $query->script_name();
81 my $casparam = $query->param('cas');
82 # FIXME: This should be more generic and handle whatever parameters there might be
83 $uri .= "?cas=" . $casparam if (defined $casparam);
84 $casparam = $defaultcasserver if (not defined $casparam);
85 my $cas = Authen
::CAS
::Client
->new($casservers->{$casparam});
86 print $query->redirect( $cas->login_url($uri));
89 # Returns CAS login URL with callback to the requesting URL
92 my ($query, $key) = @_;
93 my $uri = C4
::Context
->preference('OPACBaseURL') . $query->url( -absolute
=> 1, -query
=> 1 );
94 my $casparam = $query->param('cas');
95 $casparam = $defaultcasserver if (not defined $casparam);
96 $casparam = $key if (defined $key);
97 my $cas = Authen
::CAS
::Client
->new($casservers->{$casparam});
98 return $cas->login_url($uri);
101 # Checks for password correctness
102 # In our case : is there a ticket, is it valid and does it match one of our users ?
104 $debug and warn "checkpw_cas";
105 my ($dbh, $ticket, $query) = @_;
107 my $uri = C4
::Context
->preference('OPACBaseURL') . $query->script_name();
108 my $casparam = $query->param('cas');
109 # FIXME: This should be more generic and handle whatever parameters there might be
110 $uri .= "?cas=" . $casparam if (defined $casparam);
111 $casparam = $defaultcasserver if (not defined $casparam);
112 my $cas = Authen
::CAS
::Client
->new($casservers->{$casparam});
116 $debug and warn "Got ticket : $ticket";
118 # We try to validate it
119 my $val = $cas->service_validate($uri, $ticket );
122 if ( $val->is_success() ) {
124 my $userid = $val->user();
125 $debug and warn "User CAS authenticated as: $userid";
127 # Does it match one of our users ?
128 my $sth = $dbh->prepare("select cardnumber from borrowers where userid=?");
129 $sth->execute($userid);
131 $retnumber = $sth->fetchrow;
132 return ( 1, $retnumber, $userid );
134 $sth = $dbh->prepare("select userid from borrowers where cardnumber=?");
135 $sth->execute($userid);
137 $retnumber = $sth->fetchrow;
138 return ( 1, $retnumber, $userid );
141 # If we reach this point, then the user is a valid CAS user, but not a Koha user
142 $debug and warn "User $userid is not a valid Koha user";
145 $debug and warn "Problem when validating ticket : $ticket";
146 $debug and warn "Authen::CAS::Client::Response::Error: " . $val->error() if $val->is_error();
147 $debug and warn "Authen::CAS::Client::Response::Failure: " . $val->message() if $val->is_failure();
148 $debug and warn Data
::Dumper
::Dumper
($@
) if $val->is_error() or $val->is_failure();
156 sub check_api_auth_cas
{
157 $debug and warn "check_api_auth_cas";
158 my ($dbh, $PT, $query) = @_;
160 my $url = C4
::Context
->preference('OPACBaseURL') . $query->script_name();
162 my $casparam = $query->param('cas');
163 $casparam = $defaultcasserver if (not defined $casparam);
164 my $cas = Authen
::CAS
::Client
->new($casservers->{$casparam});
166 # If we have a Proxy Ticket
168 my $r = $cas->proxy_validate( $url, $PT );
171 if ( $r->is_success ) {
173 # We've got a username !
174 $debug and warn "User authenticated as: ", $r->user, "\n";
175 $debug and warn "Proxied through:\n";
176 $debug and warn " $_\n" for $r->proxies;
178 my $userid = $r->user;
180 # Does it match one of our users ?
181 my $sth = $dbh->prepare("select cardnumber from borrowers where userid=?");
182 $sth->execute($userid);
184 $retnumber = $sth->fetchrow;
185 return ( 1, $retnumber, $userid );
187 $sth = $dbh->prepare("select userid from borrowers where cardnumber=?");
189 $sth->execute($userid);
191 $retnumber = $sth->fetchrow;
192 return ( 1, $retnumber, $userid );
195 # If we reach this point, then the user is a valid CAS user, but not a Koha user
196 $debug and warn "User $userid is not a valid Koha user";
199 $debug and warn "Proxy Ticket authentication failed";
212 C4::Auth - Authenticates Koha users
216 use C4::Auth_with_cas;