Bug 25690: Make CanBookBeIssued return In Processing state as needing confirmation
[koha.git] / C4 / Auth.pm
1 package C4::Auth;
2
3 # Copyright 2000-2002 Katipo Communications
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 use Carp qw/croak/;
23
24 use Digest::MD5 qw(md5_base64);
25 use JSON qw/encode_json/;
26 use URI::Escape;
27 use CGI::Session;
28
29 require Exporter;
30 use C4::Context;
31 use C4::Templates;    # to get the template
32 use C4::Languages;
33 use C4::Search::History;
34 use Koha;
35 use Koha::Caches;
36 use Koha::AuthUtils qw(get_script_name hash_password);
37 use Koha::Checkouts;
38 use Koha::DateUtils qw(dt_from_string);
39 use Koha::Library::Groups;
40 use Koha::Libraries;
41 use Koha::Cash::Registers;
42 use Koha::Desks;
43 use Koha::Patrons;
44 use Koha::Patron::Consents;
45 use POSIX qw/strftime/;
46 use List::MoreUtils qw/ any /;
47 use Encode qw( encode is_utf8);
48 use C4::Auth_with_shibboleth;
49 use Net::CIDR;
50 use C4::Log qw/logaction/;
51
52 # use utf8;
53 use vars qw(@ISA @EXPORT @EXPORT_OK %EXPORT_TAGS $debug $ldap $cas $caslogout);
54
55 BEGIN {
56     sub psgi_env { any { /^psgi\./ } keys %ENV }
57
58     sub safe_exit {
59         if   (psgi_env) { die 'psgi:exit' }
60         else            { exit }
61     }
62
63     C4::Context->set_remote_address;
64
65     $debug     = $ENV{DEBUG};
66     @ISA       = qw(Exporter);
67     @EXPORT    = qw(&checkauth &get_template_and_user &haspermission &get_user_subpermissions);
68     @EXPORT_OK = qw(&check_api_auth &get_session &check_cookie_auth &checkpw &checkpw_internal &checkpw_hash
69       &get_all_subpermissions &get_user_subpermissions track_login_daily &in_iprange
70     );
71     %EXPORT_TAGS = ( EditPermissions => [qw(get_all_subpermissions get_user_subpermissions)] );
72     $ldap      = C4::Context->config('useldapserver') || 0;
73     $cas       = C4::Context->preference('casAuthentication');
74     $caslogout = C4::Context->preference('casLogout');
75     require C4::Auth_with_cas;    # no import
76
77     if ($ldap) {
78         require C4::Auth_with_ldap;
79         import C4::Auth_with_ldap qw(checkpw_ldap);
80     }
81     if ($cas) {
82         import C4::Auth_with_cas qw(check_api_auth_cas checkpw_cas login_cas logout_cas login_cas_url logout_if_required);
83     }
84
85 }
86
87 =head1 NAME
88
89 C4::Auth - Authenticates Koha users
90
91 =head1 SYNOPSIS
92
93   use CGI qw ( -utf8 );
94   use C4::Auth;
95   use C4::Output;
96
97   my $query = CGI->new;
98
99   my ($template, $borrowernumber, $cookie)
100     = get_template_and_user(
101         {
102             template_name   => "opac-main.tt",
103             query           => $query,
104       type            => "opac",
105       authnotrequired => 0,
106       flagsrequired   => { catalogue => '*', tools => 'import_patrons' },
107   }
108     );
109
110   output_html_with_http_headers $query, $cookie, $template->output;
111
112 =head1 DESCRIPTION
113
114 The main function of this module is to provide
115 authentification. However the get_template_and_user function has
116 been provided so that a users login information is passed along
117 automatically. This gets loaded into the template.
118
119 =head1 FUNCTIONS
120
121 =head2 get_template_and_user
122
123  my ($template, $borrowernumber, $cookie)
124      = get_template_and_user(
125        {
126          template_name   => "opac-main.tt",
127          query           => $query,
128          type            => "opac",
129          authnotrequired => 0,
130          flagsrequired   => { catalogue => '*', tools => 'import_patrons' },
131        }
132      );
133
134 This call passes the C<query>, C<flagsrequired> and C<authnotrequired>
135 to C<&checkauth> (in this module) to perform authentification.
136 See C<&checkauth> for an explanation of these parameters.
137
138 The C<template_name> is then used to find the correct template for
139 the page. The authenticated users details are loaded onto the
140 template in the logged_in_user variable (which is a Koha::Patron object). Also the
141 C<sessionID> is passed to the template. This can be used in templates
142 if cookies are disabled. It needs to be put as and input to every
143 authenticated page.
144
145 More information on the C<gettemplate> sub can be found in the
146 Output.pm module.
147
148 =cut
149
150 sub get_template_and_user {
151
152     my $in = shift;
153     my ( $user, $cookie, $sessionID, $flags );
154
155     # Get shibboleth login attribute
156     my $shib = C4::Context->config('useshibboleth') && shib_ok();
157     my $shib_login = $shib ? get_login_shib() : undef;
158
159     C4::Context->interface( $in->{type} );
160
161     $in->{'authnotrequired'} ||= 0;
162
163     # the following call includes a bad template check; might croak
164     my $template = C4::Templates::gettemplate(
165         $in->{'template_name'},
166         $in->{'type'},
167         $in->{'query'},
168     );
169
170     if ( $in->{'template_name'} !~ m/maintenance/ ) {
171         ( $user, $cookie, $sessionID, $flags ) = checkauth(
172             $in->{'query'},
173             $in->{'authnotrequired'},
174             $in->{'flagsrequired'},
175             $in->{'type'},
176             undef,
177             $in->{template_name},
178         );
179     }
180
181     # If we enforce GDPR and the user did not consent, redirect
182     # Exceptions for consent page itself and SCI/SCO system
183     if( $in->{type} eq 'opac' && $user &&
184         $in->{'template_name'} !~ /^(opac-patron-consent|sc[io]\/)/ &&
185         C4::Context->preference('GDPR_Policy') eq 'Enforced' )
186     {
187         my $consent = Koha::Patron::Consents->search({
188             borrowernumber => getborrowernumber($user),
189             type => 'GDPR_PROCESSING',
190             given_on => { '!=', undef },
191         })->next;
192         if( !$consent ) {
193             print $in->{query}->redirect(-uri => '/cgi-bin/koha/opac-patron-consent.pl', -cookie => $cookie);
194             safe_exit;
195         }
196     }
197
198     if ( $in->{type} eq 'opac' && $user ) {
199         my $kick_out;
200
201         if (
202 # If the user logged in is the SCO user and they try to go out of the SCO module,
203 # log the user out removing the CGISESSID cookie
204             $in->{template_name} !~ m|sco/| && $in->{template_name} !~ m|errors/errorpage.tt|
205             && C4::Context->preference('AutoSelfCheckID')
206             && $user eq C4::Context->preference('AutoSelfCheckID')
207           )
208         {
209             $kick_out = 1;
210         }
211         elsif (
212 # If the user logged in is the SCI user and they try to go out of the SCI module,
213 # kick them out unless it is SCO with a valid permission
214 # or they are a superlibrarian
215                $in->{template_name} !~ m|sci/|
216             && haspermission( $user, { self_check => 'self_checkin_module' } )
217             && !(
218                 $in->{template_name} =~ m|sco/| && haspermission(
219                     $user, { self_check => 'self_checkout_module' }
220                 )
221             )
222             && $flags && $flags->{superlibrarian} != 1
223           )
224         {
225             $kick_out = 1;
226         }
227
228         if ($kick_out) {
229             $template = C4::Templates::gettemplate( 'opac-auth.tt', 'opac',
230                 $in->{query} );
231             $cookie = $in->{query}->cookie(
232                 -name     => 'CGISESSID',
233                 -value    => '',
234                 -expires  => '',
235                 -HttpOnly => 1,
236                 -secure => ( C4::Context->https_enabled() ? 1 : 0 ),
237             );
238
239             $template->param(
240                 loginprompt => 1,
241                 script_name => get_script_name(),
242             );
243
244             print $in->{query}->header(
245                 {
246                     type              => 'text/html',
247                     charset           => 'utf-8',
248                     cookie            => $cookie,
249                     'X-Frame-Options' => 'SAMEORIGIN'
250                 }
251               ),
252               $template->output;
253             safe_exit;
254         }
255     }
256
257     my $borrowernumber;
258     if ($user) {
259
260         # It's possible for $user to be the borrowernumber if they don't have a
261         # userid defined (and are logging in through some other method, such
262         # as SSL certs against an email address)
263         my $patron;
264         $borrowernumber = getborrowernumber($user) if defined($user);
265         if ( !defined($borrowernumber) && defined($user) ) {
266             $patron = Koha::Patrons->find( $user );
267             if ($patron) {
268                 $borrowernumber = $user;
269
270                 # A bit of a hack, but I don't know there's a nicer way
271                 # to do it.
272                 $user = $patron->firstname . ' ' . $patron->surname;
273             }
274         } else {
275             $patron = Koha::Patrons->find( $borrowernumber );
276             # FIXME What to do if $patron does not exist?
277         }
278
279         # user info
280         $template->param( loggedinusername   => $user ); # OBSOLETE - Do not reuse this in template, use logged_in_user.userid instead
281         $template->param( loggedinusernumber => $borrowernumber ); # FIXME Should be replaced with logged_in_user.borrowernumber
282         $template->param( logged_in_user     => $patron );
283         $template->param( sessionID          => $sessionID );
284
285         if ( $in->{'type'} eq 'opac' ) {
286             require Koha::Virtualshelves;
287             my $some_private_shelves = Koha::Virtualshelves->get_some_shelves(
288                 {
289                     borrowernumber => $borrowernumber,
290                     category       => 1,
291                 }
292             );
293             my $some_public_shelves = Koha::Virtualshelves->get_some_shelves(
294                 {
295                     category       => 2,
296                 }
297             );
298             $template->param(
299                 some_private_shelves => $some_private_shelves,
300                 some_public_shelves  => $some_public_shelves,
301             );
302         }
303
304         my $all_perms = get_all_subpermissions();
305
306         my @flagroots = qw(circulate catalogue parameters borrowers permissions reserveforothers borrow
307           editcatalogue updatecharges tools editauthorities serials reports acquisition clubs problem_reports);
308
309         # We are going to use the $flags returned by checkauth
310         # to create the template's parameters that will indicate
311         # which menus the user can access.
312         if ( $flags && $flags->{superlibrarian} == 1 ) {
313             $template->param( CAN_user_circulate        => 1 );
314             $template->param( CAN_user_catalogue        => 1 );
315             $template->param( CAN_user_parameters       => 1 );
316             $template->param( CAN_user_borrowers        => 1 );
317             $template->param( CAN_user_permissions      => 1 );
318             $template->param( CAN_user_reserveforothers => 1 );
319             $template->param( CAN_user_editcatalogue    => 1 );
320             $template->param( CAN_user_updatecharges    => 1 );
321             $template->param( CAN_user_acquisition      => 1 );
322             $template->param( CAN_user_suggestions      => 1 );
323             $template->param( CAN_user_tools            => 1 );
324             $template->param( CAN_user_editauthorities  => 1 );
325             $template->param( CAN_user_serials          => 1 );
326             $template->param( CAN_user_reports          => 1 );
327             $template->param( CAN_user_staffaccess      => 1 );
328             $template->param( CAN_user_coursereserves   => 1 );
329             $template->param( CAN_user_plugins          => 1 );
330             $template->param( CAN_user_lists            => 1 );
331             $template->param( CAN_user_clubs            => 1 );
332             $template->param( CAN_user_ill              => 1 );
333             $template->param( CAN_user_stockrotation    => 1 );
334             $template->param( CAN_user_cash_management  => 1 );
335             $template->param( CAN_user_problem_reports  => 1 );
336
337             foreach my $module ( keys %$all_perms ) {
338                 foreach my $subperm ( keys %{ $all_perms->{$module} } ) {
339                     $template->param( "CAN_user_${module}_${subperm}" => 1 );
340                 }
341             }
342         }
343
344         if ($flags) {
345             foreach my $module ( keys %$all_perms ) {
346                 if ( defined($flags->{$module}) && $flags->{$module} == 1 ) {
347                     foreach my $subperm ( keys %{ $all_perms->{$module} } ) {
348                         $template->param( "CAN_user_${module}_${subperm}" => 1 );
349                     }
350                 } elsif ( ref( $flags->{$module} ) ) {
351                     foreach my $subperm ( keys %{ $flags->{$module} } ) {
352                         $template->param( "CAN_user_${module}_${subperm}" => 1 );
353                     }
354                 }
355             }
356         }
357
358         if ($flags) {
359             foreach my $module ( keys %$flags ) {
360                 if ( $flags->{$module} == 1 or ref( $flags->{$module} ) ) {
361                     $template->param( "CAN_user_$module" => 1 );
362                 }
363             }
364         }
365
366         # Logged-in opac search history
367         # If the requested template is an opac one and opac search history is enabled
368         if ( $in->{type} eq 'opac' && C4::Context->preference('EnableOpacSearchHistory') ) {
369             my $dbh   = C4::Context->dbh;
370             my $query = "SELECT COUNT(*) FROM search_history WHERE userid=?";
371             my $sth   = $dbh->prepare($query);
372             $sth->execute($borrowernumber);
373
374             # If at least one search has already been performed
375             if ( $sth->fetchrow_array > 0 ) {
376
377                 # We show the link in opac
378                 $template->param( EnableOpacSearchHistory => 1 );
379             }
380             if (C4::Context->preference('LoadSearchHistoryToTheFirstLoggedUser'))
381             {
382                 # And if there are searches performed when the user was not logged in,
383                 # we add them to the logged-in search history
384                 my @recentSearches = C4::Search::History::get_from_session( { cgi => $in->{'query'} } );
385                 if (@recentSearches) {
386                     my $dbh   = C4::Context->dbh;
387                     my $query = q{
388                         INSERT INTO search_history(userid, sessionid, query_desc, query_cgi, type,  total, time )
389                         VALUES (?, ?, ?, ?, ?, ?, ?)
390                     };
391                     my $sth = $dbh->prepare($query);
392                     $sth->execute( $borrowernumber,
393                         $in->{query}->cookie("CGISESSID"),
394                         $_->{query_desc},
395                         $_->{query_cgi},
396                         $_->{type} || 'biblio',
397                         $_->{total},
398                         $_->{time},
399                     ) foreach @recentSearches;
400
401                     # clear out the search history from the session now that
402                     # we've saved it to the database
403                  }
404               }
405               C4::Search::History::set_to_session( { cgi => $in->{'query'}, search_history => [] } );
406
407         } elsif ( $in->{type} eq 'intranet' and C4::Context->preference('EnableSearchHistory') ) {
408             $template->param( EnableSearchHistory => 1 );
409         }
410     }
411     else {    # if this is an anonymous session, setup to display public lists...
412
413         # If shibboleth is enabled, and we're in an anonymous session, we should allow
414         # the user to attempt login via shibboleth.
415         if ($shib) {
416             $template->param( shibbolethAuthentication => $shib,
417                 shibbolethLoginUrl => login_shib_url( $in->{'query'} ),
418             );
419
420             # If shibboleth is enabled and we have a shibboleth login attribute,
421             # but we are in an anonymous session, then we clearly have an invalid
422             # shibboleth koha account.
423             if ($shib_login) {
424                 $template->param( invalidShibLogin => '1' );
425             }
426         }
427
428         $template->param( sessionID => $sessionID );
429
430         if ( $in->{'type'} eq 'opac' ){
431             require Koha::Virtualshelves;
432             my $some_public_shelves = Koha::Virtualshelves->get_some_shelves(
433                 {
434                     category       => 2,
435                 }
436             );
437             $template->param(
438                 some_public_shelves  => $some_public_shelves,
439             );
440         }
441     }
442
443     # Sysprefs disabled via URL param
444     # Note that value must be defined in order to override via ENV
445     foreach my $syspref (
446         qw(
447             OPACUserCSS
448             OPACUserJS
449             IntranetUserCSS
450             IntranetUserJS
451             OpacAdditionalStylesheet
452             opaclayoutstylesheet
453             intranetcolorstylesheet
454             intranetstylesheet
455         )
456       )
457     {
458         $ENV{"OVERRIDE_SYSPREF_$syspref"} = q{}
459           if $in->{'query'}->param("DISABLE_SYSPREF_$syspref");
460     }
461
462     # Anonymous opac search history
463     # If opac search history is enabled and at least one search has already been performed
464     if ( C4::Context->preference('EnableOpacSearchHistory') ) {
465         my @recentSearches = C4::Search::History::get_from_session( { cgi => $in->{'query'} } );
466         if (@recentSearches) {
467             $template->param( EnableOpacSearchHistory => 1 );
468         }
469     }
470
471     if ( C4::Context->preference('dateformat') ) {
472         $template->param( dateformat => C4::Context->preference('dateformat') );
473     }
474
475     $template->param(auth_forwarded_hash => scalar $in->{'query'}->param('auth_forwarded_hash'));
476
477     # these template parameters are set the same regardless of $in->{'type'}
478
479     my $minPasswordLength = C4::Context->preference('minPasswordLength');
480     $minPasswordLength = 3 if not $minPasswordLength or $minPasswordLength < 3;
481     $template->param(
482         "BiblioDefaultView" . C4::Context->preference("BiblioDefaultView") => 1,
483         EnhancedMessagingPreferences                                       => C4::Context->preference('EnhancedMessagingPreferences'),
484         GoogleJackets                                                      => C4::Context->preference("GoogleJackets"),
485         OpenLibraryCovers                                                  => C4::Context->preference("OpenLibraryCovers"),
486         KohaAdminEmailAddress                                              => "" . C4::Context->preference("KohaAdminEmailAddress"),
487         LoginFirstname  => ( C4::Context->userenv ? C4::Context->userenv->{"firstname"} : "Bel" ),
488         LoginSurname    => C4::Context->userenv ? C4::Context->userenv->{"surname"}      : "Inconnu",
489         emailaddress    => C4::Context->userenv ? C4::Context->userenv->{"emailaddress"} : undef,
490         TagsEnabled     => C4::Context->preference("TagsEnabled"),
491         hide_marc       => C4::Context->preference("hide_marc"),
492         item_level_itypes  => C4::Context->preference('item-level_itypes'),
493         patronimages       => C4::Context->preference("patronimages"),
494         singleBranchMode   => ( Koha::Libraries->search->count == 1 ),
495         XSLTDetailsDisplay => C4::Context->preference("XSLTDetailsDisplay"),
496         XSLTResultsDisplay => C4::Context->preference("XSLTResultsDisplay"),
497         noItemTypeImages   => C4::Context->preference("noItemTypeImages"),
498         marcflavour        => C4::Context->preference("marcflavour"),
499         OPACBaseURL        => C4::Context->preference('OPACBaseURL'),
500         minPasswordLength  => $minPasswordLength,
501     );
502     if ( $in->{'type'} eq "intranet" ) {
503         $template->param(
504             AmazonCoverImages                                                          => C4::Context->preference("AmazonCoverImages"),
505             AutoLocation                                                               => C4::Context->preference("AutoLocation"),
506             "BiblioDefaultView" . C4::Context->preference("IntranetBiblioDefaultView") => 1,
507             PatronAutoComplete                                                       => C4::Context->preference("PatronAutoComplete"),
508             FRBRizeEditions                                                            => C4::Context->preference("FRBRizeEditions"),
509             IndependentBranches                                                        => C4::Context->preference("IndependentBranches"),
510             IntranetNav                                                                => C4::Context->preference("IntranetNav"),
511             IntranetmainUserblock                                                      => C4::Context->preference("IntranetmainUserblock"),
512             LibraryName                                                                => C4::Context->preference("LibraryName"),
513             advancedMARCEditor                                                         => C4::Context->preference("advancedMARCEditor"),
514             canreservefromotherbranches                                                => C4::Context->preference('canreservefromotherbranches'),
515             intranetcolorstylesheet                                                    => C4::Context->preference("intranetcolorstylesheet"),
516             IntranetFavicon                                                            => C4::Context->preference("IntranetFavicon"),
517             intranetreadinghistory                                                     => C4::Context->preference("intranetreadinghistory"),
518             intranetstylesheet                                                         => C4::Context->preference("intranetstylesheet"),
519             IntranetUserCSS                                                            => C4::Context->preference("IntranetUserCSS"),
520             IntranetUserJS                                                             => C4::Context->preference("IntranetUserJS"),
521             suggestion                                                                 => C4::Context->preference("suggestion"),
522             virtualshelves                                                             => C4::Context->preference("virtualshelves"),
523             StaffSerialIssueDisplayCount                                               => C4::Context->preference("StaffSerialIssueDisplayCount"),
524             EasyAnalyticalRecords                                                      => C4::Context->preference('EasyAnalyticalRecords'),
525             LocalCoverImages                                                           => C4::Context->preference('LocalCoverImages'),
526             OPACLocalCoverImages                                                       => C4::Context->preference('OPACLocalCoverImages'),
527             AllowMultipleCovers                                                        => C4::Context->preference('AllowMultipleCovers'),
528             EnableBorrowerFiles                                                        => C4::Context->preference('EnableBorrowerFiles'),
529             UseCourseReserves                                                          => C4::Context->preference("UseCourseReserves"),
530             useDischarge                                                               => C4::Context->preference('useDischarge'),
531             pending_checkout_notes                                                     => scalar Koha::Checkouts->search({ noteseen => 0 }),
532         );
533     }
534     else {
535         warn "template type should be OPAC, here it is=[" . $in->{'type'} . "]" unless ( $in->{'type'} eq 'opac' );
536
537         #TODO : replace LibraryName syspref with 'system name', and remove this html processing
538         my $LibraryNameTitle = C4::Context->preference("LibraryName");
539         $LibraryNameTitle =~ s/<(?:\/?)(?:br|p)\s*(?:\/?)>/ /sgi;
540         $LibraryNameTitle =~ s/<(?:[^<>'"]|'(?:[^']*)'|"(?:[^"]*)")*>//sg;
541
542         # clean up the busc param in the session
543         # if the page is not opac-detail and not the "add to list" page
544         # and not the "edit comments" page
545         if ( C4::Context->preference("OpacBrowseResults")
546             && $in->{'template_name'} =~ /opac-(.+)\.(?:tt|tmpl)$/ ) {
547             my $pagename = $1;
548             unless ( $pagename =~ /^(?:MARC|ISBD)?detail$/
549                 or $pagename =~ /^addbybiblionumber$/
550                 or $pagename =~ /^review$/ ) {
551                 my $sessionSearch = get_session( $sessionID || $in->{'query'}->cookie("CGISESSID") );
552                 $sessionSearch->clear( ["busc"] ) if ( $sessionSearch->param("busc") );
553             }
554         }
555
556         # variables passed from CGI: opac_css_override and opac_search_limits.
557         my $opac_search_limit   = $ENV{'OPAC_SEARCH_LIMIT'};
558         my $opac_limit_override = $ENV{'OPAC_LIMIT_OVERRIDE'};
559         my $opac_name           = '';
560         if (
561             ( $opac_limit_override && $opac_search_limit && $opac_search_limit =~ /branch:([\w-]+)/ ) ||
562             ( $in->{'query'}->param('limit') && $in->{'query'}->param('limit') =~ /branch:([\w-]+)/ ) ||
563             ( $in->{'query'}->param('multibranchlimit') && $in->{'query'}->param('multibranchlimit') =~ /multibranchlimit-(\w+)/ )
564           ) {
565             $opac_name = $1;    # opac_search_limit is a branch, so we use it.
566         } elsif ( $in->{'query'}->param('multibranchlimit') ) {
567             $opac_name = $in->{'query'}->param('multibranchlimit');
568         } elsif ( C4::Context->preference("SearchMyLibraryFirst") && C4::Context->userenv && C4::Context->userenv->{'branch'} ) {
569             $opac_name = C4::Context->userenv->{'branch'};
570         }
571
572         my @search_groups = Koha::Library::Groups->get_search_groups({ interface => 'opac' });
573         $template->param(
574             AnonSuggestions                       => "" . C4::Context->preference("AnonSuggestions"),
575             LibrarySearchGroups                   => \@search_groups,
576             opac_name                             => $opac_name,
577             LibraryName                           => "" . C4::Context->preference("LibraryName"),
578             LibraryNameTitle                      => "" . $LibraryNameTitle,
579             OPACAmazonCoverImages                 => C4::Context->preference("OPACAmazonCoverImages"),
580             OPACFRBRizeEditions                   => C4::Context->preference("OPACFRBRizeEditions"),
581             OpacHighlightedWords                  => C4::Context->preference("OpacHighlightedWords"),
582             OPACShelfBrowser                      => "" . C4::Context->preference("OPACShelfBrowser"),
583             OPACURLOpenInNewWindow                => "" . C4::Context->preference("OPACURLOpenInNewWindow"),
584             OPACUserCSS                           => "" . C4::Context->preference("OPACUserCSS"),
585             OpacAuthorities                       => C4::Context->preference("OpacAuthorities"),
586             opac_css_override                     => $ENV{'OPAC_CSS_OVERRIDE'},
587             opac_search_limit                     => $opac_search_limit,
588             opac_limit_override                   => $opac_limit_override,
589             OpacBrowser                           => C4::Context->preference("OpacBrowser"),
590             OpacCloud                             => C4::Context->preference("OpacCloud"),
591             OpacKohaUrl                           => C4::Context->preference("OpacKohaUrl"),
592             OpacNav                               => "" . C4::Context->preference("OpacNav"),
593             OpacNavBottom                         => "" . C4::Context->preference("OpacNavBottom"),
594             OpacPasswordChange                    => C4::Context->preference("OpacPasswordChange"),
595             OPACPatronDetails                     => C4::Context->preference("OPACPatronDetails"),
596             OPACPrivacy                           => C4::Context->preference("OPACPrivacy"),
597             OPACFinesTab                          => C4::Context->preference("OPACFinesTab"),
598             OpacTopissue                          => C4::Context->preference("OpacTopissue"),
599             RequestOnOpac                         => C4::Context->preference("RequestOnOpac"),
600             'Version'                             => C4::Context->preference('Version'),
601             hidelostitems                         => C4::Context->preference("hidelostitems"),
602             mylibraryfirst                        => ( C4::Context->preference("SearchMyLibraryFirst") && C4::Context->userenv ) ? C4::Context->userenv->{'branch'} : '',
603             opacbookbag                           => "" . C4::Context->preference("opacbookbag"),
604             OpacFavicon                           => C4::Context->preference("OpacFavicon"),
605             opaclanguagesdisplay                  => "" . C4::Context->preference("opaclanguagesdisplay"),
606             opacreadinghistory                    => C4::Context->preference("opacreadinghistory"),
607             OPACUserJS                            => C4::Context->preference("OPACUserJS"),
608             opacuserlogin                         => "" . C4::Context->preference("opacuserlogin"),
609             OpenLibrarySearch                     => C4::Context->preference("OpenLibrarySearch"),
610             ShowReviewer                          => C4::Context->preference("ShowReviewer"),
611             ShowReviewerPhoto                     => C4::Context->preference("ShowReviewerPhoto"),
612             suggestion                            => "" . C4::Context->preference("suggestion"),
613             virtualshelves                        => "" . C4::Context->preference("virtualshelves"),
614             OPACSerialIssueDisplayCount           => C4::Context->preference("OPACSerialIssueDisplayCount"),
615             OPACXSLTDetailsDisplay                => C4::Context->preference("OPACXSLTDetailsDisplay"),
616             OPACXSLTResultsDisplay                => C4::Context->preference("OPACXSLTResultsDisplay"),
617             SyndeticsClientCode                   => C4::Context->preference("SyndeticsClientCode"),
618             SyndeticsEnabled                      => C4::Context->preference("SyndeticsEnabled"),
619             SyndeticsCoverImages                  => C4::Context->preference("SyndeticsCoverImages"),
620             SyndeticsTOC                          => C4::Context->preference("SyndeticsTOC"),
621             SyndeticsSummary                      => C4::Context->preference("SyndeticsSummary"),
622             SyndeticsEditions                     => C4::Context->preference("SyndeticsEditions"),
623             SyndeticsExcerpt                      => C4::Context->preference("SyndeticsExcerpt"),
624             SyndeticsReviews                      => C4::Context->preference("SyndeticsReviews"),
625             SyndeticsAuthorNotes                  => C4::Context->preference("SyndeticsAuthorNotes"),
626             SyndeticsAwards                       => C4::Context->preference("SyndeticsAwards"),
627             SyndeticsSeries                       => C4::Context->preference("SyndeticsSeries"),
628             SyndeticsCoverImageSize               => C4::Context->preference("SyndeticsCoverImageSize"),
629             OPACLocalCoverImages                  => C4::Context->preference("OPACLocalCoverImages"),
630             PatronSelfRegistration                => C4::Context->preference("PatronSelfRegistration"),
631             PatronSelfRegistrationDefaultCategory => C4::Context->preference("PatronSelfRegistrationDefaultCategory"),
632             useDischarge                 => C4::Context->preference('useDischarge'),
633         );
634
635         $template->param( OpacPublic => '1' ) if ( $user || C4::Context->preference("OpacPublic") );
636     }
637
638     # Check if we were asked using parameters to force a specific language
639     if ( defined $in->{'query'}->param('language') ) {
640
641         # Extract the language, let C4::Languages::getlanguage choose
642         # what to do
643         my $language = C4::Languages::getlanguage( $in->{'query'} );
644         my $languagecookie = C4::Templates::getlanguagecookie( $in->{'query'}, $language );
645         if ( ref $cookie eq 'ARRAY' ) {
646             push @{$cookie}, $languagecookie;
647         } else {
648             $cookie = [ $cookie, $languagecookie ];
649         }
650     }
651
652     return ( $template, $borrowernumber, $cookie, $flags );
653 }
654
655 =head2 checkauth
656
657   ($userid, $cookie, $sessionID) = &checkauth($query, $noauth, $flagsrequired, $type);
658
659 Verifies that the user is authorized to run this script.  If
660 the user is authorized, a (userid, cookie, session-id, flags)
661 quadruple is returned.  If the user is not authorized but does
662 not have the required privilege (see $flagsrequired below), it
663 displays an error page and exits.  Otherwise, it displays the
664 login page and exits.
665
666 Note that C<&checkauth> will return if and only if the user
667 is authorized, so it should be called early on, before any
668 unfinished operations (e.g., if you've opened a file, then
669 C<&checkauth> won't close it for you).
670
671 C<$query> is the CGI object for the script calling C<&checkauth>.
672
673 The C<$noauth> argument is optional. If it is set, then no
674 authorization is required for the script.
675
676 C<&checkauth> fetches user and session information from C<$query> and
677 ensures that the user is authorized to run scripts that require
678 authorization.
679
680 The C<$flagsrequired> argument specifies the required privileges
681 the user must have if the username and password are correct.
682 It should be specified as a reference-to-hash; keys in the hash
683 should be the "flags" for the user, as specified in the Members
684 intranet module. Any key specified must correspond to a "flag"
685 in the userflags table. E.g., { circulate => 1 } would specify
686 that the user must have the "circulate" privilege in order to
687 proceed. To make sure that access control is correct, the
688 C<$flagsrequired> parameter must be specified correctly.
689
690 Koha also has a concept of sub-permissions, also known as
691 granular permissions.  This makes the value of each key
692 in the C<flagsrequired> hash take on an additional
693 meaning, i.e.,
694
695  1
696
697 The user must have access to all subfunctions of the module
698 specified by the hash key.
699
700  *
701
702 The user must have access to at least one subfunction of the module
703 specified by the hash key.
704
705  specific permission, e.g., 'export_catalog'
706
707 The user must have access to the specific subfunction list, which
708 must correspond to a row in the permissions table.
709
710 The C<$type> argument specifies whether the template should be
711 retrieved from the opac or intranet directory tree.  "opac" is
712 assumed if it is not specified; however, if C<$type> is specified,
713 "intranet" is assumed if it is not "opac".
714
715 If C<$query> does not have a valid session ID associated with it
716 (i.e., the user has not logged in) or if the session has expired,
717 C<&checkauth> presents the user with a login page (from the point of
718 view of the original script, C<&checkauth> does not return). Once the
719 user has authenticated, C<&checkauth> restarts the original script
720 (this time, C<&checkauth> returns).
721
722 The login page is provided using a HTML::Template, which is set in the
723 systempreferences table or at the top of this file. The variable C<$type>
724 selects which template to use, either the opac or the intranet
725 authentification template.
726
727 C<&checkauth> returns a user ID, a cookie, and a session ID. The
728 cookie should be sent back to the browser; it verifies that the user
729 has authenticated.
730
731 =cut
732
733 sub _version_check {
734     my $type  = shift;
735     my $query = shift;
736     my $version;
737
738     # If version syspref is unavailable, it means Koha is being installed,
739     # and so we must redirect to OPAC maintenance page or to the WebInstaller
740     # also, if OpacMaintenance is ON, OPAC should redirect to maintenance
741     if ( C4::Context->preference('OpacMaintenance') && $type eq 'opac' ) {
742         warn "OPAC Install required, redirecting to maintenance";
743         print $query->redirect("/cgi-bin/koha/maintenance.pl");
744         safe_exit;
745     }
746     unless ( $version = C4::Context->preference('Version') ) {    # assignment, not comparison
747         if ( $type ne 'opac' ) {
748             warn "Install required, redirecting to Installer";
749             print $query->redirect("/cgi-bin/koha/installer/install.pl");
750         } else {
751             warn "OPAC Install required, redirecting to maintenance";
752             print $query->redirect("/cgi-bin/koha/maintenance.pl");
753         }
754         safe_exit;
755     }
756
757     # check that database and koha version are the same
758     # there is no DB version, it's a fresh install,
759     # go to web installer
760     # there is a DB version, compare it to the code version
761     my $kohaversion = Koha::version();
762
763     # remove the 3 last . to have a Perl number
764     $kohaversion =~ s/(.*\..*)\.(.*)\.(.*)/$1$2$3/;
765     $debug and print STDERR "kohaversion : $kohaversion\n";
766     if ( $version < $kohaversion ) {
767         my $warning = "Database update needed, redirecting to %s. Database is $version and Koha is $kohaversion";
768         if ( $type ne 'opac' ) {
769             warn sprintf( $warning, 'Installer' );
770             print $query->redirect("/cgi-bin/koha/installer/install.pl?step=1&op=updatestructure");
771         } else {
772             warn sprintf( "OPAC: " . $warning, 'maintenance' );
773             print $query->redirect("/cgi-bin/koha/maintenance.pl");
774         }
775         safe_exit;
776     }
777 }
778
779 sub _session_log {
780     (@_) or return 0;
781     open my $fh, '>>', "/tmp/sessionlog" or warn "ERROR: Cannot append to /tmp/sessionlog";
782     printf $fh join( "\n", @_ );
783     close $fh;
784 }
785
786 sub _timeout_syspref {
787     my $default_timeout = 600;
788     my $timeout = C4::Context->preference('timeout') || $default_timeout;
789
790     # value in days, convert in seconds
791     if ( $timeout =~ /^(\d+)[dD]$/ ) {
792         $timeout = $1 * 86400;
793     }
794     # value in hours, convert in seconds
795     elsif ( $timeout =~ /^(\d+)[hH]$/ ) {
796         $timeout = $1 * 3600;
797     }
798     elsif ( $timeout !~ m/^\d+$/ ) {
799         warn "The value of the system preference 'timeout' is not correct, defaulting to $default_timeout";
800         $timeout = $default_timeout;
801     }
802
803     return $timeout;
804 }
805
806 sub checkauth {
807     my $query = shift;
808     $debug and warn "Checking Auth";
809
810     # Get shibboleth login attribute
811     my $shib = C4::Context->config('useshibboleth') && shib_ok();
812     my $shib_login = $shib ? get_login_shib() : undef;
813
814     # $authnotrequired will be set for scripts which will run without authentication
815     my $authnotrequired = shift;
816     my $flagsrequired   = shift;
817     my $type            = shift;
818     my $emailaddress    = shift;
819     my $template_name   = shift;
820     $type = 'opac' unless $type;
821
822     unless ( C4::Context->preference("OpacPublic") ) {
823         my @allowed_scripts_for_private_opac = qw(
824           opac-memberentry.tt
825           opac-registration-email-sent.tt
826           opac-registration-confirmation.tt
827           opac-memberentry-update-submitted.tt
828           opac-password-recovery.tt
829         );
830         $authnotrequired = 0 unless grep { $_ eq $template_name }
831           @allowed_scripts_for_private_opac;
832     }
833
834     my $dbh     = C4::Context->dbh;
835     my $timeout = _timeout_syspref();
836
837     _version_check( $type, $query );
838
839     # state variables
840     my $loggedin = 0;
841     my %info;
842     my ( $userid, $cookie, $sessionID, $flags );
843     my $logout = $query->param('logout.x');
844
845     my $anon_search_history;
846     my $cas_ticket = '';
847     # This parameter is the name of the CAS server we want to authenticate against,
848     # when using authentication against multiple CAS servers, as configured in Auth_cas_servers.yaml
849     my $casparam = $query->param('cas');
850     my $q_userid = $query->param('userid') // '';
851
852     my $session;
853
854     # Basic authentication is incompatible with the use of Shibboleth,
855     # as Shibboleth may return REMOTE_USER as a Shibboleth attribute,
856     # and it may not be the attribute we want to use to match the koha login.
857     #
858     # Also, do not consider an empty REMOTE_USER.
859     #
860     # Finally, after those tests, we can assume (although if it would be better with
861     # a syspref) that if we get a REMOTE_USER, that's from basic authentication,
862     # and we can affect it to $userid.
863     if ( !$shib and defined( $ENV{'REMOTE_USER'} ) and $ENV{'REMOTE_USER'} ne '' and $userid = $ENV{'REMOTE_USER'} ) {
864
865         # Using Basic Authentication, no cookies required
866         $cookie = $query->cookie(
867             -name     => 'CGISESSID',
868             -value    => '',
869             -expires  => '',
870             -HttpOnly => 1,
871             -secure => ( C4::Context->https_enabled() ? 1 : 0 ),
872         );
873         $loggedin = 1;
874     }
875     elsif ( $emailaddress) {
876         # the Google OpenID Connect passes an email address
877     }
878     elsif ( $sessionID = $query->cookie("CGISESSID") )
879     {    # assignment, not comparison
880         $session = get_session($sessionID);
881         C4::Context->_new_userenv($sessionID);
882         my ( $ip, $lasttime, $sessiontype );
883         my $s_userid = '';
884         if ($session) {
885             $s_userid = $session->param('id') // '';
886             C4::Context->set_userenv(
887                 $session->param('number'),       $s_userid,
888                 $session->param('cardnumber'),   $session->param('firstname'),
889                 $session->param('surname'),      $session->param('branch'),
890                 $session->param('branchname'),   $session->param('flags'),
891                 $session->param('emailaddress'), $session->param('shibboleth'),
892                 $session->param('desk_id'),      $session->param('desk_name'),
893                 $session->param('register_id'),  $session->param('register_name')
894             );
895             C4::Context::set_shelves_userenv( 'bar', $session->param('barshelves') );
896             C4::Context::set_shelves_userenv( 'pub', $session->param('pubshelves') );
897             C4::Context::set_shelves_userenv( 'tot', $session->param('totshelves') );
898             $debug and printf STDERR "AUTH_SESSION: (%s)\t%s %s - %s\n", map { $session->param($_) } qw(cardnumber firstname surname branch);
899             $ip          = $session->param('ip');
900             $lasttime    = $session->param('lasttime');
901             $userid      = $s_userid;
902             $sessiontype = $session->param('sessiontype') || '';
903         }
904         if ( ( $query->param('koha_login_context') && ( $q_userid ne $s_userid ) )
905             || ( $cas && $query->param('ticket') && !C4::Context->userenv->{'id'} )
906             || ( $shib && $shib_login && !$logout && !C4::Context->userenv->{'id'} )
907         ) {
908
909             #if a user enters an id ne to the id in the current session, we need to log them in...
910             #first we need to clear the anonymous session...
911             $debug and warn "query id = $q_userid but session id = $s_userid";
912             $anon_search_history = $session->param('search_history');
913             $session->delete();
914             $session->flush;
915             C4::Context->_unset_userenv($sessionID);
916             $sessionID = undef;
917             $userid    = undef;
918         }
919         elsif ($logout) {
920
921             # voluntary logout the user
922             # check wether the user was using their shibboleth session or a local one
923             my $shibSuccess = C4::Context->userenv->{'shibboleth'};
924             $session->delete();
925             $session->flush;
926             C4::Context->_unset_userenv($sessionID);
927
928             #_session_log(sprintf "%20s from %16s logged out at %30s (manually).\n", $userid,$ip,(strftime "%c",localtime));
929             $sessionID = undef;
930             $userid    = undef;
931
932             if ($cas and $caslogout) {
933                 logout_cas($query, $type);
934             }
935
936             # If we are in a shibboleth session (shibboleth is enabled, a shibboleth match attribute is set and matches koha matchpoint)
937             if ( $shib and $shib_login and $shibSuccess) {
938                 logout_shib($query);
939             }
940         }
941         elsif ( !$lasttime || ( $lasttime < time() - $timeout ) ) {
942
943             # timed logout
944             $info{'timed_out'} = 1;
945             if ($session) {
946                 $session->delete();
947                 $session->flush;
948             }
949             C4::Context->_unset_userenv($sessionID);
950
951             #_session_log(sprintf "%20s from %16s logged out at %30s (inactivity).\n", $userid,$ip,(strftime "%c",localtime));
952             $userid    = undef;
953             $sessionID = undef;
954         }
955         elsif ( C4::Context->preference('SessionRestrictionByIP') && $ip ne $ENV{'REMOTE_ADDR'} ) {
956
957             # Different ip than originally logged in from
958             $info{'oldip'}        = $ip;
959             $info{'newip'}        = $ENV{'REMOTE_ADDR'};
960             $info{'different_ip'} = 1;
961             $session->delete();
962             $session->flush;
963             C4::Context->_unset_userenv($sessionID);
964
965             #_session_log(sprintf "%20s from %16s logged out at %30s (ip changed to %16s).\n", $userid,$ip,(strftime "%c",localtime), $info{'newip'});
966             $sessionID = undef;
967             $userid    = undef;
968         }
969         else {
970             $cookie = $query->cookie(
971                 -name     => 'CGISESSID',
972                 -value    => $session->id,
973                 -HttpOnly => 1,
974                 -secure => ( C4::Context->https_enabled() ? 1 : 0 ),
975             );
976             $session->param( 'lasttime', time() );
977             unless ( $sessiontype && $sessiontype eq 'anon' ) {    #if this is an anonymous session, we want to update the session, but not behave as if they are logged in...
978                 $flags = haspermission( $userid, $flagsrequired );
979                 if ($flags) {
980                     $loggedin = 1;
981                 } else {
982                     $info{'nopermission'} = 1;
983                 }
984             }
985         }
986     }
987     unless ( $userid || $sessionID ) {
988         #we initiate a session prior to checking for a username to allow for anonymous sessions...
989         my $session = get_session("") or die "Auth ERROR: Cannot get_session()";
990
991         # Save anonymous search history in new session so it can be retrieved
992         # by get_template_and_user to store it in user's search history after
993         # a successful login.
994         if ($anon_search_history) {
995             $session->param( 'search_history', $anon_search_history );
996         }
997
998         $sessionID = $session->id;
999         C4::Context->_new_userenv($sessionID);
1000         $cookie = $query->cookie(
1001             -name     => 'CGISESSID',
1002             -value    => $session->id,
1003             -HttpOnly => 1,
1004             -secure => ( C4::Context->https_enabled() ? 1 : 0 ),
1005         );
1006         my $pki_field = C4::Context->preference('AllowPKIAuth');
1007         if ( !defined($pki_field) ) {
1008             print STDERR "ERROR: Missing system preference AllowPKIAuth.\n";
1009             $pki_field = 'None';
1010         }
1011         if ( ( $cas && $query->param('ticket') )
1012             || $q_userid
1013             || ( $shib && $shib_login )
1014             || $pki_field ne 'None'
1015             || $emailaddress )
1016         {
1017             my $password    = $query->param('password');
1018             my $shibSuccess = 0;
1019             my ( $return, $cardnumber );
1020
1021             # If shib is enabled and we have a shib login, does the login match a valid koha user
1022             if ( $shib && $shib_login ) {
1023                 my $retuserid;
1024
1025                 # Do not pass password here, else shib will not be checked in checkpw.
1026                 ( $return, $cardnumber, $retuserid ) = checkpw( $dbh, $q_userid, undef, $query );
1027                 $userid      = $retuserid;
1028                 $shibSuccess = $return;
1029                 $info{'invalidShibLogin'} = 1 unless ($return);
1030             }
1031
1032             # If shib login and match were successful, skip further login methods
1033             unless ($shibSuccess) {
1034                 if ( $cas && $query->param('ticket') ) {
1035                     my $retuserid;
1036                     ( $return, $cardnumber, $retuserid, $cas_ticket ) =
1037                       checkpw( $dbh, $userid, $password, $query, $type );
1038                     $userid = $retuserid;
1039                     $info{'invalidCasLogin'} = 1 unless ($return);
1040                 }
1041
1042                 elsif ( $emailaddress ) {
1043                     my $value = $emailaddress;
1044
1045                     # If we're looking up the email, there's a chance that the person
1046                     # doesn't have a userid. So if there is none, we pass along the
1047                     # borrower number, and the bits of code that need to know the user
1048                     # ID will have to be smart enough to handle that.
1049                     my $patrons = Koha::Patrons->search({ email => $value });
1050                     if ($patrons->count) {
1051
1052                         # First the userid, then the borrowernum
1053                         my $patron = $patrons->next;
1054                         $value = $patron->userid || $patron->borrowernumber;
1055                     } else {
1056                         undef $value;
1057                     }
1058                     $return = $value ? 1 : 0;
1059                     $userid = $value;
1060                 }
1061
1062                 elsif (
1063                     ( $pki_field eq 'Common Name' && $ENV{'SSL_CLIENT_S_DN_CN'} )
1064                     || ( $pki_field eq 'emailAddress'
1065                         && $ENV{'SSL_CLIENT_S_DN_Email'} )
1066                   )
1067                 {
1068                     my $value;
1069                     if ( $pki_field eq 'Common Name' ) {
1070                         $value = $ENV{'SSL_CLIENT_S_DN_CN'};
1071                     }
1072                     elsif ( $pki_field eq 'emailAddress' ) {
1073                         $value = $ENV{'SSL_CLIENT_S_DN_Email'};
1074
1075                         # If we're looking up the email, there's a chance that the person
1076                         # doesn't have a userid. So if there is none, we pass along the
1077                         # borrower number, and the bits of code that need to know the user
1078                         # ID will have to be smart enough to handle that.
1079                         my $patrons = Koha::Patrons->search({ email => $value });
1080                         if ($patrons->count) {
1081
1082                             # First the userid, then the borrowernum
1083                             my $patron = $patrons->next;
1084                             $value = $patron->userid || $patron->borrowernumber;
1085                         } else {
1086                             undef $value;
1087                         }
1088                     }
1089
1090                     $return = $value ? 1 : 0;
1091                     $userid = $value;
1092
1093                 }
1094                 else {
1095                     my $retuserid;
1096                     ( $return, $cardnumber, $retuserid, $cas_ticket ) =
1097                       checkpw( $dbh, $q_userid, $password, $query, $type );
1098                     $userid = $retuserid if ($retuserid);
1099                     $info{'invalid_username_or_password'} = 1 unless ($return);
1100                 }
1101             }
1102
1103             # If shib configured and shibOnly enabled, we should ignore anything other than a shibboleth type login.
1104             if (
1105                    $shib
1106                 && !$shibSuccess
1107                 && (
1108                     (
1109                         ( $type eq 'opac' )
1110                         && C4::Context->preference('OPACShibOnly')
1111                     )
1112                     || ( ( $type ne 'opac' )
1113                         && C4::Context->preference('staffShibOnly') )
1114                 )
1115               )
1116             {
1117                 $return = 0;
1118             }
1119
1120             # $return: 1 = valid user
1121             if ($return) {
1122
1123                 #_session_log(sprintf "%20s from %16s logged in  at %30s.\n", $userid,$ENV{'REMOTE_ADDR'},(strftime '%c', localtime));
1124                 if ( $flags = haspermission( $userid, $flagsrequired ) ) {
1125                     $loggedin = 1;
1126                 }
1127                 else {
1128                     $info{'nopermission'} = 1;
1129                     C4::Context->_unset_userenv($sessionID);
1130                 }
1131                 my ( $borrowernumber, $firstname, $surname, $userflags,
1132                     $branchcode, $branchname, $emailaddress, $desk_id,
1133                     $desk_name, $register_id, $register_name );
1134
1135                 if ( $return == 1 ) {
1136                     my $select = "
1137                     SELECT borrowernumber, firstname, surname, flags, borrowers.branchcode,
1138                     branches.branchname    as branchname, email
1139                     FROM borrowers
1140                     LEFT JOIN branches on borrowers.branchcode=branches.branchcode
1141                     ";
1142                     my $sth = $dbh->prepare("$select where userid=?");
1143                     $sth->execute($userid);
1144                     unless ( $sth->rows ) {
1145                         $debug and print STDERR "AUTH_1: no rows for userid='$userid'\n";
1146                         $sth = $dbh->prepare("$select where cardnumber=?");
1147                         $sth->execute($cardnumber);
1148
1149                         unless ( $sth->rows ) {
1150                             $debug and print STDERR "AUTH_2a: no rows for cardnumber='$cardnumber'\n";
1151                             $sth->execute($userid);
1152                             unless ( $sth->rows ) {
1153                                 $debug and print STDERR "AUTH_2b: no rows for userid='$userid' AS cardnumber\n";
1154                             }
1155                         }
1156                     }
1157                     if ( $sth->rows ) {
1158                         ( $borrowernumber, $firstname, $surname, $userflags,
1159                             $branchcode, $branchname, $emailaddress ) = $sth->fetchrow;
1160                         $debug and print STDERR "AUTH_3 results: " .
1161                           "$cardnumber,$borrowernumber,$userid,$firstname,$surname,$userflags,$branchcode,$emailaddress\n";
1162                     } else {
1163                         print STDERR "AUTH_3: no results for userid='$userid', cardnumber='$cardnumber'.\n";
1164                     }
1165
1166                     # launch a sequence to check if we have a ip for the branch, i
1167                     # if we have one we replace the branchcode of the userenv by the branch bound in the ip.
1168
1169                     my $ip = $ENV{'REMOTE_ADDR'};
1170
1171                     # if they specify at login, use that
1172                     if ( $query->param('branch') ) {
1173                         $branchcode = $query->param('branch');
1174                         my $library = Koha::Libraries->find($branchcode);
1175                         $branchname = $library? $library->branchname: '';
1176                     }
1177                     if ( $query->param('desk_id') ) {
1178                         $desk_id = $query->param('desk_id');
1179                         my $desk = Koha::Desks->find($desk_id);
1180                         $desk_name = $desk ? $desk->desk_name : '';
1181                     }
1182                     if ( C4::Context->preference('UseCashRegisters') ) {
1183                         my $register =
1184                           $query->param('register_id')
1185                           ? Koha::Cash::Registers->find($query->param('register_id'))
1186                           : Koha::Cash::Registers->search(
1187                             { branch => $branchcode, branch_default => 1 },
1188                             { rows   => 1 } )->single;
1189                         $register_id   = $register->id   if ($register);
1190                         $register_name = $register->name if ($register);
1191                     }
1192                     my $branches = { map { $_->branchcode => $_->unblessed } Koha::Libraries->search };
1193                     if ( $type ne 'opac' and C4::Context->boolean_preference('AutoLocation') ) {
1194
1195                         # we have to check they are coming from the right ip range
1196                         my $domain = $branches->{$branchcode}->{'branchip'};
1197                         $domain =~ s|\.\*||g;
1198                         if ( $ip !~ /^$domain/ ) {
1199                             $loggedin = 0;
1200                             $cookie = $query->cookie(
1201                                 -name     => 'CGISESSID',
1202                                 -value    => '',
1203                                 -HttpOnly => 1,
1204                                 -secure => ( C4::Context->https_enabled() ? 1 : 0 ),
1205                             );
1206                             $info{'wrongip'} = 1;
1207                         }
1208                     }
1209
1210                     foreach my $br ( keys %$branches ) {
1211
1212                         #     now we work with the treatment of ip
1213                         my $domain = $branches->{$br}->{'branchip'};
1214                         if ( $domain && $ip =~ /^$domain/ ) {
1215                             $branchcode = $branches->{$br}->{'branchcode'};
1216
1217                             # new op dev : add the branchname to the cookie
1218                             $branchname    = $branches->{$br}->{'branchname'};
1219                         }
1220                     }
1221                     $session->param( 'number',       $borrowernumber );
1222                     $session->param( 'id',           $userid );
1223                     $session->param( 'cardnumber',   $cardnumber );
1224                     $session->param( 'firstname',    $firstname );
1225                     $session->param( 'surname',      $surname );
1226                     $session->param( 'branch',       $branchcode );
1227                     $session->param( 'branchname',   $branchname );
1228                     $session->param( 'desk_id',      $desk_id);
1229                     $session->param( 'desk_name',     $desk_name);
1230                     $session->param( 'flags',        $userflags );
1231                     $session->param( 'emailaddress', $emailaddress );
1232                     $session->param( 'ip',           $session->remote_addr() );
1233                     $session->param( 'lasttime',     time() );
1234                     $session->param( 'interface',    $type);
1235                     $session->param( 'shibboleth',   $shibSuccess );
1236                     $session->param( 'register_id',  $register_id );
1237                     $session->param( 'register_name',  $register_name );
1238                     $debug and printf STDERR "AUTH_4: (%s)\t%s %s - %s\n", map { $session->param($_) } qw(cardnumber firstname surname branch);
1239                 }
1240                 $session->param('cas_ticket', $cas_ticket) if $cas_ticket;
1241                 C4::Context->set_userenv(
1242                     $session->param('number'),       $session->param('id'),
1243                     $session->param('cardnumber'),   $session->param('firstname'),
1244                     $session->param('surname'),      $session->param('branch'),
1245                     $session->param('branchname'),   $session->param('flags'),
1246                     $session->param('emailaddress'), $session->param('shibboleth'),
1247                     $session->param('desk_id'),      $session->param('desk_name'),
1248                     $session->param('register_id'),  $session->param('register_name')
1249                 );
1250
1251             }
1252             # $return: 0 = invalid user
1253             # reset to anonymous session
1254             else {
1255                 $debug and warn "Login failed, resetting anonymous session...";
1256                 if ($userid) {
1257                     $info{'invalid_username_or_password'} = 1;
1258                     C4::Context->_unset_userenv($sessionID);
1259                 }
1260                 $session->param( 'lasttime', time() );
1261                 $session->param( 'ip',       $session->remote_addr() );
1262                 $session->param( 'sessiontype', 'anon' );
1263                 $session->param( 'interface', $type);
1264             }
1265         }    # END if ( $q_userid
1266         elsif ( $type eq "opac" ) {
1267
1268             # if we are here this is an anonymous session; add public lists to it and a few other items...
1269             # anonymous sessions are created only for the OPAC
1270             $debug and warn "Initiating an anonymous session...";
1271
1272             # setting a couple of other session vars...
1273             $session->param( 'ip',          $session->remote_addr() );
1274             $session->param( 'lasttime',    time() );
1275             $session->param( 'sessiontype', 'anon' );
1276             $session->param( 'interface', $type);
1277         }
1278     }    # END unless ($userid)
1279
1280     # finished authentification, now respond
1281     if ( $loggedin || $authnotrequired )
1282     {
1283         # successful login
1284         unless ($cookie) {
1285             $cookie = $query->cookie(
1286                 -name     => 'CGISESSID',
1287                 -value    => '',
1288                 -HttpOnly => 1,
1289                 -secure => ( C4::Context->https_enabled() ? 1 : 0 ),
1290             );
1291         }
1292
1293         track_login_daily( $userid );
1294
1295         # In case, that this request was a login attempt, we want to prevent that users can repost the opac login
1296         # request. We therefore redirect the user to the requested page again without the login parameters.
1297         # See Post/Redirect/Get (PRG) design pattern: https://en.wikipedia.org/wiki/Post/Redirect/Get
1298         if ( $type eq "opac" && $query->param('koha_login_context') && $query->param('koha_login_context') ne 'sco' && $query->param('password') && $query->param('userid') ) {
1299             my $uri = URI->new($query->url(-relative=>1, -query_string=>1));
1300             $uri->query_param_delete('userid');
1301             $uri->query_param_delete('password');
1302             $uri->query_param_delete('koha_login_context');
1303             print $query->redirect(-uri => $uri->as_string, -cookie => $cookie, -status=>'303 See other');
1304             exit;
1305         }
1306
1307         return ( $userid, $cookie, $sessionID, $flags );
1308     }
1309
1310     #
1311     #
1312     # AUTH rejected, show the login/password template, after checking the DB.
1313     #
1314     #
1315
1316     # get the inputs from the incoming query
1317     my @inputs = ();
1318     foreach my $name ( param $query) {
1319         (next) if ( $name eq 'userid' || $name eq 'password' || $name eq 'ticket' );
1320         my @value = $query->multi_param($name);
1321         push @inputs, { name => $name, value => $_ } for @value;
1322     }
1323
1324     my $patron = Koha::Patrons->find({ userid => $q_userid }); # Not necessary logged in!
1325
1326     my $LibraryNameTitle = C4::Context->preference("LibraryName");
1327     $LibraryNameTitle =~ s/<(?:\/?)(?:br|p)\s*(?:\/?)>/ /sgi;
1328     $LibraryNameTitle =~ s/<(?:[^<>'"]|'(?:[^']*)'|"(?:[^"]*)")*>//sg;
1329
1330     my $auth_template_name = ( $type eq 'opac' ) ? 'opac-auth.tt' : 'auth.tt';
1331     my $template = C4::Templates::gettemplate( $auth_template_name, $type, $query );
1332     $template->param(
1333         login                                 => 1,
1334         INPUTS                                => \@inputs,
1335         script_name                           => get_script_name(),
1336         casAuthentication                     => C4::Context->preference("casAuthentication"),
1337         shibbolethAuthentication              => $shib,
1338         SessionRestrictionByIP                => C4::Context->preference("SessionRestrictionByIP"),
1339         suggestion                            => C4::Context->preference("suggestion"),
1340         virtualshelves                        => C4::Context->preference("virtualshelves"),
1341         LibraryName                           => "" . C4::Context->preference("LibraryName"),
1342         LibraryNameTitle                      => "" . $LibraryNameTitle,
1343         opacuserlogin                         => C4::Context->preference("opacuserlogin"),
1344         OpacNav                               => C4::Context->preference("OpacNav"),
1345         OpacNavBottom                         => C4::Context->preference("OpacNavBottom"),
1346         OpacFavicon                           => C4::Context->preference("OpacFavicon"),
1347         opacreadinghistory                    => C4::Context->preference("opacreadinghistory"),
1348         opaclanguagesdisplay                  => C4::Context->preference("opaclanguagesdisplay"),
1349         OPACUserJS                            => C4::Context->preference("OPACUserJS"),
1350         opacbookbag                           => "" . C4::Context->preference("opacbookbag"),
1351         OpacCloud                             => C4::Context->preference("OpacCloud"),
1352         OpacTopissue                          => C4::Context->preference("OpacTopissue"),
1353         OpacAuthorities                       => C4::Context->preference("OpacAuthorities"),
1354         OpacBrowser                           => C4::Context->preference("OpacBrowser"),
1355         TagsEnabled                           => C4::Context->preference("TagsEnabled"),
1356         OPACUserCSS                           => C4::Context->preference("OPACUserCSS"),
1357         intranetcolorstylesheet               => C4::Context->preference("intranetcolorstylesheet"),
1358         intranetstylesheet                    => C4::Context->preference("intranetstylesheet"),
1359         IntranetNav                           => C4::Context->preference("IntranetNav"),
1360         IntranetFavicon                       => C4::Context->preference("IntranetFavicon"),
1361         IntranetUserCSS                       => C4::Context->preference("IntranetUserCSS"),
1362         IntranetUserJS                        => C4::Context->preference("IntranetUserJS"),
1363         IndependentBranches                   => C4::Context->preference("IndependentBranches"),
1364         AutoLocation                          => C4::Context->preference("AutoLocation"),
1365         wrongip                               => $info{'wrongip'},
1366         PatronSelfRegistration                => C4::Context->preference("PatronSelfRegistration"),
1367         PatronSelfRegistrationDefaultCategory => C4::Context->preference("PatronSelfRegistrationDefaultCategory"),
1368         opac_css_override                     => $ENV{'OPAC_CSS_OVERRIDE'},
1369         too_many_login_attempts               => ( $patron and $patron->account_locked )
1370     );
1371
1372     $template->param( SCO_login => 1 ) if ( $query->param('sco_user_login') );
1373     $template->param( SCI_login => 1 ) if ( $query->param('sci_user_login') );
1374     $template->param( OpacPublic => C4::Context->preference("OpacPublic") );
1375     $template->param( loginprompt => 1 ) unless $info{'nopermission'};
1376
1377     if ( $type eq 'opac' ) {
1378         require Koha::Virtualshelves;
1379         my $some_public_shelves = Koha::Virtualshelves->get_some_shelves(
1380             {
1381                 category       => 2,
1382             }
1383         );
1384         $template->param(
1385             some_public_shelves  => $some_public_shelves,
1386         );
1387     }
1388
1389     if ($cas) {
1390
1391         # Is authentication against multiple CAS servers enabled?
1392         if ( C4::Auth_with_cas::multipleAuth && !$casparam ) {
1393             my $casservers = C4::Auth_with_cas::getMultipleAuth();
1394             my @tmplservers;
1395             foreach my $key ( keys %$casservers ) {
1396                 push @tmplservers, { name => $key, value => login_cas_url( $query, $key, $type ) . "?cas=$key" };
1397             }
1398             $template->param(
1399                 casServersLoop => \@tmplservers
1400             );
1401         } else {
1402             $template->param(
1403                 casServerUrl => login_cas_url($query, undef, $type),
1404             );
1405         }
1406
1407         $template->param(
1408             invalidCasLogin => $info{'invalidCasLogin'}
1409         );
1410     }
1411
1412     if ($shib) {
1413         #If shibOnly is enabled just go ahead and redirect directly
1414         if ( (($type eq 'opac') && C4::Context->preference('OPACShibOnly')) || (($type ne 'opac') && C4::Context->preference('staffShibOnly')) ) {
1415             my $redirect_url = login_shib_url( $query );
1416             print $query->redirect( -uri => "$redirect_url", -status => 303 );
1417             safe_exit;
1418         }
1419
1420         $template->param(
1421             shibbolethAuthentication => $shib,
1422             shibbolethLoginUrl       => login_shib_url($query),
1423         );
1424     }
1425
1426     if (C4::Context->preference('GoogleOpenIDConnect')) {
1427         if ($query->param("OpenIDConnectFailed")) {
1428             my $reason = $query->param('OpenIDConnectFailed');
1429             $template->param(invalidGoogleOpenIDConnectLogin => $reason);
1430         }
1431     }
1432
1433     $template->param(
1434         LibraryName => C4::Context->preference("LibraryName"),
1435     );
1436     $template->param(%info);
1437
1438     #    $cookie = $query->cookie(CGISESSID => $session->id
1439     #   );
1440     print $query->header(
1441         {   type              => 'text/html',
1442             charset           => 'utf-8',
1443             cookie            => $cookie,
1444             'X-Frame-Options' => 'SAMEORIGIN'
1445         }
1446       ),
1447       $template->output;
1448     safe_exit;
1449 }
1450
1451 =head2 check_api_auth
1452
1453   ($status, $cookie, $sessionId) = check_api_auth($query, $userflags);
1454
1455 Given a CGI query containing the parameters 'userid' and 'password' and/or a session
1456 cookie, determine if the user has the privileges specified by C<$userflags>.
1457
1458 C<check_api_auth> is is meant for authenticating users of web services, and
1459 consequently will always return and will not attempt to redirect the user
1460 agent.
1461
1462 If a valid session cookie is already present, check_api_auth will return a status
1463 of "ok", the cookie, and the Koha session ID.
1464
1465 If no session cookie is present, check_api_auth will check the 'userid' and 'password
1466 parameters and create a session cookie and Koha session if the supplied credentials
1467 are OK.
1468
1469 Possible return values in C<$status> are:
1470
1471 =over
1472
1473 =item "ok" -- user authenticated; C<$cookie> and C<$sessionid> have valid values.
1474
1475 =item "failed" -- credentials are not correct; C<$cookie> and C<$sessionid> are undef
1476
1477 =item "maintenance" -- DB is in maintenance mode; no login possible at the moment
1478
1479 =item "expired -- session cookie has expired; API user should resubmit userid and password
1480
1481 =back
1482
1483 =cut
1484
1485 sub check_api_auth {
1486
1487     my $query         = shift;
1488     my $flagsrequired = shift;
1489     my $dbh     = C4::Context->dbh;
1490     my $timeout = _timeout_syspref();
1491
1492     unless ( C4::Context->preference('Version') ) {
1493
1494         # database has not been installed yet
1495         return ( "maintenance", undef, undef );
1496     }
1497     my $kohaversion = Koha::version();
1498     $kohaversion =~ s/(.*\..*)\.(.*)\.(.*)/$1$2$3/;
1499     if ( C4::Context->preference('Version') < $kohaversion ) {
1500
1501         # database in need of version update; assume that
1502         # no API should be called while databsae is in
1503         # this condition.
1504         return ( "maintenance", undef, undef );
1505     }
1506
1507     # FIXME -- most of what follows is a copy-and-paste
1508     # of code from checkauth.  There is an obvious need
1509     # for refactoring to separate the various parts of
1510     # the authentication code, but as of 2007-11-19 this
1511     # is deferred so as to not introduce bugs into the
1512     # regular authentication code for Koha 3.0.
1513
1514     # see if we have a valid session cookie already
1515     # however, if a userid parameter is present (i.e., from
1516     # a form submission, assume that any current cookie
1517     # is to be ignored
1518     my $sessionID = undef;
1519     unless ( $query->param('userid') ) {
1520         $sessionID = $query->cookie("CGISESSID");
1521     }
1522     if ( $sessionID && not( $cas && $query->param('PT') ) ) {
1523         my $session = get_session($sessionID);
1524         C4::Context->_new_userenv($sessionID);
1525         if ($session) {
1526             C4::Context->interface($session->param('interface'));
1527             C4::Context->set_userenv(
1528                 $session->param('number'),       $session->param('id'),
1529                 $session->param('cardnumber'),   $session->param('firstname'),
1530                 $session->param('surname'),      $session->param('branch'),
1531                 $session->param('branchname'),   $session->param('flags'),
1532                 $session->param('emailaddress'), $session->param('shibboleth'),
1533                 $session->param('desk_id'),      $session->param('desk_name'),
1534                 $session->param('register_id'),  $session->param('register_name')
1535             );
1536
1537             my $ip       = $session->param('ip');
1538             my $lasttime = $session->param('lasttime');
1539             my $userid   = $session->param('id');
1540             if ( $lasttime < time() - $timeout ) {
1541
1542                 # time out
1543                 $session->delete();
1544                 $session->flush;
1545                 C4::Context->_unset_userenv($sessionID);
1546                 $userid    = undef;
1547                 $sessionID = undef;
1548                 return ( "expired", undef, undef );
1549             } elsif ( C4::Context->preference('SessionRestrictionByIP') && $ip ne $ENV{'REMOTE_ADDR'} ) {
1550
1551                 # IP address changed
1552                 $session->delete();
1553                 $session->flush;
1554                 C4::Context->_unset_userenv($sessionID);
1555                 $userid    = undef;
1556                 $sessionID = undef;
1557                 return ( "expired", undef, undef );
1558             } else {
1559                 my $cookie = $query->cookie(
1560                     -name     => 'CGISESSID',
1561                     -value    => $session->id,
1562                     -HttpOnly => 1,
1563                     -secure => ( C4::Context->https_enabled() ? 1 : 0 ),
1564                 );
1565                 $session->param( 'lasttime', time() );
1566                 my $flags = haspermission( $userid, $flagsrequired );
1567                 if ($flags) {
1568                     return ( "ok", $cookie, $sessionID );
1569                 } else {
1570                     $session->delete();
1571                     $session->flush;
1572                     C4::Context->_unset_userenv($sessionID);
1573                     $userid    = undef;
1574                     $sessionID = undef;
1575                     return ( "failed", undef, undef );
1576                 }
1577             }
1578         } else {
1579             return ( "expired", undef, undef );
1580         }
1581     } else {
1582
1583         # new login
1584         my $userid   = $query->param('userid');
1585         my $password = $query->param('password');
1586         my ( $return, $cardnumber, $cas_ticket );
1587
1588         # Proxy CAS auth
1589         if ( $cas && $query->param('PT') ) {
1590             my $retuserid;
1591             $debug and print STDERR "## check_api_auth - checking CAS\n";
1592
1593             # In case of a CAS authentication, we use the ticket instead of the password
1594             my $PT = $query->param('PT');
1595             ( $return, $cardnumber, $userid, $cas_ticket ) = check_api_auth_cas( $dbh, $PT, $query );    # EXTERNAL AUTH
1596         } else {
1597
1598             # User / password auth
1599             unless ( $userid and $password ) {
1600
1601                 # caller did something wrong, fail the authenticateion
1602                 return ( "failed", undef, undef );
1603             }
1604             my $newuserid;
1605             ( $return, $cardnumber, $newuserid, $cas_ticket ) = checkpw( $dbh, $userid, $password, $query );
1606         }
1607
1608         if ( $return and haspermission( $userid, $flagsrequired ) ) {
1609             my $session = get_session("");
1610             return ( "failed", undef, undef ) unless $session;
1611
1612             my $sessionID = $session->id;
1613             C4::Context->_new_userenv($sessionID);
1614             my $cookie = $query->cookie(
1615                 -name     => 'CGISESSID',
1616                 -value    => $sessionID,
1617                 -HttpOnly => 1,
1618                 -secure => ( C4::Context->https_enabled() ? 1 : 0 ),
1619             );
1620             if ( $return == 1 ) {
1621                 my (
1622                     $borrowernumber, $firstname,  $surname,
1623                     $userflags,      $branchcode, $branchname,
1624                     $emailaddress
1625                 );
1626                 my $sth =
1627                   $dbh->prepare(
1628 "select borrowernumber, firstname, surname, flags, borrowers.branchcode, branches.branchname as branchname, email from borrowers left join branches on borrowers.branchcode=branches.branchcode where userid=?"
1629                   );
1630                 $sth->execute($userid);
1631                 (
1632                     $borrowernumber, $firstname,  $surname,
1633                     $userflags,      $branchcode, $branchname,
1634                     $emailaddress
1635                 ) = $sth->fetchrow if ( $sth->rows );
1636
1637                 unless ( $sth->rows ) {
1638                     my $sth = $dbh->prepare(
1639 "select borrowernumber, firstname, surname, flags, borrowers.branchcode, branches.branchname as branchname, email from borrowers left join branches on borrowers.branchcode=branches.branchcode where cardnumber=?"
1640                     );
1641                     $sth->execute($cardnumber);
1642                     (
1643                         $borrowernumber, $firstname,  $surname,
1644                         $userflags,      $branchcode, $branchname,
1645                         $emailaddress
1646                     ) = $sth->fetchrow if ( $sth->rows );
1647
1648                     unless ( $sth->rows ) {
1649                         $sth->execute($userid);
1650                         (
1651                             $borrowernumber, $firstname,  $surname,       $userflags,
1652                             $branchcode,     $branchname, $emailaddress
1653                         ) = $sth->fetchrow if ( $sth->rows );
1654                     }
1655                 }
1656
1657                 my $ip = $ENV{'REMOTE_ADDR'};
1658
1659                 # if they specify at login, use that
1660                 if ( $query->param('branch') ) {
1661                     $branchcode = $query->param('branch');
1662                     my $library = Koha::Libraries->find($branchcode);
1663                     $branchname = $library? $library->branchname: '';
1664                 }
1665                 my $branches = { map { $_->branchcode => $_->unblessed } Koha::Libraries->search };
1666                 foreach my $br ( keys %$branches ) {
1667
1668                     #     now we work with the treatment of ip
1669                     my $domain = $branches->{$br}->{'branchip'};
1670                     if ( $domain && $ip =~ /^$domain/ ) {
1671                         $branchcode = $branches->{$br}->{'branchcode'};
1672
1673                         # new op dev : add the branchname to the cookie
1674                         $branchname    = $branches->{$br}->{'branchname'};
1675                     }
1676                 }
1677                 $session->param( 'number',       $borrowernumber );
1678                 $session->param( 'id',           $userid );
1679                 $session->param( 'cardnumber',   $cardnumber );
1680                 $session->param( 'firstname',    $firstname );
1681                 $session->param( 'surname',      $surname );
1682                 $session->param( 'branch',       $branchcode );
1683                 $session->param( 'branchname',   $branchname );
1684                 $session->param( 'flags',        $userflags );
1685                 $session->param( 'emailaddress', $emailaddress );
1686                 $session->param( 'ip',           $session->remote_addr() );
1687                 $session->param( 'lasttime',     time() );
1688                 $session->param( 'interface',    'api'  );
1689             }
1690             $session->param( 'cas_ticket', $cas_ticket);
1691             C4::Context->set_userenv(
1692                 $session->param('number'),       $session->param('id'),
1693                 $session->param('cardnumber'),   $session->param('firstname'),
1694                 $session->param('surname'),      $session->param('branch'),
1695                 $session->param('branchname'),   $session->param('flags'),
1696                 $session->param('emailaddress'), $session->param('shibboleth'),
1697                 $session->param('desk_id'),      $session->param('desk_name'),
1698                 $session->param('register_id'),  $session->param('register_name')
1699             );
1700             return ( "ok", $cookie, $sessionID );
1701         } else {
1702             return ( "failed", undef, undef );
1703         }
1704     }
1705 }
1706
1707 =head2 check_cookie_auth
1708
1709   ($status, $sessionId) = check_api_auth($cookie, $userflags);
1710
1711 Given a CGISESSID cookie set during a previous login to Koha, determine
1712 if the user has the privileges specified by C<$userflags>. C<$userflags>
1713 is passed unaltered into C<haspermission> and as such accepts all options
1714 avaiable to that routine with the one caveat that C<check_api_auth> will
1715 also allow 'undef' to be passed and in such a case the permissions check
1716 will be skipped altogether.
1717
1718 C<check_cookie_auth> is meant for authenticating special services
1719 such as tools/upload-file.pl that are invoked by other pages that
1720 have been authenticated in the usual way.
1721
1722 Possible return values in C<$status> are:
1723
1724 =over
1725
1726 =item "ok" -- user authenticated; C<$sessionID> have valid values.
1727
1728 =item "failed" -- credentials are not correct; C<$sessionid> are undef
1729
1730 =item "maintenance" -- DB is in maintenance mode; no login possible at the moment
1731
1732 =item "expired -- session cookie has expired; API user should resubmit userid and password
1733
1734 =back
1735
1736 =cut
1737
1738 sub check_cookie_auth {
1739     my $cookie        = shift;
1740     my $flagsrequired = shift;
1741     my $params        = shift;
1742
1743     my $remote_addr = $params->{remote_addr} || $ENV{REMOTE_ADDR};
1744     my $dbh     = C4::Context->dbh;
1745     my $timeout = _timeout_syspref();
1746
1747     unless ( C4::Context->preference('Version') ) {
1748
1749         # database has not been installed yet
1750         return ( "maintenance", undef );
1751     }
1752     my $kohaversion = Koha::version();
1753     $kohaversion =~ s/(.*\..*)\.(.*)\.(.*)/$1$2$3/;
1754     if ( C4::Context->preference('Version') < $kohaversion ) {
1755
1756         # database in need of version update; assume that
1757         # no API should be called while databsae is in
1758         # this condition.
1759         return ( "maintenance", undef );
1760     }
1761
1762     # FIXME -- most of what follows is a copy-and-paste
1763     # of code from checkauth.  There is an obvious need
1764     # for refactoring to separate the various parts of
1765     # the authentication code, but as of 2007-11-23 this
1766     # is deferred so as to not introduce bugs into the
1767     # regular authentication code for Koha 3.0.
1768
1769     # see if we have a valid session cookie already
1770     # however, if a userid parameter is present (i.e., from
1771     # a form submission, assume that any current cookie
1772     # is to be ignored
1773     unless ( defined $cookie and $cookie ) {
1774         return ( "failed", undef );
1775     }
1776     my $sessionID = $cookie;
1777     my $session   = get_session($sessionID);
1778     C4::Context->_new_userenv($sessionID);
1779     if ($session) {
1780         C4::Context->interface($session->param('interface'));
1781         C4::Context->set_userenv(
1782             $session->param('number'),       $session->param('id'),
1783             $session->param('cardnumber'),   $session->param('firstname'),
1784             $session->param('surname'),      $session->param('branch'),
1785             $session->param('branchname'),   $session->param('flags'),
1786             $session->param('emailaddress'), $session->param('shibboleth'),
1787             $session->param('desk_id'),      $session->param('desk_name'),
1788             $session->param('register_id'),  $session->param('register_name')
1789         );
1790
1791         my $ip       = $session->param('ip');
1792         my $lasttime = $session->param('lasttime');
1793         my $userid   = $session->param('id');
1794         if ( $lasttime < time() - $timeout ) {
1795
1796             # time out
1797             $session->delete();
1798             $session->flush;
1799             C4::Context->_unset_userenv($sessionID);
1800             $userid    = undef;
1801             $sessionID = undef;
1802             return ("expired", undef);
1803         } elsif ( C4::Context->preference('SessionRestrictionByIP') && $ip ne $remote_addr ) {
1804
1805             # IP address changed
1806             $session->delete();
1807             $session->flush;
1808             C4::Context->_unset_userenv($sessionID);
1809             $userid    = undef;
1810             $sessionID = undef;
1811             return ( "expired", undef );
1812         } else {
1813             $session->param( 'lasttime', time() );
1814             my $flags = defined($flagsrequired) ? haspermission( $userid, $flagsrequired ) : 1;
1815             if ($flags) {
1816                 return ( "ok", $sessionID );
1817             } else {
1818                 $session->delete();
1819                 $session->flush;
1820                 C4::Context->_unset_userenv($sessionID);
1821                 $userid    = undef;
1822                 $sessionID = undef;
1823                 return ( "failed", undef );
1824             }
1825         }
1826     } else {
1827         return ( "expired", undef );
1828     }
1829 }
1830
1831 =head2 get_session
1832
1833   use CGI::Session;
1834   my $session = get_session($sessionID);
1835
1836 Given a session ID, retrieve the CGI::Session object used to store
1837 the session's state.  The session object can be used to store
1838 data that needs to be accessed by different scripts during a
1839 user's session.
1840
1841 If the C<$sessionID> parameter is an empty string, a new session
1842 will be created.
1843
1844 =cut
1845
1846 sub _get_session_params {
1847     my $storage_method = C4::Context->preference('SessionStorage');
1848     if ( $storage_method eq 'mysql' ) {
1849         my $dbh = C4::Context->dbh;
1850         return { dsn => "driver:MySQL;serializer:yaml;id:md5", dsn_args => { Handle => $dbh } };
1851     }
1852     elsif ( $storage_method eq 'Pg' ) {
1853         my $dbh = C4::Context->dbh;
1854         return { dsn => "driver:PostgreSQL;serializer:yaml;id:md5", dsn_args => { Handle => $dbh } };
1855     }
1856     elsif ( $storage_method eq 'memcached' && Koha::Caches->get_instance->memcached_cache ) {
1857         my $memcached = Koha::Caches->get_instance()->memcached_cache;
1858         return { dsn => "driver:memcached;serializer:yaml;id:md5", dsn_args => { Memcached => $memcached } };
1859     }
1860     else {
1861         # catch all defaults to tmp should work on all systems
1862         my $dir = C4::Context::temporary_directory;
1863         my $instance = C4::Context->config( 'database' ); #actually for packages not exactly the instance name, but generally safer to leave it as it is
1864         return { dsn => "driver:File;serializer:yaml;id:md5", dsn_args => { Directory => "$dir/cgisess_$instance" } };
1865     }
1866 }
1867
1868 sub get_session {
1869     my $sessionID      = shift;
1870     my $params = _get_session_params();
1871     return CGI::Session->new( $params->{dsn}, $sessionID, $params->{dsn_args} );
1872 }
1873
1874
1875 # FIXME no_set_userenv may be replaced with force_branchcode_for_userenv
1876 # (or something similar)
1877 # Currently it's only passed from C4::SIP::ILS::Patron::check_password, but
1878 # not having a userenv defined could cause a crash.
1879 sub checkpw {
1880     my ( $dbh, $userid, $password, $query, $type, $no_set_userenv ) = @_;
1881     $type = 'opac' unless $type;
1882
1883     # Get shibboleth login attribute
1884     my $shib = C4::Context->config('useshibboleth') && shib_ok();
1885     my $shib_login = $shib ? get_login_shib() : undef;
1886
1887     my @return;
1888     my $patron;
1889     if ( defined $userid ){
1890         $patron = Koha::Patrons->find({ userid => $userid });
1891         $patron = Koha::Patrons->find({ cardnumber => $userid }) unless $patron;
1892     }
1893     my $check_internal_as_fallback = 0;
1894     my $passwd_ok = 0;
1895     # Note: checkpw_* routines returns:
1896     # 1 if auth is ok
1897     # 0 if auth is nok
1898     # -1 if user bind failed (LDAP only)
1899
1900     if ( $patron and $patron->account_locked ) {
1901         # Nothing to check, account is locked
1902     } elsif ($ldap && defined($password)) {
1903         $debug and print STDERR "## checkpw - checking LDAP\n";
1904         my ( $retval, $retcard, $retuserid ) = checkpw_ldap(@_);    # EXTERNAL AUTH
1905         if ( $retval == 1 ) {
1906             @return = ( $retval, $retcard, $retuserid );
1907             $passwd_ok = 1;
1908         }
1909         $check_internal_as_fallback = 1 if $retval == 0;
1910
1911     } elsif ( $cas && $query && $query->param('ticket') ) {
1912         $debug and print STDERR "## checkpw - checking CAS\n";
1913
1914         # In case of a CAS authentication, we use the ticket instead of the password
1915         my $ticket = $query->param('ticket');
1916         $query->delete('ticket');                                   # remove ticket to come back to original URL
1917         my ( $retval, $retcard, $retuserid, $cas_ticket ) = checkpw_cas( $dbh, $ticket, $query, $type );    # EXTERNAL AUTH
1918         if ( $retval ) {
1919             @return = ( $retval, $retcard, $retuserid, $cas_ticket );
1920         } else {
1921             @return = (0);
1922         }
1923         $passwd_ok = $retval;
1924     }
1925
1926     # If we are in a shibboleth session (shibboleth is enabled, and a shibboleth match attribute is present)
1927     # Check for password to asertain whether we want to be testing against shibboleth or another method this
1928     # time around.
1929     elsif ( $shib && $shib_login && !$password ) {
1930
1931         $debug and print STDERR "## checkpw - checking Shibboleth\n";
1932
1933         # In case of a Shibboleth authentication, we expect a shibboleth user attribute
1934         # (defined under shibboleth mapping in koha-conf.xml) to contain the login of the
1935         # shibboleth-authenticated user
1936
1937         # Then, we check if it matches a valid koha user
1938         if ($shib_login) {
1939             my ( $retval, $retcard, $retuserid ) = C4::Auth_with_shibboleth::checkpw_shib($shib_login);    # EXTERNAL AUTH
1940             if ( $retval ) {
1941                 @return = ( $retval, $retcard, $retuserid );
1942             }
1943             $passwd_ok = $retval;
1944         }
1945     } else {
1946         $check_internal_as_fallback = 1;
1947     }
1948
1949     # INTERNAL AUTH
1950     if ( $check_internal_as_fallback ) {
1951         @return = checkpw_internal( $dbh, $userid, $password, $no_set_userenv);
1952         $passwd_ok = 1 if $return[0] > 0; # 1 or 2
1953     }
1954
1955     if( $patron ) {
1956         if ( $passwd_ok ) {
1957             $patron->update({ login_attempts => 0 });
1958         } elsif( !$patron->account_locked ) {
1959             $patron->update({ login_attempts => $patron->login_attempts + 1 });
1960         }
1961     }
1962
1963     # Optionally log success or failure
1964     if( $patron && $passwd_ok && C4::Context->preference('AuthSuccessLog') ) {
1965         logaction( 'AUTH', 'SUCCESS', $patron->id, "Valid password for $userid", $type );
1966     } elsif( !$passwd_ok && C4::Context->preference('AuthFailureLog') ) {
1967         logaction( 'AUTH', 'FAILURE', $patron ? $patron->id : 0, "Wrong password for $userid", $type );
1968     }
1969
1970     return @return;
1971 }
1972
1973 sub checkpw_internal {
1974     my ( $dbh, $userid, $password, $no_set_userenv ) = @_;
1975
1976     $password = Encode::encode( 'UTF-8', $password )
1977       if Encode::is_utf8($password);
1978
1979     my $sth =
1980       $dbh->prepare(
1981         "select password,cardnumber,borrowernumber,userid,firstname,surname,borrowers.branchcode,branches.branchname,flags from borrowers join branches on borrowers.branchcode=branches.branchcode where userid=?"
1982       );
1983     $sth->execute($userid);
1984     if ( $sth->rows ) {
1985         my ( $stored_hash, $cardnumber, $borrowernumber, $userid, $firstname,
1986             $surname, $branchcode, $branchname, $flags )
1987           = $sth->fetchrow;
1988
1989         if ( checkpw_hash( $password, $stored_hash ) ) {
1990
1991             C4::Context->set_userenv( "$borrowernumber", $userid, $cardnumber,
1992                 $firstname, $surname, $branchcode, $branchname, $flags ) unless $no_set_userenv;
1993             return 1, $cardnumber, $userid;
1994         }
1995     }
1996     $sth =
1997       $dbh->prepare(
1998         "select password,cardnumber,borrowernumber,userid,firstname,surname,borrowers.branchcode,branches.branchname,flags from borrowers join branches on borrowers.branchcode=branches.branchcode where cardnumber=?"
1999       );
2000     $sth->execute($userid);
2001     if ( $sth->rows ) {
2002         my ( $stored_hash, $cardnumber, $borrowernumber, $userid, $firstname,
2003             $surname, $branchcode, $branchname, $flags )
2004           = $sth->fetchrow;
2005
2006         if ( checkpw_hash( $password, $stored_hash ) ) {
2007
2008             C4::Context->set_userenv( $borrowernumber, $userid, $cardnumber,
2009                 $firstname, $surname, $branchcode, $branchname, $flags ) unless $no_set_userenv;
2010             return 1, $cardnumber, $userid;
2011         }
2012     }
2013     return 0;
2014 }
2015
2016 sub checkpw_hash {
2017     my ( $password, $stored_hash ) = @_;
2018
2019     return if $stored_hash eq '!';
2020
2021     # check what encryption algorithm was implemented: Bcrypt - if the hash starts with '$2' it is Bcrypt else md5
2022     my $hash;
2023     if ( substr( $stored_hash, 0, 2 ) eq '$2' ) {
2024         $hash = hash_password( $password, $stored_hash );
2025     } else {
2026         $hash = md5_base64($password);
2027     }
2028     return $hash eq $stored_hash;
2029 }
2030
2031 =head2 getuserflags
2032
2033     my $authflags = getuserflags($flags, $userid, [$dbh]);
2034
2035 Translates integer flags into permissions strings hash.
2036
2037 C<$flags> is the integer userflags value ( borrowers.userflags )
2038 C<$userid> is the members.userid, used for building subpermissions
2039 C<$authflags> is a hashref of permissions
2040
2041 =cut
2042
2043 sub getuserflags {
2044     my $flags  = shift;
2045     my $userid = shift;
2046     my $dbh    = @_ ? shift : C4::Context->dbh;
2047     my $userflags;
2048     {
2049         # I don't want to do this, but if someone logs in as the database
2050         # user, it would be preferable not to spam them to death with
2051         # numeric warnings. So, we make $flags numeric.
2052         no warnings 'numeric';
2053         $flags += 0;
2054     }
2055     my $sth = $dbh->prepare("SELECT bit, flag, defaulton FROM userflags");
2056     $sth->execute;
2057
2058     while ( my ( $bit, $flag, $defaulton ) = $sth->fetchrow ) {
2059         if ( ( $flags & ( 2**$bit ) ) || $defaulton ) {
2060             $userflags->{$flag} = 1;
2061         }
2062         else {
2063             $userflags->{$flag} = 0;
2064         }
2065     }
2066
2067     # get subpermissions and merge with top-level permissions
2068     my $user_subperms = get_user_subpermissions($userid);
2069     foreach my $module ( keys %$user_subperms ) {
2070         next if $userflags->{$module} == 1;    # user already has permission for everything in this module
2071         $userflags->{$module} = $user_subperms->{$module};
2072     }
2073
2074     return $userflags;
2075 }
2076
2077 =head2 get_user_subpermissions
2078
2079   $user_perm_hashref = get_user_subpermissions($userid);
2080
2081 Given the userid (note, not the borrowernumber) of a staff user,
2082 return a hashref of hashrefs of the specific subpermissions
2083 accorded to the user.  An example return is
2084
2085  {
2086     tools => {
2087         export_catalog => 1,
2088         import_patrons => 1,
2089     }
2090  }
2091
2092 The top-level hash-key is a module or function code from
2093 userflags.flag, while the second-level key is a code
2094 from permissions.
2095
2096 The results of this function do not give a complete picture
2097 of the functions that a staff user can access; it is also
2098 necessary to check borrowers.flags.
2099
2100 =cut
2101
2102 sub get_user_subpermissions {
2103     my $userid = shift;
2104
2105     my $dbh = C4::Context->dbh;
2106     my $sth = $dbh->prepare( "SELECT flag, user_permissions.code
2107                              FROM user_permissions
2108                              JOIN permissions USING (module_bit, code)
2109                              JOIN userflags ON (module_bit = bit)
2110                              JOIN borrowers USING (borrowernumber)
2111                              WHERE userid = ?" );
2112     $sth->execute($userid);
2113
2114     my $user_perms = {};
2115     while ( my $perm = $sth->fetchrow_hashref ) {
2116         $user_perms->{ $perm->{'flag'} }->{ $perm->{'code'} } = 1;
2117     }
2118     return $user_perms;
2119 }
2120
2121 =head2 get_all_subpermissions
2122
2123   my $perm_hashref = get_all_subpermissions();
2124
2125 Returns a hashref of hashrefs defining all specific
2126 permissions currently defined.  The return value
2127 has the same structure as that of C<get_user_subpermissions>,
2128 except that the innermost hash value is the description
2129 of the subpermission.
2130
2131 =cut
2132
2133 sub get_all_subpermissions {
2134     my $dbh = C4::Context->dbh;
2135     my $sth = $dbh->prepare( "SELECT flag, code
2136                              FROM permissions
2137                              JOIN userflags ON (module_bit = bit)" );
2138     $sth->execute();
2139
2140     my $all_perms = {};
2141     while ( my $perm = $sth->fetchrow_hashref ) {
2142         $all_perms->{ $perm->{'flag'} }->{ $perm->{'code'} } = 1;
2143     }
2144     return $all_perms;
2145 }
2146
2147 =head2 haspermission
2148
2149   $flagsrequired = '*';                                 # Any permission at all
2150   $flagsrequired = 'a_flag';                            # a_flag must be satisfied (all subpermissions)
2151   $flagsrequired = [ 'a_flag', 'b_flag' ];              # a_flag OR b_flag must be satisfied
2152   $flagsrequired = { 'a_flag => 1, 'b_flag' => 1 };     # a_flag AND b_flag must be satisfied
2153   $flagsrequired = { 'a_flag' => 'sub_a' };             # sub_a of a_flag must be satisfied
2154   $flagsrequired = { 'a_flag' => [ 'sub_a, 'sub_b' ] }; # sub_a OR sub_b of a_flag must be satisfied
2155
2156   $flags = ($userid, $flagsrequired);
2157
2158 C<$userid> the userid of the member
2159 C<$flags> is a query structure similar to that used by SQL::Abstract that
2160 denotes the combination of flags required. It is a required parameter.
2161
2162 The main logic of this method is that things in arrays are OR'ed, and things
2163 in hashes are AND'ed. The `*` character can be used, at any depth, to denote `ANY`
2164
2165 Returns member's flags or 0 if a permission is not met.
2166
2167 =cut
2168
2169 sub _dispatch {
2170     my ($required, $flags) = @_;
2171
2172     my $ref = ref($required);
2173     if ($ref eq '') {
2174         if ($required eq '*') {
2175             return 0 unless ( $flags or ref( $flags ) );
2176         } else {
2177             return 0 unless ( $flags and (!ref( $flags ) || $flags->{$required} ));
2178         }
2179     } elsif ($ref eq 'HASH') {
2180         foreach my $key (keys %{$required}) {
2181             next if $flags == 1;
2182             my $require = $required->{$key};
2183             my $rflags  = $flags->{$key};
2184             return 0 unless _dispatch($require, $rflags);
2185         }
2186     } elsif ($ref eq 'ARRAY') {
2187         my $satisfied = 0;
2188         foreach my $require ( @{$required} ) {
2189             my $rflags =
2190               ( ref($flags) && !ref($require) && ( $require ne '*' ) )
2191               ? $flags->{$require}
2192               : $flags;
2193             $satisfied++ if _dispatch( $require, $rflags );
2194         }
2195         return 0 unless $satisfied;
2196     } else {
2197         croak "Unexpected structure found: $ref";
2198     }
2199
2200     return $flags;
2201 };
2202
2203 sub haspermission {
2204     my ( $userid, $flagsrequired ) = @_;
2205
2206     #Koha::Exceptions::WrongParameter->throw('$flagsrequired should not be undef')
2207     #  unless defined($flagsrequired);
2208
2209     my $sth = C4::Context->dbh->prepare("SELECT flags FROM borrowers WHERE userid=?");
2210     $sth->execute($userid);
2211     my $row = $sth->fetchrow();
2212     my $flags = getuserflags( $row, $userid );
2213
2214     return $flags unless defined($flagsrequired);
2215     return $flags if $flags->{superlibrarian};
2216     return _dispatch($flagsrequired, $flags);
2217
2218     #FIXME - This fcn should return the failed permission so a suitable error msg can be delivered.
2219 }
2220
2221 =head2 in_iprange
2222
2223   $flags = ($iprange);
2224
2225 C<$iprange> A space separated string describing an IP range. Can include single IPs or ranges
2226
2227 Returns 1 if the remote address is in the provided iprange, or 0 otherwise.
2228
2229 =cut
2230
2231 sub in_iprange {
2232     my ($iprange) = @_;
2233     my $result = 1;
2234     my @allowedipranges = $iprange ? split(' ', $iprange) : ();
2235     if (scalar @allowedipranges > 0) {
2236         my @rangelist;
2237         eval { @rangelist = Net::CIDR::range2cidr(@allowedipranges); }; return 0 if $@;
2238         eval { $result = Net::CIDR::cidrlookup($ENV{'REMOTE_ADDR'}, @rangelist) } || ( $ENV{DEBUG} && warn 'cidrlookup failed for ' . join(' ',@rangelist) );
2239      }
2240      return $result ? 1 : 0;
2241 }
2242
2243 sub getborrowernumber {
2244     my ($userid) = @_;
2245     my $userenv = C4::Context->userenv;
2246     if ( defined($userenv) && ref($userenv) eq 'HASH' && $userenv->{number} ) {
2247         return $userenv->{number};
2248     }
2249     my $dbh = C4::Context->dbh;
2250     for my $field ( 'userid', 'cardnumber' ) {
2251         my $sth =
2252           $dbh->prepare("select borrowernumber from borrowers where $field=?");
2253         $sth->execute($userid);
2254         if ( $sth->rows ) {
2255             my ($bnumber) = $sth->fetchrow;
2256             return $bnumber;
2257         }
2258     }
2259     return 0;
2260 }
2261
2262 =head2 track_login_daily
2263
2264     track_login_daily( $userid );
2265
2266 Wraps the call to $patron->track_login, the method used to update borrowers.lastseen. We only call track_login once a day.
2267
2268 =cut
2269
2270 sub track_login_daily {
2271     my $userid = shift;
2272     return if !$userid || !C4::Context->preference('TrackLastPatronActivity');
2273
2274     my $cache     = Koha::Caches->get_instance();
2275     my $cache_key = "track_login_" . $userid;
2276     my $cached    = $cache->get_from_cache($cache_key);
2277     my $today = dt_from_string()->ymd;
2278     return if $cached && $cached eq $today;
2279
2280     my $patron = Koha::Patrons->find({ userid => $userid });
2281     return unless $patron;
2282     $patron->track_login;
2283     $cache->set_in_cache( $cache_key, $today );
2284 }
2285
2286 END { }    # module clean-up code here (global destructor)
2287 1;
2288 __END__
2289
2290 =head1 SEE ALSO
2291
2292 CGI(3)
2293
2294 C4::Output(3)
2295
2296 Crypt::Eksblowfish::Bcrypt(3)
2297
2298 Digest::MD5(3)
2299
2300 =cut