7d56b040cbcc225ae696826fd8d0fce159cc9e30
[koha.git] / opac / opac-user.pl
1 #!/usr/bin/perl
2
3 # This file is part of Koha.
4 #
5 # Koha is free software; you can redistribute it and/or modify it under the
6 # terms of the GNU General Public License as published by the Free Software
7 # Foundation; either version 2 of the License, or (at your option) any later
8 # version.
9 #
10 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
11 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
12 # A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
13 #
14 # You should have received a copy of the GNU General Public License along with
15 # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
16 # Suite 330, Boston, MA  02111-1307 USA
17
18
19 use strict;
20
21 use CGI;
22
23 use C4::Auth;
24 use C4::Koha;
25 use C4::Circulation;
26 use C4::Reserves;
27 use C4::Members;
28 use C4::Output;
29 use C4::Biblio;
30 use C4::Items;
31 use C4::Dates qw/format_date/;
32 use C4::Letters;
33 use C4::Branch; # GetBranches
34
35 my $query = new CGI;
36
37 BEGIN {
38         if (C4::Context->preference('BakerTaylorEnabled')) {
39                 require C4::External::BakerTaylor;
40                 import C4::External::BakerTaylor qw(&image_url &link_url);
41         }
42 }
43
44 my ( $template, $borrowernumber, $cookie ) = get_template_and_user(
45     {
46         template_name   => "opac-user.tmpl",
47         query           => $query,
48         type            => "opac",
49         authnotrequired => 0,
50         flagsrequired   => { borrow => 1 },
51         debug           => 1,
52     }
53 );
54
55 my $patronupdate = $query->param('patronupdate');
56
57 # get borrower information ....
58 my ( $borr ) = GetMemberDetails( $borrowernumber );
59
60 $borr->{'dateenrolled'} = format_date( $borr->{'dateenrolled'} );
61 $borr->{'expiry'}       = format_date( $borr->{'expiry'} );
62 $borr->{'dateofbirth'}  = format_date( $borr->{'dateofbirth'} );
63 $borr->{'ethnicity'}    = fixEthnicity( $borr->{'ethnicity'} );
64
65 if ( $borr->{'debarred'} || $borr->{'gonenoaddress'} || $borr->{'lost'} ) {
66     $borr->{'flagged'} = 1;
67 }
68 # $make flagged available everywhere in the template
69 my $patron_flagged = $borr->{'flagged'};
70 if ( $borr->{'amountoutstanding'} > 5 ) {
71     $borr->{'amountoverfive'} = 1;
72 }
73 if ( 5 >= $borr->{'amountoutstanding'} && $borr->{'amountoutstanding'} > 0 ) {
74     $borr->{'amountoverzero'} = 1;
75 }
76 if ( $borr->{'amountoutstanding'} < 0 ) {
77     $borr->{'amountlessthanzero'} = 1;
78     $borr->{'amountoutstanding'} = -1 * ( $borr->{'amountoutstanding'} );
79 }
80
81 $borr->{'amountoutstanding'} = sprintf "%.02f", $borr->{'amountoutstanding'};
82
83 my @bordat;
84 $bordat[0] = $borr;
85
86 $template->param(   BORROWER_INFO  => \@bordat,
87                     borrowernumber => $borrowernumber,
88                     patron_flagged => $patron_flagged,
89                 );
90
91 #get issued items ....
92 my ($issues) = GetPendingIssues($borrowernumber);
93 my @issue_list = sort { $b->{'date_due'} cmp $a->{'date_due'} } @$issues;
94
95 my $count          = 0;
96 my $toggle = 0;
97 my $overdues_count = 0;
98 my @overdues;
99 my @issuedat;
100 my $itemtypes = GetItemTypes();
101 foreach my $issue ( @issue_list ) {
102         if($count%2 eq 0){ $issue->{'toggle'} = 1; } else { $issue->{'toggle'} = 0; }
103     # check for reserves
104     my ( $restype, $res ) = CheckReserves( $issue->{'itemnumber'} );
105     if ( $restype ) {
106         $issue->{'reserved'} = 1;
107     }
108     
109     my ( $total , $accts, $numaccts) = GetMemberAccountRecords( $borrowernumber );
110     my $charges = 0;
111     foreach my $ac (@$accts) {
112         if ( $ac->{'itemnumber'} == $issue->{'itemnumber'} ) {
113             $charges += $ac->{'amountoutstanding'}
114               if $ac->{'accounttype'} eq 'F';
115             $charges += $ac->{'amountoutstanding'}
116               if $ac->{'accounttype'} eq 'L';
117         }
118     }
119     $issue->{'charges'} = $charges;
120
121     # get publictype for icon
122
123     my $publictype = $issue->{'publictype'};
124     $issue->{$publictype} = 1;
125
126     # check if item is renewable
127     my ($status,$renewerror) = CanBookBeRenewed( $borrowernumber, $issue->{'itemnumber'} );
128         ($issue->{'renewcount'},$issue->{'renewsallowed'},$issue->{'renewsleft'}) = GetRenewCount($borrowernumber, $issue->{'itemnumber'});
129
130     $issue->{'status'} = $status || C4::Context->preference("OpacRenewalAllowed");
131
132     if ( $issue->{'overdue'} ) {
133         push @overdues, $issue;
134         $overdues_count++;
135         $issue->{'overdue'} = 1;
136     }
137     else {
138         $issue->{'issued'} = 1;
139     }
140     # imageurl:
141     my $itemtype = $issue->{'itemtype'};
142     if ( $itemtype ) {
143         $issue->{'imageurl'}    = getitemtypeimagelocation( 'opac', $itemtypes->{$itemtype}->{'imageurl'} );
144         $issue->{'description'} = $itemtypes->{$itemtype}->{'description'};
145     }
146     $issue->{date_due} = format_date($issue->{date_due});
147     push @issuedat, $issue;
148     $count++;
149         
150                 # XISBN Stuff
151         my $xisbn=$issue->{'isbn'};
152         $xisbn =~ /(\d*[X]*)/;
153         $issue->{amazonisbn} = $1;              # FIXME: so it is OK if the ISBN = 'XXXXX' ?
154         my ($clean, $amazonisbn);
155         $amazonisbn = $1;
156         # these might be overkill, but they are better than the regexp above.
157         if (
158                 $amazonisbn =~ /\b(\d{13})\b/ or
159                 $amazonisbn =~ /\b(\d{10})\b/ or 
160                 $amazonisbn =~ /\b(\d{9}X)\b/i
161         ) {
162                 $clean = $1;
163                 $issue->{clean_isbn} = $1;
164         }
165         
166 }
167
168 $template->param( ISSUES       => \@issuedat );
169 $template->param( issues_count => $count );
170
171 $template->param( OVERDUES       => \@overdues );
172 $template->param( overdues_count => $overdues_count );
173
174 # load the branches
175 my $branches = GetBranches();
176 my @branch_loop;
177 for my $branch_hash (sort keys %$branches ) {
178     my $selected=(C4::Context->userenv && ($branch_hash eq C4::Context->userenv->{branch})) if (C4::Context->preference('SearchMyLibraryFirst'));
179     push @branch_loop,
180       {
181         value      => "branch: $branch_hash",
182         branchname => $branches->{$branch_hash}->{'branchname'},
183         selected => $selected
184       };
185 }
186 $template->param( branchloop => \@branch_loop, "mylibraryfirst"=>C4::Context->preference("SearchMyLibraryFirst"));
187
188 # now the reserved items....
189 my @reserves  = GetReservesFromBorrowernumber( $borrowernumber );
190 foreach my $res (@reserves) {
191     $res->{'reservedate'} = format_date( $res->{'reservedate'} );
192     my $publictype = $res->{'publictype'};
193     $res->{$publictype} = 1;
194     $res->{'waiting'} = 1 if $res->{'found'} eq 'W';
195     $res->{'branch'} = $branches->{ $res->{'branchcode'} }->{'branchname'};
196     my $biblioData = GetBiblioData($res->{'biblionumber'});
197     $res->{'reserves_title'} = $biblioData->{'title'};
198 }
199
200 # use Data::Dumper;
201 # warn Dumper(@reserves);
202
203 $template->param( RESERVES       => \@reserves );
204 $template->param( reserves_count => $#reserves+1 );
205
206 my @waiting;
207 my $wcount = 0;
208 foreach my $res (@reserves) {
209     if ( $res->{'itemnumber'} ) {
210         my $item = GetItem( $res->{'itemnumber'});
211         $res->{'holdingbranch'} =
212           $branches->{ $item->{'holdingbranch'} }->{'branchname'};
213         $res->{'branch'} = $branches->{ $res->{'branchcode'} }->{'branchname'};
214         # get document reserve status
215         my $biblioData = GetBiblioData($res->{'biblionumber'});
216         $res->{'waiting_title'} = $biblioData->{'title'};
217         if ( ( $res->{'found'} eq 'W' ) ) {
218             my $item = $res->{'itemnumber'};
219             $item = GetBiblioFromItemNumber($item,undef);
220             $res->{'wait'}= 1; 
221             $res->{'holdingbranch'}=$item->{'holdingbranch'};
222             $res->{'biblionumber'}=$item->{'biblionumber'};
223             $res->{'barcodenumber'}     = $item->{'barcode'};
224             $res->{'wbrcode'} = $res->{'branchcode'};
225             $res->{'itemnumber'}        = $res->{'itemnumber'};
226             $res->{'wbrname'} = $branches->{$res->{'branchcode'}}->{'branchname'};
227             if($res->{'holdingbranch'} eq $res->{'wbrcode'}){
228                 $res->{'atdestination'} = 1;
229             }
230             # set found to 1 if reserve is waiting for patron pickup
231             $res->{'found'} = 1 if $res->{'found'} eq 'W';
232         } else {
233             my ($transfertwhen, $transfertfrom, $transfertto) = GetTransfers( $res->{'itemnumber'} );
234             if ($transfertwhen) {
235                 $res->{intransit} = 1;
236                 $res->{datesent}   = format_date($transfertwhen);
237                 $res->{frombranch} = GetBranchName($transfertfrom);
238             }
239         }
240         push @waiting, $res;
241         $wcount++;
242     }
243 }
244
245 $template->param( WAITING => \@waiting );
246
247 # current alert subscriptions
248 my $alerts = getalert($borrowernumber);
249 foreach ( @$alerts ) {
250     $_->{ $_->{type} } = 1;
251     $_->{relatedto} = findrelatedto( $_->{type}, $_->{externalid} );
252 }
253
254 if (C4::Context->preference('BakerTaylorEnabled')) {
255         $template->param(
256                 BakerTaylorEnabled  => 1,
257                 BakerTaylorImageURL => &image_url(),
258                 BakerTaylorLinkURL  => &link_url(),
259                 BakerTaylorBookstoreURL => C4::Context->preference('BakerTaylorBookstoreURL'),
260         );
261 }
262
263 if (C4::Context->preference("AmazonContent"     ) or 
264         C4::Context->preference("GoogleJackets"     ) or
265         C4::Context->preference("BakerTaylorEnabled")   ) {
266                 $template->param(JacketImages=>1);
267 }
268
269 $template->param(
270     waiting_count      => $wcount,
271     textmessaging      => $borr->{textmessaging},
272         patronupdate => $patronupdate,
273         OpacRenewalAllowed => C4::Context->preference("OpacRenewalAllowed"),
274         userview => 1,
275         dateformat    => C4::Context->preference("dateformat"),
276 );
277
278 output_html_with_http_headers $query, $cookie, $template->output;
279