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>.
27 use C4
::External
::BakerTaylor
qw( image_url link_url );
34 use Koha
::Account
::Lines
;
41 use Koha
::Patron
::Attribute
::Types
;
43 use Koha
::Patron
::Messages
;
44 use Koha
::Patron
::Discharge
;
49 use constant ATTRIBUTE_SHOW_BARCODE
=> 'SHOW_BCODE';
51 use Scalar
::Util
qw(looks_like_number);
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);
64 my ( $template, $borrowernumber, $cookie ) = get_template_and_user
(
66 template_name
=> "opac-user.tt",
74 my %renewed = map { $_ => 1 } split( ':', $query->param('renewed') || '' );
77 for ( C4
::Context
->preference("OPACShowHoldQueueDetails") ) {
78 m/priority/ and $show_priority = 1;
81 my $patronupdate = $query->param('patronupdate');
84 $template->param( shibbolethAuthentication
=> C4
::Context
->config('useshibboleth') );
86 # get borrower information ....
87 my $patron = Koha
::Patrons
->find( $borrowernumber );
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'),
96 my $autorenew_checkouts = $query->param('borrower_autorenew_checkouts');
97 $patron->autorenew_checkouts( $autorenew_checkouts )->store() if defined $autorenew_checkouts;
100 my $borr = $patron->unblessed;
101 # unblessed is a hash vs. object/undef. Hence the use of curly braces here.
102 my $borcat = $borr ?
$borr->{categorycode
} : q{};
104 my ( $today_year, $today_month, $today_day) = Today
();
105 my ($warning_year, $warning_month, $warning_day) = split /-/, $borr->{'dateexpiry'};
107 my $debar = Koha
::Patrons
->find( $borrowernumber )->is_debarred;
112 $template->param( 'userdebarred' => $userdebarred );
113 if ( $debar ne "9999-12-31" ) {
114 $borr->{'userdebarreddate'} = $debar;
116 # FIXME looks like $available is not needed
117 # If a user is discharged they have a validated discharge available
118 my $available = Koha
::Patron
::Discharge
::count
({
119 borrowernumber
=> $borrowernumber,
122 $template->param( 'discharge_available' => $available && Koha
::Patron
::Discharge
::is_discharged
({borrowernumber
=> $borrowernumber}) );
125 if ( $userdebarred || $borr->{'gonenoaddress'} || $borr->{'lost'} ) {
126 $borr->{'flagged'} = 1;
130 my $amountoutstanding = $patron->account->balance;
131 my $no_renewal_amt = C4
::Context
->preference( 'OPACFineNoRenewals' );
132 $no_renewal_amt = undef unless looks_like_number
( $no_renewal_amt );
133 my $amountoutstandingfornewal =
134 C4
::Context
->preference("OPACFineNoRenewalsIncludeCredit")
136 : $patron->account->outstanding_debits->total_outstanding;
138 if ( C4
::Context
->preference('OpacRenewalAllowed')
139 && defined($no_renewal_amt)
140 && $amountoutstandingfornewal > $no_renewal_amt )
142 $borr->{'flagged'} = 1;
145 renewal_blocked_fines
=> $no_renewal_amt,
146 renewal_blocked_fines_amountoutstanding
=> $amountoutstandingfornewal,
150 my $maxoutstanding = C4
::Context
->preference('maxoutstanding');
151 if ( $amountoutstanding && ( $amountoutstanding > $maxoutstanding ) ){
152 $borr->{blockedonfines
} = 1;
155 # Warningdate is the date that the warning starts appearing
156 if ( $borr->{'dateexpiry'} && C4
::Context
->preference('NotifyBorrowerDeparture') ) {
157 my $days_to_expiry = Date_to_Days
( $warning_year, $warning_month, $warning_day ) - Date_to_Days
( $today_year, $today_month, $today_day );
158 if ( $days_to_expiry < 0 ) {
159 #borrower card has expired, warn the borrower
160 $borr->{'warnexpired'} = $borr->{'dateexpiry'};
161 } elsif ( $days_to_expiry < C4
::Context
->preference('NotifyBorrowerDeparture') ) {
162 # borrower card soon to expire, warn the borrower
163 $borr->{'warndeparture'} = $borr->{dateexpiry
};
164 if (C4
::Context
->preference('ReturnBeforeExpiry')){
165 $borr->{'returnbeforeexpiry'} = 1;
170 # pass on any renew errors to the template for displaying
171 my $renew_error = $query->param('renew_error');
174 amountoutstanding
=> $amountoutstanding,
175 borrowernumber
=> $borrowernumber,
176 patron_flagged
=> $borr->{flagged
},
177 OPACMySummaryHTML
=> (C4
::Context
->preference("OPACMySummaryHTML")) ?
1 : 0,
178 surname
=> $borr->{surname
},
179 RENEW_ERROR
=> $renew_error,
181 csrf_token
=> Koha
::Token
->new->generate_csrf({
182 session_id
=> scalar $query->cookie('CGISESSID'),
186 #get issued items ....
189 my $overdues_count = 0;
192 my $itemtypes = { map { $_->{itemtype
} => $_ } @
{ Koha
::ItemTypes
->search_with_localization->unblessed } };
193 my $pending_checkouts = $patron->pending_checkouts->search({}, { order_by
=> [ { -desc
=> 'date_due' }, { -asc
=> 'issue_id' } ] });
194 if ( $pending_checkouts->count ) { # Useless test
195 while ( my $c = $pending_checkouts->next ) {
196 my $issue = $c->unblessed_all_relateds;
198 my $restype = GetReserveStatus
( $issue->{'itemnumber'} );
200 $issue->{'reserved'} = 1;
203 # Must be moved in a module if reused
204 my $charges = Koha
::Account
::Lines
->search(
206 borrowernumber
=> $patron->borrowernumber,
207 amountoutstanding
=> { '>' => 0 },
208 debit_type_code
=> [ 'OVERDUE', 'LOST' ],
209 itemnumber
=> $issue->{itemnumber
}
212 $issue->{charges
} = $charges->total_outstanding;
214 my $rental_fines = Koha
::Account
::Lines
->search(
216 borrowernumber
=> $patron->borrowernumber,
217 amountoutstanding
=> { '>' => 0 },
218 debit_type_code
=> { 'LIKE' => 'RENT_%' },
219 itemnumber
=> $issue->{itemnumber
}
222 $issue->{rentalfines
} = $rental_fines->total_outstanding;
224 # check if item is renewable
225 my ($status,$renewerror) = CanBookBeRenewed
( $borrowernumber, $issue->{'itemnumber'} );
226 ($issue->{'renewcount'},$issue->{'renewsallowed'},$issue->{'renewsleft'}) = GetRenewCount
($borrowernumber, $issue->{'itemnumber'});
227 ( $issue->{'renewalfee'}, $issue->{'renewalitemtype'} ) = GetIssuingCharges
( $issue->{'itemnumber'}, $borrowernumber );
228 $issue->{itemtype_object
} = Koha
::ItemTypes
->find( Koha
::Items
->find( $issue->{itemnumber
} )->effective_itemtype );
229 if($status && C4
::Context
->preference("OpacRenewalAllowed")){
230 $issue->{'status'} = $status;
233 $issue->{'renewed'} = $renewed{ $issue->{'itemnumber'} };
236 $issue->{'too_many'} = 1 if $renewerror eq 'too_many';
237 $issue->{'on_reserve'} = 1 if $renewerror eq 'on_reserve';
238 $issue->{'norenew_overdue'} = 1 if $renewerror eq 'overdue';
239 $issue->{'auto_renew'} = 1 if $renewerror eq 'auto_renew';
240 $issue->{'auto_too_soon'} = 1 if $renewerror eq 'auto_too_soon';
241 $issue->{'auto_too_late'} = 1 if $renewerror eq 'auto_too_late';
242 $issue->{'auto_too_much_oweing'} = 1 if $renewerror eq 'auto_too_much_oweing';
243 $issue->{'item_denied_renewal'} = 1 if $renewerror eq 'item_denied_renewal';
245 if ( $renewerror eq 'too_soon' ) {
246 $issue->{'too_soon'} = 1;
247 $issue->{'soonestrenewdate'} = output_pref
(
248 C4
::Circulation
::GetSoonestRenewDate
(
249 $issue->{borrowernumber
},
256 if ( $c->is_overdue ) {
257 push @overdues, $issue;
259 $issue->{'overdue'} = 1;
262 $issue->{'issued'} = 1;
265 my $itemtype = $issue->{'itemtype'};
267 $issue->{'imageurl'} = getitemtypeimagelocation
( 'opac', $itemtypes->{$itemtype}->{'imageurl'} );
268 $issue->{'description'} = $itemtypes->{$itemtype}->{'description'};
271 if ( C4
::Context
->preference('OpacStarRatings') eq 'all' ) {
272 my $ratings = Koha
::Ratings
->search({ biblionumber
=> $issue->{biblionumber
} });
273 $issue->{ratings
} = $ratings;
274 $issue->{my_rating
} = $borrowernumber ?
$ratings->search({ borrowernumber
=> $borrowernumber })->next : undef;
277 $issue->{biblio_object
} = Koha
::Biblios
->find($issue->{biblionumber
});
278 push @issuedat, $issue;
281 my $isbn = GetNormalizedISBN
($issue->{'isbn'});
282 $issue->{normalized_isbn
} = $isbn;
283 my $marcrecord = GetMarcBiblio
({
284 biblionumber
=> $issue->{'biblionumber'},
287 borcat
=> $borcat });
288 $issue->{normalized_upc
} = GetNormalizedUPC
( $marcrecord, C4
::Context
->preference('marcflavour') );
291 if (my $my_summary_html = C4
::Context
->preference('OPACMySummaryHTML')){
292 $issue->{author
} ?
$my_summary_html =~ s/{AUTHOR}/$issue->{author}/g : $my_summary_html =~ s/{AUTHOR}//g;
293 $issue->{title
} =~ s/\/+$//; # remove trailing slash
294 $issue->{title
} =~ s/\s+$//; # remove trailing space
295 $issue->{title
} ?
$my_summary_html =~ s/{TITLE}/$issue->{title}/g : $my_summary_html =~ s/{TITLE}//g;
296 $issue->{isbn
} ?
$my_summary_html =~ s/{ISBN}/$isbn/g : $my_summary_html =~ s/{ISBN}//g;
297 $issue->{biblionumber
} ?
$my_summary_html =~ s/{BIBLIONUMBER}/$issue->{biblionumber}/g : $my_summary_html =~ s/{BIBLIONUMBER}//g;
298 $issue->{MySummaryHTML
} = $my_summary_html;
302 my $overduesblockrenewing = C4
::Context
->preference('OverduesBlockRenewing');
303 $canrenew = 0 if ($overduesblockrenewing ne 'allow' and $overdues_count == $count);
305 $template->param( ISSUES
=> \
@issuedat );
306 $template->param( issues_count
=> $count );
307 $template->param( canrenew
=> $canrenew );
308 $template->param( OVERDUES
=> \
@overdues );
309 $template->param( overdues_count
=> $overdues_count );
311 my $show_barcode = Koha
::Patron
::Attribute
::Types
->search( # FIXME we should not need this search
312 { code
=> ATTRIBUTE_SHOW_BARCODE
} )->count;
314 my $patron_show_barcode = $patron->get_extended_attribute(ATTRIBUTE_SHOW_BARCODE
);
315 undef $show_barcode if $patron_show_barcode and not $patron_show_barcode->attribute;
317 $template->param( show_barcode
=> 1 ) if $show_barcode;
319 # now the reserved items....
320 my $reserves = Koha
::Holds
->search( { borrowernumber
=> $borrowernumber } );
323 RESERVES
=> $reserves,
324 showpriority
=> $show_priority,
327 if (C4
::Context
->preference('BakerTaylorEnabled')) {
329 BakerTaylorEnabled
=> 1,
330 BakerTaylorImageURL
=> &image_url
(),
331 BakerTaylorLinkURL
=> &link_url
(),
332 BakerTaylorBookstoreURL
=> C4
::Context
->preference('BakerTaylorBookstoreURL'),
336 if (C4
::Context
->preference("OPACAmazonCoverImages") or
337 C4
::Context
->preference("GoogleJackets") or
338 C4
::Context
->preference("BakerTaylorEnabled") or
339 C4
::Context
->preference("SyndeticsCoverImages") or
340 ( C4
::Context
->preference('OPACCustomCoverImages') and C4
::Context
->preference('CustomCoverImagesURL') )
342 $template->param(JacketImages
=>1);
346 OverDriveCirculation
=> C4
::Context
->preference('OverDriveCirculation') || 0,
347 overdrive_error
=> scalar $query->param('overdrive_error') || undef,
348 overdrive_tab
=> scalar $query->param('overdrive_tab') || 0,
349 RecordedBooksCirculation
=> C4
::Context
->preference('RecordedBooksClientSecret') && C4
::Context
->preference('RecordedBooksLibraryID'),
352 my $patron_messages = Koha
::Patron
::Messages
->search(
354 borrowernumber
=> $borrowernumber,
359 if ( C4
::Context
->preference('AllowPatronToSetCheckoutsVisibilityForGuarantor')
360 || C4
::Context
->preference('AllowStaffToSetCheckoutsVisibilityForGuarantor') )
363 # Filter out guarantees that don't want guarantor to see checkouts
364 foreach my $gr ( $patron->guarantee_relationships() ) {
365 my $g = $gr->guarantee;
366 push( @relatives, $g ) if $g->privacy_guarantor_checkouts;
368 $template->param( relatives
=> \
@relatives );
371 if ( C4
::Context
->preference('AllowPatronToSetFinesVisibilityForGuarantor')
372 || C4
::Context
->preference('AllowStaffToSetFinesVisibilityForGuarantor') )
374 my @relatives_with_fines;
375 # Filter out guarantees that don't want guarantor to see checkouts
376 foreach my $gr ( $patron->guarantee_relationships() ) {
377 my $g = $gr->guarantee;
378 push( @relatives_with_fines, $g ) if $g->privacy_guarantor_fines;
380 $template->param( relatives_with_fines
=> \
@relatives_with_fines );
385 patron_messages
=> $patron_messages,
386 opacnote
=> $borr->{opacnote
},
387 patronupdate
=> $patronupdate,
388 OpacRenewalAllowed
=> C4
::Context
->preference("OpacRenewalAllowed"),
390 SuspendHoldsOpac
=> C4
::Context
->preference('SuspendHoldsOpac'),
391 AutoResumeSuspendedHolds
=> C4
::Context
->preference('AutoResumeSuspendedHolds'),
392 OpacHoldNotes
=> C4
::Context
->preference('OpacHoldNotes'),
393 failed_holds
=> scalar $query->param('failed_holds'),
396 # if not an empty string this indicates to return
397 # back to the opac-results page
398 my $search_query = $query->param('has-search-query');
402 print $query->redirect(
403 -uri
=> "/cgi-bin/koha/opac-search.pl?$search_query",
408 output_html_with_http_headers
$query, $cookie, $template->output, undef, { force_no_caching
=> 1 };