Bug 18756: Users can view aq.baskets even if they are not allowed
[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 strict;
21 #use warnings; FIXME - Bug 2505
22
23 use CGI qw ( -utf8 );
24
25 use C4::Auth;
26 use C4::Koha;
27 use C4::Circulation;
28 use C4::Reserves;
29 use C4::Members;
30 use C4::Members::AttributeTypes;
31 use C4::Members::Attributes qw/GetBorrowerAttributeValue/;
32 use C4::Output;
33 use C4::Biblio;
34 use C4::Items;
35 use C4::Letters;
36 use Koha::DateUtils;
37 use Koha::Holds;
38 use Koha::Database;
39 use Koha::Patron::Messages;
40 use Koha::Patron::Discharge;
41 use Koha::Patrons;
42
43 use constant ATTRIBUTE_SHOW_BARCODE => 'SHOW_BCODE';
44
45 use Scalar::Util qw(looks_like_number);
46 use Date::Calc qw(
47   Today
48   Add_Delta_Days
49   Date_to_Days
50 );
51
52 my $query = new CGI;
53
54 BEGIN {
55     if (C4::Context->preference('BakerTaylorEnabled')) {
56         require C4::External::BakerTaylor;
57         import C4::External::BakerTaylor qw(&image_url &link_url);
58     }
59 }
60
61 my ( $template, $borrowernumber, $cookie ) = get_template_and_user(
62     {
63         template_name   => "opac-user.tt",
64         query           => $query,
65         type            => "opac",
66         authnotrequired => 0,
67         debug           => 1,
68     }
69 );
70
71 my %renewed = map { $_ => 1 } split( ':', $query->param('renewed') );
72
73 my $show_priority;
74 for ( C4::Context->preference("OPACShowHoldQueueDetails") ) {
75     m/priority/ and $show_priority = 1;
76 }
77
78 my $patronupdate = $query->param('patronupdate');
79 my $canrenew = 1;
80
81 $template->param( shibbolethAuthentication => C4::Context->config('useshibboleth') );
82
83 if (!$borrowernumber) {
84     $template->param( adminWarning => 1 );
85 }
86
87 # get borrower information ....
88 my ( $borr ) = GetMemberDetails( $borrowernumber );
89
90 my (  $today_year,   $today_month,   $today_day) = Today();
91 my ($warning_year, $warning_month, $warning_day) = split /-/, $borr->{'dateexpiry'};
92
93 my $debar = Koha::Patrons->find( $borrowernumber )->is_debarred;
94 my $userdebarred;
95
96 if ($debar) {
97     $userdebarred = 1;
98     $template->param( 'userdebarred' => $userdebarred );
99     if ( $debar ne "9999-12-31" ) {
100         $borr->{'userdebarreddate'} = $debar;
101     }
102     # FIXME looks like $available is not needed
103     # If a patron is discharged he has a validated discharge available
104     my $available = Koha::Patron::Discharge::count({
105         borrowernumber => $borrowernumber,
106         validated      => 1,
107     });
108     $template->param( 'discharge_available' => $available && Koha::Patron::Discharge::is_discharged({borrowernumber => $borrowernumber}) );
109 }
110
111 if ( $userdebarred || $borr->{'gonenoaddress'} || $borr->{'lost'} ) {
112     $borr->{'flagged'} = 1;
113     $canrenew = 0;
114 }
115
116 if ( $borr->{'amountoutstanding'} > 5 ) {
117     $borr->{'amountoverfive'} = 1;
118 }
119 if ( 5 >= $borr->{'amountoutstanding'} && $borr->{'amountoutstanding'} > 0 ) {
120     $borr->{'amountoverzero'} = 1;
121 }
122 my $no_renewal_amt = C4::Context->preference( 'OPACFineNoRenewals' );
123 $no_renewal_amt = undef unless looks_like_number( $no_renewal_amt );
124
125 if (   C4::Context->preference('OpacRenewalAllowed')
126     && defined($no_renewal_amt)
127     && $borr->{amountoutstanding} > $no_renewal_amt )
128 {
129     $borr->{'flagged'} = 1;
130     $canrenew = 0;
131     $template->param(
132         renewal_blocked_fines => $no_renewal_amt,
133         renewal_blocked_fines_amountoutstanding => $borr->{amountoutstanding},
134     );
135 }
136
137 if ( $borr->{'amountoutstanding'} < 0 ) {
138     $borr->{'amountlessthanzero'} = 1;
139     $borr->{'amountoutstanding'} = -1 * ( $borr->{'amountoutstanding'} );
140 }
141
142 # Warningdate is the date that the warning starts appearing
143 if ( $borr->{'dateexpiry'} && C4::Context->preference('NotifyBorrowerDeparture') ) {
144     my $days_to_expiry = Date_to_Days( $warning_year, $warning_month, $warning_day ) - Date_to_Days( $today_year, $today_month, $today_day );
145     if ( $days_to_expiry < 0 ) {
146         #borrower card has expired, warn the borrower
147         $borr->{'warnexpired'} = $borr->{'dateexpiry'};
148     } elsif ( $days_to_expiry < C4::Context->preference('NotifyBorrowerDeparture') ) {
149         # borrower card soon to expire, warn the borrower
150         $borr->{'warndeparture'} = $borr->{dateexpiry};
151         if (C4::Context->preference('ReturnBeforeExpiry')){
152             $borr->{'returnbeforeexpiry'} = 1;
153         }
154     }
155 }
156
157 # pass on any renew errors to the template for displaying
158 my $renew_error = $query->param('renew_error');
159
160 $template->param(   BORROWER_INFO     => $borr,
161                     borrowernumber    => $borrowernumber,
162                     patron_flagged    => $borr->{flagged},
163                     OPACMySummaryHTML => (C4::Context->preference("OPACMySummaryHTML")) ? 1 : 0,
164                     surname           => $borr->{surname},
165                     RENEW_ERROR       => $renew_error,
166                     borrower          => $borr,
167                 );
168
169 #get issued items ....
170
171 my $count          = 0;
172 my $overdues_count = 0;
173 my @overdues;
174 my @issuedat;
175 my $itemtypes = GetItemTypes();
176 my $issues = GetPendingIssues($borrowernumber);
177 if ($issues){
178     foreach my $issue ( sort { $b->{date_due}->datetime() cmp $a->{date_due}->datetime() } @{$issues} ) {
179         # check for reserves
180         my $restype = GetReserveStatus( $issue->{'itemnumber'} );
181         if ( $restype ) {
182             $issue->{'reserved'} = 1;
183         }
184
185         my ( $total , $accts, $numaccts) = GetMemberAccountRecords( $borrowernumber );
186         my $charges = 0;
187         my $rentalfines = 0;
188         foreach my $ac (@$accts) {
189             if ( $ac->{'itemnumber'} == $issue->{'itemnumber'} ) {
190                 $charges += $ac->{'amountoutstanding'}
191                   if $ac->{'accounttype'} eq 'F';
192                 $charges += $ac->{'amountoutstanding'}
193                   if $ac->{'accounttype'} eq 'FU';
194                 $charges += $ac->{'amountoutstanding'}
195                   if $ac->{'accounttype'} eq 'L';
196                 $rentalfines += $ac->{'amountoutstanding'}
197                   if $ac->{'accounttype'} eq 'Rent';
198             }
199         }
200         $issue->{'charges'} = $charges;
201         $issue->{'rentalfines'} = $rentalfines;
202         my $marcrecord = GetMarcBiblio( $issue->{'biblionumber'} );
203         $issue->{'subtitle'} = GetRecordValue('subtitle', $marcrecord, GetFrameworkCode($issue->{'biblionumber'}));
204         # check if item is renewable
205         my ($status,$renewerror) = CanBookBeRenewed( $borrowernumber, $issue->{'itemnumber'} );
206         ($issue->{'renewcount'},$issue->{'renewsallowed'},$issue->{'renewsleft'}) = GetRenewCount($borrowernumber, $issue->{'itemnumber'});
207         if($status && C4::Context->preference("OpacRenewalAllowed")){
208             $issue->{'status'} = $status;
209         }
210
211         $issue->{'renewed'} = $renewed{ $issue->{'itemnumber'} };
212
213         if ($renewerror) {
214             $issue->{'too_many'}       = 1 if $renewerror eq 'too_many';
215             $issue->{'on_reserve'}     = 1 if $renewerror eq 'on_reserve';
216             $issue->{'norenew_overdue'} = 1 if $renewerror eq 'overdue';
217             $issue->{'auto_renew'}     = 1 if $renewerror eq 'auto_renew';
218             $issue->{'auto_too_soon'}  = 1 if $renewerror eq 'auto_too_soon';
219             $issue->{'auto_too_late'}  = 1 if $renewerror eq 'auto_too_late';
220
221             if ( $renewerror eq 'too_soon' ) {
222                 $issue->{'too_soon'}         = 1;
223                 $issue->{'soonestrenewdate'} = output_pref(
224                     C4::Circulation::GetSoonestRenewDate(
225                         $issue->{borrowernumber},
226                         $issue->{itemnumber}
227                     )
228                 );
229             }
230         }
231
232         if ( $issue->{'overdue'} ) {
233             push @overdues, $issue;
234             $overdues_count++;
235             $issue->{'overdue'} = 1;
236         }
237         else {
238             $issue->{'issued'} = 1;
239         }
240         # imageurl:
241         my $itemtype = $issue->{'itemtype'};
242         if ( $itemtype ) {
243             $issue->{'imageurl'}    = getitemtypeimagelocation( 'opac', $itemtypes->{$itemtype}->{'imageurl'} );
244             $issue->{'description'} = $itemtypes->{$itemtype}->{'description'};
245         }
246         push @issuedat, $issue;
247         $count++;
248
249         my $isbn = GetNormalizedISBN($issue->{'isbn'});
250         $issue->{normalized_isbn} = $isbn;
251         $issue->{normalized_upc} = GetNormalizedUPC( $marcrecord, C4::Context->preference('marcflavour') );
252
253                 # My Summary HTML
254                 if (my $my_summary_html = C4::Context->preference('OPACMySummaryHTML')){
255                     $issue->{author} ? $my_summary_html =~ s/{AUTHOR}/$issue->{author}/g : $my_summary_html =~ s/{AUTHOR}//g;
256                     $issue->{title} =~ s/\/+$//; # remove trailing slash
257                     $issue->{title} =~ s/\s+$//; # remove trailing space
258                     $issue->{title} ? $my_summary_html =~ s/{TITLE}/$issue->{title}/g : $my_summary_html =~ s/{TITLE}//g;
259                     $issue->{isbn} ? $my_summary_html =~ s/{ISBN}/$isbn/g : $my_summary_html =~ s/{ISBN}//g;
260                     $issue->{biblionumber} ? $my_summary_html =~ s/{BIBLIONUMBER}/$issue->{biblionumber}/g : $my_summary_html =~ s/{BIBLIONUMBER}//g;
261                     $issue->{MySummaryHTML} = $my_summary_html;
262                 }
263     }
264 }
265 my $overduesblockrenewing = C4::Context->preference('OverduesBlockRenewing');
266 $canrenew = 0 if ($overduesblockrenewing ne 'allow' and $overdues_count == $count);
267 $template->param( ISSUES       => \@issuedat );
268 $template->param( issues_count => $count );
269 $template->param( canrenew     => $canrenew );
270 $template->param( OVERDUES       => \@overdues );
271 $template->param( overdues_count => $overdues_count );
272
273 my $show_barcode = C4::Members::AttributeTypes::AttributeTypeExists( ATTRIBUTE_SHOW_BARCODE );
274 if ($show_barcode) {
275     my $patron_show_barcode = GetBorrowerAttributeValue($borrowernumber, ATTRIBUTE_SHOW_BARCODE);
276     undef $show_barcode if defined($patron_show_barcode) && !$patron_show_barcode;
277 }
278 $template->param( show_barcode => 1 ) if $show_barcode;
279
280 # now the reserved items....
281 my $reserves = Koha::Holds->search( { borrowernumber => $borrowernumber } );
282
283 $template->param(
284     RESERVES       => $reserves,
285     showpriority   => $show_priority,
286 );
287
288 # current alert subscriptions
289 my $alerts = getalert($borrowernumber);
290 foreach ( @$alerts ) {
291     $_->{ $_->{type} } = 1;
292     $_->{relatedto} = findrelatedto( $_->{type}, $_->{externalid} );
293 }
294
295 if (C4::Context->preference('BakerTaylorEnabled')) {
296     $template->param(
297         BakerTaylorEnabled  => 1,
298         BakerTaylorImageURL => &image_url(),
299         BakerTaylorLinkURL  => &link_url(),
300         BakerTaylorBookstoreURL => C4::Context->preference('BakerTaylorBookstoreURL'),
301     );
302 }
303
304 if (C4::Context->preference("OPACAmazonCoverImages") or 
305     C4::Context->preference("GoogleJackets") or
306     C4::Context->preference("BakerTaylorEnabled") or
307     C4::Context->preference("SyndeticsCoverImages")) {
308         $template->param(JacketImages=>1);
309 }
310
311 my $patron_messages = Koha::Patron::Messages->search(
312     {
313         borrowernumber => $borrowernumber,
314         message_type => 'B',
315     }
316 );
317
318 if (   C4::Context->preference('AllowPatronToSetCheckoutsVisibilityForGuarantor')
319     || C4::Context->preference('AllowStaffToSetCheckoutsVisibilityForGuarantor') )
320 {
321     my @relatives =
322       Koha::Database->new()->schema()->resultset("Borrower")->search(
323         {
324             privacy_guarantor_checkouts => 1,
325             'me.guarantorid'           => $borrowernumber
326         },
327         { prefetch => [ { 'issues' => { 'item' => 'biblio' } } ] }
328       );
329     $template->param( relatives => \@relatives );
330 }
331
332 $template->param(
333     borrower                 => scalar Koha::Patrons->find($borrowernumber),
334     patron_messages          => $patron_messages,
335     opacnote                 => $borr->{opacnote},
336     patronupdate             => $patronupdate,
337     OpacRenewalAllowed       => C4::Context->preference("OpacRenewalAllowed"),
338     userview                 => 1,
339     SuspendHoldsOpac         => C4::Context->preference('SuspendHoldsOpac'),
340     AutoResumeSuspendedHolds => C4::Context->preference('AutoResumeSuspendedHolds'),
341     OpacHoldNotes            => C4::Context->preference('OpacHoldNotes'),
342     failed_holds             => scalar $query->param('failed_holds'),
343 );
344
345 output_html_with_http_headers $query, $cookie, $template->output, undef, { force_no_caching => 1 };