item rework: moved various accessor functions
[koha.git] / catalogue / detail.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 require Exporter;
21 use CGI;
22 use C4::Auth;
23 use C4::Date qw/format_date/;
24 use C4::Koha;
25 use C4::Serials;    #uses getsubscriptionfrom biblionumber
26 use C4::Output;
27 use C4::Biblio;
28 use C4::Items;
29 use C4::Circulation;
30 use C4::Branch;
31 use C4::Reserves;
32 use C4::Members;
33 use C4::Serials;
34 use C4::XISBN qw(get_xisbns get_biblio_from_xisbn);
35 use C4::Amazon;
36
37 my $query = new CGI;
38 my ( $template, $borrowernumber, $cookie ) = get_template_and_user(
39     {
40         template_name   => "catalogue/detail.tmpl",
41         query           => $query,
42         type            => "intranet",
43         authnotrequired => 0,
44         flagsrequired   => { catalogue => 1 },
45     }
46 );
47
48 my $biblionumber = $query->param('biblionumber');
49 my $fw = GetFrameworkCode($biblionumber);
50
51 # Get Branches, Itemtypes and Locations
52 my $branches = GetBranches();
53 my $itemtypes = GetItemTypes();
54
55 my %locations;
56 # FIXME: move this to a pm, check waiting status for holds
57 my $dbh = C4::Context->dbh;
58 my $lsch = $dbh->prepare("SELECT authorised_value,lib FROM authorised_values WHERE category = 'LOC'");
59 $lsch->execute();
60 while (my $ldata = $lsch->fetchrow_hashref ) {
61     $locations{ $ldata->{'authorised_value'} } = $ldata->{'lib'};
62 }
63
64 # change back when ive fixed request.pl
65 my @items = &GetItemsInfo( $biblionumber, 'intra' );
66 my $dat = &GetBiblioData($biblionumber);
67
68 if (!$dat) { 
69     print $query->redirect("/cgi-bin/koha/koha-tmpl/errors/404.pl");
70 }
71
72 #coping with subscriptions
73 my $subscriptionsnumber = CountSubscriptionFromBiblionumber($biblionumber);
74 my @subscriptions       = GetSubscriptions( $dat->{title}, $dat->{issn}, $biblionumber );
75
76 my @subs;
77 foreach my $subscription (@subscriptions) {
78     my %cell;
79     $cell{subscriptionid}    = $subscription->{subscriptionid};
80     $cell{subscriptionnotes} = $subscription->{notes};
81
82     #get the three latest serials.
83     $cell{latestserials} =
84       GetLatestSerials( $subscription->{subscriptionid}, 3 );
85     push @subs, \%cell;
86 }
87 $dat->{imageurl} = getitemtypeimagesrc() . "/".$itemtypes->{ $dat->{itemtype} }{imageurl};
88 $dat->{'count'} = @items;
89 my @itemloop;
90 my $norequests = 1;
91 foreach my $item (@items) {
92
93     # can place holds defaults to yes
94     $norequests = 0 unless ( ( $item->{'notforloan'} > 0 ) || ( $item->{'itemnotforloan'} > 0 ) );
95
96     # format some item fields for display
97     $item->{ $item->{'publictype'} } = 1;
98     $item->{imageurl} = getitemtypeimagesrc() . "/".$itemtypes->{ $item->{itype} }{imageurl};
99     $item->{datedue} = format_date($item->{datedue});
100     $item->{datelastseen} = format_date($item->{datelastseen});
101     $item->{onloan} = format_date($item->{onloan});
102     $item->{locationname} = $locations{$item->{location}};
103     # item damaged, lost, withdrawn loops
104     $item->{itemlostloop}= GetAuthorisedValues(GetAuthValCode('items.itemlost',$fw),$item->{itemlost}) if GetAuthValCode('items.itemlost',$fw);
105     if ($item->{damaged}) {
106         $item->{itemdamagedloop}= GetAuthorisedValues(GetAuthValCode('items.damaged',$fw),$item->{damaged}) if GetAuthValCode('items.damaged',$fw);
107     }
108
109     # checking for holds
110     my ($reservedate,$reservedfor,$expectedAt) = GetReservesFromItemnumber($item->{itemnumber});
111     my $ItemBorrowerReserveInfo = GetMemberDetails( $reservedfor, 0);
112
113     if ( defined $reservedate ) {
114         $item->{backgroundcolor} = 'reserved';
115         $item->{reservedate}     = format_date($reservedate);
116         $item->{ReservedForBorrowernumber}     = $reservedfor;
117         $item->{ReservedForSurname}     = $ItemBorrowerReserveInfo->{'surname'};
118         $item->{ReservedForFirstname}     = $ItemBorrowerReserveInfo->{'firstname'};
119         $item->{ExpectedAtLibrary}     = $branches->{$expectedAt}{branchname};
120     }
121
122         # Check the transit status
123     my ( $transfertwhen, $transfertfrom, $transfertto ) = GetTransfers($item->{itemnumber});
124     if ( $transfertwhen ne '' ) {
125         $item->{transfertwhen} = format_date($transfertwhen);
126         $item->{transfertfrom} = $branches->{$transfertfrom}{branchname};
127         $item->{transfertto} = $branches->{$transfertto}{branchname};
128         $item->{nocancel} = 1;
129     }
130
131     # FIXME: move this to a pm, check waiting status for holds
132     my $sth2 = $dbh->prepare("SELECT * FROM reserves WHERE borrowernumber=? AND itemnumber=? AND found='W' AND cancellationdate IS NULL");
133     $sth2->execute($item->{ReservedForBorrowernumber},$item->{itemnumber});
134     while (my $wait_hashref = $sth2->fetchrow_hashref) {
135         $item->{waitingdate} = format_date($wait_hashref->{waitingdate});
136     }
137
138     push @itemloop, $item;
139 }
140
141 $template->param( norequests => $norequests );
142
143 ## get notes and subjects from MARC record
144     my $dbh              = C4::Context->dbh;
145     my $marcflavour      = C4::Context->preference("marcflavour");
146     my $record           = GetMarcBiblio($biblionumber);
147     my $marcnotesarray   = GetMarcNotes( $record, $marcflavour );
148     my $marcauthorsarray = GetMarcAuthors( $record, $marcflavour );
149     my $marcsubjctsarray = GetMarcSubjects( $record, $marcflavour );
150
151     $template->param(
152         MARCNOTES   => $marcnotesarray,
153         MARCSUBJCTS => $marcsubjctsarray,
154         MARCAUTHORS => $marcauthorsarray
155     );
156
157 my @results = ( $dat, );
158 foreach ( keys %{$dat} ) {
159     $template->param( "$_" => $dat->{$_} . "" );
160 }
161
162 $template->param(
163     itemloop        => \@itemloop,
164     biblionumber        => $biblionumber,
165     detailview => 1,
166     subscriptions       => \@subs,
167     subscriptionsnumber => $subscriptionsnumber,
168     subscriptiontitle   => $dat->{title},
169 );
170
171 # XISBN Stuff
172 my $xisbn=$dat->{'isbn'};
173 $xisbn =~ s/(p|-| |:)//g;
174 $template->param(amazonisbn => $xisbn);
175 if (C4::Context->preference("FRBRizeEditions")==1) {
176     eval {
177         $template->param(
178             xisbn => $xisbn,
179             XISBNS => get_xisbns($xisbn)
180         );
181     };
182     if ($@) { warn "XISBN Failed $@"; }
183 }
184 if ( C4::Context->preference("AmazonContent") == 1 ) {
185     my $amazon_details = &get_amazon_details( $xisbn );
186     foreach my $result ( @{ $amazon_details->{Details} } ) {
187         $template->param( item_description => $result->{ProductDescription} );
188         $template->param( image            => $result->{ImageUrlMedium} );
189         $template->param( list_price       => $result->{ListPrice} );
190         $template->param( amazon_url       => $result->{url} );
191     }
192
193     my @products;
194     my @reviews;
195     for my $details ( @{ $amazon_details->{Details} } ) {
196
197         next unless $details->{SimilarProducts};
198         for my $product ( @{ $details->{SimilarProducts}->{Product} } ) {
199             if (C4::Context->preference("AmazonSimilarItems") ) {
200                 my @xisbns;
201                 if (C4::Context->preference("XISBNAmazonSimilarItems") ) {
202                     @xisbns = @{get_xisbns($product)};
203                 }
204                 else {
205                     push @xisbns, get_biblio_from_xisbn($product);
206                 }
207                 push @products, +{ product => \@xisbns };
208             }
209         }
210         next unless $details->{Reviews};
211         for my $product ( @{ $details->{Reviews}->{AvgCustomerRating} } ) {
212             $template->param( rating => $product * 20 );
213         }
214         for my $reviews ( @{ $details->{Reviews}->{CustomerReview} } ) {
215             push @reviews,
216               +{
217                 summary => $reviews->{Summary},
218                 comment => $reviews->{Comment},
219               };
220         }
221     }
222     $template->param( SIMILAR_PRODUCTS => \@products );
223     $template->param( AMAZONREVIEWS    => \@reviews );
224 }
225
226 output_html_with_http_headers $query, $cookie, $template->output;