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