Bug 13686 Add a hint about collation to the alphabet syspref
[koha.git] / C4 / Auth.pm
blob6bdab57b7263ccc06346956952f7a13eabf1b775
1 package C4::Auth;
3 # Copyright 2000-2002 Katipo Communications
5 # This file is part of Koha.
7 # Koha is free software; you can redistribute it and/or modify it under the
8 # terms of the GNU General Public License as published by the Free Software
9 # Foundation; either version 2 of the License, or (at your option) any later
10 # version.
12 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
13 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
14 # A PARTICULAR PURPOSE. See the GNU General Public License for more details.
16 # You should have received a copy of the GNU General Public License along
17 # with Koha; if not, write to the Free Software Foundation, Inc.,
18 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
20 use strict;
21 use warnings;
22 use Digest::MD5 qw(md5_base64);
23 use JSON qw/encode_json/;
24 use URI::Escape;
25 use CGI::Session;
27 require Exporter;
28 use C4::Context;
29 use C4::Templates; # to get the template
30 use C4::Languages;
31 use C4::Branch; # GetBranches
32 use C4::Search::History;
33 use C4::VirtualShelves;
34 use Koha::AuthUtils qw(hash_password);
35 use POSIX qw/strftime/;
36 use List::MoreUtils qw/ any /;
37 use Encode qw( encode is_utf8);
39 # use utf8;
40 use vars qw($VERSION @ISA @EXPORT @EXPORT_OK %EXPORT_TAGS $debug $ldap $cas $caslogout $shib $shib_login);
42 BEGIN {
43 sub psgi_env { any { /^psgi\./ } keys %ENV }
45 sub safe_exit {
46 if (psgi_env) { die 'psgi:exit' }
47 else { exit }
49 $VERSION = 3.07.00.049; # set version for version checking
51 $debug = $ENV{DEBUG};
52 @ISA = qw(Exporter);
53 @EXPORT = qw(&checkauth &get_template_and_user &haspermission &get_user_subpermissions);
54 @EXPORT_OK = qw(&check_api_auth &get_session &check_cookie_auth &checkpw &checkpw_internal &checkpw_hash
55 &get_all_subpermissions &get_user_subpermissions
57 %EXPORT_TAGS = ( EditPermissions => [qw(get_all_subpermissions get_user_subpermissions)] );
58 $ldap = C4::Context->config('useldapserver') || 0;
59 $cas = C4::Context->preference('casAuthentication');
60 $shib = C4::Context->config('useshibboleth') || 0;
61 $caslogout = C4::Context->preference('casLogout');
62 require C4::Auth_with_cas; # no import
64 if ($ldap) {
65 require C4::Auth_with_ldap;
66 import C4::Auth_with_ldap qw(checkpw_ldap);
68 if ($shib) {
69 require C4::Auth_with_shibboleth;
70 import C4::Auth_with_shibboleth
71 qw(shib_ok checkpw_shib logout_shib login_shib_url get_login_shib);
73 # Check for good config
74 if ( shib_ok() ) {
76 # Get shibboleth login attribute
77 $shib_login = get_login_shib();
80 # Bad config, disable shibboleth
81 else {
82 $shib = 0;
85 if ($cas) {
86 import C4::Auth_with_cas qw(check_api_auth_cas checkpw_cas login_cas logout_cas login_cas_url);
91 =head1 NAME
93 C4::Auth - Authenticates Koha users
95 =head1 SYNOPSIS
97 use CGI qw ( -utf8 );
98 use C4::Auth;
99 use C4::Output;
101 my $query = new CGI;
103 my ($template, $borrowernumber, $cookie)
104 = get_template_and_user(
106 template_name => "opac-main.tt",
107 query => $query,
108 type => "opac",
109 authnotrequired => 0,
110 flagsrequired => {borrow => 1, catalogue => '*', tools => 'import_patrons' },
114 output_html_with_http_headers $query, $cookie, $template->output;
116 =head1 DESCRIPTION
118 The main function of this module is to provide
119 authentification. However the get_template_and_user function has
120 been provided so that a users login information is passed along
121 automatically. This gets loaded into the template.
123 =head1 FUNCTIONS
125 =head2 get_template_and_user
127 my ($template, $borrowernumber, $cookie)
128 = get_template_and_user(
130 template_name => "opac-main.tt",
131 query => $query,
132 type => "opac",
133 authnotrequired => 0,
134 flagsrequired => {borrow => 1, catalogue => '*', tools => 'import_patrons' },
138 This call passes the C<query>, C<flagsrequired> and C<authnotrequired>
139 to C<&checkauth> (in this module) to perform authentification.
140 See C<&checkauth> for an explanation of these parameters.
142 The C<template_name> is then used to find the correct template for
143 the page. The authenticated users details are loaded onto the
144 template in the HTML::Template LOOP variable C<USER_INFO>. Also the
145 C<sessionID> is passed to the template. This can be used in templates
146 if cookies are disabled. It needs to be put as and input to every
147 authenticated page.
149 More information on the C<gettemplate> sub can be found in the
150 Output.pm module.
152 =cut
154 sub get_template_and_user {
156 my $in = shift;
157 my ( $user, $cookie, $sessionID, $flags );
159 C4::Context->interface( $in->{type} );
161 $in->{'authnotrequired'} ||= 0;
162 my $template = C4::Templates::gettemplate(
163 $in->{'template_name'},
164 $in->{'type'},
165 $in->{'query'},
166 $in->{'is_plugin'}
169 if ( $in->{'template_name'} !~ m/maintenance/ ) {
170 ( $user, $cookie, $sessionID, $flags ) = checkauth(
171 $in->{'query'},
172 $in->{'authnotrequired'},
173 $in->{'flagsrequired'},
174 $in->{'type'}
178 my $borrowernumber;
179 if ($user) {
180 require C4::Members;
182 # It's possible for $user to be the borrowernumber if they don't have a
183 # userid defined (and are logging in through some other method, such
184 # as SSL certs against an email address)
185 $borrowernumber = getborrowernumber($user) if defined($user);
186 if ( !defined($borrowernumber) && defined($user) ) {
187 my $borrower = C4::Members::GetMember( borrowernumber => $user );
188 if ($borrower) {
189 $borrowernumber = $user;
191 # A bit of a hack, but I don't know there's a nicer way
192 # to do it.
193 $user = $borrower->{firstname} . ' ' . $borrower->{surname};
197 # user info
198 $template->param( loggedinusername => $user );
199 $template->param( loggedinusernumber => $borrowernumber );
200 $template->param( sessionID => $sessionID );
202 my ( $total, $pubshelves, $barshelves ) = C4::VirtualShelves::GetSomeShelfNames( $borrowernumber, 'MASTHEAD' );
203 $template->param(
204 pubshelves => $total->{pubtotal},
205 pubshelvesloop => $pubshelves,
206 barshelves => $total->{bartotal},
207 barshelvesloop => $barshelves,
210 my ($borr) = C4::Members::GetMemberDetails($borrowernumber);
211 my @bordat;
212 $bordat[0] = $borr;
213 $template->param( "USER_INFO" => \@bordat );
215 my $all_perms = get_all_subpermissions();
217 my @flagroots = qw(circulate catalogue parameters borrowers permissions reserveforothers borrow
218 editcatalogue updatecharges management tools editauthorities serials reports acquisition);
220 # We are going to use the $flags returned by checkauth
221 # to create the template's parameters that will indicate
222 # which menus the user can access.
223 if ( $flags && $flags->{superlibrarian} == 1 ) {
224 $template->param( CAN_user_circulate => 1 );
225 $template->param( CAN_user_catalogue => 1 );
226 $template->param( CAN_user_parameters => 1 );
227 $template->param( CAN_user_borrowers => 1 );
228 $template->param( CAN_user_permissions => 1 );
229 $template->param( CAN_user_reserveforothers => 1 );
230 $template->param( CAN_user_borrow => 1 );
231 $template->param( CAN_user_editcatalogue => 1 );
232 $template->param( CAN_user_updatecharges => 1 );
233 $template->param( CAN_user_acquisition => 1 );
234 $template->param( CAN_user_management => 1 );
235 $template->param( CAN_user_tools => 1 );
236 $template->param( CAN_user_editauthorities => 1 );
237 $template->param( CAN_user_serials => 1 );
238 $template->param( CAN_user_reports => 1 );
239 $template->param( CAN_user_staffaccess => 1 );
240 $template->param( CAN_user_plugins => 1 );
241 $template->param( CAN_user_coursereserves => 1 );
242 foreach my $module ( keys %$all_perms ) {
244 foreach my $subperm ( keys %{ $all_perms->{$module} } ) {
245 $template->param( "CAN_user_${module}_${subperm}" => 1 );
250 if ($flags) {
251 foreach my $module ( keys %$all_perms ) {
252 if ( $flags->{$module} == 1 ) {
253 foreach my $subperm ( keys %{ $all_perms->{$module} } ) {
254 $template->param( "CAN_user_${module}_${subperm}" => 1 );
256 } elsif ( ref( $flags->{$module} ) ) {
257 foreach my $subperm ( keys %{ $flags->{$module} } ) {
258 $template->param( "CAN_user_${module}_${subperm}" => 1 );
264 if ($flags) {
265 foreach my $module ( keys %$flags ) {
266 if ( $flags->{$module} == 1 or ref( $flags->{$module} ) ) {
267 $template->param( "CAN_user_$module" => 1 );
268 if ( $module eq "parameters" ) {
269 $template->param( CAN_user_management => 1 );
275 # Logged-in opac search history
276 # If the requested template is an opac one and opac search history is enabled
277 if ( $in->{type} eq 'opac' && C4::Context->preference('EnableOpacSearchHistory') ) {
278 my $dbh = C4::Context->dbh;
279 my $query = "SELECT COUNT(*) FROM search_history WHERE userid=?";
280 my $sth = $dbh->prepare($query);
281 $sth->execute($borrowernumber);
283 # If at least one search has already been performed
284 if ( $sth->fetchrow_array > 0 ) {
286 # We show the link in opac
287 $template->param( EnableOpacSearchHistory => 1 );
290 # And if there are searches performed when the user was not logged in,
291 # we add them to the logged-in search history
292 my @recentSearches = C4::Search::History::get_from_session( { cgi => $in->{'query'} } );
293 if (@recentSearches) {
294 my $dbh = C4::Context->dbh;
295 my $query = q{
296 INSERT INTO search_history(userid, sessionid, query_desc, query_cgi, type, total, time )
297 VALUES (?, ?, ?, ?, ?, ?, ?)
300 my $sth = $dbh->prepare($query);
301 $sth->execute( $borrowernumber,
302 $in->{query}->cookie("CGISESSID"),
303 $_->{query_desc},
304 $_->{query_cgi},
305 $_->{type} || 'biblio',
306 $_->{total},
307 $_->{time},
308 ) foreach @recentSearches;
310 # clear out the search history from the session now that
311 # we've saved it to the database
312 C4::Search::History::set_to_session( { cgi => $in->{'query'}, search_history => [] } );
314 } elsif ( $in->{type} eq 'intranet' and C4::Context->preference('EnableSearchHistory') ) {
315 $template->param( EnableSearchHistory => 1 );
318 else { # if this is an anonymous session, setup to display public lists...
320 # If shibboleth is enabled, and we're in an anonymous session, we should allow
321 # the user to attemp login via shibboleth.
322 if ($shib) {
323 $template->param( shibbolethAuthentication => $shib,
324 shibbolethLoginUrl => login_shib_url( $in->{'query'} ),
327 # If shibboleth is enabled and we have a shibboleth login attribute,
328 # but we are in an anonymous session, then we clearly have an invalid
329 # shibboleth koha account.
330 if ($shib_login) {
331 $template->param( invalidShibLogin => '1' );
335 $template->param( sessionID => $sessionID );
337 my ( $total, $pubshelves ) = C4::VirtualShelves::GetSomeShelfNames( undef, 'MASTHEAD' );
338 $template->param(
339 pubshelves => $total->{pubtotal},
340 pubshelvesloop => $pubshelves,
344 # Anonymous opac search history
345 # If opac search history is enabled and at least one search has already been performed
346 if ( C4::Context->preference('EnableOpacSearchHistory') ) {
347 my @recentSearches = C4::Search::History::get_from_session( { cgi => $in->{'query'} } );
348 if (@recentSearches) {
349 $template->param( EnableOpacSearchHistory => 1 );
353 if ( C4::Context->preference('dateformat') ) {
354 $template->param( dateformat => C4::Context->preference('dateformat') );
357 # these template parameters are set the same regardless of $in->{'type'}
359 # Set the using_https variable for templates
360 # FIXME Under Plack the CGI->https method always returns 'OFF'
361 my $https = $in->{query}->https();
362 my $using_https = ( defined $https and $https ne 'OFF' ) ? 1 : 0;
364 $template->param(
365 "BiblioDefaultView" . C4::Context->preference("BiblioDefaultView") => 1,
366 EnhancedMessagingPreferences => C4::Context->preference('EnhancedMessagingPreferences'),
367 GoogleJackets => C4::Context->preference("GoogleJackets"),
368 OpenLibraryCovers => C4::Context->preference("OpenLibraryCovers"),
369 KohaAdminEmailAddress => "" . C4::Context->preference("KohaAdminEmailAddress"),
370 LoginBranchcode => ( C4::Context->userenv ? C4::Context->userenv->{"branch"} : undef ),
371 LoginFirstname => ( C4::Context->userenv ? C4::Context->userenv->{"firstname"} : "Bel" ),
372 LoginSurname => C4::Context->userenv ? C4::Context->userenv->{"surname"} : "Inconnu",
373 emailaddress => C4::Context->userenv ? C4::Context->userenv->{"emailaddress"} : undef,
374 loggedinpersona => C4::Context->userenv ? C4::Context->userenv->{"persona"} : undef,
375 TagsEnabled => C4::Context->preference("TagsEnabled"),
376 hide_marc => C4::Context->preference("hide_marc"),
377 item_level_itypes => C4::Context->preference('item-level_itypes'),
378 patronimages => C4::Context->preference("patronimages"),
379 singleBranchMode => C4::Context->preference("singleBranchMode"),
380 XSLTDetailsDisplay => C4::Context->preference("XSLTDetailsDisplay"),
381 XSLTResultsDisplay => C4::Context->preference("XSLTResultsDisplay"),
382 using_https => $using_https,
383 noItemTypeImages => C4::Context->preference("noItemTypeImages"),
384 marcflavour => C4::Context->preference("marcflavour"),
385 persona => C4::Context->preference("persona"),
387 if ( $in->{'type'} eq "intranet" ) {
388 $template->param(
389 AmazonCoverImages => C4::Context->preference("AmazonCoverImages"),
390 AutoLocation => C4::Context->preference("AutoLocation"),
391 "BiblioDefaultView" . C4::Context->preference("IntranetBiblioDefaultView") => 1,
392 CalendarFirstDayOfWeek => ( C4::Context->preference("CalendarFirstDayOfWeek") eq "Sunday" ) ? 0 : 1,
393 CircAutocompl => C4::Context->preference("CircAutocompl"),
394 FRBRizeEditions => C4::Context->preference("FRBRizeEditions"),
395 IndependentBranches => C4::Context->preference("IndependentBranches"),
396 IntranetNav => C4::Context->preference("IntranetNav"),
397 IntranetmainUserblock => C4::Context->preference("IntranetmainUserblock"),
398 LibraryName => C4::Context->preference("LibraryName"),
399 LoginBranchname => ( C4::Context->userenv ? C4::Context->userenv->{"branchname"} : undef ),
400 advancedMARCEditor => C4::Context->preference("advancedMARCEditor"),
401 canreservefromotherbranches => C4::Context->preference('canreservefromotherbranches'),
402 intranetcolorstylesheet => C4::Context->preference("intranetcolorstylesheet"),
403 IntranetFavicon => C4::Context->preference("IntranetFavicon"),
404 intranetreadinghistory => C4::Context->preference("intranetreadinghistory"),
405 intranetstylesheet => C4::Context->preference("intranetstylesheet"),
406 IntranetUserCSS => C4::Context->preference("IntranetUserCSS"),
407 intranetuserjs => C4::Context->preference("intranetuserjs"),
408 intranetbookbag => C4::Context->preference("intranetbookbag"),
409 suggestion => C4::Context->preference("suggestion"),
410 virtualshelves => C4::Context->preference("virtualshelves"),
411 StaffSerialIssueDisplayCount => C4::Context->preference("StaffSerialIssueDisplayCount"),
412 EasyAnalyticalRecords => C4::Context->preference('EasyAnalyticalRecords'),
413 LocalCoverImages => C4::Context->preference('LocalCoverImages'),
414 OPACLocalCoverImages => C4::Context->preference('OPACLocalCoverImages'),
415 AllowMultipleCovers => C4::Context->preference('AllowMultipleCovers'),
416 EnableBorrowerFiles => C4::Context->preference('EnableBorrowerFiles'),
417 UseKohaPlugins => C4::Context->preference('UseKohaPlugins'),
418 UseCourseReserves => C4::Context->preference("UseCourseReserves"),
421 else {
422 warn "template type should be OPAC, here it is=[" . $in->{'type'} . "]" unless ( $in->{'type'} eq 'opac' );
424 #TODO : replace LibraryName syspref with 'system name', and remove this html processing
425 my $LibraryNameTitle = C4::Context->preference("LibraryName");
426 $LibraryNameTitle =~ s/<(?:\/?)(?:br|p)\s*(?:\/?)>/ /sgi;
427 $LibraryNameTitle =~ s/<(?:[^<>'"]|'(?:[^']*)'|"(?:[^"]*)")*>//sg;
429 # clean up the busc param in the session if the page is not opac-detail and not the "add to list" page
430 if ( C4::Context->preference("OpacBrowseResults")
431 && $in->{'template_name'} =~ /opac-(.+)\.(?:tt|tmpl)$/ ) {
432 my $pagename = $1;
433 unless ( $pagename =~ /^(?:MARC|ISBD)?detail$/
434 or $pagename =~ /^addbybiblionumber$/ ) {
435 my $sessionSearch = get_session( $sessionID || $in->{'query'}->cookie("CGISESSID") );
436 $sessionSearch->clear( ["busc"] ) if ( $sessionSearch->param("busc") );
440 # variables passed from CGI: opac_css_override and opac_search_limits.
441 my $opac_search_limit = $ENV{'OPAC_SEARCH_LIMIT'};
442 my $opac_limit_override = $ENV{'OPAC_LIMIT_OVERRIDE'};
443 my $opac_name = '';
444 if (
445 ( $opac_limit_override && $opac_search_limit && $opac_search_limit =~ /branch:(\w+)/ ) ||
446 ( $in->{'query'}->param('limit') && $in->{'query'}->param('limit') =~ /branch:(\w+)/ ) ||
447 ( $in->{'query'}->param('multibranchlimit') && $in->{'query'}->param('multibranchlimit') =~ /multibranchlimit-(\w+)/ )
449 $opac_name = $1; # opac_search_limit is a branch, so we use it.
450 } elsif ( $in->{'query'}->param('multibranchlimit') ) {
451 $opac_name = $in->{'query'}->param('multibranchlimit');
452 } elsif ( C4::Context->preference("SearchMyLibraryFirst") && C4::Context->userenv && C4::Context->userenv->{'branch'} ) {
453 $opac_name = C4::Context->userenv->{'branch'};
456 # FIXME Under Plack the CGI->https method always returns 'OFF' ($using_https will be set to 0 in this case)
457 my $opac_base_url = C4::Context->preference("OPACBaseURL"); #FIXME uses $using_https below as well
458 if ( !$opac_base_url ) {
459 $opac_base_url = $ENV{'SERVER_NAME'} . ( $ENV{'SERVER_PORT'} eq ( $using_https ? "443" : "80" ) ? '' : ":$ENV{'SERVER_PORT'}" );
461 $template->param(
462 OpacAdditionalStylesheet => C4::Context->preference("OpacAdditionalStylesheet"),
463 AnonSuggestions => "" . C4::Context->preference("AnonSuggestions"),
464 AuthorisedValueImages => C4::Context->preference("AuthorisedValueImages"),
465 BranchesLoop => GetBranchesLoop($opac_name),
466 BranchCategoriesLoop => GetBranchCategories( 'searchdomain', 1, $opac_name ),
467 CalendarFirstDayOfWeek => ( C4::Context->preference("CalendarFirstDayOfWeek") eq "Sunday" ) ? 0 : 1,
468 LibraryName => "" . C4::Context->preference("LibraryName"),
469 LibraryNameTitle => "" . $LibraryNameTitle,
470 LoginBranchname => C4::Context->userenv ? C4::Context->userenv->{"branchname"} : "",
471 OPACAmazonCoverImages => C4::Context->preference("OPACAmazonCoverImages"),
472 OPACFRBRizeEditions => C4::Context->preference("OPACFRBRizeEditions"),
473 OpacHighlightedWords => C4::Context->preference("OpacHighlightedWords"),
474 OPACShelfBrowser => "" . C4::Context->preference("OPACShelfBrowser"),
475 OPACURLOpenInNewWindow => "" . C4::Context->preference("OPACURLOpenInNewWindow"),
476 OPACUserCSS => "" . C4::Context->preference("OPACUserCSS"),
477 OPACViewOthersSuggestions => "" . C4::Context->preference("OPACViewOthersSuggestions"),
478 OpacAuthorities => C4::Context->preference("OpacAuthorities"),
479 OPACBaseURL => ( $using_https ? "https://" : "http://" ) . $opac_base_url,
480 opac_css_override => $ENV{'OPAC_CSS_OVERRIDE'},
481 opac_search_limit => $opac_search_limit,
482 opac_limit_override => $opac_limit_override,
483 OpacBrowser => C4::Context->preference("OpacBrowser"),
484 OpacCloud => C4::Context->preference("OpacCloud"),
485 OpacKohaUrl => C4::Context->preference("OpacKohaUrl"),
486 OpacMainUserBlock => "" . C4::Context->preference("OpacMainUserBlock"),
487 OpacNav => "" . C4::Context->preference("OpacNav"),
488 OpacNavRight => "" . C4::Context->preference("OpacNavRight"),
489 OpacNavBottom => "" . C4::Context->preference("OpacNavBottom"),
490 OpacPasswordChange => C4::Context->preference("OpacPasswordChange"),
491 OPACPatronDetails => C4::Context->preference("OPACPatronDetails"),
492 OPACPrivacy => C4::Context->preference("OPACPrivacy"),
493 OPACFinesTab => C4::Context->preference("OPACFinesTab"),
494 OpacTopissue => C4::Context->preference("OpacTopissue"),
495 RequestOnOpac => C4::Context->preference("RequestOnOpac"),
496 'Version' => C4::Context->preference('Version'),
497 hidelostitems => C4::Context->preference("hidelostitems"),
498 mylibraryfirst => ( C4::Context->preference("SearchMyLibraryFirst") && C4::Context->userenv ) ? C4::Context->userenv->{'branch'} : '',
499 opaclayoutstylesheet => "" . C4::Context->preference("opaclayoutstylesheet"),
500 opacbookbag => "" . C4::Context->preference("opacbookbag"),
501 opaccredits => "" . C4::Context->preference("opaccredits"),
502 OpacFavicon => C4::Context->preference("OpacFavicon"),
503 opacheader => "" . C4::Context->preference("opacheader"),
504 opaclanguagesdisplay => "" . C4::Context->preference("opaclanguagesdisplay"),
505 opacreadinghistory => C4::Context->preference("opacreadinghistory"),
506 opacuserjs => C4::Context->preference("opacuserjs"),
507 opacuserlogin => "" . C4::Context->preference("opacuserlogin"),
508 ShowReviewer => C4::Context->preference("ShowReviewer"),
509 ShowReviewerPhoto => C4::Context->preference("ShowReviewerPhoto"),
510 suggestion => "" . C4::Context->preference("suggestion"),
511 virtualshelves => "" . C4::Context->preference("virtualshelves"),
512 OPACSerialIssueDisplayCount => C4::Context->preference("OPACSerialIssueDisplayCount"),
513 OPACXSLTDetailsDisplay => C4::Context->preference("OPACXSLTDetailsDisplay"),
514 OPACXSLTResultsDisplay => C4::Context->preference("OPACXSLTResultsDisplay"),
515 SyndeticsClientCode => C4::Context->preference("SyndeticsClientCode"),
516 SyndeticsEnabled => C4::Context->preference("SyndeticsEnabled"),
517 SyndeticsCoverImages => C4::Context->preference("SyndeticsCoverImages"),
518 SyndeticsTOC => C4::Context->preference("SyndeticsTOC"),
519 SyndeticsSummary => C4::Context->preference("SyndeticsSummary"),
520 SyndeticsEditions => C4::Context->preference("SyndeticsEditions"),
521 SyndeticsExcerpt => C4::Context->preference("SyndeticsExcerpt"),
522 SyndeticsReviews => C4::Context->preference("SyndeticsReviews"),
523 SyndeticsAuthorNotes => C4::Context->preference("SyndeticsAuthorNotes"),
524 SyndeticsAwards => C4::Context->preference("SyndeticsAwards"),
525 SyndeticsSeries => C4::Context->preference("SyndeticsSeries"),
526 SyndeticsCoverImageSize => C4::Context->preference("SyndeticsCoverImageSize"),
527 OPACLocalCoverImages => C4::Context->preference("OPACLocalCoverImages"),
528 PatronSelfRegistration => C4::Context->preference("PatronSelfRegistration"),
529 PatronSelfRegistrationDefaultCategory => C4::Context->preference("PatronSelfRegistrationDefaultCategory"),
532 $template->param( OpacPublic => '1' ) if ( $user || C4::Context->preference("OpacPublic") );
535 # Check if we were asked using parameters to force a specific language
536 if ( defined $in->{'query'}->param('language') ) {
538 # Extract the language, let C4::Languages::getlanguage choose
539 # what to do
540 my $language = C4::Languages::getlanguage( $in->{'query'} );
541 my $languagecookie = C4::Templates::getlanguagecookie( $in->{'query'}, $language );
542 if ( ref $cookie eq 'ARRAY' ) {
543 push @{$cookie}, $languagecookie;
544 } else {
545 $cookie = [ $cookie, $languagecookie ];
549 return ( $template, $borrowernumber, $cookie, $flags );
552 =head2 checkauth
554 ($userid, $cookie, $sessionID) = &checkauth($query, $noauth, $flagsrequired, $type);
556 Verifies that the user is authorized to run this script. If
557 the user is authorized, a (userid, cookie, session-id, flags)
558 quadruple is returned. If the user is not authorized but does
559 not have the required privilege (see $flagsrequired below), it
560 displays an error page and exits. Otherwise, it displays the
561 login page and exits.
563 Note that C<&checkauth> will return if and only if the user
564 is authorized, so it should be called early on, before any
565 unfinished operations (e.g., if you've opened a file, then
566 C<&checkauth> won't close it for you).
568 C<$query> is the CGI object for the script calling C<&checkauth>.
570 The C<$noauth> argument is optional. If it is set, then no
571 authorization is required for the script.
573 C<&checkauth> fetches user and session information from C<$query> and
574 ensures that the user is authorized to run scripts that require
575 authorization.
577 The C<$flagsrequired> argument specifies the required privileges
578 the user must have if the username and password are correct.
579 It should be specified as a reference-to-hash; keys in the hash
580 should be the "flags" for the user, as specified in the Members
581 intranet module. Any key specified must correspond to a "flag"
582 in the userflags table. E.g., { circulate => 1 } would specify
583 that the user must have the "circulate" privilege in order to
584 proceed. To make sure that access control is correct, the
585 C<$flagsrequired> parameter must be specified correctly.
587 Koha also has a concept of sub-permissions, also known as
588 granular permissions. This makes the value of each key
589 in the C<flagsrequired> hash take on an additional
590 meaning, i.e.,
594 The user must have access to all subfunctions of the module
595 specified by the hash key.
599 The user must have access to at least one subfunction of the module
600 specified by the hash key.
602 specific permission, e.g., 'export_catalog'
604 The user must have access to the specific subfunction list, which
605 must correspond to a row in the permissions table.
607 The C<$type> argument specifies whether the template should be
608 retrieved from the opac or intranet directory tree. "opac" is
609 assumed if it is not specified; however, if C<$type> is specified,
610 "intranet" is assumed if it is not "opac".
612 If C<$query> does not have a valid session ID associated with it
613 (i.e., the user has not logged in) or if the session has expired,
614 C<&checkauth> presents the user with a login page (from the point of
615 view of the original script, C<&checkauth> does not return). Once the
616 user has authenticated, C<&checkauth> restarts the original script
617 (this time, C<&checkauth> returns).
619 The login page is provided using a HTML::Template, which is set in the
620 systempreferences table or at the top of this file. The variable C<$type>
621 selects which template to use, either the opac or the intranet
622 authentification template.
624 C<&checkauth> returns a user ID, a cookie, and a session ID. The
625 cookie should be sent back to the browser; it verifies that the user
626 has authenticated.
628 =cut
630 sub _version_check {
631 my $type = shift;
632 my $query = shift;
633 my $version;
635 # If Version syspref is unavailable, it means Koha is beeing installed,
636 # and so we must redirect to OPAC maintenance page or to the WebInstaller
637 # also, if OpacMaintenance is ON, OPAC should redirect to maintenance
638 if ( C4::Context->preference('OpacMaintenance') && $type eq 'opac' ) {
639 warn "OPAC Install required, redirecting to maintenance";
640 print $query->redirect("/cgi-bin/koha/maintenance.pl");
641 safe_exit;
643 unless ( $version = C4::Context->preference('Version') ) { # assignment, not comparison
644 if ( $type ne 'opac' ) {
645 warn "Install required, redirecting to Installer";
646 print $query->redirect("/cgi-bin/koha/installer/install.pl");
647 } else {
648 warn "OPAC Install required, redirecting to maintenance";
649 print $query->redirect("/cgi-bin/koha/maintenance.pl");
651 safe_exit;
654 # check that database and koha version are the same
655 # there is no DB version, it's a fresh install,
656 # go to web installer
657 # there is a DB version, compare it to the code version
658 my $kohaversion = C4::Context::KOHAVERSION;
660 # remove the 3 last . to have a Perl number
661 $kohaversion =~ s/(.*\..*)\.(.*)\.(.*)/$1$2$3/;
662 $debug and print STDERR "kohaversion : $kohaversion\n";
663 if ( $version < $kohaversion ) {
664 my $warning = "Database update needed, redirecting to %s. Database is $version and Koha is $kohaversion";
665 if ( $type ne 'opac' ) {
666 warn sprintf( $warning, 'Installer' );
667 print $query->redirect("/cgi-bin/koha/installer/install.pl?step=3");
668 } else {
669 warn sprintf( "OPAC: " . $warning, 'maintenance' );
670 print $query->redirect("/cgi-bin/koha/maintenance.pl");
672 safe_exit;
676 sub _session_log {
677 (@_) or return 0;
678 open my $fh, '>>', "/tmp/sessionlog" or warn "ERROR: Cannot append to /tmp/sessionlog";
679 printf $fh join( "\n", @_ );
680 close $fh;
683 sub _timeout_syspref {
684 my $timeout = C4::Context->preference('timeout') || 600;
686 # value in days, convert in seconds
687 if ( $timeout =~ /(\d+)[dD]/ ) {
688 $timeout = $1 * 86400;
690 return $timeout;
693 sub checkauth {
694 my $query = shift;
695 $debug and warn "Checking Auth";
697 # $authnotrequired will be set for scripts which will run without authentication
698 my $authnotrequired = shift;
699 my $flagsrequired = shift;
700 my $type = shift;
701 my $persona = shift;
702 $type = 'opac' unless $type;
704 my $dbh = C4::Context->dbh;
705 my $timeout = _timeout_syspref();
707 _version_check( $type, $query );
709 # state variables
710 my $loggedin = 0;
711 my %info;
712 my ( $userid, $cookie, $sessionID, $flags, $barshelves, $pubshelves );
713 my $logout = $query->param('logout.x');
715 my $anon_search_history;
717 # This parameter is the name of the CAS server we want to authenticate against,
718 # when using authentication against multiple CAS servers, as configured in Auth_cas_servers.yaml
719 my $casparam = $query->param('cas');
720 my $q_userid = $query->param('userid') // '';
722 # Basic authentication is incompatible with the use of Shibboleth,
723 # as Shibboleth may return REMOTE_USER as a Shibboleth attribute,
724 # and it may not be the attribute we want to use to match the koha login.
726 # Also, do not consider an empty REMOTE_USER.
728 # Finally, after those tests, we can assume (although if it would be better with
729 # a syspref) that if we get a REMOTE_USER, that's from basic authentication,
730 # and we can affect it to $userid.
731 if ( !$shib and defined( $ENV{'REMOTE_USER'} ) and $ENV{'REMOTE_USER'} ne '' and $userid = $ENV{'REMOTE_USER'} ) {
733 # Using Basic Authentication, no cookies required
734 $cookie = $query->cookie(
735 -name => 'CGISESSID',
736 -value => '',
737 -expires => '',
738 -HttpOnly => 1,
740 $loggedin = 1;
742 elsif ($persona) {
744 # we dont want to set a session because we are being called by a persona callback
746 elsif ( $sessionID = $query->cookie("CGISESSID") )
747 { # assignment, not comparison
748 my $session = get_session($sessionID);
749 C4::Context->_new_userenv($sessionID);
750 my ( $ip, $lasttime, $sessiontype );
751 my $s_userid = '';
752 if ($session) {
753 $s_userid = $session->param('id') // '';
754 C4::Context->set_userenv(
755 $session->param('number'), $s_userid,
756 $session->param('cardnumber'), $session->param('firstname'),
757 $session->param('surname'), $session->param('branch'),
758 $session->param('branchname'), $session->param('flags'),
759 $session->param('emailaddress'), $session->param('branchprinter'),
760 $session->param('persona'), $session->param('shibboleth')
762 C4::Context::set_shelves_userenv( 'bar', $session->param('barshelves') );
763 C4::Context::set_shelves_userenv( 'pub', $session->param('pubshelves') );
764 C4::Context::set_shelves_userenv( 'tot', $session->param('totshelves') );
765 $debug and printf STDERR "AUTH_SESSION: (%s)\t%s %s - %s\n", map { $session->param($_) } qw(cardnumber firstname surname branch);
766 $ip = $session->param('ip');
767 $lasttime = $session->param('lasttime');
768 $userid = $s_userid;
769 $sessiontype = $session->param('sessiontype') || '';
771 if ( ( $query->param('koha_login_context') && ( $q_userid ne $s_userid ) )
772 || ( $cas && $query->param('ticket') && !C4::Context->userenv->{'id'} ) || ( $shib && $shib_login && !$logout ) ) {
774 #if a user enters an id ne to the id in the current session, we need to log them in...
775 #first we need to clear the anonymous session...
776 $debug and warn "query id = $q_userid but session id = $s_userid";
777 $anon_search_history = $session->param('search_history');
778 $session->delete();
779 $session->flush;
780 C4::Context->_unset_userenv($sessionID);
781 $sessionID = undef;
782 $userid = undef;
784 elsif ($logout) {
786 # voluntary logout the user
787 # check wether the user was using their shibboleth session or a local one
788 my $shibSuccess = C4::Context->userenv->{'shibboleth'};
789 $session->delete();
790 $session->flush;
791 C4::Context->_unset_userenv($sessionID);
793 #_session_log(sprintf "%20s from %16s logged out at %30s (manually).\n", $userid,$ip,(strftime "%c",localtime));
794 $sessionID = undef;
795 $userid = undef;
797 if ( $cas and $caslogout ) {
798 logout_cas($query);
801 # If we are in a shibboleth session (shibboleth is enabled, a shibboleth match attribute is set and matches koha matchpoint)
802 if ( $shib and $shib_login and $shibSuccess and $type eq 'opac' ) {
804 # (Note: $type eq 'opac' condition should be removed when shibboleth authentication for intranet will be implemented)
805 logout_shib($query);
808 elsif ( !$lasttime || ( $lasttime < time() - $timeout ) ) {
810 # timed logout
811 $info{'timed_out'} = 1;
812 if ($session) {
813 $session->delete();
814 $session->flush;
816 C4::Context->_unset_userenv($sessionID);
818 #_session_log(sprintf "%20s from %16s logged out at %30s (inactivity).\n", $userid,$ip,(strftime "%c",localtime));
819 $userid = undef;
820 $sessionID = undef;
822 elsif ( C4::Context->preference('SessionRestrictionByIP') && $ip ne $ENV{'REMOTE_ADDR'} ) {
824 # Different ip than originally logged in from
825 $info{'oldip'} = $ip;
826 $info{'newip'} = $ENV{'REMOTE_ADDR'};
827 $info{'different_ip'} = 1;
828 $session->delete();
829 $session->flush;
830 C4::Context->_unset_userenv($sessionID);
832 #_session_log(sprintf "%20s from %16s logged out at %30s (ip changed to %16s).\n", $userid,$ip,(strftime "%c",localtime), $info{'newip'});
833 $sessionID = undef;
834 $userid = undef;
836 else {
837 $cookie = $query->cookie(
838 -name => 'CGISESSID',
839 -value => $session->id,
840 -HttpOnly => 1
842 $session->param( 'lasttime', time() );
843 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...
844 $flags = haspermission( $userid, $flagsrequired );
845 if ($flags) {
846 $loggedin = 1;
847 } else {
848 $info{'nopermission'} = 1;
853 unless ( $userid || $sessionID ) {
855 #we initiate a session prior to checking for a username to allow for anonymous sessions...
856 my $session = get_session("") or die "Auth ERROR: Cannot get_session()";
858 # Save anonymous search history in new session so it can be retrieved
859 # by get_template_and_user to store it in user's search history after
860 # a successful login.
861 if ($anon_search_history) {
862 $session->param( 'search_history', $anon_search_history );
865 my $sessionID = $session->id;
866 C4::Context->_new_userenv($sessionID);
867 $cookie = $query->cookie(
868 -name => 'CGISESSID',
869 -value => $session->id,
870 -HttpOnly => 1
872 $userid = $q_userid;
873 my $pki_field = C4::Context->preference('AllowPKIAuth');
874 if ( !defined($pki_field) ) {
875 print STDERR "ERROR: Missing system preference AllowPKIAuth.\n";
876 $pki_field = 'None';
878 if ( ( $cas && $query->param('ticket') )
879 || $userid
880 || ( $shib && $shib_login )
881 || $pki_field ne 'None'
882 || $persona )
884 my $password = $query->param('password');
885 my $shibSuccess = 0;
887 my ( $return, $cardnumber );
889 # If shib is enabled and we have a shib login, does the login match a valid koha user
890 if ( $shib && $shib_login && $type eq 'opac' ) {
891 my $retuserid;
893 # Do not pass password here, else shib will not be checked in checkpw.
894 ( $return, $cardnumber, $retuserid ) = checkpw( $dbh, $userid, undef, $query );
895 $userid = $retuserid;
896 $shibSuccess = $return;
897 $info{'invalidShibLogin'} = 1 unless ($return);
900 # If shib login and match were successfull, skip further login methods
901 unless ($shibSuccess) {
902 if ( $cas && $query->param('ticket') ) {
903 my $retuserid;
904 ( $return, $cardnumber, $retuserid ) =
905 checkpw( $dbh, $userid, $password, $query );
906 $userid = $retuserid;
907 $info{'invalidCasLogin'} = 1 unless ($return);
910 elsif ($persona) {
911 my $value = $persona;
913 # If we're looking up the email, there's a chance that the person
914 # doesn't have a userid. So if there is none, we pass along the
915 # borrower number, and the bits of code that need to know the user
916 # ID will have to be smart enough to handle that.
917 require C4::Members;
918 my @users_info = C4::Members::GetBorrowersWithEmail($value);
919 if (@users_info) {
921 # First the userid, then the borrowernum
922 $value = $users_info[0][1] || $users_info[0][0];
924 else {
925 undef $value;
927 $return = $value ? 1 : 0;
928 $userid = $value;
931 elsif (
932 ( $pki_field eq 'Common Name' && $ENV{'SSL_CLIENT_S_DN_CN'} )
933 || ( $pki_field eq 'emailAddress'
934 && $ENV{'SSL_CLIENT_S_DN_Email'} )
937 my $value;
938 if ( $pki_field eq 'Common Name' ) {
939 $value = $ENV{'SSL_CLIENT_S_DN_CN'};
941 elsif ( $pki_field eq 'emailAddress' ) {
942 $value = $ENV{'SSL_CLIENT_S_DN_Email'};
944 # If we're looking up the email, there's a chance that the person
945 # doesn't have a userid. So if there is none, we pass along the
946 # borrower number, and the bits of code that need to know the user
947 # ID will have to be smart enough to handle that.
948 require C4::Members;
949 my @users_info = C4::Members::GetBorrowersWithEmail($value);
950 if (@users_info) {
952 # First the userid, then the borrowernum
953 $value = $users_info[0][1] || $users_info[0][0];
954 } else {
955 undef $value;
959 $return = $value ? 1 : 0;
960 $userid = $value;
963 else {
964 my $retuserid;
965 ( $return, $cardnumber, $retuserid ) =
966 checkpw( $dbh, $userid, $password, $query );
967 $userid = $retuserid if ($retuserid);
968 $info{'invalid_username_or_password'} = 1 unless ($return);
972 # $return: 1 = valid user, 2 = superlibrarian
973 if ($return) {
975 #_session_log(sprintf "%20s from %16s logged in at %30s.\n", $userid,$ENV{'REMOTE_ADDR'},(strftime '%c', localtime));
976 if ( $flags = haspermission( $userid, $flagsrequired ) ) {
977 $loggedin = 1;
979 else {
980 $info{'nopermission'} = 1;
981 C4::Context->_unset_userenv($sessionID);
983 my ( $borrowernumber, $firstname, $surname, $userflags,
984 $branchcode, $branchname, $branchprinter, $emailaddress );
986 if ( $return == 1 ) {
987 my $select = "
988 SELECT borrowernumber, firstname, surname, flags, borrowers.branchcode,
989 branches.branchname as branchname,
990 branches.branchprinter as branchprinter,
991 email
992 FROM borrowers
993 LEFT JOIN branches on borrowers.branchcode=branches.branchcode
995 my $sth = $dbh->prepare("$select where userid=?");
996 $sth->execute($userid);
997 unless ( $sth->rows ) {
998 $debug and print STDERR "AUTH_1: no rows for userid='$userid'\n";
999 $sth = $dbh->prepare("$select where cardnumber=?");
1000 $sth->execute($cardnumber);
1002 unless ( $sth->rows ) {
1003 $debug and print STDERR "AUTH_2a: no rows for cardnumber='$cardnumber'\n";
1004 $sth->execute($userid);
1005 unless ( $sth->rows ) {
1006 $debug and print STDERR "AUTH_2b: no rows for userid='$userid' AS cardnumber\n";
1010 if ( $sth->rows ) {
1011 ( $borrowernumber, $firstname, $surname, $userflags,
1012 $branchcode, $branchname, $branchprinter, $emailaddress ) = $sth->fetchrow;
1013 $debug and print STDERR "AUTH_3 results: " .
1014 "$cardnumber,$borrowernumber,$userid,$firstname,$surname,$userflags,$branchcode,$emailaddress\n";
1015 } else {
1016 print STDERR "AUTH_3: no results for userid='$userid', cardnumber='$cardnumber'.\n";
1019 # launch a sequence to check if we have a ip for the branch, i
1020 # if we have one we replace the branchcode of the userenv by the branch bound in the ip.
1022 my $ip = $ENV{'REMOTE_ADDR'};
1024 # if they specify at login, use that
1025 if ( $query->param('branch') ) {
1026 $branchcode = $query->param('branch');
1027 $branchname = GetBranchName($branchcode);
1029 my $branches = GetBranches();
1030 if ( C4::Context->boolean_preference('IndependentBranches') && C4::Context->boolean_preference('Autolocation') ) {
1032 # we have to check they are coming from the right ip range
1033 my $domain = $branches->{$branchcode}->{'branchip'};
1034 if ( $ip !~ /^$domain/ ) {
1035 $loggedin = 0;
1036 $info{'wrongip'} = 1;
1040 my @branchesloop;
1041 foreach my $br ( keys %$branches ) {
1043 # now we work with the treatment of ip
1044 my $domain = $branches->{$br}->{'branchip'};
1045 if ( $domain && $ip =~ /^$domain/ ) {
1046 $branchcode = $branches->{$br}->{'branchcode'};
1048 # new op dev : add the branchprinter and branchname in the cookie
1049 $branchprinter = $branches->{$br}->{'branchprinter'};
1050 $branchname = $branches->{$br}->{'branchname'};
1053 $session->param( 'number', $borrowernumber );
1054 $session->param( 'id', $userid );
1055 $session->param( 'cardnumber', $cardnumber );
1056 $session->param( 'firstname', $firstname );
1057 $session->param( 'surname', $surname );
1058 $session->param( 'branch', $branchcode );
1059 $session->param( 'branchname', $branchname );
1060 $session->param( 'flags', $userflags );
1061 $session->param( 'emailaddress', $emailaddress );
1062 $session->param( 'ip', $session->remote_addr() );
1063 $session->param( 'lasttime', time() );
1064 $session->param( 'shibboleth', $shibSuccess );
1065 $debug and printf STDERR "AUTH_4: (%s)\t%s %s - %s\n", map { $session->param($_) } qw(cardnumber firstname surname branch);
1067 elsif ( $return == 2 ) {
1069 #We suppose the user is the superlibrarian
1070 $borrowernumber = 0;
1071 $session->param( 'number', 0 );
1072 $session->param( 'id', C4::Context->config('user') );
1073 $session->param( 'cardnumber', C4::Context->config('user') );
1074 $session->param( 'firstname', C4::Context->config('user') );
1075 $session->param( 'surname', C4::Context->config('user') );
1076 $session->param( 'branch', 'NO_LIBRARY_SET' );
1077 $session->param( 'branchname', 'NO_LIBRARY_SET' );
1078 $session->param( 'flags', 1 );
1079 $session->param( 'emailaddress', C4::Context->preference('KohaAdminEmailAddress') );
1080 $session->param( 'ip', $session->remote_addr() );
1081 $session->param( 'lasttime', time() );
1083 if ($persona) {
1084 $session->param( 'persona', 1 );
1086 C4::Context->set_userenv(
1087 $session->param('number'), $session->param('id'),
1088 $session->param('cardnumber'), $session->param('firstname'),
1089 $session->param('surname'), $session->param('branch'),
1090 $session->param('branchname'), $session->param('flags'),
1091 $session->param('emailaddress'), $session->param('branchprinter'),
1092 $session->param('persona'), $session->param('shibboleth')
1096 # $return: 0 = invalid user
1097 # reset to anonymous session
1098 else {
1099 $debug and warn "Login failed, resetting anonymous session...";
1100 if ($userid) {
1101 $info{'invalid_username_or_password'} = 1;
1102 C4::Context->_unset_userenv($sessionID);
1104 $session->param( 'lasttime', time() );
1105 $session->param( 'ip', $session->remote_addr() );
1106 $session->param( 'sessiontype', 'anon' );
1108 } # END if ( $userid = $query->param('userid') )
1109 elsif ( $type eq "opac" ) {
1111 # if we are here this is an anonymous session; add public lists to it and a few other items...
1112 # anonymous sessions are created only for the OPAC
1113 $debug and warn "Initiating an anonymous session...";
1115 # setting a couple of other session vars...
1116 $session->param( 'ip', $session->remote_addr() );
1117 $session->param( 'lasttime', time() );
1118 $session->param( 'sessiontype', 'anon' );
1120 } # END unless ($userid)
1122 # finished authentification, now respond
1123 if ( $loggedin || $authnotrequired )
1125 # successful login
1126 unless ($cookie) {
1127 $cookie = $query->cookie(
1128 -name => 'CGISESSID',
1129 -value => '',
1130 -HttpOnly => 1
1133 return ( $userid, $cookie, $sessionID, $flags );
1138 # AUTH rejected, show the login/password template, after checking the DB.
1142 # get the inputs from the incoming query
1143 my @inputs = ();
1144 foreach my $name ( param $query) {
1145 (next) if ( $name eq 'userid' || $name eq 'password' || $name eq 'ticket' );
1146 my $value = $query->param($name);
1147 push @inputs, { name => $name, value => $value };
1150 my $LibraryNameTitle = C4::Context->preference("LibraryName");
1151 $LibraryNameTitle =~ s/<(?:\/?)(?:br|p)\s*(?:\/?)>/ /sgi;
1152 $LibraryNameTitle =~ s/<(?:[^<>'"]|'(?:[^']*)'|"(?:[^"]*)")*>//sg;
1154 my $template_name = ( $type eq 'opac' ) ? 'opac-auth.tt' : 'auth.tt';
1155 my $template = C4::Templates::gettemplate( $template_name, $type, $query );
1156 $template->param(
1157 branchloop => GetBranchesLoop(),
1158 OpacAdditionalStylesheet => C4::Context->preference("OpacAdditionalStylesheet"),
1159 opaclayoutstylesheet => C4::Context->preference("opaclayoutstylesheet"),
1160 login => 1,
1161 INPUTS => \@inputs,
1162 casAuthentication => C4::Context->preference("casAuthentication"),
1163 shibbolethAuthentication => $shib,
1164 SessionRestrictionByIP => C4::Context->preference("SessionRestrictionByIP"),
1165 suggestion => C4::Context->preference("suggestion"),
1166 virtualshelves => C4::Context->preference("virtualshelves"),
1167 LibraryName => "" . C4::Context->preference("LibraryName"),
1168 LibraryNameTitle => "" . $LibraryNameTitle,
1169 opacuserlogin => C4::Context->preference("opacuserlogin"),
1170 OpacNav => C4::Context->preference("OpacNav"),
1171 OpacNavRight => C4::Context->preference("OpacNavRight"),
1172 OpacNavBottom => C4::Context->preference("OpacNavBottom"),
1173 opaccredits => C4::Context->preference("opaccredits"),
1174 OpacFavicon => C4::Context->preference("OpacFavicon"),
1175 opacreadinghistory => C4::Context->preference("opacreadinghistory"),
1176 opaclanguagesdisplay => C4::Context->preference("opaclanguagesdisplay"),
1177 opacuserjs => C4::Context->preference("opacuserjs"),
1178 opacbookbag => "" . C4::Context->preference("opacbookbag"),
1179 OpacCloud => C4::Context->preference("OpacCloud"),
1180 OpacTopissue => C4::Context->preference("OpacTopissue"),
1181 OpacAuthorities => C4::Context->preference("OpacAuthorities"),
1182 OpacBrowser => C4::Context->preference("OpacBrowser"),
1183 opacheader => C4::Context->preference("opacheader"),
1184 TagsEnabled => C4::Context->preference("TagsEnabled"),
1185 OPACUserCSS => C4::Context->preference("OPACUserCSS"),
1186 intranetcolorstylesheet => C4::Context->preference("intranetcolorstylesheet"),
1187 intranetstylesheet => C4::Context->preference("intranetstylesheet"),
1188 intranetbookbag => C4::Context->preference("intranetbookbag"),
1189 IntranetNav => C4::Context->preference("IntranetNav"),
1190 IntranetFavicon => C4::Context->preference("IntranetFavicon"),
1191 intranetuserjs => C4::Context->preference("intranetuserjs"),
1192 IndependentBranches => C4::Context->preference("IndependentBranches"),
1193 AutoLocation => C4::Context->preference("AutoLocation"),
1194 wrongip => $info{'wrongip'},
1195 PatronSelfRegistration => C4::Context->preference("PatronSelfRegistration"),
1196 PatronSelfRegistrationDefaultCategory => C4::Context->preference("PatronSelfRegistrationDefaultCategory"),
1197 persona => C4::Context->preference("Persona"),
1198 opac_css_override => $ENV{'OPAC_CSS_OVERRIDE'},
1201 $template->param( OpacPublic => C4::Context->preference("OpacPublic") );
1202 $template->param( loginprompt => 1 ) unless $info{'nopermission'};
1204 if ( $type eq 'opac' ) {
1205 my ( $total, $pubshelves ) = C4::VirtualShelves::GetSomeShelfNames( undef, 'MASTHEAD' );
1206 $template->param(
1207 pubshelves => $total->{pubtotal},
1208 pubshelvesloop => $pubshelves,
1212 if ($cas) {
1214 # Is authentication against multiple CAS servers enabled?
1215 if ( C4::Auth_with_cas::multipleAuth && !$casparam ) {
1216 my $casservers = C4::Auth_with_cas::getMultipleAuth();
1217 my @tmplservers;
1218 foreach my $key ( keys %$casservers ) {
1219 push @tmplservers, { name => $key, value => login_cas_url( $query, $key ) . "?cas=$key" };
1221 $template->param(
1222 casServersLoop => \@tmplservers
1224 } else {
1225 $template->param(
1226 casServerUrl => login_cas_url($query),
1230 $template->param(
1231 invalidCasLogin => $info{'invalidCasLogin'}
1235 if ($shib) {
1236 $template->param(
1237 shibbolethAuthentication => $shib,
1238 shibbolethLoginUrl => login_shib_url($query),
1242 my $self_url = $query->url( -absolute => 1 );
1243 $template->param(
1244 url => $self_url,
1245 LibraryName => C4::Context->preference("LibraryName"),
1247 $template->param(%info);
1249 # $cookie = $query->cookie(CGISESSID => $session->id
1250 # );
1251 print $query->header(
1252 -type => 'text/html',
1253 -charset => 'utf-8',
1254 -cookie => $cookie
1256 $template->output;
1257 safe_exit;
1260 =head2 check_api_auth
1262 ($status, $cookie, $sessionId) = check_api_auth($query, $userflags);
1264 Given a CGI query containing the parameters 'userid' and 'password' and/or a session
1265 cookie, determine if the user has the privileges specified by C<$userflags>.
1267 C<check_api_auth> is is meant for authenticating users of web services, and
1268 consequently will always return and will not attempt to redirect the user
1269 agent.
1271 If a valid session cookie is already present, check_api_auth will return a status
1272 of "ok", the cookie, and the Koha session ID.
1274 If no session cookie is present, check_api_auth will check the 'userid' and 'password
1275 parameters and create a session cookie and Koha session if the supplied credentials
1276 are OK.
1278 Possible return values in C<$status> are:
1280 =over
1282 =item "ok" -- user authenticated; C<$cookie> and C<$sessionid> have valid values.
1284 =item "failed" -- credentials are not correct; C<$cookie> and C<$sessionid> are undef
1286 =item "maintenance" -- DB is in maintenance mode; no login possible at the moment
1288 =item "expired -- session cookie has expired; API user should resubmit userid and password
1290 =back
1292 =cut
1294 sub check_api_auth {
1295 my $query = shift;
1296 my $flagsrequired = shift;
1298 my $dbh = C4::Context->dbh;
1299 my $timeout = _timeout_syspref();
1301 unless ( C4::Context->preference('Version') ) {
1303 # database has not been installed yet
1304 return ( "maintenance", undef, undef );
1306 my $kohaversion = C4::Context::KOHAVERSION;
1307 $kohaversion =~ s/(.*\..*)\.(.*)\.(.*)/$1$2$3/;
1308 if ( C4::Context->preference('Version') < $kohaversion ) {
1310 # database in need of version update; assume that
1311 # no API should be called while databsae is in
1312 # this condition.
1313 return ( "maintenance", undef, undef );
1316 # FIXME -- most of what follows is a copy-and-paste
1317 # of code from checkauth. There is an obvious need
1318 # for refactoring to separate the various parts of
1319 # the authentication code, but as of 2007-11-19 this
1320 # is deferred so as to not introduce bugs into the
1321 # regular authentication code for Koha 3.0.
1323 # see if we have a valid session cookie already
1324 # however, if a userid parameter is present (i.e., from
1325 # a form submission, assume that any current cookie
1326 # is to be ignored
1327 my $sessionID = undef;
1328 unless ( $query->param('userid') ) {
1329 $sessionID = $query->cookie("CGISESSID");
1331 if ( $sessionID && not( $cas && $query->param('PT') ) ) {
1332 my $session = get_session($sessionID);
1333 C4::Context->_new_userenv($sessionID);
1334 if ($session) {
1335 C4::Context->set_userenv(
1336 $session->param('number'), $session->param('id'),
1337 $session->param('cardnumber'), $session->param('firstname'),
1338 $session->param('surname'), $session->param('branch'),
1339 $session->param('branchname'), $session->param('flags'),
1340 $session->param('emailaddress'), $session->param('branchprinter')
1343 my $ip = $session->param('ip');
1344 my $lasttime = $session->param('lasttime');
1345 my $userid = $session->param('id');
1346 if ( $lasttime < time() - $timeout ) {
1348 # time out
1349 $session->delete();
1350 $session->flush;
1351 C4::Context->_unset_userenv($sessionID);
1352 $userid = undef;
1353 $sessionID = undef;
1354 return ( "expired", undef, undef );
1355 } elsif ( C4::Context->preference('SessionRestrictionByIP') && $ip ne $ENV{'REMOTE_ADDR'} ) {
1357 # IP address changed
1358 $session->delete();
1359 $session->flush;
1360 C4::Context->_unset_userenv($sessionID);
1361 $userid = undef;
1362 $sessionID = undef;
1363 return ( "expired", undef, undef );
1364 } else {
1365 my $cookie = $query->cookie(
1366 -name => 'CGISESSID',
1367 -value => $session->id,
1368 -HttpOnly => 1,
1370 $session->param( 'lasttime', time() );
1371 my $flags = haspermission( $userid, $flagsrequired );
1372 if ($flags) {
1373 return ( "ok", $cookie, $sessionID );
1374 } else {
1375 $session->delete();
1376 $session->flush;
1377 C4::Context->_unset_userenv($sessionID);
1378 $userid = undef;
1379 $sessionID = undef;
1380 return ( "failed", undef, undef );
1383 } else {
1384 return ( "expired", undef, undef );
1386 } else {
1388 # new login
1389 my $userid = $query->param('userid');
1390 my $password = $query->param('password');
1391 my ( $return, $cardnumber );
1393 # Proxy CAS auth
1394 if ( $cas && $query->param('PT') ) {
1395 my $retuserid;
1396 $debug and print STDERR "## check_api_auth - checking CAS\n";
1398 # In case of a CAS authentication, we use the ticket instead of the password
1399 my $PT = $query->param('PT');
1400 ( $return, $cardnumber, $userid ) = check_api_auth_cas( $dbh, $PT, $query ); # EXTERNAL AUTH
1401 } else {
1403 # User / password auth
1404 unless ( $userid and $password ) {
1406 # caller did something wrong, fail the authenticateion
1407 return ( "failed", undef, undef );
1409 ( $return, $cardnumber ) = checkpw( $dbh, $userid, $password, $query );
1412 if ( $return and haspermission( $userid, $flagsrequired ) ) {
1413 my $session = get_session("");
1414 return ( "failed", undef, undef ) unless $session;
1416 my $sessionID = $session->id;
1417 C4::Context->_new_userenv($sessionID);
1418 my $cookie = $query->cookie(
1419 -name => 'CGISESSID',
1420 -value => $sessionID,
1421 -HttpOnly => 1,
1423 if ( $return == 1 ) {
1424 my (
1425 $borrowernumber, $firstname, $surname,
1426 $userflags, $branchcode, $branchname,
1427 $branchprinter, $emailaddress
1429 my $sth =
1430 $dbh->prepare(
1431 "select borrowernumber, firstname, surname, flags, borrowers.branchcode, branches.branchname as branchname,branches.branchprinter as branchprinter, email from borrowers left join branches on borrowers.branchcode=branches.branchcode where userid=?"
1433 $sth->execute($userid);
1435 $borrowernumber, $firstname, $surname,
1436 $userflags, $branchcode, $branchname,
1437 $branchprinter, $emailaddress
1438 ) = $sth->fetchrow if ( $sth->rows );
1440 unless ( $sth->rows ) {
1441 my $sth = $dbh->prepare(
1442 "select borrowernumber, firstname, surname, flags, borrowers.branchcode, branches.branchname as branchname, branches.branchprinter as branchprinter, email from borrowers left join branches on borrowers.branchcode=branches.branchcode where cardnumber=?"
1444 $sth->execute($cardnumber);
1446 $borrowernumber, $firstname, $surname,
1447 $userflags, $branchcode, $branchname,
1448 $branchprinter, $emailaddress
1449 ) = $sth->fetchrow if ( $sth->rows );
1451 unless ( $sth->rows ) {
1452 $sth->execute($userid);
1454 $borrowernumber, $firstname, $surname, $userflags,
1455 $branchcode, $branchname, $branchprinter, $emailaddress
1456 ) = $sth->fetchrow if ( $sth->rows );
1460 my $ip = $ENV{'REMOTE_ADDR'};
1462 # if they specify at login, use that
1463 if ( $query->param('branch') ) {
1464 $branchcode = $query->param('branch');
1465 $branchname = GetBranchName($branchcode);
1467 my $branches = GetBranches();
1468 my @branchesloop;
1469 foreach my $br ( keys %$branches ) {
1471 # now we work with the treatment of ip
1472 my $domain = $branches->{$br}->{'branchip'};
1473 if ( $domain && $ip =~ /^$domain/ ) {
1474 $branchcode = $branches->{$br}->{'branchcode'};
1476 # new op dev : add the branchprinter and branchname in the cookie
1477 $branchprinter = $branches->{$br}->{'branchprinter'};
1478 $branchname = $branches->{$br}->{'branchname'};
1481 $session->param( 'number', $borrowernumber );
1482 $session->param( 'id', $userid );
1483 $session->param( 'cardnumber', $cardnumber );
1484 $session->param( 'firstname', $firstname );
1485 $session->param( 'surname', $surname );
1486 $session->param( 'branch', $branchcode );
1487 $session->param( 'branchname', $branchname );
1488 $session->param( 'flags', $userflags );
1489 $session->param( 'emailaddress', $emailaddress );
1490 $session->param( 'ip', $session->remote_addr() );
1491 $session->param( 'lasttime', time() );
1492 } elsif ( $return == 2 ) {
1494 #We suppose the user is the superlibrarian
1495 $session->param( 'number', 0 );
1496 $session->param( 'id', C4::Context->config('user') );
1497 $session->param( 'cardnumber', C4::Context->config('user') );
1498 $session->param( 'firstname', C4::Context->config('user') );
1499 $session->param( 'surname', C4::Context->config('user') );
1500 $session->param( 'branch', 'NO_LIBRARY_SET' );
1501 $session->param( 'branchname', 'NO_LIBRARY_SET' );
1502 $session->param( 'flags', 1 );
1503 $session->param( 'emailaddress', C4::Context->preference('KohaAdminEmailAddress') );
1504 $session->param( 'ip', $session->remote_addr() );
1505 $session->param( 'lasttime', time() );
1507 C4::Context->set_userenv(
1508 $session->param('number'), $session->param('id'),
1509 $session->param('cardnumber'), $session->param('firstname'),
1510 $session->param('surname'), $session->param('branch'),
1511 $session->param('branchname'), $session->param('flags'),
1512 $session->param('emailaddress'), $session->param('branchprinter')
1514 return ( "ok", $cookie, $sessionID );
1515 } else {
1516 return ( "failed", undef, undef );
1521 =head2 check_cookie_auth
1523 ($status, $sessionId) = check_api_auth($cookie, $userflags);
1525 Given a CGISESSID cookie set during a previous login to Koha, determine
1526 if the user has the privileges specified by C<$userflags>.
1528 C<check_cookie_auth> is meant for authenticating special services
1529 such as tools/upload-file.pl that are invoked by other pages that
1530 have been authenticated in the usual way.
1532 Possible return values in C<$status> are:
1534 =over
1536 =item "ok" -- user authenticated; C<$sessionID> have valid values.
1538 =item "failed" -- credentials are not correct; C<$sessionid> are undef
1540 =item "maintenance" -- DB is in maintenance mode; no login possible at the moment
1542 =item "expired -- session cookie has expired; API user should resubmit userid and password
1544 =back
1546 =cut
1548 sub check_cookie_auth {
1549 my $cookie = shift;
1550 my $flagsrequired = shift;
1552 my $dbh = C4::Context->dbh;
1553 my $timeout = _timeout_syspref();
1555 unless ( C4::Context->preference('Version') ) {
1557 # database has not been installed yet
1558 return ( "maintenance", undef );
1560 my $kohaversion = C4::Context::KOHAVERSION;
1561 $kohaversion =~ s/(.*\..*)\.(.*)\.(.*)/$1$2$3/;
1562 if ( C4::Context->preference('Version') < $kohaversion ) {
1564 # database in need of version update; assume that
1565 # no API should be called while databsae is in
1566 # this condition.
1567 return ( "maintenance", undef );
1570 # FIXME -- most of what follows is a copy-and-paste
1571 # of code from checkauth. There is an obvious need
1572 # for refactoring to separate the various parts of
1573 # the authentication code, but as of 2007-11-23 this
1574 # is deferred so as to not introduce bugs into the
1575 # regular authentication code for Koha 3.0.
1577 # see if we have a valid session cookie already
1578 # however, if a userid parameter is present (i.e., from
1579 # a form submission, assume that any current cookie
1580 # is to be ignored
1581 unless ( defined $cookie and $cookie ) {
1582 return ( "failed", undef );
1584 my $sessionID = $cookie;
1585 my $session = get_session($sessionID);
1586 C4::Context->_new_userenv($sessionID);
1587 if ($session) {
1588 C4::Context->set_userenv(
1589 $session->param('number'), $session->param('id'),
1590 $session->param('cardnumber'), $session->param('firstname'),
1591 $session->param('surname'), $session->param('branch'),
1592 $session->param('branchname'), $session->param('flags'),
1593 $session->param('emailaddress'), $session->param('branchprinter')
1596 my $ip = $session->param('ip');
1597 my $lasttime = $session->param('lasttime');
1598 my $userid = $session->param('id');
1599 if ( $lasttime < time() - $timeout ) {
1601 # time out
1602 $session->delete();
1603 $session->flush;
1604 C4::Context->_unset_userenv($sessionID);
1605 $userid = undef;
1606 $sessionID = undef;
1607 return ("expired", undef);
1608 } elsif ( C4::Context->preference('SessionRestrictionByIP') && $ip ne $ENV{'REMOTE_ADDR'} ) {
1610 # IP address changed
1611 $session->delete();
1612 $session->flush;
1613 C4::Context->_unset_userenv($sessionID);
1614 $userid = undef;
1615 $sessionID = undef;
1616 return ( "expired", undef );
1617 } else {
1618 $session->param( 'lasttime', time() );
1619 my $flags = haspermission( $userid, $flagsrequired );
1620 if ($flags) {
1621 return ( "ok", $sessionID );
1622 } else {
1623 $session->delete();
1624 $session->flush;
1625 C4::Context->_unset_userenv($sessionID);
1626 $userid = undef;
1627 $sessionID = undef;
1628 return ( "failed", undef );
1631 } else {
1632 return ( "expired", undef );
1636 =head2 get_session
1638 use CGI::Session;
1639 my $session = get_session($sessionID);
1641 Given a session ID, retrieve the CGI::Session object used to store
1642 the session's state. The session object can be used to store
1643 data that needs to be accessed by different scripts during a
1644 user's session.
1646 If the C<$sessionID> parameter is an empty string, a new session
1647 will be created.
1649 =cut
1651 sub get_session {
1652 my $sessionID = shift;
1653 my $storage_method = C4::Context->preference('SessionStorage');
1654 my $dbh = C4::Context->dbh;
1655 my $session;
1656 if ( $storage_method eq 'mysql' ) {
1657 $session = new CGI::Session( "driver:MySQL;serializer:yaml;id:md5", $sessionID, { Handle => $dbh } );
1659 elsif ( $storage_method eq 'Pg' ) {
1660 $session = new CGI::Session( "driver:PostgreSQL;serializer:yaml;id:md5", $sessionID, { Handle => $dbh } );
1662 elsif ( $storage_method eq 'memcached' && C4::Context->ismemcached ) {
1663 $session = new CGI::Session( "driver:memcached;serializer:yaml;id:md5", $sessionID, { Memcached => C4::Context->memcached } );
1665 else {
1666 # catch all defaults to tmp should work on all systems
1667 $session = new CGI::Session( "driver:File;serializer:yaml;id:md5", $sessionID, { Directory => '/tmp' } );
1669 return $session;
1672 sub checkpw {
1673 my ( $dbh, $userid, $password, $query ) = @_;
1674 if ($ldap) {
1675 $debug and print STDERR "## checkpw - checking LDAP\n";
1676 my ( $retval, $retcard, $retuserid ) = checkpw_ldap(@_); # EXTERNAL AUTH
1677 return 0 if $retval == -1; # Incorrect password for LDAP login attempt
1678 ($retval) and return ( $retval, $retcard, $retuserid );
1681 if ( $cas && $query && $query->param('ticket') ) {
1682 $debug and print STDERR "## checkpw - checking CAS\n";
1684 # In case of a CAS authentication, we use the ticket instead of the password
1685 my $ticket = $query->param('ticket');
1686 $query->delete('ticket'); # remove ticket to come back to original URL
1687 my ( $retval, $retcard, $retuserid ) = checkpw_cas( $dbh, $ticket, $query ); # EXTERNAL AUTH
1688 ($retval) and return ( $retval, $retcard, $retuserid );
1689 return 0;
1692 # If we are in a shibboleth session (shibboleth is enabled, and a shibboleth match attribute is present)
1693 # Check for password to asertain whether we want to be testing against shibboleth or another method this
1694 # time around.
1695 if ( $shib && $shib_login && !$password ) {
1697 $debug and print STDERR "## checkpw - checking Shibboleth\n";
1699 # In case of a Shibboleth authentication, we expect a shibboleth user attribute
1700 # (defined under shibboleth mapping in koha-conf.xml) to contain the login of the
1701 # shibboleth-authenticated user
1703 # Then, we check if it matches a valid koha user
1704 if ($shib_login) {
1705 my ( $retval, $retcard, $retuserid ) = C4::Auth_with_shibboleth::checkpw_shib($shib_login); # EXTERNAL AUTH
1706 ($retval) and return ( $retval, $retcard, $retuserid );
1707 return 0;
1711 # INTERNAL AUTH
1712 return checkpw_internal(@_)
1715 sub checkpw_internal {
1716 my ( $dbh, $userid, $password ) = @_;
1718 $password = Encode::encode( 'UTF-8', $password )
1719 if Encode::is_utf8($password);
1721 if ( $userid && $userid eq C4::Context->config('user') ) {
1722 if ( $password && $password eq C4::Context->config('pass') ) {
1724 # Koha superuser account
1725 # C4::Context->set_userenv(0,0,C4::Context->config('user'),C4::Context->config('user'),C4::Context->config('user'),"",1);
1726 return 2;
1728 else {
1729 return 0;
1733 my $sth =
1734 $dbh->prepare(
1735 "select password,cardnumber,borrowernumber,userid,firstname,surname,borrowers.branchcode,branches.branchname,flags from borrowers join branches on borrowers.branchcode=branches.branchcode where userid=?"
1737 $sth->execute($userid);
1738 if ( $sth->rows ) {
1739 my ( $stored_hash, $cardnumber, $borrowernumber, $userid, $firstname,
1740 $surname, $branchcode, $branchname, $flags )
1741 = $sth->fetchrow;
1743 if ( checkpw_hash( $password, $stored_hash ) ) {
1745 C4::Context->set_userenv( "$borrowernumber", $userid, $cardnumber,
1746 $firstname, $surname, $branchcode, $branchname, $flags );
1747 return 1, $cardnumber, $userid;
1750 $sth =
1751 $dbh->prepare(
1752 "select password,cardnumber,borrowernumber,userid,firstname,surname,borrowers.branchcode,branches.branchname,flags from borrowers join branches on borrowers.branchcode=branches.branchcode where cardnumber=?"
1754 $sth->execute($userid);
1755 if ( $sth->rows ) {
1756 my ( $stored_hash, $cardnumber, $borrowernumber, $userid, $firstname,
1757 $surname, $branchcode, $branchname, $flags )
1758 = $sth->fetchrow;
1760 if ( checkpw_hash( $password, $stored_hash ) ) {
1762 C4::Context->set_userenv( $borrowernumber, $userid, $cardnumber,
1763 $firstname, $surname, $branchcode, $branchname, $flags );
1764 return 1, $cardnumber, $userid;
1767 if ( $userid && $userid eq 'demo'
1768 && "$password" eq 'demo'
1769 && C4::Context->config('demo') )
1772 # DEMO => the demo user is allowed to do everything (if demo set to 1 in koha.conf
1773 # some features won't be effective : modify systempref, modify MARC structure,
1774 return 2;
1776 return 0;
1779 sub checkpw_hash {
1780 my ( $password, $stored_hash ) = @_;
1782 return if $stored_hash eq '!';
1784 # check what encryption algorithm was implemented: Bcrypt - if the hash starts with '$2' it is Bcrypt else md5
1785 my $hash;
1786 if ( substr( $stored_hash, 0, 2 ) eq '$2' ) {
1787 $hash = hash_password( $password, $stored_hash );
1788 } else {
1789 $hash = md5_base64($password);
1791 return $hash eq $stored_hash;
1794 =head2 getuserflags
1796 my $authflags = getuserflags($flags, $userid, [$dbh]);
1798 Translates integer flags into permissions strings hash.
1800 C<$flags> is the integer userflags value ( borrowers.userflags )
1801 C<$userid> is the members.userid, used for building subpermissions
1802 C<$authflags> is a hashref of permissions
1804 =cut
1806 sub getuserflags {
1807 my $flags = shift;
1808 my $userid = shift;
1809 my $dbh = @_ ? shift : C4::Context->dbh;
1810 my $userflags;
1812 # I don't want to do this, but if someone logs in as the database
1813 # user, it would be preferable not to spam them to death with
1814 # numeric warnings. So, we make $flags numeric.
1815 no warnings 'numeric';
1816 $flags += 0;
1818 my $sth = $dbh->prepare("SELECT bit, flag, defaulton FROM userflags");
1819 $sth->execute;
1821 while ( my ( $bit, $flag, $defaulton ) = $sth->fetchrow ) {
1822 if ( ( $flags & ( 2**$bit ) ) || $defaulton ) {
1823 $userflags->{$flag} = 1;
1825 else {
1826 $userflags->{$flag} = 0;
1830 # get subpermissions and merge with top-level permissions
1831 my $user_subperms = get_user_subpermissions($userid);
1832 foreach my $module ( keys %$user_subperms ) {
1833 next if $userflags->{$module} == 1; # user already has permission for everything in this module
1834 $userflags->{$module} = $user_subperms->{$module};
1837 return $userflags;
1840 =head2 get_user_subpermissions
1842 $user_perm_hashref = get_user_subpermissions($userid);
1844 Given the userid (note, not the borrowernumber) of a staff user,
1845 return a hashref of hashrefs of the specific subpermissions
1846 accorded to the user. An example return is
1849 tools => {
1850 export_catalog => 1,
1851 import_patrons => 1,
1855 The top-level hash-key is a module or function code from
1856 userflags.flag, while the second-level key is a code
1857 from permissions.
1859 The results of this function do not give a complete picture
1860 of the functions that a staff user can access; it is also
1861 necessary to check borrowers.flags.
1863 =cut
1865 sub get_user_subpermissions {
1866 my $userid = shift;
1868 my $dbh = C4::Context->dbh;
1869 my $sth = $dbh->prepare( "SELECT flag, user_permissions.code
1870 FROM user_permissions
1871 JOIN permissions USING (module_bit, code)
1872 JOIN userflags ON (module_bit = bit)
1873 JOIN borrowers USING (borrowernumber)
1874 WHERE userid = ?" );
1875 $sth->execute($userid);
1877 my $user_perms = {};
1878 while ( my $perm = $sth->fetchrow_hashref ) {
1879 $user_perms->{ $perm->{'flag'} }->{ $perm->{'code'} } = 1;
1881 return $user_perms;
1884 =head2 get_all_subpermissions
1886 my $perm_hashref = get_all_subpermissions();
1888 Returns a hashref of hashrefs defining all specific
1889 permissions currently defined. The return value
1890 has the same structure as that of C<get_user_subpermissions>,
1891 except that the innermost hash value is the description
1892 of the subpermission.
1894 =cut
1896 sub get_all_subpermissions {
1897 my $dbh = C4::Context->dbh;
1898 my $sth = $dbh->prepare( "SELECT flag, code, description
1899 FROM permissions
1900 JOIN userflags ON (module_bit = bit)" );
1901 $sth->execute();
1903 my $all_perms = {};
1904 while ( my $perm = $sth->fetchrow_hashref ) {
1905 $all_perms->{ $perm->{'flag'} }->{ $perm->{'code'} } = $perm->{'description'};
1907 return $all_perms;
1910 =head2 haspermission
1912 $flags = ($userid, $flagsrequired);
1914 C<$userid> the userid of the member
1915 C<$flags> is a hashref of required flags like C<$borrower-&lt;{authflags}>
1917 Returns member's flags or 0 if a permission is not met.
1919 =cut
1921 sub haspermission {
1922 my ( $userid, $flagsrequired ) = @_;
1923 my $sth = C4::Context->dbh->prepare("SELECT flags FROM borrowers WHERE userid=?");
1924 $sth->execute($userid);
1925 my $row = $sth->fetchrow();
1926 my $flags = getuserflags( $row, $userid );
1927 if ( $userid eq C4::Context->config('user') ) {
1929 # Super User Account from /etc/koha.conf
1930 $flags->{'superlibrarian'} = 1;
1932 elsif ( $userid eq 'demo' && C4::Context->config('demo') ) {
1934 # Demo user that can do "anything" (demo=1 in /etc/koha.conf)
1935 $flags->{'superlibrarian'} = 1;
1938 return $flags if $flags->{superlibrarian};
1940 foreach my $module ( keys %$flagsrequired ) {
1941 my $subperm = $flagsrequired->{$module};
1942 if ( $subperm eq '*' ) {
1943 return 0 unless ( $flags->{$module} == 1 or ref( $flags->{$module} ) );
1944 } else {
1945 return 0 unless ( $flags->{$module} == 1 or
1946 ( ref( $flags->{$module} ) and
1947 exists $flags->{$module}->{$subperm} and
1948 $flags->{$module}->{$subperm} == 1
1953 return $flags;
1955 #FIXME - This fcn should return the failed permission so a suitable error msg can be delivered.
1958 sub getborrowernumber {
1959 my ($userid) = @_;
1960 my $userenv = C4::Context->userenv;
1961 if ( defined($userenv) && ref($userenv) eq 'HASH' && $userenv->{number} ) {
1962 return $userenv->{number};
1964 my $dbh = C4::Context->dbh;
1965 for my $field ( 'userid', 'cardnumber' ) {
1966 my $sth =
1967 $dbh->prepare("select borrowernumber from borrowers where $field=?");
1968 $sth->execute($userid);
1969 if ( $sth->rows ) {
1970 my ($bnumber) = $sth->fetchrow;
1971 return $bnumber;
1974 return 0;
1977 END { } # module clean-up code here (global destructor)
1979 __END__
1981 =head1 SEE ALSO
1983 CGI(3)
1985 C4::Output(3)
1987 Crypt::Eksblowfish::Bcrypt(3)
1989 Digest::MD5(3)
1991 =cut