Bug 23805: (RM follow-up) Remove CHECK constraints
[koha.git] / opac / opac-user.pl
blob451b7f9356aaa4934dce15b96b104f39312a04fe
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 );
128 if ( C4::Context->preference('OpacRenewalAllowed')
129 && defined($no_renewal_amt)
130 && $amountoutstanding > $no_renewal_amt )
132 $borr->{'flagged'} = 1;
133 $canrenew = 0;
134 $template->param(
135 renewal_blocked_fines => $no_renewal_amt,
136 renewal_blocked_fines_amountoutstanding => $amountoutstanding,
140 # Warningdate is the date that the warning starts appearing
141 if ( $borr->{'dateexpiry'} && C4::Context->preference('NotifyBorrowerDeparture') ) {
142 my $days_to_expiry = Date_to_Days( $warning_year, $warning_month, $warning_day ) - Date_to_Days( $today_year, $today_month, $today_day );
143 if ( $days_to_expiry < 0 ) {
144 #borrower card has expired, warn the borrower
145 $borr->{'warnexpired'} = $borr->{'dateexpiry'};
146 } elsif ( $days_to_expiry < C4::Context->preference('NotifyBorrowerDeparture') ) {
147 # borrower card soon to expire, warn the borrower
148 $borr->{'warndeparture'} = $borr->{dateexpiry};
149 if (C4::Context->preference('ReturnBeforeExpiry')){
150 $borr->{'returnbeforeexpiry'} = 1;
155 # pass on any renew errors to the template for displaying
156 my $renew_error = $query->param('renew_error');
158 $template->param(
159 amountoutstanding => $amountoutstanding,
160 borrowernumber => $borrowernumber,
161 patron_flagged => $borr->{flagged},
162 OPACMySummaryHTML => (C4::Context->preference("OPACMySummaryHTML")) ? 1 : 0,
163 surname => $borr->{surname},
164 RENEW_ERROR => $renew_error,
165 borrower => $borr,
168 #get issued items ....
170 my $count = 0;
171 my $overdues_count = 0;
172 my @overdues;
173 my @issuedat;
174 my $itemtypes = { map { $_->{itemtype} => $_ } @{ Koha::ItemTypes->search_with_localization->unblessed } };
175 my $pending_checkouts = $patron->pending_checkouts->search({}, { order_by => [ { -desc => 'date_due' }, { -asc => 'issue_id' } ] });
176 if ( $pending_checkouts->count ) { # Useless test
177 while ( my $c = $pending_checkouts->next ) {
178 my $issue = $c->unblessed_all_relateds;
179 # check for reserves
180 my $restype = GetReserveStatus( $issue->{'itemnumber'} );
181 if ( $restype ) {
182 $issue->{'reserved'} = 1;
185 # Must be moved in a module if reused
186 my $charges = Koha::Account::Lines->search(
188 borrowernumber => $patron->borrowernumber,
189 amountoutstanding => { '>' => 0 },
190 debit_type_code => [ 'OVERDUE', 'LOST' ],
191 itemnumber => $issue->{itemnumber}
194 $issue->{charges} = $charges->total_outstanding;
196 my $rental_fines = Koha::Account::Lines->search(
198 borrowernumber => $patron->borrowernumber,
199 amountoutstanding => { '>' => 0 },
200 debit_type_code => { 'LIKE' => 'RENT_%' },
201 itemnumber => $issue->{itemnumber}
204 $issue->{rentalfines} = $rental_fines->total_outstanding;
206 # check if item is renewable
207 my ($status,$renewerror) = CanBookBeRenewed( $borrowernumber, $issue->{'itemnumber'} );
208 ($issue->{'renewcount'},$issue->{'renewsallowed'},$issue->{'renewsleft'}) = GetRenewCount($borrowernumber, $issue->{'itemnumber'});
209 ( $issue->{'renewalfee'}, $issue->{'renewalitemtype'} ) = GetIssuingCharges( $issue->{'itemnumber'}, $borrowernumber );
210 $issue->{itemtype_object} = Koha::ItemTypes->find( Koha::Items->find( $issue->{itemnumber} )->effective_itemtype );
211 if($status && C4::Context->preference("OpacRenewalAllowed")){
212 $issue->{'status'} = $status;
215 $issue->{'renewed'} = $renewed{ $issue->{'itemnumber'} };
217 if ($renewerror) {
218 $issue->{'too_many'} = 1 if $renewerror eq 'too_many';
219 $issue->{'on_reserve'} = 1 if $renewerror eq 'on_reserve';
220 $issue->{'norenew_overdue'} = 1 if $renewerror eq 'overdue';
221 $issue->{'auto_renew'} = 1 if $renewerror eq 'auto_renew';
222 $issue->{'auto_too_soon'} = 1 if $renewerror eq 'auto_too_soon';
223 $issue->{'auto_too_late'} = 1 if $renewerror eq 'auto_too_late';
224 $issue->{'auto_too_much_oweing'} = 1 if $renewerror eq 'auto_too_much_oweing';
225 $issue->{'item_denied_renewal'} = 1 if $renewerror eq 'item_denied_renewal';
227 if ( $renewerror eq 'too_soon' ) {
228 $issue->{'too_soon'} = 1;
229 $issue->{'soonestrenewdate'} = output_pref(
230 C4::Circulation::GetSoonestRenewDate(
231 $issue->{borrowernumber},
232 $issue->{itemnumber}
238 if ( $c->is_overdue ) {
239 push @overdues, $issue;
240 $overdues_count++;
241 $issue->{'overdue'} = 1;
243 else {
244 $issue->{'issued'} = 1;
246 # imageurl:
247 my $itemtype = $issue->{'itemtype'};
248 if ( $itemtype ) {
249 $issue->{'imageurl'} = getitemtypeimagelocation( 'opac', $itemtypes->{$itemtype}->{'imageurl'} );
250 $issue->{'description'} = $itemtypes->{$itemtype}->{'description'};
253 $issue->{biblio_object} = Koha::Biblios->find($issue->{biblionumber});
254 push @issuedat, $issue;
255 $count++;
257 my $isbn = GetNormalizedISBN($issue->{'isbn'});
258 $issue->{normalized_isbn} = $isbn;
259 my $marcrecord = GetMarcBiblio({
260 biblionumber => $issue->{'biblionumber'},
261 embed_items => 1,
262 opac => 1,
263 borcat => $borcat });
264 $issue->{normalized_upc} = GetNormalizedUPC( $marcrecord, C4::Context->preference('marcflavour') );
266 # My Summary HTML
267 if (my $my_summary_html = C4::Context->preference('OPACMySummaryHTML')){
268 $issue->{author} ? $my_summary_html =~ s/{AUTHOR}/$issue->{author}/g : $my_summary_html =~ s/{AUTHOR}//g;
269 $issue->{title} =~ s/\/+$//; # remove trailing slash
270 $issue->{title} =~ s/\s+$//; # remove trailing space
271 $issue->{title} ? $my_summary_html =~ s/{TITLE}/$issue->{title}/g : $my_summary_html =~ s/{TITLE}//g;
272 $issue->{isbn} ? $my_summary_html =~ s/{ISBN}/$isbn/g : $my_summary_html =~ s/{ISBN}//g;
273 $issue->{biblionumber} ? $my_summary_html =~ s/{BIBLIONUMBER}/$issue->{biblionumber}/g : $my_summary_html =~ s/{BIBLIONUMBER}//g;
274 $issue->{MySummaryHTML} = $my_summary_html;
278 my $overduesblockrenewing = C4::Context->preference('OverduesBlockRenewing');
279 $canrenew = 0 if ($overduesblockrenewing ne 'allow' and $overdues_count == $count);
281 $template->param( ISSUES => \@issuedat );
282 $template->param( issues_count => $count );
283 $template->param( canrenew => $canrenew );
284 $template->param( OVERDUES => \@overdues );
285 $template->param( overdues_count => $overdues_count );
287 my $show_barcode = Koha::Patron::Attribute::Types->search(
288 { code => ATTRIBUTE_SHOW_BARCODE } )->count;
289 if ($show_barcode) {
290 my $patron_show_barcode = GetBorrowerAttributeValue($borrowernumber, ATTRIBUTE_SHOW_BARCODE);
291 undef $show_barcode if defined($patron_show_barcode) && !$patron_show_barcode;
293 $template->param( show_barcode => 1 ) if $show_barcode;
295 # now the reserved items....
296 my $reserves = Koha::Holds->search( { borrowernumber => $borrowernumber } );
298 $template->param(
299 RESERVES => $reserves,
300 showpriority => $show_priority,
303 if (C4::Context->preference('BakerTaylorEnabled')) {
304 $template->param(
305 BakerTaylorEnabled => 1,
306 BakerTaylorImageURL => &image_url(),
307 BakerTaylorLinkURL => &link_url(),
308 BakerTaylorBookstoreURL => C4::Context->preference('BakerTaylorBookstoreURL'),
312 if (C4::Context->preference("OPACAmazonCoverImages") or
313 C4::Context->preference("GoogleJackets") or
314 C4::Context->preference("BakerTaylorEnabled") or
315 C4::Context->preference("SyndeticsCoverImages") or
316 ( C4::Context->preference('OPACCustomCoverImages') and C4::Context->preference('CustomCoverImagesURL') )
318 $template->param(JacketImages=>1);
321 $template->param(
322 OverDriveCirculation => C4::Context->preference('OverDriveCirculation') || 0,
323 overdrive_error => scalar $query->param('overdrive_error') || undef,
324 overdrive_tab => scalar $query->param('overdrive_tab') || 0,
325 RecordedBooksCirculation => C4::Context->preference('RecordedBooksClientSecret') && C4::Context->preference('RecordedBooksLibraryID'),
328 my $patron_messages = Koha::Patron::Messages->search(
330 borrowernumber => $borrowernumber,
331 message_type => 'B',
335 if ( C4::Context->preference('AllowPatronToSetCheckoutsVisibilityForGuarantor')
336 || C4::Context->preference('AllowStaffToSetCheckoutsVisibilityForGuarantor') )
338 my @relatives;
339 # Filter out guarantees that don't want guarantor to see checkouts
340 foreach my $gr ( $patron->guarantee_relationships() ) {
341 my $g = $gr->guarantee;
342 push( @relatives, $g ) if $g->privacy_guarantor_checkouts;
344 $template->param( relatives => \@relatives );
347 if ( C4::Context->preference('AllowPatronToSetFinesVisibilityForGuarantor')
348 || C4::Context->preference('AllowStaffToSetFinesVisibilityForGuarantor') )
350 my @relatives_with_fines;
351 # Filter out guarantees that don't want guarantor to see checkouts
352 foreach my $gr ( $patron->guarantee_relationships() ) {
353 my $g = $gr->guarantee;
354 push( @relatives_with_fines, $g ) if $g->privacy_guarantor_fines;
356 $template->param( relatives_with_fines => \@relatives_with_fines );
360 $template->param(
361 patron_messages => $patron_messages,
362 opacnote => $borr->{opacnote},
363 patronupdate => $patronupdate,
364 OpacRenewalAllowed => C4::Context->preference("OpacRenewalAllowed"),
365 userview => 1,
366 SuspendHoldsOpac => C4::Context->preference('SuspendHoldsOpac'),
367 AutoResumeSuspendedHolds => C4::Context->preference('AutoResumeSuspendedHolds'),
368 OpacHoldNotes => C4::Context->preference('OpacHoldNotes'),
369 failed_holds => scalar $query->param('failed_holds'),
372 # if not an empty string this indicates to return
373 # back to the opac-results page
374 my $search_query = $query->param('has-search-query');
376 if ($search_query) {
378 print $query->redirect(
379 -uri => "/cgi-bin/koha/opac-search.pl?$search_query",
380 -cookie => $cookie,
384 output_html_with_http_headers $query, $cookie, $template->output, undef, { force_no_caching => 1 };