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