Bug 32894: Remove wrong caching from Koha:: methods - simple
[koha.git] / opac / opac-user.pl
1 #!/usr/bin/perl
2
3 # This file is part of Koha.
4 # parts copyright 2010 BibLibre
5 #
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.
10 #
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.
15 #
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>.
18
19
20 use Modern::Perl;
21
22 use CGI qw ( -utf8 );
23 use URI;
24
25 use C4::Auth qw( get_template_and_user );
26 use C4::Koha qw(
27     getitemtypeimagelocation
28     GetNormalizedISBN
29     GetNormalizedUPC
30 );
31 use C4::Circulation qw( CanBookBeRenewed GetRenewCount GetIssuingCharges );
32 use C4::External::BakerTaylor qw( image_url link_url );
33 use C4::Reserves qw( GetReserveStatus );
34 use C4::Members;
35 use C4::Output qw( output_html_with_http_headers );
36 use Koha::Account::Lines;
37 use Koha::Biblios;
38 use Koha::Libraries;
39 use Koha::DateUtils qw( output_pref );
40 use Koha::Holds;
41 use Koha::Database;
42 use Koha::ItemTypes;
43 use Koha::Patron::Attribute::Types;
44 use Koha::Patrons;
45 use Koha::Patron::Messages;
46 use Koha::Patron::Discharge;
47 use Koha::Patrons;
48 use Koha::Ratings;
49 use Koha::Recalls;
50 use Koha::Token;
51
52 use constant ATTRIBUTE_SHOW_BARCODE => 'SHOW_BCODE';
53
54 use Scalar::Util qw( looks_like_number );
55 use Date::Calc qw( Date_to_Days Today );
56
57 my $query = CGI->new;
58
59 # CAS single logout handling
60 # Will print header and exit
61 if ( C4::Context->preference('casAuthentication') ) {
62     require C4::Auth_with_cas;
63     C4::Auth_with_cas::logout_if_required($query);
64 }
65
66 my ( $template, $borrowernumber, $cookie ) = get_template_and_user(
67     {
68         template_name   => "opac-user.tt",
69         query           => $query,
70         type            => "opac",
71     }
72 );
73
74 my %renewed = map { $_ => 1 } split( ':', $query->param('renewed') || '' );
75
76 my $show_priority;
77 for ( C4::Context->preference("OPACShowHoldQueueDetails") ) {
78     m/priority/ and $show_priority = 1;
79 }
80
81 my $patronupdate = $query->param('patronupdate');
82 my $canrenew = 1;
83
84 $template->param( shibbolethAuthentication => C4::Context->config('useshibboleth') );
85
86 # get borrower information ....
87 my $patron = Koha::Patrons->find( $borrowernumber );
88
89 if( $query->param('update_arc') && C4::Context->preference("AllowPatronToControlAutorenewal") ){
90     die "Wrong CSRF token"
91         unless Koha::Token->new->check_csrf({
92             session_id => scalar $query->cookie('CGISESSID'),
93             token  => scalar $query->param('csrf_token'),
94         });
95
96     my $autorenew_checkouts = $query->param('borrower_autorenew_checkouts');
97     $patron->autorenew_checkouts( $autorenew_checkouts )->store() if defined $autorenew_checkouts;
98 }
99
100 my $borr = $patron->unblessed;
101
102 my (  $today_year,   $today_month,   $today_day) = Today();
103 my ($warning_year, $warning_month, $warning_day) = split /-/, $borr->{'dateexpiry'};
104
105 my $debar = Koha::Patrons->find( $borrowernumber )->is_debarred;
106 my $userdebarred;
107
108 if ($debar) {
109     $userdebarred = 1;
110     $template->param( 'userdebarred' => $userdebarred );
111     if ( $debar ne "9999-12-31" ) {
112         $borr->{'userdebarreddate'} = $debar;
113     }
114     # FIXME looks like $available is not needed
115     # If a user is discharged they have a validated discharge available
116     my $available = Koha::Patron::Discharge::count({
117         borrowernumber => $borrowernumber,
118         validated      => 1,
119     });
120     $template->param( 'discharge_available' => $available && Koha::Patron::Discharge::is_discharged({borrowernumber => $borrowernumber}) );
121 }
122
123 if ( $userdebarred || $borr->{'gonenoaddress'} || $borr->{'lost'} ) {
124     $borr->{'flagged'} = 1;
125     $canrenew = 0;
126 }
127
128 my $amountoutstanding = $patron->account->balance;
129 my $no_renewal_amt = C4::Context->preference( 'OPACFineNoRenewals' );
130 $no_renewal_amt = undef unless looks_like_number( $no_renewal_amt );
131 my $amountoutstandingfornewal =
132   C4::Context->preference("OPACFineNoRenewalsIncludeCredit")
133   ? $amountoutstanding
134   : $patron->account->outstanding_debits->total_outstanding;
135
136 if (   C4::Context->preference('OpacRenewalAllowed')
137     && defined($no_renewal_amt)
138     && $amountoutstandingfornewal > $no_renewal_amt )
139 {
140     $borr->{'flagged'} = 1;
141     $canrenew = 0;
142     $template->param(
143         renewal_blocked_fines => $no_renewal_amt,
144         renewal_blocked_fines_amountoutstanding => $amountoutstandingfornewal,
145     );
146 }
147
148 my $maxoutstanding = C4::Context->preference('maxoutstanding');
149 if ( $amountoutstanding && ( $amountoutstanding > $maxoutstanding ) ){
150     $borr->{blockedonfines} = 1;
151 }
152
153 # Warningdate is the date that the warning starts appearing
154 if ( $borr->{'dateexpiry'} && C4::Context->preference('NotifyBorrowerDeparture') ) {
155     my $days_to_expiry = Date_to_Days( $warning_year, $warning_month, $warning_day ) - Date_to_Days( $today_year, $today_month, $today_day );
156     if ( $days_to_expiry < 0 ) {
157         #borrower card has expired, warn the borrower
158         $borr->{'warnexpired'} = $borr->{'dateexpiry'};
159     } elsif ( $days_to_expiry < C4::Context->preference('NotifyBorrowerDeparture') ) {
160         # borrower card soon to expire, warn the borrower
161         $borr->{'warndeparture'} = $borr->{dateexpiry};
162         if (C4::Context->preference('ReturnBeforeExpiry')){
163             $borr->{'returnbeforeexpiry'} = 1;
164         }
165     }
166 }
167
168 my $saving_display = C4::Context->preference('OPACShowSavings');
169 if ( $saving_display =~ /user/ ) {
170     $template->param( savings => $patron->get_savings );
171 }
172
173 # pass on any renew errors to the template for displaying
174 my $renew_error = $query->param('renew_error');
175
176 $template->param(
177                     amountoutstanding => $amountoutstanding,
178                     borrowernumber    => $borrowernumber,
179                     patron_flagged    => $borr->{flagged},
180                     OPACMySummaryHTML => (C4::Context->preference("OPACMySummaryHTML")) ? 1 : 0,
181                     surname           => $borr->{surname},
182                     RENEW_ERROR       => $renew_error,
183                     borrower          => $borr,
184                     csrf_token             => Koha::Token->new->generate_csrf({
185                         session_id => scalar $query->cookie('CGISESSID'),
186                     }),
187                 );
188
189 #get issued items ....
190
191 my $count          = 0;
192 my $overdues_count = 0;
193 my @overdues;
194 my @issuedat;
195 my $itemtypes = { map { $_->{itemtype} => $_ } @{ Koha::ItemTypes->search_with_localization->unblessed } };
196 my $pending_checkouts = $patron->pending_checkouts->search(
197     {},
198     {
199         order_by => [ { -desc => 'date_due' }, { -asc => 'issue_id' } ],
200         prefetch => 'item'
201     }
202 );
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;
207         # check for reserves
208         my $restype = GetReserveStatus( $issue->{'itemnumber'} );
209         if ( $restype ) {
210             $issue->{'reserved'} = 1;
211         }
212
213         # Must be moved in a module if reused
214         my $charges = Koha::Account::Lines->search(
215             {
216                 borrowernumber    => $patron->borrowernumber,
217                 amountoutstanding => { '>' => 0 },
218                 debit_type_code   => [ 'OVERDUE', 'LOST' ],
219                 itemnumber        => $issue->{itemnumber}
220             },
221         );
222         $issue->{charges} = $charges->total_outstanding;
223
224         my $rental_fines = Koha::Account::Lines->search(
225             {
226                 borrowernumber    => $patron->borrowernumber,
227                 amountoutstanding => { '>' => 0 },
228                 debit_type_code   => { 'LIKE' => 'RENT_%' },
229                 itemnumber        => $issue->{itemnumber}
230             }
231         );
232         $issue->{rentalfines} = $rental_fines->total_outstanding;
233
234         # check if item is renewable
235         my ($status, $renewerror, $info) = CanBookBeRenewed( $patron, $c );
236         (
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;
249         }
250
251         $issue->{'renewed'} = $renewed{ $issue->{'itemnumber'} };
252
253         if ($renewerror) {
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';
264
265             if ( $renewerror eq 'too_soon' ) {
266                 $issue->{'too_soon'}         = 1;
267                 $issue->{'soonestrenewdate'} = $info->{soonest_renew_date};
268             }
269         }
270
271         if ( $c->is_overdue ) {
272             push @overdues, $issue;
273             $overdues_count++;
274             $issue->{'overdue'} = 1;
275         }
276         else {
277             $issue->{'issued'} = 1;
278         }
279         # imageurl:
280         my $itemtype = $issue->{'itemtype'};
281         if ( $itemtype ) {
282             $issue->{'imageurl'}    = getitemtypeimagelocation( 'opac', $itemtypes->{$itemtype}->{'imageurl'} );
283             $issue->{'description'} = $itemtypes->{$itemtype}->{'description'};
284         }
285
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;
290         }
291
292         my $biblio_object = Koha::Biblios->find($issue->{biblionumber});
293         $issue->{biblio_object} = $biblio_object;
294         push @issuedat, $issue;
295         $count++;
296
297         my $isbn = GetNormalizedISBN($issue->{'isbn'});
298         $issue->{normalized_isbn} = $isbn;
299         my $marcrecord = $biblio_object->metadata->record({ embed_items => 1, opac => 1, patron => $patron,});
300         $issue->{normalized_upc} = GetNormalizedUPC( $marcrecord, C4::Context->preference('marcflavour') );
301
302                 # My Summary HTML
303                 if (my $my_summary_html = C4::Context->preference('OPACMySummaryHTML')){
304                     $issue->{author} ? $my_summary_html =~ s/{AUTHOR}/$issue->{author}/g : $my_summary_html =~ s/{AUTHOR}//g;
305                     $issue->{title} =~ s/\/+$//; # remove trailing slash
306                     $issue->{title} =~ s/\s+$//; # remove trailing space
307                     $issue->{title} ? $my_summary_html =~ s/{TITLE}/$issue->{title}/g : $my_summary_html =~ s/{TITLE}//g;
308                     $issue->{isbn} ? $my_summary_html =~ s/{ISBN}/$isbn/g : $my_summary_html =~ s/{ISBN}//g;
309                     $issue->{biblionumber} ? $my_summary_html =~ s/{BIBLIONUMBER}/$issue->{biblionumber}/g : $my_summary_html =~ s/{BIBLIONUMBER}//g;
310                     $issue->{MySummaryHTML} = $my_summary_html;
311                 }
312
313         if ( C4::Context->preference('UseRecalls') ) {
314             my $maybe_recalls = Koha::Recalls->search({ biblio_id => $issue->{biblionumber}, item_id => [ undef, $issue->{itemnumber} ], completed => 0 });
315             while( my $recall = $maybe_recalls->next ) {
316                 if ( $recall->checkout and $recall->checkout->issue_id == $issue->{issue_id} ) {
317                     $issue->{recall} = 1;
318                     last;
319                 }
320             }
321         }
322     }
323 }
324 my $overduesblockrenewing = C4::Context->preference('OverduesBlockRenewing');
325 $canrenew = 0 if ($overduesblockrenewing ne 'allow' and $overdues_count == $count) || !$are_renewable_items;
326
327 $template->param( ISSUES       => \@issuedat );
328 $template->param( issues_count => $count );
329 $template->param( canrenew     => $canrenew );
330 $template->param( OVERDUES       => \@overdues );
331 $template->param( overdues_count => $overdues_count );
332
333 my $show_barcode = Koha::Patron::Attribute::Types->search( # FIXME we should not need this search
334     { code => ATTRIBUTE_SHOW_BARCODE } )->count;
335 if ($show_barcode) {
336     my $patron_show_barcode = $patron->get_extended_attribute(ATTRIBUTE_SHOW_BARCODE);
337     undef $show_barcode if $patron_show_barcode and not $patron_show_barcode->attribute;
338 }
339 $template->param( show_barcode => 1 ) if $show_barcode;
340
341 # now the reserved items....
342 my $reserves = $patron->holds->filter_out_has_cancellation_requests;
343
344 $template->param(
345     RESERVES       => $reserves,
346     showpriority   => $show_priority,
347 );
348
349 if ( C4::Context->preference('UseRecalls') ) {
350     my $recalls = Koha::Recalls->search( { patron_id => $borrowernumber, completed => 0 } );
351     $template->param( RECALLS => $recalls );
352 }
353
354 if (C4::Context->preference('BakerTaylorEnabled')) {
355     $template->param(
356         BakerTaylorEnabled  => 1,
357         BakerTaylorImageURL => &image_url(),
358         BakerTaylorLinkURL  => &link_url(),
359         BakerTaylorBookstoreURL => C4::Context->preference('BakerTaylorBookstoreURL'),
360     );
361 }
362
363 if (C4::Context->preference("OPACAmazonCoverImages") or 
364     C4::Context->preference("GoogleJackets") or
365     C4::Context->preference("BakerTaylorEnabled") or
366     C4::Context->preference("SyndeticsCoverImages") or
367     ( C4::Context->preference('OPACCustomCoverImages') and C4::Context->preference('CustomCoverImagesURL') )
368 ) {
369         $template->param(JacketImages=>1);
370 }
371
372 $template->param(
373     OverDriveCirculation => C4::Context->preference('OverDriveCirculation') || 0,
374     overdrive_error      => scalar $query->param('overdrive_error') || undef,
375     overdrive_tab        => scalar $query->param('overdrive_tab') || 0,
376 );
377
378 my $patron_messages = Koha::Patron::Messages->search(
379     {
380         borrowernumber => $borrowernumber,
381         message_type => 'B',
382     }
383 );
384
385 if (   C4::Context->preference('AllowPatronToSetCheckoutsVisibilityForGuarantor')
386     || C4::Context->preference('AllowStaffToSetCheckoutsVisibilityForGuarantor') )
387 {
388     my @relatives;
389     # Filter out guarantees that don't want guarantor to see checkouts
390     foreach my $gr ( $patron->guarantee_relationships->as_list ) {
391         my $g = $gr->guarantee;
392         push( @relatives, $g ) if $g->privacy_guarantor_checkouts;
393     }
394     $template->param( relatives => \@relatives );
395 }
396
397 if (   C4::Context->preference('AllowPatronToSetFinesVisibilityForGuarantor')
398     || C4::Context->preference('AllowStaffToSetFinesVisibilityForGuarantor') )
399 {
400     my @relatives_with_fines;
401     # Filter out guarantees that don't want guarantor to see checkouts
402     foreach my $gr ( $patron->guarantee_relationships->as_list ) {
403         my $g = $gr->guarantee;
404         push( @relatives_with_fines, $g ) if $g->privacy_guarantor_fines;
405     }
406     $template->param( relatives_with_fines => \@relatives_with_fines );
407 }
408
409 if ( C4::Context->preference("ArticleRequests") ) {
410     $template->param(
411         current_article_requests => [$patron->article_requests->filter_by_current->as_list],
412     );
413 }
414
415 $template->param(
416     patron_messages          => $patron_messages,
417     opacnote                 => $borr->{opacnote},
418     patronupdate             => $patronupdate,
419     OpacRenewalAllowed       => C4::Context->preference("OpacRenewalAllowed"),
420     userview                 => 1,
421     SuspendHoldsOpac         => C4::Context->preference('SuspendHoldsOpac'),
422     AutoResumeSuspendedHolds => C4::Context->preference('AutoResumeSuspendedHolds'),
423     OpacHoldNotes            => C4::Context->preference('OpacHoldNotes'),
424     failed_holds             => scalar $query->param('failed_holds'),
425 );
426
427 # if not an empty string this indicates to return
428 # back to the opac-results page
429 my $search_query = $query->param('has-search-query');
430
431 if ($search_query) {
432
433     print $query->redirect(
434         -uri    => "/cgi-bin/koha/opac-search.pl?$search_query",
435         -cookie => $cookie,
436     );
437 }
438
439 # if not an empty string this indicates to return
440 # back to the page we triggered the login from
441 my $return = $query->param('return');
442 if ( $return ) {
443     my $uri_syspref = C4::Context->preference('OPACBaseURL');
444     if ( $uri_syspref ){
445         my $uri = URI->new($uri_syspref);
446         if ( $uri->isa('URI::http') && $uri->host() ){
447             my $return_uri = URI->new($return);
448             $return_uri->scheme( $uri->scheme() );
449             $return_uri->authority( $uri->authority() );
450             print $query->redirect(
451                 -uri    => "$return_uri",
452                 -cookie => $cookie,
453             );
454         }
455     }
456 }
457
458 output_html_with_http_headers $query, $cookie, $template->output, undef, { force_no_caching => 1 };