3 # This file is part of Koha.
4 # parts copyright 2010 BibLibre
6 # Koha is free software; you can redistribute it and/or modify it
7 # under the terms of the GNU General Public License as published by
8 # the Free Software Foundation; either version 3 of the License, or
9 # (at your option) any later version.
11 # Koha is distributed in the hope that it will be useful, but
12 # WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 # GNU General Public License for more details.
16 # You should have received a copy of the GNU General Public License
17 # along with Koha; if not, see <http://www.gnu.org/licenses>.
25 use C4::Auth qw( get_template_and_user );
27 getitemtypeimagelocation
30 GetNormalizedOCLCNumber
32 use C4::Circulation qw( CanBookBeRenewed GetRenewCount GetIssuingCharges );
33 use C4::External::BakerTaylor qw( image_url link_url );
34 use C4::Reserves qw( GetReserveStatus );
36 use C4::Output qw( output_html_with_http_headers );
37 use Koha::Account::Lines;
40 use Koha::DateUtils qw( output_pref );
44 use Koha::Patron::Attribute::Types;
46 use Koha::Patron::Messages;
47 use Koha::Patron::Discharge;
53 use constant ATTRIBUTE_SHOW_BARCODE => 'SHOW_BCODE';
55 use Scalar::Util qw( looks_like_number );
56 use Date::Calc qw( Date_to_Days Today );
60 # CAS single logout handling
61 # Will print header and exit
62 if ( C4::Context->preference('casAuthentication') ) {
63 require C4::Auth_with_cas;
64 C4::Auth_with_cas::logout_if_required($query);
67 my ( $template, $borrowernumber, $cookie ) = get_template_and_user(
69 template_name => "opac-user.tt",
75 my %renewed = map { $_ => 1 } split( ':', $query->param('renewed') || '' );
78 for ( C4::Context->preference("OPACShowHoldQueueDetails") ) {
79 m/priority/ and $show_priority = 1;
82 my $patronupdate = $query->param('patronupdate');
85 $template->param( shibbolethAuthentication => C4::Context->config('useshibboleth') );
87 # get borrower information ....
88 my $patron = Koha::Patrons->find( $borrowernumber );
90 if( $query->param('update_arc') && C4::Context->preference("AllowPatronToControlAutorenewal") ){
91 die "Wrong CSRF token"
92 unless Koha::Token->new->check_csrf({
93 session_id => scalar $query->cookie('CGISESSID'),
94 token => scalar $query->param('csrf_token'),
97 my $autorenew_checkouts = $query->param('borrower_autorenew_checkouts');
98 $patron->autorenew_checkouts( $autorenew_checkouts )->store() if defined $autorenew_checkouts;
101 my $borr = $patron->unblessed;
103 my ( $today_year, $today_month, $today_day) = Today();
104 my ($warning_year, $warning_month, $warning_day) = split /-/, $borr->{'dateexpiry'};
106 my $debar = Koha::Patrons->find( $borrowernumber )->is_debarred;
111 $template->param( 'userdebarred' => $userdebarred );
112 if ( $debar ne "9999-12-31" ) {
113 $borr->{'userdebarreddate'} = $debar;
115 # FIXME looks like $available is not needed
116 # If a user is discharged they have a validated discharge available
117 my $available = Koha::Patron::Discharge::count({
118 borrowernumber => $borrowernumber,
121 $template->param( 'discharge_available' => $available && Koha::Patron::Discharge::is_discharged({borrowernumber => $borrowernumber}) );
124 if ( $userdebarred || $borr->{'gonenoaddress'} || $borr->{'lost'} ) {
125 $borr->{'flagged'} = 1;
129 my $amountoutstanding = $patron->account->balance;
130 my $no_renewal_amt = C4::Context->preference( 'OPACFineNoRenewals' );
131 $no_renewal_amt = undef unless looks_like_number( $no_renewal_amt );
132 my $amountoutstandingfornewal =
133 C4::Context->preference("OPACFineNoRenewalsIncludeCredit")
135 : $patron->account->outstanding_debits->total_outstanding;
137 if ( C4::Context->preference('OpacRenewalAllowed')
138 && defined($no_renewal_amt)
139 && $amountoutstandingfornewal > $no_renewal_amt )
141 $borr->{'flagged'} = 1;
144 renewal_blocked_fines => $no_renewal_amt,
145 renewal_blocked_fines_amountoutstanding => $amountoutstandingfornewal,
149 my $maxoutstanding = C4::Context->preference('maxoutstanding');
150 if ( $amountoutstanding && ( $amountoutstanding > $maxoutstanding ) ){
151 $borr->{blockedonfines} = 1;
154 # Warningdate is the date that the warning starts appearing
155 if ( $borr->{'dateexpiry'} && C4::Context->preference('NotifyBorrowerDeparture') ) {
156 my $days_to_expiry = Date_to_Days( $warning_year, $warning_month, $warning_day ) - Date_to_Days( $today_year, $today_month, $today_day );
157 if ( $days_to_expiry < 0 ) {
158 #borrower card has expired, warn the borrower
159 $borr->{'warnexpired'} = $borr->{'dateexpiry'};
160 } elsif ( $days_to_expiry < C4::Context->preference('NotifyBorrowerDeparture') ) {
161 # borrower card soon to expire, warn the borrower
162 $borr->{'warndeparture'} = $borr->{dateexpiry};
163 if (C4::Context->preference('ReturnBeforeExpiry')){
164 $borr->{'returnbeforeexpiry'} = 1;
169 my $saving_display = C4::Context->preference('OPACShowSavings');
170 if ( $saving_display =~ /user/ ) {
171 $template->param( savings => $patron->get_savings );
174 # pass on any renew errors to the template for displaying
175 my $renew_error = $query->param('renew_error');
178 amountoutstanding => $amountoutstanding,
179 borrowernumber => $borrowernumber,
180 patron_flagged => $borr->{flagged},
181 surname => $borr->{surname},
182 RENEW_ERROR => $renew_error,
184 csrf_token => Koha::Token->new->generate_csrf({
185 session_id => scalar $query->cookie('CGISESSID'),
189 #get issued items ....
192 my $overdues_count = 0;
195 my $itemtypes = { map { $_->{itemtype} => $_ } @{ Koha::ItemTypes->search_with_localization->unblessed } };
196 my $pending_checkouts = $patron->pending_checkouts->search(
199 order_by => [ { -desc => 'date_due' }, { -asc => 'issue_id' } ],
203 my $are_renewable_items = 0;
204 if ( $pending_checkouts->count ) { # Useless test
205 while ( my $c = $pending_checkouts->next ) {
206 my $issue = $c->unblessed_all_relateds;
208 my $restype = GetReserveStatus( $issue->{'itemnumber'} );
210 $issue->{'reserved'} = 1;
213 # Must be moved in a module if reused
214 my $charges = Koha::Account::Lines->search(
216 borrowernumber => $patron->borrowernumber,
217 amountoutstanding => { '>' => 0 },
218 debit_type_code => [ 'OVERDUE', 'LOST' ],
219 itemnumber => $issue->{itemnumber}
222 $issue->{charges} = $charges->total_outstanding;
224 my $rental_fines = Koha::Account::Lines->search(
226 borrowernumber => $patron->borrowernumber,
227 amountoutstanding => { '>' => 0 },
228 debit_type_code => { 'LIKE' => 'RENT_%' },
229 itemnumber => $issue->{itemnumber}
232 $issue->{rentalfines} = $rental_fines->total_outstanding;
234 # check if item is renewable
235 my ($status, $renewerror, $info) = CanBookBeRenewed( $patron, $c );
237 $issue->{'renewcount'},
238 $issue->{'renewsallowed'},
239 $issue->{'renewsleft'},
240 $issue->{'unseencount'},
241 $issue->{'unseenallowed'},
242 $issue->{'unseenleft'}
243 ) = GetRenewCount($patron, $c->item);
244 ( $issue->{'renewalfee'}, $issue->{'renewalitemtype'} ) = GetIssuingCharges( $issue->{'itemnumber'}, $borrowernumber );
245 $issue->{itemtype_object} = Koha::ItemTypes->find( $c->item->effective_itemtype );
246 if($status && C4::Context->preference("OpacRenewalAllowed")){
247 $are_renewable_items = 1;
248 $issue->{'status'} = $status;
251 $issue->{'renewed'} = $renewed{ $issue->{'itemnumber'} };
254 $issue->{'too_many'} = 1 if $renewerror eq 'too_many';
255 $issue->{'too_unseen'} = 1 if $renewerror eq 'too_unseen';
256 $issue->{'on_reserve'} = 1 if $renewerror eq 'on_reserve';
257 $issue->{'norenew_overdue'} = 1 if $renewerror eq 'overdue';
258 $issue->{'auto_renew'} = 1 if $renewerror eq 'auto_renew';
259 $issue->{'auto_too_soon'} = 1 if $renewerror eq 'auto_too_soon';
260 $issue->{'auto_too_late'} = 1 if $renewerror eq 'auto_too_late';
261 $issue->{'auto_too_much_oweing'} = 1 if $renewerror eq 'auto_too_much_oweing';
262 $issue->{'item_denied_renewal'} = 1 if $renewerror eq 'item_denied_renewal';
263 $issue->{'item_issued_to_other_patron'} = 1 if $renewerror eq 'item_issued_to_other_patron';
265 if ( $renewerror eq 'too_soon' ) {
266 $issue->{'too_soon'} = 1;
267 $issue->{'soonestrenewdate'} = $info->{soonest_renew_date};
271 if ( $c->is_overdue ) {
272 push @overdues, $issue;
274 $issue->{'overdue'} = 1;
277 $issue->{'issued'} = 1;
280 my $itemtype = $issue->{'itemtype'};
282 $issue->{'imageurl'} = getitemtypeimagelocation( 'opac', $itemtypes->{$itemtype}->{'imageurl'} );
283 $issue->{'description'} = $itemtypes->{$itemtype}->{'description'};
286 if ( C4::Context->preference('OpacStarRatings') eq 'all' ) {
287 my $ratings = Koha::Ratings->search({ biblionumber => $issue->{biblionumber} });
288 $issue->{ratings} = $ratings;
289 $issue->{my_rating} = $borrowernumber ? $ratings->search({ borrowernumber => $borrowernumber })->next : undef;
292 my $biblio_object = Koha::Biblios->find($issue->{biblionumber});
293 $issue->{biblio_object} = $biblio_object;
294 push @issuedat, $issue;
297 my $isbn = GetNormalizedISBN($issue->{'isbn'});
298 $issue->{normalized_isbn} = $isbn;
300 if ( C4::Context->preference('BakerTaylorEnabled')
301 || C4::Context->preference('SyndeticsEnabled')
302 || C4::Context->preference('SyndeticsCoverImages') )
304 my $marcrecord = $biblio_object->metadata->record( { embed_items => 1, opac => 1, patron => $patron, } );
305 $issue->{normalized_upc} = GetNormalizedUPC( $marcrecord, C4::Context->preference('marcflavour') );
306 $issue->{normalized_oclc} = GetNormalizedOCLCNumber( $marcrecord, C4::Context->preference('marcflavour') );
309 if ( C4::Context->preference('UseRecalls') ) {
310 my $maybe_recalls = Koha::Recalls->search({ biblio_id => $issue->{biblionumber}, item_id => [ undef, $issue->{itemnumber} ], completed => 0 });
311 while( my $recall = $maybe_recalls->next ) {
312 if ( $recall->checkout and $recall->checkout->issue_id == $issue->{issue_id} ) {
313 $issue->{recall} = 1;
320 my $overduesblockrenewing = C4::Context->preference('OverduesBlockRenewing');
321 $canrenew = 0 if ($overduesblockrenewing ne 'allow' and $overdues_count == $count) || !$are_renewable_items;
323 $template->param( ISSUES => \@issuedat );
324 $template->param( issues_count => $count );
325 $template->param( canrenew => $canrenew );
326 $template->param( OVERDUES => \@overdues );
327 $template->param( overdues_count => $overdues_count );
329 my $show_barcode = Koha::Patron::Attribute::Types->search( # FIXME we should not need this search
330 { code => ATTRIBUTE_SHOW_BARCODE } )->count;
332 my $patron_show_barcode = $patron->get_extended_attribute(ATTRIBUTE_SHOW_BARCODE);
333 undef $show_barcode if $patron_show_barcode and not $patron_show_barcode->attribute;
335 $template->param( show_barcode => 1 ) if $show_barcode;
337 # now the reserved items....
338 my $reserves = $patron->holds->filter_out_has_cancellation_requests;
341 RESERVES => $reserves,
342 showpriority => $show_priority,
345 if ( C4::Context->preference('UseRecalls') ) {
346 my $recalls = Koha::Recalls->search( { patron_id => $borrowernumber, completed => 0 } );
347 $template->param( RECALLS => $recalls );
350 if (C4::Context->preference('BakerTaylorEnabled')) {
352 BakerTaylorEnabled => 1,
353 BakerTaylorImageURL => &image_url(),
354 BakerTaylorLinkURL => &link_url(),
355 BakerTaylorBookstoreURL => C4::Context->preference('BakerTaylorBookstoreURL'),
359 if (C4::Context->preference("OPACAmazonCoverImages") or
360 C4::Context->preference("GoogleJackets") or
361 C4::Context->preference("BakerTaylorEnabled") or
362 C4::Context->preference("SyndeticsCoverImages") or
363 ( C4::Context->preference('OPACCustomCoverImages') and C4::Context->preference('CustomCoverImagesURL') )
365 $template->param(JacketImages=>1);
369 OverDriveCirculation => C4::Context->preference('OverDriveCirculation') || 0,
370 overdrive_error => scalar $query->param('overdrive_error') || undef,
371 overdrive_tab => scalar $query->param('overdrive_tab') || 0,
374 my $patron_messages = Koha::Patron::Messages->search(
376 borrowernumber => $borrowernumber,
381 if ( C4::Context->preference('AllowPatronToSetCheckoutsVisibilityForGuarantor')
382 || C4::Context->preference('AllowStaffToSetCheckoutsVisibilityForGuarantor') )
385 # Filter out guarantees that don't want guarantor to see checkouts
386 foreach my $gr ( $patron->guarantee_relationships->as_list ) {
387 my $g = $gr->guarantee;
388 push( @relatives, $g ) if $g->privacy_guarantor_checkouts;
390 $template->param( relatives => \@relatives );
393 if ( C4::Context->preference('AllowPatronToSetFinesVisibilityForGuarantor')
394 || C4::Context->preference('AllowStaffToSetFinesVisibilityForGuarantor') )
396 my @relatives_with_fines;
397 # Filter out guarantees that don't want guarantor to see checkouts
398 foreach my $gr ( $patron->guarantee_relationships->as_list ) {
399 my $g = $gr->guarantee;
400 push( @relatives_with_fines, $g ) if $g->privacy_guarantor_fines;
402 $template->param( relatives_with_fines => \@relatives_with_fines );
405 if ( C4::Context->preference("ArticleRequests") ) {
407 current_article_requests => [$patron->article_requests->filter_by_current->as_list],
412 patron_messages => $patron_messages,
413 opacnote => $borr->{opacnote},
414 patronupdate => $patronupdate,
415 OpacRenewalAllowed => C4::Context->preference("OpacRenewalAllowed"),
417 SuspendHoldsOpac => C4::Context->preference('SuspendHoldsOpac'),
418 AutoResumeSuspendedHolds => C4::Context->preference('AutoResumeSuspendedHolds'),
419 OpacHoldNotes => C4::Context->preference('OpacHoldNotes'),
420 failed_holds => scalar $query->param('failed_holds'),
423 # if not an empty string this indicates to return
424 # back to the opac-results page
425 my $search_query = $query->param('has-search-query');
429 print $query->redirect(
430 -uri => "/cgi-bin/koha/opac-search.pl?$search_query",
435 # if not an empty string this indicates to return
436 # back to the page we triggered the login from
437 my $return = $query->param('return');
439 my $uri_syspref = C4::Context->preference('OPACBaseURL');
441 my $uri = URI->new($uri_syspref);
442 if ( $uri->isa('URI::http') && $uri->host() ){
443 my $return_uri = URI->new($return);
444 $return_uri->scheme( $uri->scheme() );
445 $return_uri->authority( $uri->authority() );
446 print $query->redirect(
447 -uri => "$return_uri",
454 output_html_with_http_headers $query, $cookie, $template->output, undef, { force_no_caching => 1 };