Bug 31281: Use correct reply-to email when sending overdue mails
[koha.git] / C4 / Auth_with_cas.pm
1 package C4::Auth_with_cas;
2
3 # Copyright 2009 BibLibre SARL
4 #
5 # This file is part of Koha.
6 #
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.
11 #
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.
16 #
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>.
19
20 use strict;
21 use warnings;
22
23 use C4::Context;
24 use Koha::AuthUtils qw( get_script_name );
25 use Authen::CAS::Client;
26 use CGI qw ( -utf8 );
27 use YAML::XS;
28 use URI::Escape;
29
30 use Koha::Logger;
31
32 our (@ISA, @EXPORT_OK);
33
34 BEGIN {
35     require Exporter;
36     @ISA   = qw(Exporter);
37     @EXPORT_OK = qw(check_api_auth_cas checkpw_cas login_cas logout_cas login_cas_url logout_if_required multipleAuth getMultipleAuth);
38 }
39 my $defaultcasserver;
40 my $casservers;
41 my $yamlauthfile = C4::Context->config('intranetdir') . "/C4/Auth_cas_servers.yaml";
42
43
44 # If there's a configuration for multiple cas servers, then we get it
45 if (multipleAuth()) {
46     ($defaultcasserver, $casservers) = YAML::XS::LoadFile($yamlauthfile);
47     $defaultcasserver = $defaultcasserver->{'default'};
48 } else {
49 # Else, we fall back to casServerUrl syspref
50     $defaultcasserver = 'default';
51     $casservers = { 'default' => C4::Context->preference('casServerUrl') };
52 }
53
54 =head1 Subroutines
55
56 =cut
57
58 # Is there a configuration file for multiple cas servers?
59 sub multipleAuth {
60     return (-e qq($yamlauthfile));
61 }
62
63 # Returns configured CAS servers' list if multiple authentication is enabled
64 sub getMultipleAuth {
65    return $casservers; 
66 }
67
68 # Logout from CAS
69 sub logout_cas {
70     my ( $query, $type ) = @_;
71     my ( $cas,   $uri )  = _get_cas_and_service( $query, undef, $type );
72
73     # We don't want to keep triggering a logout, if we got here,
74     # the borrower is already logged out of Koha
75     $uri =~ s/\?logout\.x=1//;
76
77     my $logout_url = $cas->logout_url( url => $uri );
78     $logout_url =~ s/url=/service=/
79       if C4::Context->preference('casServerVersion') eq '3';
80
81     print $query->redirect($logout_url);
82 }
83
84
85 # Login to CAS
86 sub login_cas {
87     my ($query, $type) = @_;
88     my ( $cas, $uri ) = _get_cas_and_service($query, undef, $type);
89     print $query->redirect( $cas->login_url($uri));
90 }
91
92 # Returns CAS login URL with callback to the requesting URL
93 sub login_cas_url {
94     my ( $query, $key, $type ) = @_;
95     my ( $cas, $uri ) = _get_cas_and_service( $query, $key, $type );
96     return $cas->login_url($uri);
97 }
98
99 # Checks for password correctness
100 # In our case : is there a ticket, is it valid and does it match one of our users ?
101 sub checkpw_cas {
102     my ($dbh, $ticket, $query, $type) = @_;
103     my $retnumber;
104     my ( $cas, $uri ) = _get_cas_and_service($query, undef, $type);
105
106     # If we got a ticket
107     if ($ticket) {
108
109         # We try to validate it
110         my $val = $cas->service_validate($uri, $ticket );
111
112         # If it's valid
113         if ( $val->is_success() ) {
114
115             my $userid = $val->user();
116
117             # we should store the CAS ticekt too, we need this for single logout https://apereo.github.io/cas/4.2.x/protocol/CAS-Protocol-Specification.html#233-single-logout
118
119             # Does it match one of our users ?
120             my $sth = $dbh->prepare("select cardnumber from borrowers where userid=?");
121             $sth->execute($userid);
122             if ( $sth->rows ) {
123                 $retnumber = $sth->fetchrow;
124                 return ( 1, $retnumber, $userid, $ticket );
125             }
126             $sth = $dbh->prepare("select userid from borrowers where cardnumber=?");
127             $sth->execute($userid);
128             if ( $sth->rows ) {
129                 $retnumber = $sth->fetchrow;
130                 return ( 1, $retnumber, $userid, $ticket );
131             }
132
133             # If we reach this point, then the user is a valid CAS user, but not a Koha user
134             Koha::Logger->get->info("User $userid is not a valid Koha user");
135
136         } else {
137             my $logger = Koha::Logger->get;
138             $logger->debug("Problem when validating ticket : $ticket");
139             $logger->debug("Authen::CAS::Client::Response::Error: " . $val->error()) if $val->is_error();
140             $logger->debug("Authen::CAS::Client::Response::Failure: " . $val->message()) if $val->is_failure();
141             $logger->debug(Data::Dumper::Dumper($@)) if $val->is_error() or $val->is_failure();
142             return 0;
143         }
144     }
145     return 0;
146 }
147
148 # Proxy CAS auth
149 sub check_api_auth_cas {
150     my ($dbh, $PT, $query, $type) = @_;
151     my $retnumber;
152     my ( $cas, $uri ) = _get_cas_and_service($query, undef, $type);
153
154     # If we have a Proxy Ticket
155     if ($PT) {
156         my $r = $cas->proxy_validate( $uri, $PT );
157
158         # If the PT is valid
159         if ( $r->is_success ) {
160
161             # We've got a username !
162             my $userid = $r->user;
163
164             # we should store the CAS ticket too, we need this for single logout https://apereo.github.io/cas/4.2.x/protocol/CAS-Protocol-Specification.html#233-single-logout
165
166             # Does it match one of our users ?
167             my $sth = $dbh->prepare("select cardnumber from borrowers where userid=?");
168             $sth->execute($userid);
169             if ( $sth->rows ) {
170                 $retnumber = $sth->fetchrow;
171                 return ( 1, $retnumber, $userid, $PT );
172             }
173             $sth = $dbh->prepare("select userid from borrowers where cardnumber=?");
174             return $r->user;
175             $sth->execute($userid);
176             if ( $sth->rows ) {
177                 $retnumber = $sth->fetchrow;
178                 return ( 1, $retnumber, $userid, $PT );
179             }
180
181             # If we reach this point, then the user is a valid CAS user, but not a Koha user
182             Koha::Logger->get->info("User $userid is not a valid Koha user");
183
184         } else {
185             Koha::Logger->get->debug("Proxy Ticket authentication failed");
186             return 0;
187         }
188     }
189     return 0;
190 }
191
192 # Get CAS handler and service URI
193 sub _get_cas_and_service {
194     my $query = shift;
195     my $key   = shift;    # optional
196     my $type  = shift;
197
198     my $uri = _url_with_get_params($query, $type);
199
200     my $casparam = $defaultcasserver;
201     $casparam = $query->param('cas') if defined $query->param('cas');
202     $casparam = $key if defined $key;
203     my $cas = Authen::CAS::Client->new( $casservers->{$casparam} );
204
205     return ( $cas, $uri );
206 }
207
208 # Get the current URL with parameters contained directly into URL (GET params)
209 # This method replaces $query->url() which will give both GET and POST params
210 sub _url_with_get_params {
211     my $query = shift;
212     my $type = shift;
213
214     my $uri_base_part =
215       ( $type eq 'opac' )
216       ? C4::Context->preference('OPACBaseURL')
217       : C4::Context->preference('staffClientBaseURL');
218     $uri_base_part .= get_script_name();
219
220     my $uri_params_part = '';
221     foreach my $param ( $query->url_param() ) {
222         # url_param() always returns parameters that were deleted by delete()
223         # This additional check ensure that parameter was not deleted.
224         my $uriPiece = $query->param($param);
225         if ($uriPiece) {
226             $uri_params_part .= '&' if $uri_params_part;
227             $uri_params_part .= $param . '=';
228             $uri_params_part .= URI::Escape::uri_escape( $uriPiece );
229         }
230     }
231     $uri_base_part .= '?' if $uri_params_part;
232
233     return $uri_base_part . $uri_params_part;
234 }
235
236 =head2 logout_if_required
237
238     If using CAS, this subroutine will trigger single-signout of the CAS server.
239
240 =cut
241
242 sub logout_if_required {
243     my ( $query ) = @_;
244     # Check we havent been hit by a logout call
245     my $xml = $query->param('logoutRequest');
246     return 0 unless $xml;
247
248     my $dom = XML::LibXML->load_xml(string => $xml);
249     my $ticket;
250     foreach my $node ($dom->findnodes('/samlp:LogoutRequest')){
251         # We got a cas single logout request from a cas server;
252         $ticket = $node->findvalue('./samlp:SessionIndex');
253     }
254
255     return 0 unless $ticket;
256
257     # We've been called as part of the single logout destroy the session associated with the cas ticket
258     my $params = C4::Auth::_get_session_params();
259     my $success = CGI::Session->find( $params->{dsn}, sub {delete_cas_session(@_, $ticket)}, $params->{dsn_args} );
260
261     print $query->header;
262     exit;
263 }
264
265 sub delete_cas_session {
266     my $session = shift;
267     my $ticket = shift;
268     if ($session->param('cas_ticket') && $session->param('cas_ticket') eq $ticket ) {
269         $session->delete;
270         $session->flush;
271     }
272 }
273
274 1;
275 __END__
276
277 =head1 NAME
278
279 C4::Auth - Authenticates Koha users
280
281 =head1 SYNOPSIS
282
283   use C4::Auth_with_cas;
284
285 =cut
286
287 =head1 SEE ALSO
288
289 CGI(3)
290
291 Authen::CAS::Client
292
293 =cut