Bug 6739: make it possible to block expired patrons from OPAC actions
[koha_fer] / 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 under the
7 # terms of the GNU General Public License as published by the Free Software
8 # Foundation; either version 2 of the License, or (at your option) any later
9 # version.
10 #
11 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
12 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
13 # A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
14 #
15 # You should have received a copy of the GNU General Public License along
16 # with Koha; if not, write to the Free Software Foundation, Inc.,
17 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18
19
20 use strict;
21 #use warnings; FIXME - Bug 2505
22
23 use CGI;
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 C4::Branch; # GetBranches
37 use Koha::DateUtils;
38
39 use constant ATTRIBUTE_SHOW_BARCODE => 'SHOW_BCODE';
40
41 use Date::Calc qw(
42   Today
43   Add_Delta_Days
44   Date_to_Days
45 );
46
47 my $query = new CGI;
48
49 BEGIN {
50     if (C4::Context->preference('BakerTaylorEnabled')) {
51         require C4::External::BakerTaylor;
52         import C4::External::BakerTaylor qw(&image_url &link_url);
53     }
54 }
55
56 my ( $template, $borrowernumber, $cookie ) = get_template_and_user(
57     {
58         template_name   => "opac-user.tmpl",
59         query           => $query,
60         type            => "opac",
61         authnotrequired => 0,
62         flagsrequired   => { borrow => 1 },
63         debug           => 1,
64     }
65 );
66
67 my $OPACDisplayRequestPriority = (C4::Context->preference("OPACDisplayRequestPriority")) ? 1 : 0;
68 my $patronupdate = $query->param('patronupdate');
69 my $canrenew = 1;
70
71 # get borrower information ....
72 my ( $borr ) = GetMemberDetails( $borrowernumber );
73
74 my (  $today_year,   $today_month,   $today_day) = Today();
75 my ($warning_year, $warning_month, $warning_day) = split /-/, $borr->{'dateexpiry'};
76
77 $borr->{'ethnicity'} = fixEthnicity( $borr->{'ethnicity'} );
78
79 my $debar = $borr->{'debarred'};
80 my $userdebarred;
81
82 if ($debar) {
83     $userdebarred = 1;
84     $template->param( 'userdebarred' => $userdebarred );
85     if ( $debar ne "9999-12-31" ) {
86         $borr->{'userdebarreddate'} = $debar;
87     }
88 }
89
90 if ( $userdebarred || $borr->{'gonenoaddress'} || $borr->{'lost'} ) {
91     $borr->{'flagged'} = 1;
92     $canrenew = 0;
93 }
94
95 if ( $borr->{'amountoutstanding'} > 5 ) {
96     $borr->{'amountoverfive'} = 1;
97 }
98 if ( 5 >= $borr->{'amountoutstanding'} && $borr->{'amountoutstanding'} > 0 ) {
99     $borr->{'amountoverzero'} = 1;
100 }
101 my $no_renewal_amt = C4::Context->preference( 'OPACFineNoRenewals' );
102 $no_renewal_amt ||= 0;
103
104 if (  C4::Context->preference( 'OpacRenewalAllowed' ) && $borr->{amountoutstanding} > $no_renewal_amt ) {
105     $borr->{'flagged'} = 1;
106     $canrenew = 0;
107     $template->param(
108         renewal_blocked_fines => sprintf( '%.02f', $no_renewal_amt ),
109     );
110 }
111
112 if ( $borr->{'amountoutstanding'} < 0 ) {
113     $borr->{'amountlessthanzero'} = 1;
114     $borr->{'amountoutstanding'} = -1 * ( $borr->{'amountoutstanding'} );
115 }
116
117 $borr->{'amountoutstanding'} = sprintf "%.02f", $borr->{'amountoutstanding'};
118
119 my @bordat;
120 $bordat[0] = $borr;
121
122 # Warningdate is the date that the warning starts appearing
123 if ( $borr->{'dateexpiry'} && C4::Context->preference('NotifyBorrowerDeparture') ) {
124     my $days_to_expiry = Date_to_Days( $warning_year, $warning_month, $warning_day ) - Date_to_Days( $today_year, $today_month, $today_day );
125     if ( $days_to_expiry < 0 ) {
126         #borrower card has expired, warn the borrower
127         $borr->{'warnexpired'} = $borr->{'dateexpiry'};
128     } elsif ( $days_to_expiry < C4::Context->preference('NotifyBorrowerDeparture') ) {
129         # borrower card soon to expire, warn the borrower
130         $borr->{'warndeparture'} = $borr->{dateexpiry};
131         if (C4::Context->preference('ReturnBeforeExpiry')){
132             $borr->{'returnbeforeexpiry'} = 1;
133         }
134     }
135 }
136
137 # pass on any renew errors to the template for displaying
138 $template->param( RENEW_ERROR => $query->param('renew_error') ) if $query->param('renew_error');
139
140 $template->param(   BORROWER_INFO     => \@bordat,
141                     borrowernumber    => $borrowernumber,
142                     patron_flagged    => $borr->{flagged},
143                     OPACMySummaryHTML => (C4::Context->preference("OPACMySummaryHTML")) ? 1 : 0,
144                     surname           => $borr->{surname},
145                     showname          => $borr->{showname},
146                 );
147
148 #get issued items ....
149
150 my $count          = 0;
151 my $overdues_count = 0;
152 my @overdues;
153 my @issuedat;
154 my $itemtypes = GetItemTypes();
155 my $issues = GetPendingIssues($borrowernumber);
156 if ($issues){
157     foreach my $issue ( sort { $b->{date_due}->datetime() cmp $a->{date_due}->datetime() } @{$issues} ) {
158         # check for reserves
159         my ( $restype, $res, undef ) = CheckReserves( $issue->{'itemnumber'} );
160         if ( $restype ) {
161             $issue->{'reserved'} = 1;
162         }
163
164         my ( $total , $accts, $numaccts) = GetMemberAccountRecords( $borrowernumber );
165         my $charges = 0;
166         foreach my $ac (@$accts) {
167             if ( $ac->{'itemnumber'} == $issue->{'itemnumber'} ) {
168                 $charges += $ac->{'amountoutstanding'}
169                   if $ac->{'accounttype'} eq 'F';
170                 $charges += $ac->{'amountoutstanding'}
171                   if $ac->{'accounttype'} eq 'L';
172             }
173         }
174         $issue->{'charges'} = $charges;
175         $issue->{'subtitle'} = GetRecordValue('subtitle', GetMarcBiblio($issue->{'biblionumber'}), GetFrameworkCode($issue->{'biblionumber'}));
176         # check if item is renewable
177         my ($status,$renewerror) = CanBookBeRenewed( $borrowernumber, $issue->{'itemnumber'} );
178         ($issue->{'renewcount'},$issue->{'renewsallowed'},$issue->{'renewsleft'}) = GetRenewCount($borrowernumber, $issue->{'itemnumber'});
179         if($status && C4::Context->preference("OpacRenewalAllowed")){
180             $issue->{'status'} = $status;
181         }
182
183         if ($renewerror) {
184             $issue->{'too_many'}   = 1 if $renewerror eq 'too_many';
185             $issue->{'on_reserve'} = 1 if $renewerror eq 'on_reserve';
186
187             if ( $renewerror eq 'too_soon' ) {
188                 $issue->{'too_soon'}         = 1;
189                 $issue->{'soonestrenewdate'} = output_pref(
190                     C4::Circulation::GetSoonestRenewDate(
191                         $issue->{borrowernumber},
192                         $issue->{itemnumber}
193                     )
194                 );
195             }
196         }
197
198         if ( $issue->{'overdue'} ) {
199             push @overdues, $issue;
200             $overdues_count++;
201             $issue->{'overdue'} = 1;
202         }
203         else {
204             $issue->{'issued'} = 1;
205         }
206         # imageurl:
207         my $itemtype = $issue->{'itemtype'};
208         if ( $itemtype ) {
209             $issue->{'imageurl'}    = getitemtypeimagelocation( 'opac', $itemtypes->{$itemtype}->{'imageurl'} );
210             $issue->{'description'} = $itemtypes->{$itemtype}->{'description'};
211         }
212         push @issuedat, $issue;
213         $count++;
214
215         my $isbn = GetNormalizedISBN($issue->{'isbn'});
216         $issue->{normalized_isbn} = $isbn;
217
218                 # My Summary HTML
219                 if (my $my_summary_html = C4::Context->preference('OPACMySummaryHTML')){
220                     $issue->{author} ? $my_summary_html =~ s/{AUTHOR}/$issue->{author}/g : $my_summary_html =~ s/{AUTHOR}//g;
221                     $issue->{title} =~ s/\/+$//; # remove trailing slash
222                     $issue->{title} =~ s/\s+$//; # remove trailing space
223                     $issue->{title} ? $my_summary_html =~ s/{TITLE}/$issue->{title}/g : $my_summary_html =~ s/{TITLE}//g;
224                     $issue->{isbn} ? $my_summary_html =~ s/{ISBN}/$isbn/g : $my_summary_html =~ s/{ISBN}//g;
225                     $issue->{biblionumber} ? $my_summary_html =~ s/{BIBLIONUMBER}/$issue->{biblionumber}/g : $my_summary_html =~ s/{BIBLIONUMBER}//g;
226                     $issue->{MySummaryHTML} = $my_summary_html;
227                 }
228     }
229 }
230 $template->param( ISSUES       => \@issuedat );
231 $template->param( issues_count => $count );
232 $template->param( canrenew     => $canrenew );
233 $template->param( OVERDUES       => \@overdues );
234 $template->param( overdues_count => $overdues_count );
235
236 my $show_barcode = C4::Members::AttributeTypes::AttributeTypeExists( ATTRIBUTE_SHOW_BARCODE );
237 if ($show_barcode) {
238     my $patron_show_barcode = GetBorrowerAttributeValue($borrowernumber, ATTRIBUTE_SHOW_BARCODE);
239     undef $show_barcode if defined($patron_show_barcode) && !$patron_show_barcode;
240 }
241 $template->param( show_barcode => 1 ) if $show_barcode;
242
243 # load the branches
244 my $branches = GetBranches();
245 my @branch_loop;
246 for my $branch_hash ( sort keys %{$branches} ) {
247     my $selected;
248     if ( C4::Context->preference('SearchMyLibraryFirst') ) {
249         $selected =
250           ( C4::Context->userenv
251               && ( $branch_hash eq C4::Context->userenv->{branch} ) );
252     }
253     push @branch_loop,
254       { value      => "branch: $branch_hash",
255         branchname => $branches->{$branch_hash}->{'branchname'},
256         selected   => $selected,
257       };
258 }
259 $template->param( branchloop => \@branch_loop );
260
261 # now the reserved items....
262 my @reserves  = GetReservesFromBorrowernumber( $borrowernumber );
263 foreach my $res (@reserves) {
264
265     if ( $res->{'expirationdate'} eq '0000-00-00' ) {
266       $res->{'expirationdate'} = '';
267     }
268     $res->{'subtitle'} = GetRecordValue('subtitle', GetMarcBiblio($res->{'biblionumber'}), GetFrameworkCode($res->{'biblionumber'}));
269     $res->{'waiting'} = 1 if $res->{'found'} eq 'W';
270     $res->{'branch'} = $branches->{ $res->{'branchcode'} }->{'branchname'};
271     my $biblioData = GetBiblioData($res->{'biblionumber'});
272     $res->{'reserves_title'} = $biblioData->{'title'};
273     if ($OPACDisplayRequestPriority) {
274         $res->{'priority'} = '' if $res->{'priority'} eq '0';
275     }
276     $res->{'suspend_until'} = C4::Dates->new( $res->{'suspend_until'}, "iso")->output("syspref") if ( $res->{'suspend_until'} );
277 }
278
279 # use Data::Dumper;
280 # warn Dumper(@reserves);
281
282 $template->param( RESERVES       => \@reserves );
283 $template->param( reserves_count => $#reserves+1 );
284 $template->param( showpriority=>1 ) if $OPACDisplayRequestPriority;
285
286 my @waiting;
287 my $wcount = 0;
288 foreach my $res (@reserves) {
289     if ( $res->{'itemnumber'} ) {
290         my $item = GetItem( $res->{'itemnumber'});
291         $res->{'holdingbranch'} =
292           $branches->{ $item->{'holdingbranch'} }->{'branchname'};
293         $res->{'branch'} = $branches->{ $res->{'branchcode'} }->{'branchname'};
294         # get document reserve status
295         my $biblioData = GetBiblioData($res->{'biblionumber'});
296         $res->{'waiting_title'} = $biblioData->{'title'};
297         if ( ( $res->{'found'} eq 'W' ) ) {
298             my $item = $res->{'itemnumber'};
299             $item = GetBiblioFromItemNumber($item,undef);
300             $res->{'wait'}= 1;
301             $res->{'holdingbranch'}=$item->{'holdingbranch'};
302             $res->{'biblionumber'}=$item->{'biblionumber'};
303             $res->{'barcode'} = $item->{'barcode'};
304             $res->{'wbrcode'} = $res->{'branchcode'};
305             $res->{'itemnumber'}    = $res->{'itemnumber'};
306             $res->{'wbrname'} = $branches->{$res->{'branchcode'}}->{'branchname'};
307             if($res->{'holdingbranch'} eq $res->{'wbrcode'}){
308                 $res->{'atdestination'} = 1;
309             }
310             # set found to 1 if reserve is waiting for patron pickup
311             $res->{'found'} = 1 if $res->{'found'} eq 'W';
312         } else {
313             my ($transfertwhen, $transfertfrom, $transfertto) = GetTransfers( $res->{'itemnumber'} );
314             if ($transfertwhen) {
315                 $res->{intransit} = 1;
316                 $res->{datesent}   = $transfertwhen;
317                 $res->{frombranch} = GetBranchName($transfertfrom);
318             }
319         }
320         push @waiting, $res;
321         $wcount++;
322     }
323     # can be cancelled
324     #$res->{'cancelable'} = 1 if ($res->{'wait'} && $res->{'atdestination'} && $res->{'found'} ne "1");
325     $res->{'cancelable'} = 1 if    ($res->{wait} and not $res->{found}) or (not $res->{wait} and not $res->{intransit});
326
327 }
328
329 $template->param( WAITING => \@waiting );
330
331 # current alert subscriptions
332 my $alerts = getalert($borrowernumber);
333 foreach ( @$alerts ) {
334     $_->{ $_->{type} } = 1;
335     $_->{relatedto} = findrelatedto( $_->{type}, $_->{externalid} );
336 }
337
338 if (C4::Context->preference('BakerTaylorEnabled')) {
339     $template->param(
340         BakerTaylorEnabled  => 1,
341         BakerTaylorImageURL => &image_url(),
342         BakerTaylorLinkURL  => &link_url(),
343         BakerTaylorBookstoreURL => C4::Context->preference('BakerTaylorBookstoreURL'),
344     );
345 }
346
347 if (C4::Context->preference("OPACAmazonCoverImages") or 
348     C4::Context->preference("GoogleJackets") or
349     C4::Context->preference("BakerTaylorEnabled") or
350     C4::Context->preference("SyndeticsCoverImages")) {
351         $template->param(JacketImages=>1);
352 }
353
354 if ( GetMessagesCount( $borrowernumber, 'B' ) ) {
355     $template->param( bor_messages => 1 );
356 }
357
358 if ( $borr->{'opacnote'} ) {
359   $template->param( 
360     bor_messages => 1,
361     opacnote => $borr->{'opacnote'},
362   );
363 }
364
365 $template->param(
366     bor_messages_loop    => GetMessages( $borrowernumber, 'B', 'NONE' ),
367     waiting_count      => $wcount,
368     patronupdate => $patronupdate,
369     OpacRenewalAllowed => C4::Context->preference("OpacRenewalAllowed"),
370     userview => 1,
371     dateformat => C4::Context->preference("dateformat"),
372 );
373
374 $template->param(
375     SuspendHoldsOpac => C4::Context->preference('SuspendHoldsOpac'),
376     AutoResumeSuspendedHolds => C4::Context->preference('AutoResumeSuspendedHolds'),
377     OpacHoldNotes => C4::Context->preference('OpacHoldNotes'),
378 );
379
380 output_html_with_http_headers $query, $cookie, $template->output;
381