Partial fixes to enable unapi for non-zebra and non-public-facing sru
[koha.git] / opac / opac-detail.pl
1 #!/usr/bin/perl
2
3 # Copyright 2000-2002 Katipo Communications
4 #
5 # This file is part of Koha.
6 #
7 # Koha is free software; you can redistribute it and/or modify it under the
8 # terms of the GNU General Public License as published by the Free Software
9 # Foundation; either version 2 of the License, or (at your option) any later
10 # version.
11 #
12 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
13 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
14 # A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
15 #
16 # You should have received a copy of the GNU General Public License along with
17 # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
18 # Suite 330, Boston, MA  02111-1307 USA
19
20
21 use strict;
22 require Exporter;
23 use CGI;
24 use C4::Auth;
25 use C4::Branch;
26 use C4::Koha;
27 use C4::Serials;    #uses getsubscriptionfrom biblionumber
28 use C4::Output;
29 use C4::Biblio;
30 use C4::Items;
31 use C4::Dates qw/format_date/;
32 use C4::XISBN qw(get_xisbns get_biblionumber_from_isbn get_biblio_from_xisbn);
33 use C4::Amazon;
34 use C4::Review;
35 use C4::Serials;
36 use C4::Members;
37 use C4::XSLT;
38
39 my $query = new CGI;
40 my ( $template, $borrowernumber, $cookie ) = get_template_and_user(
41     {
42         template_name   => "opac-detail.tmpl",
43         query           => $query,
44         type            => "opac",
45         authnotrequired => 1,
46         flagsrequired   => { borrow => 1 },
47     }
48 );
49
50 my $biblionumber = $query->param('biblionumber') || $query->param('bib');
51 $template->param( biblionumber => $biblionumber );
52 # XSLT processing of some stuff
53 if (C4::Context->preference("XSLTResultsDisplay") ) {
54     my $newxmlrecord = XSLTParse4Display($biblionumber,C4::Context->config('opachtdocs')."/prog/en/xslt/MARC21slim2OPACDetail.xsl");
55     $template->param('XSLTBloc' => $newxmlrecord);
56 }
57
58 # change back when ive fixed request.pl
59 my @all_items = &GetItemsInfo( $biblionumber, 'opac' );
60 my @items;
61 @items = @all_items unless C4::Context->preference('hidelostitems');
62
63 if (C4::Context->preference('hidelostitems')) {
64     # Hide host items
65     for my $itm (@all_items) {
66         push @items, $itm unless $itm->{itemlost};
67     }
68 }
69 my $dat = &GetBiblioData($biblionumber);
70
71 if (!$dat) {
72     print $query->redirect("/cgi-bin/koha/koha-tmpl/errors/404.pl");
73     exit;
74 }
75 my $imgdir = getitemtypeimagesrc();
76 my $itemtypes = GetItemTypes();
77 # imageurl:
78 my $itemtype = $dat->{'itemtype'};
79 if ( $itemtype ) {
80     $dat->{'imageurl'}    = $imgdir."/".$itemtypes->{$itemtype}->{'imageurl'};
81     $dat->{'description'} = $itemtypes->{$itemtype}->{'description'};
82 }
83
84 #coping with subscriptions
85 my $subscriptionsnumber = CountSubscriptionFromBiblionumber($biblionumber);
86 my @subscriptions       =
87   GetSubscriptions( $dat->{title}, $dat->{issn}, $biblionumber );
88 my @subs;
89 $dat->{'serial'}=1 if $subscriptionsnumber;
90 foreach my $subscription (@subscriptions) {
91     my %cell;
92     $cell{subscriptionid}    = $subscription->{subscriptionid};
93     $cell{subscriptionnotes} = $subscription->{notes};
94     $cell{branchcode}        = $subscription->{branchcode};
95     $cell{hasalert}          = $subscription->{hasalert};
96     #get the three latest serials.
97     $cell{latestserials} =
98       GetLatestSerials( $subscription->{subscriptionid}, 3 );
99     push @subs, \%cell;
100 }
101
102 $dat->{'count'} = scalar(@items);
103
104 #adding RequestOnOpac filter to allow or not the display of plce reserve button
105 # FIXME - use me or delete me.
106 my $RequestOnOpac;
107 if (C4::Context->preference("RequestOnOpac")) {
108     $RequestOnOpac = 1;
109 }
110
111 my $norequests = 1;
112 my %itemfields;
113 for my $itm (@items) {
114      $norequests = 0 && $norequests
115        if ( (not $itm->{'wthdrawn'} )
116          || (not $itm->{'itemlost'} )
117          || (not $itm->{'itemnotforloan'} )
118          || ($itm->{'itemnumber'} ) );
119         $itm->{ $itm->{'publictype'} } = 1;
120     $itm->{datedue} = format_date($itm->{datedue});
121     $itm->{datelastseen} = format_date($itm->{datelastseen});
122
123     #get collection code description, too
124     $itm->{'ccode'}  = GetAuthorisedValueDesc('','',   $itm->{'ccode'} ,'','','CCODE');
125     $itm->{'location_description'} = GetAuthorisedValueDesc('','',   $itm->{'location'} ,'','','LOC');
126     $itm->{'imageurl'}    = $imgdir."/".$itemtypes->{ $itm->{itype} }->{'imageurl'};     
127     $itm->{'description'} = $itemtypes->{$itemtype}->{'description'};
128         $itemfields{ccode} = 1 if($itm->{ccode});
129         $itemfields{enumchron} = 1 if($itm->{enumchron});
130         $itemfields{copynumber} = 1 if($itm->{copynumber});
131 }
132
133 ## get notes and subjects from MARC record
134     my $dbh              = C4::Context->dbh;
135     my $marcflavour      = C4::Context->preference("marcflavour");
136     my $record           = GetMarcBiblio($biblionumber);
137     my $marcnotesarray   = GetMarcNotes( $record, $marcflavour );
138     my $marcauthorsarray = GetMarcAuthors( $record, $marcflavour );
139     my $marcsubjctsarray = GetMarcSubjects( $record, $marcflavour );
140     my $marcseriesarray  = GetMarcSeries($record,$marcflavour);
141     my $marcurlsarray   = GetMarcUrls($record,$marcflavour);
142
143     $template->param(
144         MARCNOTES   => $marcnotesarray,
145         MARCSUBJCTS => $marcsubjctsarray,
146         MARCAUTHORS => $marcauthorsarray,
147         MARCSERIES  => $marcseriesarray,
148         MARCURLS    => $marcurlsarray,
149                 norequests => $norequests,
150                 RequestOnOpac=>$RequestOnOpac,
151                 itemdata_ccode => $itemfields{ccode},
152                 itemdata_enumchron => $itemfields{enumchron},
153                 itemdata_copynumber => $itemfields{copynumber},
154     );
155
156 foreach ( keys %{$dat} ) {
157     $template->param( "$_" => $dat->{$_} . "" );
158 }
159
160 # COinS format FIXME: for books Only
161 my $coins_format;
162 my $fmt = substr $record->leader(), 6,2;
163 my $fmts;
164 $fmts->{'am'} = 'book';
165 $coins_format = $fmts->{$fmt};
166 $template->param(
167         ocoins_format => $coins_format,
168 );
169
170 my $reviews = getreviews( $biblionumber, 1 );
171 my $loggedincommenter;
172 foreach ( @$reviews ) {
173     my $borrower_number_review = $_->{borrowernumber};
174     my $borrowerData           = GetMember($borrower_number_review,'borrowernumber');
175     # setting some borrower info into this hash
176     $_->{title}     = $borrowerData->{'title'};
177     $_->{surname}   = $borrowerData->{'surname'};
178     $_->{firstname} = $borrowerData->{'firstname'};
179     $_->{userid} = $borrowerData->{'userid'};
180     $_->{datereviewed} = format_date($_->{datereviewed});
181     if($borrowerData->{'borrowernumber'} eq $borrowernumber){ $loggedincommenter = 1; }
182 }
183
184
185 if(C4::Context->preference("ISBD")) {
186         $template->param(ISBD => 1);
187 }
188
189 $template->param(
190     ITEM_RESULTS        => \@items,
191     subscriptionsnumber => $subscriptionsnumber,
192     biblionumber        => $biblionumber,
193     subscriptions       => \@subs,
194     subscriptionsnumber => $subscriptionsnumber,
195     reviews             => $reviews,
196     loggedincommenter => $loggedincommenter
197 );
198
199 # XISBN Stuff
200 my $xisbn=$dat->{'isbn'};
201 $xisbn =~ /(\d*[X]*)/;
202 $template->param(amazonisbn => $1);
203 if (C4::Context->preference("OPACFRBRizeEditions")==1) {
204     eval {
205         $template->param(
206             xisbn => $xisbn,
207             XISBNS => get_xisbns($xisbn)
208         );
209     };
210     if ($@) { warn "XISBN Failed $@"; }
211 }
212 # Amazon.com Stuff
213 if ( C4::Context->preference("OPACAmazonContent") == 1 ) {
214     my $similar_products_exist;
215     my $amazon_details = &get_amazon_details( $xisbn );
216     my $item_attributes = \%{$amazon_details->{Items}->{Item}->{ItemAttributes}};
217     my $customer_reviews = \@{$amazon_details->{Items}->{Item}->{CustomerReviews}->{Review}};
218     for my $one_review (@$customer_reviews) {
219         $one_review->{Date} = format_date($one_review->{Date});
220     }
221     my @similar_products;
222     for my $similar_product (@{$amazon_details->{Items}->{Item}->{SimilarProducts}->{SimilarProduct}}) {
223         # do we have any of these isbns in our collection?
224         my $similar_biblionumbers = get_biblionumber_from_isbn($similar_product->{ASIN});
225         # verify that there is at least one similar item
226         $similar_products_exist++ if ${@$similar_biblionumbers}[0];
227         push @similar_products, +{ similar_biblionumbers => $similar_biblionumbers, title => $similar_product->{Title}, ASIN => $similar_product->{ASIN}  };
228     }
229     my $editorial_reviews = \@{$amazon_details->{Items}->{Item}->{EditorialReviews}->{EditorialReview}};
230     my $average_rating = $amazon_details->{Items}->{Item}->{CustomerReviews}->{AverageRating};
231     $template->param( OPACAmazonSimilarItems => $similar_products_exist );
232     $template->param( amazon_average_rating => $average_rating * 20);
233     $template->param( AMAZON_CUSTOMER_REVIEWS    => $customer_reviews );
234     $template->param( AMAZON_SIMILAR_PRODUCTS => \@similar_products );
235     $template->param( AMAZON_EDITORIAL_REVIEWS    => $editorial_reviews );
236 }
237 # Shelf Browser Stuff
238 if (C4::Context->preference("OPACShelfBrowser")) {
239 # pick the first itemnumber unless one was selected by the user
240 my $starting_itemnumber = $query->param('shelfbrowse_itemnumber'); # || $items[0]->{itemnumber};
241 $template->param( OpenOPACShelfBrowser => 1) if $starting_itemnumber;
242 # find the right cn_sort value for this item
243 my ($starting_cn_sort, $starting_homebranch, $starting_location);
244 my $sth_get_cn_sort = $dbh->prepare("SELECT cn_sort,homebranch,location from items where itemnumber=?");
245 $sth_get_cn_sort->execute($starting_itemnumber);
246 my $branches = GetBranches();
247 while (my $result = $sth_get_cn_sort->fetchrow_hashref()) {
248     $starting_cn_sort = $result->{'cn_sort'};
249     $starting_homebranch->{code} = $result->{'homebranch'};
250     $starting_homebranch->{description} = $branches->{$result->{'homebranch'}}{branchname};
251     $starting_location->{code} = $result->{'location'};
252     $starting_location->{description} = GetAuthorisedValueDesc('','',   $result->{'location'} ,'','','LOC');
253
254 }
255
256 ## List of Previous Items
257 # order by cn_sort, which should include everything we need for ordering purposes (though not
258 # for limits, those need to be handled separately
259 my $sth_shelfbrowse_previous = $dbh->prepare("SELECT * FROM items WHERE CONCAT(cn_sort,itemnumber) <= ? AND homebranch=? AND location=? ORDER BY CONCAT(cn_sort,itemnumber) DESC LIMIT 3");
260 $sth_shelfbrowse_previous->execute($starting_cn_sort.$starting_itemnumber, $starting_homebranch->{code}, $starting_location->{code});
261 my @previous_items;
262 while (my $this_item = $sth_shelfbrowse_previous->fetchrow_hashref()) {
263     my $sth_get_biblio = $dbh->prepare("SELECT biblio.*,biblioitems.isbn AS isbn FROM biblio LEFT JOIN biblioitems ON biblio.biblionumber=biblioitems.biblionumber WHERE biblio.biblionumber=?");
264     $sth_get_biblio->execute($this_item->{biblionumber});
265     while (my $this_biblio = $sth_get_biblio->fetchrow_hashref()) {
266         $this_item->{'title'} = $this_biblio->{'title'};
267         $this_item->{'isbn'} = $this_biblio->{'isbn'};
268     }
269     unshift @previous_items, $this_item;
270 }
271 my $throwaway = pop @previous_items;
272 ## List of Next Items
273 my $sth_shelfbrowse_next = $dbh->prepare("SELECT * FROM items WHERE CONCAT(cn_sort,itemnumber) >= ? AND homebranch=? AND location=? ORDER BY CONCAT(cn_sort,itemnumber) ASC LIMIT 3");
274 $sth_shelfbrowse_next->execute($starting_cn_sort.$starting_itemnumber, $starting_homebranch->{code}, $starting_location->{code});
275 my @next_items;
276 while (my $this_item = $sth_shelfbrowse_next->fetchrow_hashref()) {
277     my $sth_get_biblio = $dbh->prepare("SELECT biblio.*,biblioitems.isbn AS isbn FROM biblio LEFT JOIN biblioitems ON biblio.biblionumber=biblioitems.biblionumber WHERE biblio.biblionumber=?");
278     $sth_get_biblio->execute($this_item->{biblionumber});
279     while (my $this_biblio = $sth_get_biblio->fetchrow_hashref()) {
280         $this_item->{'title'} = $this_biblio->{'title'};
281         $this_item->{'isbn'} = $this_biblio->{'isbn'};
282     }
283     push @next_items, $this_item;
284 }
285
286 # alas, these won't auto-vivify, see http://www.perlmonks.org/?node_id=508481
287 my $shelfbrowser_next_itemnumber = $next_items[-1]->{itemnumber} if @next_items;
288 my $shelfbrowser_next_biblionumber = $next_items[-1]->{biblionumber} if @next_items;
289
290 $template->param(
291     starting_homebranch => $starting_homebranch->{description},
292     starting_location => $starting_location->{description},
293     shelfbrowser_prev_itemnumber => $previous_items[0]->{itemnumber},
294     shelfbrowser_next_itemnumber => $shelfbrowser_next_itemnumber,
295     shelfbrowser_prev_biblionumber => $previous_items[0]->{biblionumber},
296     shelfbrowser_next_biblionumber => $shelfbrowser_next_biblionumber,
297     PREVIOUS_SHELF_BROWSE => \@previous_items,
298     NEXT_SHELF_BROWSE => \@next_items,
299 );
300 }
301
302 output_html_with_http_headers $query, $cookie, $template->output;