Bug 28591: Don't pass debug to get_template_and_user
[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
24 use C4::Auth;
25 use C4::Koha;
26 use C4::Circulation;
27 use C4::External::BakerTaylor qw( image_url link_url );
28 use C4::Reserves;
29 use C4::Members;
30 use C4::Output;
31 use C4::Biblio;
32 use C4::Items;
33 use C4::Letters;
34 use Koha::Account::Lines;
35 use Koha::Biblios;
36 use Koha::Libraries;
37 use Koha::DateUtils;
38 use Koha::Holds;
39 use Koha::Database;
40 use Koha::ItemTypes;
41 use Koha::Patron::Attribute::Types;
42 use Koha::Patrons;
43 use Koha::Patron::Messages;
44 use Koha::Patron::Discharge;
45 use Koha::Patrons;
46 use Koha::Ratings;
47 use Koha::Token;
48
49 use constant ATTRIBUTE_SHOW_BARCODE => 'SHOW_BCODE';
50
51 use Scalar::Util qw(looks_like_number);
52 use Date::Calc qw(
53   Today
54   Add_Delta_Days
55   Date_to_Days
56 );
57
58 my $query = CGI->new;
59
60 # CAS single logout handling
61 # Will print header and exit
62 C4::Context->preference('casAuthentication') and C4::Auth_with_cas::logout_if_required($query);
63
64 my ( $template, $borrowernumber, $cookie ) = get_template_and_user(
65     {
66         template_name   => "opac-user.tt",
67         query           => $query,
68         type            => "opac",
69     }
70 );
71
72 my %renewed = map { $_ => 1 } split( ':', $query->param('renewed') || '' );
73
74 my $show_priority;
75 for ( C4::Context->preference("OPACShowHoldQueueDetails") ) {
76     m/priority/ and $show_priority = 1;
77 }
78
79 my $patronupdate = $query->param('patronupdate');
80 my $canrenew = 1;
81
82 $template->param( shibbolethAuthentication => C4::Context->config('useshibboleth') );
83
84 # get borrower information ....
85 my $patron = Koha::Patrons->find( $borrowernumber );
86
87 if( $query->param('update_arc') && C4::Context->preference("AllowPatronToControlAutorenewal") ){
88     die "Wrong CSRF token"
89         unless Koha::Token->new->check_csrf({
90             session_id => scalar $query->cookie('CGISESSID'),
91             token  => scalar $query->param('csrf_token'),
92         });
93
94     my $autorenew_checkouts = $query->param('borrower_autorenew_checkouts');
95     $patron->autorenew_checkouts( $autorenew_checkouts )->store() if defined $autorenew_checkouts;
96 }
97
98 my $borr = $patron->unblessed;
99 # unblessed is a hash vs. object/undef. Hence the use of curly braces here.
100 my $borcat = $borr ? $borr->{categorycode} : q{};
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 # pass on any renew errors to the template for displaying
169 my $renew_error = $query->param('renew_error');
170
171 $template->param(
172                     amountoutstanding => $amountoutstanding,
173                     borrowernumber    => $borrowernumber,
174                     patron_flagged    => $borr->{flagged},
175                     OPACMySummaryHTML => (C4::Context->preference("OPACMySummaryHTML")) ? 1 : 0,
176                     surname           => $borr->{surname},
177                     RENEW_ERROR       => $renew_error,
178                     borrower          => $borr,
179                     csrf_token             => Koha::Token->new->generate_csrf({
180                         session_id => scalar $query->cookie('CGISESSID'),
181                     }),
182                 );
183
184 #get issued items ....
185
186 my $count          = 0;
187 my $overdues_count = 0;
188 my @overdues;
189 my @issuedat;
190 my $itemtypes = { map { $_->{itemtype} => $_ } @{ Koha::ItemTypes->search_with_localization->unblessed } };
191 my $pending_checkouts = $patron->pending_checkouts->search({}, { order_by => [ { -desc => 'date_due' }, { -asc => 'issue_id' } ] });
192 my $are_renewable_items = 0;
193 if ( $pending_checkouts->count ) { # Useless test
194     while ( my $c = $pending_checkouts->next ) {
195         my $issue = $c->unblessed_all_relateds;
196         # check for reserves
197         my $restype = GetReserveStatus( $issue->{'itemnumber'} );
198         if ( $restype ) {
199             $issue->{'reserved'} = 1;
200         }
201
202         # Must be moved in a module if reused
203         my $charges = Koha::Account::Lines->search(
204             {
205                 borrowernumber    => $patron->borrowernumber,
206                 amountoutstanding => { '>' => 0 },
207                 debit_type_code   => [ 'OVERDUE', 'LOST' ],
208                 itemnumber        => $issue->{itemnumber}
209             },
210         );
211         $issue->{charges} = $charges->total_outstanding;
212
213         my $rental_fines = Koha::Account::Lines->search(
214             {
215                 borrowernumber    => $patron->borrowernumber,
216                 amountoutstanding => { '>' => 0 },
217                 debit_type_code   => { 'LIKE' => 'RENT_%' },
218                 itemnumber        => $issue->{itemnumber}
219             }
220         );
221         $issue->{rentalfines} = $rental_fines->total_outstanding;
222
223         # check if item is renewable
224         my ($status,$renewerror) = CanBookBeRenewed( $borrowernumber, $issue->{'itemnumber'} );
225         (
226             $issue->{'renewcount'},
227             $issue->{'renewsallowed'},
228             $issue->{'renewsleft'},
229             $issue->{'unseencount'},
230             $issue->{'unseenallowed'},
231             $issue->{'unseenleft'}
232         ) = GetRenewCount($borrowernumber, $issue->{'itemnumber'});
233         ( $issue->{'renewalfee'}, $issue->{'renewalitemtype'} ) = GetIssuingCharges( $issue->{'itemnumber'}, $borrowernumber );
234         $issue->{itemtype_object} = Koha::ItemTypes->find( Koha::Items->find( $issue->{itemnumber} )->effective_itemtype );
235         if($status && C4::Context->preference("OpacRenewalAllowed")){
236             $are_renewable_items = 1;
237             $issue->{'status'} = $status;
238         }
239
240         $issue->{'renewed'} = $renewed{ $issue->{'itemnumber'} };
241
242         if ($renewerror) {
243             $issue->{'too_many'}       = 1 if $renewerror eq 'too_many';
244             $issue->{'too_unseen'}     = 1 if $renewerror eq 'too_unseen';
245             $issue->{'on_reserve'}     = 1 if $renewerror eq 'on_reserve';
246             $issue->{'norenew_overdue'} = 1 if $renewerror eq 'overdue';
247             $issue->{'auto_renew'}     = 1 if $renewerror eq 'auto_renew';
248             $issue->{'auto_too_soon'}  = 1 if $renewerror eq 'auto_too_soon';
249             $issue->{'auto_too_late'}  = 1 if $renewerror eq 'auto_too_late';
250             $issue->{'auto_too_much_oweing'}  = 1 if $renewerror eq 'auto_too_much_oweing';
251             $issue->{'item_denied_renewal'}  = 1 if $renewerror eq 'item_denied_renewal';
252
253             if ( $renewerror eq 'too_soon' ) {
254                 $issue->{'too_soon'}         = 1;
255                 $issue->{'soonestrenewdate'} = output_pref(
256                     C4::Circulation::GetSoonestRenewDate(
257                         $issue->{borrowernumber},
258                         $issue->{itemnumber}
259                     )
260                 );
261             }
262         }
263
264         if ( $c->is_overdue ) {
265             push @overdues, $issue;
266             $overdues_count++;
267             $issue->{'overdue'} = 1;
268         }
269         else {
270             $issue->{'issued'} = 1;
271         }
272         # imageurl:
273         my $itemtype = $issue->{'itemtype'};
274         if ( $itemtype ) {
275             $issue->{'imageurl'}    = getitemtypeimagelocation( 'opac', $itemtypes->{$itemtype}->{'imageurl'} );
276             $issue->{'description'} = $itemtypes->{$itemtype}->{'description'};
277         }
278
279         if ( C4::Context->preference('OpacStarRatings') eq 'all' ) {
280             my $ratings = Koha::Ratings->search({ biblionumber => $issue->{biblionumber} });
281             $issue->{ratings} = $ratings;
282             $issue->{my_rating} = $borrowernumber ? $ratings->search({ borrowernumber => $borrowernumber })->next : undef;
283         }
284
285         $issue->{biblio_object} = Koha::Biblios->find($issue->{biblionumber});
286         push @issuedat, $issue;
287         $count++;
288
289         my $isbn = GetNormalizedISBN($issue->{'isbn'});
290         $issue->{normalized_isbn} = $isbn;
291         my $marcrecord = GetMarcBiblio({
292             biblionumber => $issue->{'biblionumber'},
293             embed_items  => 1,
294             opac         => 1,
295             borcat       => $borcat });
296         $issue->{normalized_upc} = GetNormalizedUPC( $marcrecord, C4::Context->preference('marcflavour') );
297
298                 # My Summary HTML
299                 if (my $my_summary_html = C4::Context->preference('OPACMySummaryHTML')){
300                     $issue->{author} ? $my_summary_html =~ s/{AUTHOR}/$issue->{author}/g : $my_summary_html =~ s/{AUTHOR}//g;
301                     $issue->{title} =~ s/\/+$//; # remove trailing slash
302                     $issue->{title} =~ s/\s+$//; # remove trailing space
303                     $issue->{title} ? $my_summary_html =~ s/{TITLE}/$issue->{title}/g : $my_summary_html =~ s/{TITLE}//g;
304                     $issue->{isbn} ? $my_summary_html =~ s/{ISBN}/$isbn/g : $my_summary_html =~ s/{ISBN}//g;
305                     $issue->{biblionumber} ? $my_summary_html =~ s/{BIBLIONUMBER}/$issue->{biblionumber}/g : $my_summary_html =~ s/{BIBLIONUMBER}//g;
306                     $issue->{MySummaryHTML} = $my_summary_html;
307                 }
308     }
309 }
310 my $overduesblockrenewing = C4::Context->preference('OverduesBlockRenewing');
311 $canrenew = 0 if ($overduesblockrenewing ne 'allow' and $overdues_count == $count) || !$are_renewable_items;
312
313 $template->param( ISSUES       => \@issuedat );
314 $template->param( issues_count => $count );
315 $template->param( canrenew     => $canrenew );
316 $template->param( OVERDUES       => \@overdues );
317 $template->param( overdues_count => $overdues_count );
318
319 my $show_barcode = Koha::Patron::Attribute::Types->search( # FIXME we should not need this search
320     { code => ATTRIBUTE_SHOW_BARCODE } )->count;
321 if ($show_barcode) {
322     my $patron_show_barcode = $patron->get_extended_attribute(ATTRIBUTE_SHOW_BARCODE);
323     undef $show_barcode if $patron_show_barcode and not $patron_show_barcode->attribute;
324 }
325 $template->param( show_barcode => 1 ) if $show_barcode;
326
327 # now the reserved items....
328 my $reserves = Koha::Holds->search( { borrowernumber => $borrowernumber } );
329
330 $template->param(
331     RESERVES       => $reserves,
332     showpriority   => $show_priority,
333 );
334
335 if (C4::Context->preference('BakerTaylorEnabled')) {
336     $template->param(
337         BakerTaylorEnabled  => 1,
338         BakerTaylorImageURL => &image_url(),
339         BakerTaylorLinkURL  => &link_url(),
340         BakerTaylorBookstoreURL => C4::Context->preference('BakerTaylorBookstoreURL'),
341     );
342 }
343
344 if (C4::Context->preference("OPACAmazonCoverImages") or 
345     C4::Context->preference("GoogleJackets") or
346     C4::Context->preference("BakerTaylorEnabled") or
347     C4::Context->preference("SyndeticsCoverImages") or
348     ( C4::Context->preference('OPACCustomCoverImages') and C4::Context->preference('CustomCoverImagesURL') )
349 ) {
350         $template->param(JacketImages=>1);
351 }
352
353 $template->param(
354     OverDriveCirculation => C4::Context->preference('OverDriveCirculation') || 0,
355     overdrive_error      => scalar $query->param('overdrive_error') || undef,
356     overdrive_tab        => scalar $query->param('overdrive_tab') || 0,
357     RecordedBooksCirculation => C4::Context->preference('RecordedBooksClientSecret') && C4::Context->preference('RecordedBooksLibraryID'),
358 );
359
360 my $patron_messages = Koha::Patron::Messages->search(
361     {
362         borrowernumber => $borrowernumber,
363         message_type => 'B',
364     }
365 );
366
367 if (   C4::Context->preference('AllowPatronToSetCheckoutsVisibilityForGuarantor')
368     || C4::Context->preference('AllowStaffToSetCheckoutsVisibilityForGuarantor') )
369 {
370     my @relatives;
371     # Filter out guarantees that don't want guarantor to see checkouts
372     foreach my $gr ( $patron->guarantee_relationships() ) {
373         my $g = $gr->guarantee;
374         push( @relatives, $g ) if $g->privacy_guarantor_checkouts;
375     }
376     $template->param( relatives => \@relatives );
377 }
378
379 if (   C4::Context->preference('AllowPatronToSetFinesVisibilityForGuarantor')
380     || C4::Context->preference('AllowStaffToSetFinesVisibilityForGuarantor') )
381 {
382     my @relatives_with_fines;
383     # Filter out guarantees that don't want guarantor to see checkouts
384     foreach my $gr ( $patron->guarantee_relationships() ) {
385         my $g = $gr->guarantee;
386         push( @relatives_with_fines, $g ) if $g->privacy_guarantor_fines;
387     }
388     $template->param( relatives_with_fines => \@relatives_with_fines );
389 }
390
391
392 $template->param(
393     patron_messages          => $patron_messages,
394     opacnote                 => $borr->{opacnote},
395     patronupdate             => $patronupdate,
396     OpacRenewalAllowed       => C4::Context->preference("OpacRenewalAllowed"),
397     userview                 => 1,
398     SuspendHoldsOpac         => C4::Context->preference('SuspendHoldsOpac'),
399     AutoResumeSuspendedHolds => C4::Context->preference('AutoResumeSuspendedHolds'),
400     OpacHoldNotes            => C4::Context->preference('OpacHoldNotes'),
401     failed_holds             => scalar $query->param('failed_holds'),
402 );
403
404 # if not an empty string this indicates to return
405 # back to the opac-results page
406 my $search_query = $query->param('has-search-query');
407
408 if ($search_query) {
409
410     print $query->redirect(
411         -uri    => "/cgi-bin/koha/opac-search.pl?$search_query",
412         -cookie => $cookie,
413     );
414 }
415
416 output_html_with_http_headers $query, $cookie, $template->output, undef, { force_no_caching => 1 };