Bug 18433: Remember item search results selected rows in session storage
[koha.git] / opac / opac-user.pl
blob6c55ad2965438f756f4773f7d4767a81dc5cd043
1 #!/usr/bin/perl
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>.
20 use Modern::Perl;
22 use CGI qw ( -utf8 );
24 use C4::Auth;
25 use C4::Koha;
26 use C4::Circulation;
27 use C4::Reserves;
28 use C4::Members;
29 use C4::Members::AttributeTypes;
30 use C4::Members::Attributes qw/GetBorrowerAttributeValue/;
31 use C4::Output;
32 use C4::Biblio;
33 use C4::Items;
34 use C4::Letters;
35 use Koha::Account::Lines;
36 use Koha::Biblios;
37 use Koha::Libraries;
38 use Koha::DateUtils;
39 use Koha::Holds;
40 use Koha::Database;
41 use Koha::ItemTypes;
42 use Koha::Patron::Attribute::Types;
43 use Koha::Patrons;
44 use Koha::Patron::Messages;
45 use Koha::Patron::Discharge;
46 use Koha::Patrons;
48 use constant ATTRIBUTE_SHOW_BARCODE => 'SHOW_BCODE';
50 use Scalar::Util qw(looks_like_number);
51 use Date::Calc qw(
52 Today
53 Add_Delta_Days
54 Date_to_Days
57 my $query = new CGI;
59 BEGIN {
60 if (C4::Context->preference('BakerTaylorEnabled')) {
61 require C4::External::BakerTaylor;
62 import C4::External::BakerTaylor qw(&image_url &link_url);
66 # CAS single logout handling
67 # Will print header and exit
68 C4::Context->preference('casAuthentication') and C4::Auth_with_cas::logout_if_required($query);
70 my ( $template, $borrowernumber, $cookie ) = get_template_and_user(
72 template_name => "opac-user.tt",
73 query => $query,
74 type => "opac",
75 authnotrequired => 0,
76 debug => 1,
80 my %renewed = map { $_ => 1 } split( ':', $query->param('renewed') || '' );
82 my $show_priority;
83 for ( C4::Context->preference("OPACShowHoldQueueDetails") ) {
84 m/priority/ and $show_priority = 1;
87 my $patronupdate = $query->param('patronupdate');
88 my $canrenew = 1;
90 $template->param( shibbolethAuthentication => C4::Context->config('useshibboleth') );
92 # get borrower information ....
93 my $patron = Koha::Patrons->find( $borrowernumber );
94 my $borr = $patron->unblessed;
95 # unblessed is a hash vs. object/undef. Hence the use of curly braces here.
96 my $borcat = $borr ? $borr->{categorycode} : q{};
98 my ( $today_year, $today_month, $today_day) = Today();
99 my ($warning_year, $warning_month, $warning_day) = split /-/, $borr->{'dateexpiry'};
101 my $debar = Koha::Patrons->find( $borrowernumber )->is_debarred;
102 my $userdebarred;
104 if ($debar) {
105 $userdebarred = 1;
106 $template->param( 'userdebarred' => $userdebarred );
107 if ( $debar ne "9999-12-31" ) {
108 $borr->{'userdebarreddate'} = $debar;
110 # FIXME looks like $available is not needed
111 # If a user is discharged they have a validated discharge available
112 my $available = Koha::Patron::Discharge::count({
113 borrowernumber => $borrowernumber,
114 validated => 1,
116 $template->param( 'discharge_available' => $available && Koha::Patron::Discharge::is_discharged({borrowernumber => $borrowernumber}) );
119 if ( $userdebarred || $borr->{'gonenoaddress'} || $borr->{'lost'} ) {
120 $borr->{'flagged'} = 1;
121 $canrenew = 0;
124 my $amountoutstanding = $patron->account->balance;
125 my $no_renewal_amt = C4::Context->preference( 'OPACFineNoRenewals' );
126 $no_renewal_amt = undef unless looks_like_number( $no_renewal_amt );
127 my $amountoutstandingfornewal =
128 C4::Context->preference("OPACFineNoRenewalsIncludeCredit")
129 ? $amountoutstanding
130 : $patron->account->outstanding_debits->total_outstanding;
132 if ( C4::Context->preference('OpacRenewalAllowed')
133 && defined($no_renewal_amt)
134 && $amountoutstandingfornewal > $no_renewal_amt )
136 $borr->{'flagged'} = 1;
137 $canrenew = 0;
138 $template->param(
139 renewal_blocked_fines => $no_renewal_amt,
140 renewal_blocked_fines_amountoutstanding => $amountoutstandingfornewal,
144 # Warningdate is the date that the warning starts appearing
145 if ( $borr->{'dateexpiry'} && C4::Context->preference('NotifyBorrowerDeparture') ) {
146 my $days_to_expiry = Date_to_Days( $warning_year, $warning_month, $warning_day ) - Date_to_Days( $today_year, $today_month, $today_day );
147 if ( $days_to_expiry < 0 ) {
148 #borrower card has expired, warn the borrower
149 $borr->{'warnexpired'} = $borr->{'dateexpiry'};
150 } elsif ( $days_to_expiry < C4::Context->preference('NotifyBorrowerDeparture') ) {
151 # borrower card soon to expire, warn the borrower
152 $borr->{'warndeparture'} = $borr->{dateexpiry};
153 if (C4::Context->preference('ReturnBeforeExpiry')){
154 $borr->{'returnbeforeexpiry'} = 1;
159 # pass on any renew errors to the template for displaying
160 my $renew_error = $query->param('renew_error');
162 $template->param(
163 amountoutstanding => $amountoutstanding,
164 borrowernumber => $borrowernumber,
165 patron_flagged => $borr->{flagged},
166 OPACMySummaryHTML => (C4::Context->preference("OPACMySummaryHTML")) ? 1 : 0,
167 surname => $borr->{surname},
168 RENEW_ERROR => $renew_error,
169 borrower => $borr,
172 #get issued items ....
174 my $count = 0;
175 my $overdues_count = 0;
176 my @overdues;
177 my @issuedat;
178 my $itemtypes = { map { $_->{itemtype} => $_ } @{ Koha::ItemTypes->search_with_localization->unblessed } };
179 my $pending_checkouts = $patron->pending_checkouts->search({}, { order_by => [ { -desc => 'date_due' }, { -asc => 'issue_id' } ] });
180 if ( $pending_checkouts->count ) { # Useless test
181 while ( my $c = $pending_checkouts->next ) {
182 my $issue = $c->unblessed_all_relateds;
183 # check for reserves
184 my $restype = GetReserveStatus( $issue->{'itemnumber'} );
185 if ( $restype ) {
186 $issue->{'reserved'} = 1;
189 # Must be moved in a module if reused
190 my $charges = Koha::Account::Lines->search(
192 borrowernumber => $patron->borrowernumber,
193 amountoutstanding => { '>' => 0 },
194 debit_type_code => [ 'OVERDUE', 'LOST' ],
195 itemnumber => $issue->{itemnumber}
198 $issue->{charges} = $charges->total_outstanding;
200 my $rental_fines = Koha::Account::Lines->search(
202 borrowernumber => $patron->borrowernumber,
203 amountoutstanding => { '>' => 0 },
204 debit_type_code => { 'LIKE' => 'RENT_%' },
205 itemnumber => $issue->{itemnumber}
208 $issue->{rentalfines} = $rental_fines->total_outstanding;
210 # check if item is renewable
211 my ($status,$renewerror) = CanBookBeRenewed( $borrowernumber, $issue->{'itemnumber'} );
212 ($issue->{'renewcount'},$issue->{'renewsallowed'},$issue->{'renewsleft'}) = GetRenewCount($borrowernumber, $issue->{'itemnumber'});
213 ( $issue->{'renewalfee'}, $issue->{'renewalitemtype'} ) = GetIssuingCharges( $issue->{'itemnumber'}, $borrowernumber );
214 $issue->{itemtype_object} = Koha::ItemTypes->find( Koha::Items->find( $issue->{itemnumber} )->effective_itemtype );
215 if($status && C4::Context->preference("OpacRenewalAllowed")){
216 $issue->{'status'} = $status;
219 $issue->{'renewed'} = $renewed{ $issue->{'itemnumber'} };
221 if ($renewerror) {
222 $issue->{'too_many'} = 1 if $renewerror eq 'too_many';
223 $issue->{'on_reserve'} = 1 if $renewerror eq 'on_reserve';
224 $issue->{'norenew_overdue'} = 1 if $renewerror eq 'overdue';
225 $issue->{'auto_renew'} = 1 if $renewerror eq 'auto_renew';
226 $issue->{'auto_too_soon'} = 1 if $renewerror eq 'auto_too_soon';
227 $issue->{'auto_too_late'} = 1 if $renewerror eq 'auto_too_late';
228 $issue->{'auto_too_much_oweing'} = 1 if $renewerror eq 'auto_too_much_oweing';
229 $issue->{'item_denied_renewal'} = 1 if $renewerror eq 'item_denied_renewal';
231 if ( $renewerror eq 'too_soon' ) {
232 $issue->{'too_soon'} = 1;
233 $issue->{'soonestrenewdate'} = output_pref(
234 C4::Circulation::GetSoonestRenewDate(
235 $issue->{borrowernumber},
236 $issue->{itemnumber}
242 if ( $c->is_overdue ) {
243 push @overdues, $issue;
244 $overdues_count++;
245 $issue->{'overdue'} = 1;
247 else {
248 $issue->{'issued'} = 1;
250 # imageurl:
251 my $itemtype = $issue->{'itemtype'};
252 if ( $itemtype ) {
253 $issue->{'imageurl'} = getitemtypeimagelocation( 'opac', $itemtypes->{$itemtype}->{'imageurl'} );
254 $issue->{'description'} = $itemtypes->{$itemtype}->{'description'};
257 $issue->{biblio_object} = Koha::Biblios->find($issue->{biblionumber});
258 push @issuedat, $issue;
259 $count++;
261 my $isbn = GetNormalizedISBN($issue->{'isbn'});
262 $issue->{normalized_isbn} = $isbn;
263 my $marcrecord = GetMarcBiblio({
264 biblionumber => $issue->{'biblionumber'},
265 embed_items => 1,
266 opac => 1,
267 borcat => $borcat });
268 $issue->{normalized_upc} = GetNormalizedUPC( $marcrecord, C4::Context->preference('marcflavour') );
270 # My Summary HTML
271 if (my $my_summary_html = C4::Context->preference('OPACMySummaryHTML')){
272 $issue->{author} ? $my_summary_html =~ s/{AUTHOR}/$issue->{author}/g : $my_summary_html =~ s/{AUTHOR}//g;
273 $issue->{title} =~ s/\/+$//; # remove trailing slash
274 $issue->{title} =~ s/\s+$//; # remove trailing space
275 $issue->{title} ? $my_summary_html =~ s/{TITLE}/$issue->{title}/g : $my_summary_html =~ s/{TITLE}//g;
276 $issue->{isbn} ? $my_summary_html =~ s/{ISBN}/$isbn/g : $my_summary_html =~ s/{ISBN}//g;
277 $issue->{biblionumber} ? $my_summary_html =~ s/{BIBLIONUMBER}/$issue->{biblionumber}/g : $my_summary_html =~ s/{BIBLIONUMBER}//g;
278 $issue->{MySummaryHTML} = $my_summary_html;
282 my $overduesblockrenewing = C4::Context->preference('OverduesBlockRenewing');
283 $canrenew = 0 if ($overduesblockrenewing ne 'allow' and $overdues_count == $count);
285 $template->param( ISSUES => \@issuedat );
286 $template->param( issues_count => $count );
287 $template->param( canrenew => $canrenew );
288 $template->param( OVERDUES => \@overdues );
289 $template->param( overdues_count => $overdues_count );
291 my $show_barcode = Koha::Patron::Attribute::Types->search(
292 { code => ATTRIBUTE_SHOW_BARCODE } )->count;
293 if ($show_barcode) {
294 my $patron_show_barcode = GetBorrowerAttributeValue($borrowernumber, ATTRIBUTE_SHOW_BARCODE);
295 undef $show_barcode if defined($patron_show_barcode) && !$patron_show_barcode;
297 $template->param( show_barcode => 1 ) if $show_barcode;
299 # now the reserved items....
300 my $reserves = Koha::Holds->search( { borrowernumber => $borrowernumber } );
302 $template->param(
303 RESERVES => $reserves,
304 showpriority => $show_priority,
307 if (C4::Context->preference('BakerTaylorEnabled')) {
308 $template->param(
309 BakerTaylorEnabled => 1,
310 BakerTaylorImageURL => &image_url(),
311 BakerTaylorLinkURL => &link_url(),
312 BakerTaylorBookstoreURL => C4::Context->preference('BakerTaylorBookstoreURL'),
316 if (C4::Context->preference("OPACAmazonCoverImages") or
317 C4::Context->preference("GoogleJackets") or
318 C4::Context->preference("BakerTaylorEnabled") or
319 C4::Context->preference("SyndeticsCoverImages") or
320 ( C4::Context->preference('OPACCustomCoverImages') and C4::Context->preference('CustomCoverImagesURL') )
322 $template->param(JacketImages=>1);
325 $template->param(
326 OverDriveCirculation => C4::Context->preference('OverDriveCirculation') || 0,
327 overdrive_error => scalar $query->param('overdrive_error') || undef,
328 overdrive_tab => scalar $query->param('overdrive_tab') || 0,
329 RecordedBooksCirculation => C4::Context->preference('RecordedBooksClientSecret') && C4::Context->preference('RecordedBooksLibraryID'),
332 my $patron_messages = Koha::Patron::Messages->search(
334 borrowernumber => $borrowernumber,
335 message_type => 'B',
339 if ( C4::Context->preference('AllowPatronToSetCheckoutsVisibilityForGuarantor')
340 || C4::Context->preference('AllowStaffToSetCheckoutsVisibilityForGuarantor') )
342 my @relatives;
343 # Filter out guarantees that don't want guarantor to see checkouts
344 foreach my $gr ( $patron->guarantee_relationships() ) {
345 my $g = $gr->guarantee;
346 push( @relatives, $g ) if $g->privacy_guarantor_checkouts;
348 $template->param( relatives => \@relatives );
351 if ( C4::Context->preference('AllowPatronToSetFinesVisibilityForGuarantor')
352 || C4::Context->preference('AllowStaffToSetFinesVisibilityForGuarantor') )
354 my @relatives_with_fines;
355 # Filter out guarantees that don't want guarantor to see checkouts
356 foreach my $gr ( $patron->guarantee_relationships() ) {
357 my $g = $gr->guarantee;
358 push( @relatives_with_fines, $g ) if $g->privacy_guarantor_fines;
360 $template->param( relatives_with_fines => \@relatives_with_fines );
364 $template->param(
365 patron_messages => $patron_messages,
366 opacnote => $borr->{opacnote},
367 patronupdate => $patronupdate,
368 OpacRenewalAllowed => C4::Context->preference("OpacRenewalAllowed"),
369 userview => 1,
370 SuspendHoldsOpac => C4::Context->preference('SuspendHoldsOpac'),
371 AutoResumeSuspendedHolds => C4::Context->preference('AutoResumeSuspendedHolds'),
372 OpacHoldNotes => C4::Context->preference('OpacHoldNotes'),
373 failed_holds => scalar $query->param('failed_holds'),
376 # if not an empty string this indicates to return
377 # back to the opac-results page
378 my $search_query = $query->param('has-search-query');
380 if ($search_query) {
382 print $query->redirect(
383 -uri => "/cgi-bin/koha/opac-search.pl?$search_query",
384 -cookie => $cookie,
388 output_html_with_http_headers $query, $cookie, $template->output, undef, { force_no_caching => 1 };