Merge remote-tracking branch 'kc/new/bug_5995' into kcmaster
[koha.git] / opac / opac-ISBDdetail.pl
1 #!/usr/bin/perl
2
3 # Copyright 2000-2002 Katipo Communications
4 # parts copyright 2010 BibLibre
5 #
6 # This file is part of Koha.
7 #
8 # Koha is free software; you can redistribute it and/or modify it under the
9 # terms of the GNU General Public License as published by the Free Software
10 # Foundation; either version 2 of the License, or (at your option) any later
11 # version.
12 #
13 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
14 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
15 # A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
16 #
17 # You should have received a copy of the GNU General Public License along
18 # with Koha; if not, write to the Free Software Foundation, Inc.,
19 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
20
21
22 =head1 NAME
23
24 opac-ISBDdetail.pl - script to show a biblio in ISBD format
25
26 =head1 DESCRIPTION
27
28 This script needs a biblionumber as parameter 
29
30 It shows the biblio
31
32 The template is in <templates_dir>/catalogue/ISBDdetail.tmpl.
33 this template must be divided into 11 "tabs".
34
35 The first 10 tabs present the biblio, the 11th one presents
36 the items attached to the biblio
37
38 =head1 FUNCTIONS
39
40 =cut
41
42 use strict;
43 use warnings;
44
45 use C4::Auth;
46 use C4::Context;
47 use C4::Output;
48 use CGI;
49 use MARC::Record;
50 use C4::Biblio;
51 use C4::Items;
52 use C4::Acquisition;
53 use C4::Review;
54 use C4::Serials;    # uses getsubscriptionfrom biblionumber
55 use C4::Koha;
56 use C4::Members;    # GetMember
57 use C4::External::Amazon;
58
59 my $query = CGI->new();
60 my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
61     {
62         template_name   => "opac-ISBDdetail.tmpl",
63         query           => $query,
64         type            => "opac",
65         authnotrequired => ( C4::Context->preference("OpacPublic") ? 1 : 0 ),
66         debug           => 1,
67     }
68 );
69
70 my $biblionumber = $query->param('biblionumber');
71
72 $template->param( 'AllowOnShelfHolds' => C4::Context->preference('AllowOnShelfHolds') );
73 $template->param( 'ItemsIssued' => CountItemsIssued( $biblionumber ) );
74
75 my $marcflavour      = C4::Context->preference("marcflavour");
76 my $record = GetMarcBiblio($biblionumber);
77 if ( ! $record ) {
78     print $query->redirect("/cgi-bin/koha/errors/404.pl");
79     exit;
80 }
81 # some useful variables for enhanced content;
82 # in each case, we're grabbing the first value we find in
83 # the record and normalizing it
84 my $upc = GetNormalizedUPC($record,$marcflavour);
85 my $ean = GetNormalizedEAN($record,$marcflavour);
86 my $oclc = GetNormalizedOCLCNumber($record,$marcflavour);
87 my $isbn = GetNormalizedISBN(undef,$record,$marcflavour);
88 my $content_identifier_exists;
89 if ( $isbn or $ean or $oclc or $upc ) {
90     $content_identifier_exists = 1;
91 }
92 $template->param(
93     normalized_upc => $upc,
94     normalized_ean => $ean,
95     normalized_oclc => $oclc,
96     normalized_isbn => $isbn,
97         content_identifier_exists => $content_identifier_exists,
98 );
99
100 #coping with subscriptions
101 my $subscriptionsnumber = CountSubscriptionFromBiblionumber($biblionumber);
102 my $dbh = C4::Context->dbh;
103 my $dat                 = TransformMarcToKoha( $dbh, $record );
104 my @subscriptions       = GetSubscriptions( undef, undef, $biblionumber );
105
106 my @subs;
107 foreach my $subscription (@subscriptions) {
108     my %cell;
109         my $serials_to_display;
110     $cell{subscriptionid}    = $subscription->{subscriptionid};
111     $cell{subscriptionnotes} = $subscription->{notes};
112     $cell{branchcode}        = $subscription->{branchcode};
113
114     #get the three latest serials.
115         $serials_to_display = $subscription->{opacdisplaycount};
116         $serials_to_display = C4::Context->preference('OPACSerialIssueDisplayCount') unless $serials_to_display;
117         $cell{opacdisplaycount} = $serials_to_display;
118     $cell{latestserials} =
119       GetLatestSerials( $subscription->{subscriptionid}, $serials_to_display );
120     push @subs, \%cell;
121 }
122
123 $template->param(
124     subscriptions       => \@subs,
125     subscriptionsnumber => $subscriptionsnumber,
126 );
127
128 my $norequests = 1;
129 my $res = GetISBDView($biblionumber, "opac");
130 my @items = GetItemsInfo( $biblionumber );
131
132 my $itemtypes = GetItemTypes();
133 for my $itm (@items) {
134     $norequests = 0
135        if ( (not $itm->{'wthdrawn'} )
136          && (not $itm->{'itemlost'} )
137          && ($itm->{'itemnotforloan'}<0 || not $itm->{'itemnotforloan'} )
138                  && (not $itemtypes->{$itm->{'itype'}}->{notforloan} )
139          && ($itm->{'itemnumber'} ) );
140 }
141
142 my $reviews = getreviews( $biblionumber, 1 );
143 foreach ( @$reviews ) {
144     my $borrower_number_review = $_->{borrowernumber};
145     my $borrowerData           = GetMember('borrowernumber' =>$borrower_number_review);
146     # setting some borrower info into this hash
147     $_->{title}     = $borrowerData->{'title'};
148     $_->{surname}   = $borrowerData->{'surname'};
149     $_->{firstname} = $borrowerData->{'firstname'};
150 }
151
152
153 $template->param(
154     RequestOnOpac       => C4::Context->preference("RequestOnOpac"),
155     AllowOnShelfHolds   => C4::Context->preference('AllowOnShelfHolds'),
156     norequests   => $norequests,
157     ISBD         => $res,
158     biblionumber => $biblionumber,
159     reviews             => $reviews,
160 );
161
162 #Search for title in links
163 if (my $search_for_title = C4::Context->preference('OPACSearchForTitleIn')){
164     $dat->{author} ? $search_for_title =~ s/{AUTHOR}/$dat->{author}/g : $search_for_title =~ s/{AUTHOR}//g;
165     $dat->{title} =~ s/\/+$//; # remove trailing slash
166     $dat->{title} =~ s/\s+$//; # remove trailing space
167     $dat->{title} ? $search_for_title =~ s/{TITLE}/$dat->{title}/g : $search_for_title =~ s/{TITLE}//g;
168     $isbn ? $search_for_title =~ s/{ISBN}/$isbn/g : $search_for_title =~ s/{ISBN}//g;
169  $template->param('OPACSearchForTitleIn' => $search_for_title);
170 }
171
172 ## Amazon.com stuff
173 #not used unless preference set
174 if ( C4::Context->preference("OPACAmazonEnabled") == 1 ) {
175
176     my $amazon_details = &get_amazon_details( $isbn, $record, $marcflavour );
177
178     foreach my $result ( @{ $amazon_details->{Details} } ) {
179         $template->param( item_description => $result->{ProductDescription} );
180         $template->param( image            => $result->{ImageUrlMedium} );
181         $template->param( list_price       => $result->{ListPrice} );
182         $template->param( amazon_url       => $result->{url} );
183     }
184
185     my @products;
186     my @reviews;
187     for my $details ( @{ $amazon_details->{Details} } ) {
188         next unless $details->{SimilarProducts};
189         for my $product ( @{ $details->{SimilarProducts}->{Product} } ) {
190             push @products, +{ Product => $product };
191         }
192         next unless $details->{Reviews};
193         for my $product ( @{ $details->{Reviews}->{AvgCustomerRating} } ) {
194             $template->param( rating => $product * 20 );
195         }
196         for my $reviews ( @{ $details->{Reviews}->{CustomerReview} } ) {
197             push @reviews,
198               +{
199                 Summary => $reviews->{Summary},
200                 Comment => $reviews->{Comment},
201               };
202         }
203     }
204     $template->param( SIMILAR_PRODUCTS => \@products );
205     $template->param( AMAZONREVIEWS    => \@reviews );
206 }
207
208 output_html_with_http_headers $query, $cookie, $template->output;