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>.
29 use C4
::Members
::AttributeTypes
;
30 use C4
::Members
::Attributes qw
/GetBorrowerAttributeValue/;
35 use Koha
::Account
::Lines
;
41 use Koha
::Patron
::Attribute
::Types
;
42 use Koha
::Patron
::Messages
;
43 use Koha
::Patron
::Discharge
;
46 use constant ATTRIBUTE_SHOW_BARCODE
=> 'SHOW_BCODE';
48 use Scalar
::Util
qw(looks_like_number);
58 if (C4
::Context
->preference('BakerTaylorEnabled')) {
59 require C4
::External
::BakerTaylor
;
60 import C4
::External
::BakerTaylor
qw(&image_url &link_url);
64 # CAS single logout handling
65 # Will print header and exit
66 C4
::Context
->preference('casAuthentication') and C4
::Auth_with_cas
::logout_if_required
($query);
68 my ( $template, $borrowernumber, $cookie ) = get_template_and_user
(
70 template_name
=> "opac-user.tt",
78 my %renewed = map { $_ => 1 } split( ':', $query->param('renewed') || '' );
81 for ( C4
::Context
->preference("OPACShowHoldQueueDetails") ) {
82 m/priority/ and $show_priority = 1;
85 my $patronupdate = $query->param('patronupdate');
88 $template->param( shibbolethAuthentication
=> C4
::Context
->config('useshibboleth') );
90 # get borrower information ....
91 my $patron = Koha
::Patrons
->find( $borrowernumber );
92 my $borr = $patron->unblessed;
93 # unblessed is a hash vs. object/undef. Hence the use of curly braces here.
94 my $borcat = $borr ?
$borr->{categorycode
} : q{};
96 my ( $today_year, $today_month, $today_day) = Today
();
97 my ($warning_year, $warning_month, $warning_day) = split /-/, $borr->{'dateexpiry'};
99 my $debar = Koha
::Patrons
->find( $borrowernumber )->is_debarred;
104 $template->param( 'userdebarred' => $userdebarred );
105 if ( $debar ne "9999-12-31" ) {
106 $borr->{'userdebarreddate'} = $debar;
108 # FIXME looks like $available is not needed
109 # If a user is discharged they have a validated discharge available
110 my $available = Koha
::Patron
::Discharge
::count
({
111 borrowernumber
=> $borrowernumber,
114 $template->param( 'discharge_available' => $available && Koha
::Patron
::Discharge
::is_discharged
({borrowernumber
=> $borrowernumber}) );
117 if ( $userdebarred || $borr->{'gonenoaddress'} || $borr->{'lost'} ) {
118 $borr->{'flagged'} = 1;
122 my $amountoutstanding = $patron->account->balance;
123 my $no_renewal_amt = C4
::Context
->preference( 'OPACFineNoRenewals' );
124 $no_renewal_amt = undef unless looks_like_number
( $no_renewal_amt );
126 if ( C4
::Context
->preference('OpacRenewalAllowed')
127 && defined($no_renewal_amt)
128 && $amountoutstanding > $no_renewal_amt )
130 $borr->{'flagged'} = 1;
133 renewal_blocked_fines
=> $no_renewal_amt,
134 renewal_blocked_fines_amountoutstanding
=> $amountoutstanding,
138 # Warningdate is the date that the warning starts appearing
139 if ( $borr->{'dateexpiry'} && C4
::Context
->preference('NotifyBorrowerDeparture') ) {
140 my $days_to_expiry = Date_to_Days
( $warning_year, $warning_month, $warning_day ) - Date_to_Days
( $today_year, $today_month, $today_day );
141 if ( $days_to_expiry < 0 ) {
142 #borrower card has expired, warn the borrower
143 $borr->{'warnexpired'} = $borr->{'dateexpiry'};
144 } elsif ( $days_to_expiry < C4
::Context
->preference('NotifyBorrowerDeparture') ) {
145 # borrower card soon to expire, warn the borrower
146 $borr->{'warndeparture'} = $borr->{dateexpiry
};
147 if (C4
::Context
->preference('ReturnBeforeExpiry')){
148 $borr->{'returnbeforeexpiry'} = 1;
153 # pass on any renew errors to the template for displaying
154 my $renew_error = $query->param('renew_error');
157 amountoutstanding
=> $amountoutstanding,
158 borrowernumber
=> $borrowernumber,
159 patron_flagged
=> $borr->{flagged
},
160 OPACMySummaryHTML
=> (C4
::Context
->preference("OPACMySummaryHTML")) ?
1 : 0,
161 surname
=> $borr->{surname
},
162 RENEW_ERROR
=> $renew_error,
166 #get issued items ....
169 my $overdues_count = 0;
172 my $itemtypes = { map { $_->{itemtype
} => $_ } @
{ Koha
::ItemTypes
->search_with_localization->unblessed } };
173 my $pending_checkouts = $patron->pending_checkouts->search({}, { order_by
=> [ { -desc
=> 'date_due' }, { -asc
=> 'issue_id' } ] });
174 if ( $pending_checkouts->count ) { # Useless test
175 while ( my $c = $pending_checkouts->next ) {
176 my $issue = $c->unblessed_all_relateds;
178 my $restype = GetReserveStatus
( $issue->{'itemnumber'} );
180 $issue->{'reserved'} = 1;
183 # Must be moved in a module if reused
184 my $charges = Koha
::Account
::Lines
->search(
186 borrowernumber
=> $patron->borrowernumber,
187 amountoutstanding
=> { '>' => 0 },
188 accounttype
=> [ 'OVERDUE', 'L' ],
189 itemnumber
=> $issue->{itemnumber
}
192 $issue->{charges
} = $charges->total_outstanding;
194 my $rental_fines = Koha
::Account
::Lines
->search(
196 borrowernumber
=> $patron->borrowernumber,
197 amountoutstanding
=> { '>' => 0 },
198 accounttype
=> 'Rent',
199 itemnumber
=> $issue->{itemnumber
}
202 $issue->{rentalfines
} = $rental_fines->total_outstanding;
204 my $marcrecord = GetMarcBiblio
({
205 biblionumber
=> $issue->{'biblionumber'},
208 borcat
=> $borcat });
209 $issue->{'subtitle'} = GetRecordValue
('subtitle', $marcrecord, GetFrameworkCode
($issue->{'biblionumber'}));
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'} };
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
},
242 if ( $c->is_overdue ) {
243 push @overdues, $issue;
245 $issue->{'overdue'} = 1;
248 $issue->{'issued'} = 1;
251 my $itemtype = $issue->{'itemtype'};
253 $issue->{'imageurl'} = getitemtypeimagelocation
( 'opac', $itemtypes->{$itemtype}->{'imageurl'} );
254 $issue->{'description'} = $itemtypes->{$itemtype}->{'description'};
256 push @issuedat, $issue;
259 my $isbn = GetNormalizedISBN
($issue->{'isbn'});
260 $issue->{normalized_isbn
} = $isbn;
261 $issue->{normalized_upc
} = GetNormalizedUPC
( $marcrecord, C4
::Context
->preference('marcflavour') );
264 if (my $my_summary_html = C4
::Context
->preference('OPACMySummaryHTML')){
265 $issue->{author
} ?
$my_summary_html =~ s/{AUTHOR}/$issue->{author}/g : $my_summary_html =~ s/{AUTHOR}//g;
266 $issue->{title
} =~ s/\/+$//; # remove trailing slash
267 $issue->{title
} =~ s/\s+$//; # remove trailing space
268 $issue->{title
} ?
$my_summary_html =~ s/{TITLE}/$issue->{title}/g : $my_summary_html =~ s/{TITLE}//g;
269 $issue->{isbn
} ?
$my_summary_html =~ s/{ISBN}/$isbn/g : $my_summary_html =~ s/{ISBN}//g;
270 $issue->{biblionumber
} ?
$my_summary_html =~ s/{BIBLIONUMBER}/$issue->{biblionumber}/g : $my_summary_html =~ s/{BIBLIONUMBER}//g;
271 $issue->{MySummaryHTML
} = $my_summary_html;
275 my $overduesblockrenewing = C4
::Context
->preference('OverduesBlockRenewing');
276 $canrenew = 0 if ($overduesblockrenewing ne 'allow' and $overdues_count == $count);
278 $template->param( ISSUES
=> \
@issuedat );
279 $template->param( issues_count
=> $count );
280 $template->param( canrenew
=> $canrenew );
281 $template->param( OVERDUES
=> \
@overdues );
282 $template->param( overdues_count
=> $overdues_count );
284 my $show_barcode = Koha
::Patron
::Attribute
::Types
->search(
285 { code
=> ATTRIBUTE_SHOW_BARCODE
} )->count;
287 my $patron_show_barcode = GetBorrowerAttributeValue
($borrowernumber, ATTRIBUTE_SHOW_BARCODE
);
288 undef $show_barcode if defined($patron_show_barcode) && !$patron_show_barcode;
290 $template->param( show_barcode
=> 1 ) if $show_barcode;
292 # now the reserved items....
293 my $reserves = Koha
::Holds
->search( { borrowernumber
=> $borrowernumber } );
296 RESERVES
=> $reserves,
297 showpriority
=> $show_priority,
300 if (C4
::Context
->preference('BakerTaylorEnabled')) {
302 BakerTaylorEnabled
=> 1,
303 BakerTaylorImageURL
=> &image_url
(),
304 BakerTaylorLinkURL
=> &link_url
(),
305 BakerTaylorBookstoreURL
=> C4
::Context
->preference('BakerTaylorBookstoreURL'),
309 if (C4
::Context
->preference("OPACAmazonCoverImages") or
310 C4
::Context
->preference("GoogleJackets") or
311 C4
::Context
->preference("BakerTaylorEnabled") or
312 C4
::Context
->preference("SyndeticsCoverImages")) {
313 $template->param(JacketImages
=>1);
317 OverDriveCirculation
=> C4
::Context
->preference('OverDriveCirculation') || 0,
318 overdrive_error
=> scalar $query->param('overdrive_error') || undef,
319 overdrive_tab
=> scalar $query->param('overdrive_tab') || 0,
320 RecordedBooksCirculation
=> C4
::Context
->preference('RecordedBooksClientSecret') && C4
::Context
->preference('RecordedBooksLibraryID'),
323 my $patron_messages = Koha
::Patron
::Messages
->search(
325 borrowernumber
=> $borrowernumber,
330 if ( C4
::Context
->preference('AllowPatronToSetCheckoutsVisibilityForGuarantor')
331 || C4
::Context
->preference('AllowStaffToSetCheckoutsVisibilityForGuarantor') )
334 Koha
::Database
->new()->schema()->resultset("Borrower")->search(
336 privacy_guarantor_checkouts
=> 1,
337 'me.guarantorid' => $borrowernumber
339 { prefetch
=> [ { 'issues' => { 'item' => 'biblio' } } ] }
341 $template->param( relatives
=> \
@relatives );
345 patron_messages
=> $patron_messages,
346 opacnote
=> $borr->{opacnote
},
347 patronupdate
=> $patronupdate,
348 OpacRenewalAllowed
=> C4
::Context
->preference("OpacRenewalAllowed"),
350 SuspendHoldsOpac
=> C4
::Context
->preference('SuspendHoldsOpac'),
351 AutoResumeSuspendedHolds
=> C4
::Context
->preference('AutoResumeSuspendedHolds'),
352 OpacHoldNotes
=> C4
::Context
->preference('OpacHoldNotes'),
353 failed_holds
=> scalar $query->param('failed_holds'),
356 # if not an empty string this indicates to return
357 # back to the opac-results page
358 my $search_query = $query->param('has-search-query');
362 print $query->redirect(
363 -uri
=> "/cgi-bin/koha/opac-search.pl?$search_query",
368 output_html_with_http_headers
$query, $cookie, $template->output, undef, { force_no_caching
=> 1 };