Bug 6739: (follow-up) fix various issues
[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 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 my $renew_error = $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                     RENEW_ERROR       => $renew_error,
147                 );
148
149 #get issued items ....
150
151 my $count          = 0;
152 my $overdues_count = 0;
153 my @overdues;
154 my @issuedat;
155 my $itemtypes = GetItemTypes();
156 my $issues = GetPendingIssues($borrowernumber);
157 if ($issues){
158     foreach my $issue ( sort { $b->{date_due}->datetime() cmp $a->{date_due}->datetime() } @{$issues} ) {
159         # check for reserves
160         my ( $restype, $res, undef ) = CheckReserves( $issue->{'itemnumber'} );
161         if ( $restype ) {
162             $issue->{'reserved'} = 1;
163         }
164
165         my ( $total , $accts, $numaccts) = GetMemberAccountRecords( $borrowernumber );
166         my $charges = 0;
167         foreach my $ac (@$accts) {
168             if ( $ac->{'itemnumber'} == $issue->{'itemnumber'} ) {
169                 $charges += $ac->{'amountoutstanding'}
170                   if $ac->{'accounttype'} eq 'F';
171                 $charges += $ac->{'amountoutstanding'}
172                   if $ac->{'accounttype'} eq 'L';
173             }
174         }
175         $issue->{'charges'} = $charges;
176         $issue->{'subtitle'} = GetRecordValue('subtitle', GetMarcBiblio($issue->{'biblionumber'}), GetFrameworkCode($issue->{'biblionumber'}));
177         # check if item is renewable
178         my ($status,$renewerror) = CanBookBeRenewed( $borrowernumber, $issue->{'itemnumber'} );
179         ($issue->{'renewcount'},$issue->{'renewsallowed'},$issue->{'renewsleft'}) = GetRenewCount($borrowernumber, $issue->{'itemnumber'});
180         if($status && C4::Context->preference("OpacRenewalAllowed")){
181             $issue->{'status'} = $status;
182         }
183
184         if ($renewerror) {
185             $issue->{'too_many'}   = 1 if $renewerror eq 'too_many';
186             $issue->{'on_reserve'} = 1 if $renewerror eq 'on_reserve';
187
188             if ( $renewerror eq 'too_soon' ) {
189                 $issue->{'too_soon'}         = 1;
190                 $issue->{'soonestrenewdate'} = output_pref(
191                     C4::Circulation::GetSoonestRenewDate(
192                         $issue->{borrowernumber},
193                         $issue->{itemnumber}
194                     )
195                 );
196             }
197         }
198
199         if ( $issue->{'overdue'} ) {
200             push @overdues, $issue;
201             $overdues_count++;
202             $issue->{'overdue'} = 1;
203         }
204         else {
205             $issue->{'issued'} = 1;
206         }
207         # imageurl:
208         my $itemtype = $issue->{'itemtype'};
209         if ( $itemtype ) {
210             $issue->{'imageurl'}    = getitemtypeimagelocation( 'opac', $itemtypes->{$itemtype}->{'imageurl'} );
211             $issue->{'description'} = $itemtypes->{$itemtype}->{'description'};
212         }
213         push @issuedat, $issue;
214         $count++;
215
216         my $isbn = GetNormalizedISBN($issue->{'isbn'});
217         $issue->{normalized_isbn} = $isbn;
218
219                 # My Summary HTML
220                 if (my $my_summary_html = C4::Context->preference('OPACMySummaryHTML')){
221                     $issue->{author} ? $my_summary_html =~ s/{AUTHOR}/$issue->{author}/g : $my_summary_html =~ s/{AUTHOR}//g;
222                     $issue->{title} =~ s/\/+$//; # remove trailing slash
223                     $issue->{title} =~ s/\s+$//; # remove trailing space
224                     $issue->{title} ? $my_summary_html =~ s/{TITLE}/$issue->{title}/g : $my_summary_html =~ s/{TITLE}//g;
225                     $issue->{isbn} ? $my_summary_html =~ s/{ISBN}/$isbn/g : $my_summary_html =~ s/{ISBN}//g;
226                     $issue->{biblionumber} ? $my_summary_html =~ s/{BIBLIONUMBER}/$issue->{biblionumber}/g : $my_summary_html =~ s/{BIBLIONUMBER}//g;
227                     $issue->{MySummaryHTML} = $my_summary_html;
228                 }
229     }
230 }
231 $template->param( ISSUES       => \@issuedat );
232 $template->param( issues_count => $count );
233 $template->param( canrenew     => $canrenew );
234 $template->param( OVERDUES       => \@overdues );
235 $template->param( overdues_count => $overdues_count );
236
237 my $show_barcode = C4::Members::AttributeTypes::AttributeTypeExists( ATTRIBUTE_SHOW_BARCODE );
238 if ($show_barcode) {
239     my $patron_show_barcode = GetBorrowerAttributeValue($borrowernumber, ATTRIBUTE_SHOW_BARCODE);
240     undef $show_barcode if defined($patron_show_barcode) && !$patron_show_barcode;
241 }
242 $template->param( show_barcode => 1 ) if $show_barcode;
243
244 # load the branches
245 my $branches = GetBranches();
246 my @branch_loop;
247 for my $branch_hash ( sort keys %{$branches} ) {
248     my $selected;
249     if ( C4::Context->preference('SearchMyLibraryFirst') ) {
250         $selected =
251           ( C4::Context->userenv
252               && ( $branch_hash eq C4::Context->userenv->{branch} ) );
253     }
254     push @branch_loop,
255       { value      => "branch: $branch_hash",
256         branchname => $branches->{$branch_hash}->{'branchname'},
257         selected   => $selected,
258       };
259 }
260 $template->param( branchloop => \@branch_loop );
261
262 # now the reserved items....
263 my @reserves  = GetReservesFromBorrowernumber( $borrowernumber );
264 foreach my $res (@reserves) {
265
266     if ( $res->{'expirationdate'} eq '0000-00-00' ) {
267       $res->{'expirationdate'} = '';
268     }
269     $res->{'subtitle'} = GetRecordValue('subtitle', GetMarcBiblio($res->{'biblionumber'}), GetFrameworkCode($res->{'biblionumber'}));
270     $res->{'waiting'} = 1 if $res->{'found'} eq 'W';
271     $res->{'branch'} = $branches->{ $res->{'branchcode'} }->{'branchname'};
272     my $biblioData = GetBiblioData($res->{'biblionumber'});
273     $res->{'reserves_title'} = $biblioData->{'title'};
274     if ($OPACDisplayRequestPriority) {
275         $res->{'priority'} = '' if $res->{'priority'} eq '0';
276     }
277     $res->{'suspend_until'} = C4::Dates->new( $res->{'suspend_until'}, "iso")->output("syspref") if ( $res->{'suspend_until'} );
278 }
279
280 # use Data::Dumper;
281 # warn Dumper(@reserves);
282
283 $template->param( RESERVES       => \@reserves );
284 $template->param( reserves_count => $#reserves+1 );
285 $template->param( showpriority=>1 ) if $OPACDisplayRequestPriority;
286
287 my @waiting;
288 my $wcount = 0;
289 foreach my $res (@reserves) {
290     if ( $res->{'itemnumber'} ) {
291         my $item = GetItem( $res->{'itemnumber'});
292         $res->{'holdingbranch'} =
293           $branches->{ $item->{'holdingbranch'} }->{'branchname'};
294         $res->{'branch'} = $branches->{ $res->{'branchcode'} }->{'branchname'};
295         # get document reserve status
296         my $biblioData = GetBiblioData($res->{'biblionumber'});
297         $res->{'waiting_title'} = $biblioData->{'title'};
298         if ( ( $res->{'found'} eq 'W' ) ) {
299             my $item = $res->{'itemnumber'};
300             $item = GetBiblioFromItemNumber($item,undef);
301             $res->{'wait'}= 1;
302             $res->{'holdingbranch'}=$item->{'holdingbranch'};
303             $res->{'biblionumber'}=$item->{'biblionumber'};
304             $res->{'barcode'} = $item->{'barcode'};
305             $res->{'wbrcode'} = $res->{'branchcode'};
306             $res->{'itemnumber'}    = $res->{'itemnumber'};
307             $res->{'wbrname'} = $branches->{$res->{'branchcode'}}->{'branchname'};
308             if($res->{'holdingbranch'} eq $res->{'wbrcode'}){
309                 $res->{'atdestination'} = 1;
310             }
311             # set found to 1 if reserve is waiting for patron pickup
312             $res->{'found'} = 1 if $res->{'found'} eq 'W';
313         } else {
314             my ($transfertwhen, $transfertfrom, $transfertto) = GetTransfers( $res->{'itemnumber'} );
315             if ($transfertwhen) {
316                 $res->{intransit} = 1;
317                 $res->{datesent}   = $transfertwhen;
318                 $res->{frombranch} = GetBranchName($transfertfrom);
319             }
320         }
321         push @waiting, $res;
322         $wcount++;
323     }
324     # can be cancelled
325     #$res->{'cancelable'} = 1 if ($res->{'wait'} && $res->{'atdestination'} && $res->{'found'} ne "1");
326     $res->{'cancelable'} = 1 if    ($res->{wait} and not $res->{found}) or (not $res->{wait} and not $res->{intransit});
327
328 }
329
330 $template->param( WAITING => \@waiting );
331
332 # current alert subscriptions
333 my $alerts = getalert($borrowernumber);
334 foreach ( @$alerts ) {
335     $_->{ $_->{type} } = 1;
336     $_->{relatedto} = findrelatedto( $_->{type}, $_->{externalid} );
337 }
338
339 if (C4::Context->preference('BakerTaylorEnabled')) {
340     $template->param(
341         BakerTaylorEnabled  => 1,
342         BakerTaylorImageURL => &image_url(),
343         BakerTaylorLinkURL  => &link_url(),
344         BakerTaylorBookstoreURL => C4::Context->preference('BakerTaylorBookstoreURL'),
345     );
346 }
347
348 if (C4::Context->preference("OPACAmazonCoverImages") or 
349     C4::Context->preference("GoogleJackets") or
350     C4::Context->preference("BakerTaylorEnabled") or
351     C4::Context->preference("SyndeticsCoverImages")) {
352         $template->param(JacketImages=>1);
353 }
354
355 if ( GetMessagesCount( $borrowernumber, 'B' ) ) {
356     $template->param( bor_messages => 1 );
357 }
358
359 if ( $borr->{'opacnote'} ) {
360   $template->param( 
361     bor_messages => 1,
362     opacnote => $borr->{'opacnote'},
363   );
364 }
365
366 $template->param(
367     bor_messages_loop    => GetMessages( $borrowernumber, 'B', 'NONE' ),
368     waiting_count      => $wcount,
369     patronupdate => $patronupdate,
370     OpacRenewalAllowed => C4::Context->preference("OpacRenewalAllowed"),
371     userview => 1,
372     dateformat => C4::Context->preference("dateformat"),
373 );
374
375 $template->param(
376     SuspendHoldsOpac => C4::Context->preference('SuspendHoldsOpac'),
377     AutoResumeSuspendedHolds => C4::Context->preference('AutoResumeSuspendedHolds'),
378     OpacHoldNotes => C4::Context->preference('OpacHoldNotes'),
379 );
380
381 output_html_with_http_headers $query, $cookie, $template->output;
382