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