Experimental XSLT-based display of results and details pages To enable, create two...
[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,'Detail');
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 foreach my $itm (@items) {
113      $norequests = 0 && $norequests
114        if ( (not $itm->{'wthdrawn'} )
115          || (not $itm->{'itemlost'} )
116          || (not $itm->{'itemnotforloan'} )
117          || ($itm->{'itemnumber'} ) );
118         $itm->{ $itm->{'publictype'} } = 1;
119     $itm->{datedue} = format_date($itm->{datedue});
120     $itm->{datelastseen} = format_date($itm->{datelastseen});
121
122     #get collection code description, too
123     $itm->{'ccode'}  = GetAuthorisedValueDesc('','',   $itm->{'ccode'} ,'','','CCODE');
124     $itm->{'location_description'} = GetAuthorisedValueDesc('','',   $itm->{'location'} ,'','','LOC');
125     $itm->{'imageurl'}    = $imgdir."/".$itemtypes->{ $itm->{itype} }->{'imageurl'};     
126     $itm->{'description'} = $itemtypes->{$itemtype}->{'description'};
127
128 }
129
130 $template->param( norequests => $norequests, RequestOnOpac=>$RequestOnOpac );
131
132 ## get notes and subjects from MARC record
133     my $dbh              = C4::Context->dbh;
134     my $marcflavour      = C4::Context->preference("marcflavour");
135     my $record           = GetMarcBiblio($biblionumber);
136     my $marcnotesarray   = GetMarcNotes( $record, $marcflavour );
137     my $marcauthorsarray = GetMarcAuthors( $record, $marcflavour );
138     my $marcsubjctsarray = GetMarcSubjects( $record, $marcflavour );
139     my $marcseriesarray  = GetMarcSeries($record,$marcflavour);
140     my $marcurlsarray   = GetMarcUrls($record,$marcflavour);
141
142     $template->param(
143         MARCNOTES   => $marcnotesarray,
144         MARCSUBJCTS => $marcsubjctsarray,
145         MARCAUTHORS => $marcauthorsarray,
146         MARCSERIES  => $marcseriesarray,
147         MARCURLS    => $marcurlsarray,
148     );
149
150 foreach ( keys %{$dat} ) {
151     $template->param( "$_" => $dat->{$_} . "" );
152 }
153
154 # COinS format FIXME: for books Only
155 my $coins_format;
156 my $fmt = substr $record->leader(), 6,2;
157 my $fmts;
158 $fmts->{'am'} = 'book';
159 $coins_format = $fmts->{$fmt};
160 $template->param(
161         ocoins_format => $coins_format,
162 );
163
164 my $reviews = getreviews( $biblionumber, 1 );
165 foreach ( @$reviews ) {
166     my $borrower_number_review = $_->{borrowernumber};
167     my $borrowerData           = GetMember($borrower_number_review,'borrowernumber');
168     # setting some borrower info into this hash
169     $_->{title}     = $borrowerData->{'title'};
170     $_->{surname}   = $borrowerData->{'surname'};
171     $_->{firstname} = $borrowerData->{'firstname'};
172     $_->{datereviewed} = format_date($_->{datereviewed});
173 }
174
175
176 if(C4::Context->preference("ISBD")) {
177         $template->param(ISBD => 1);
178 }
179
180 $template->param(
181     ITEM_RESULTS        => \@items,
182     subscriptionsnumber => $subscriptionsnumber,
183     biblionumber        => $biblionumber,
184     subscriptions       => \@subs,
185     subscriptionsnumber => $subscriptionsnumber,
186     reviews             => $reviews
187 );
188
189 # XISBN Stuff
190 my $xisbn=$dat->{'isbn'};
191 $xisbn =~ s/(p|-| |:)//g;
192 $template->param(amazonisbn => $xisbn);
193 if (C4::Context->preference("OPACFRBRizeEditions")==1) {
194     eval {
195         $template->param(
196             xisbn => $xisbn,
197             XISBNS => get_xisbns($xisbn)
198         );
199     };
200     if ($@) { warn "XISBN Failed $@"; }
201 }
202 # Amazon.com Stuff
203 if ( C4::Context->preference("OPACAmazonContent") == 1 ) {
204     my $similar_products_exist;
205     my $amazon_details = &get_amazon_details( $xisbn );
206     my $item_attributes = \%{$amazon_details->{Items}->{Item}->{ItemAttributes}};
207     my $customer_reviews = \@{$amazon_details->{Items}->{Item}->{CustomerReviews}->{Review}};
208     for my $one_review (@$customer_reviews) {
209         $one_review->{Date} = format_date($one_review->{Date});
210     }
211     my @similar_products;
212     for my $similar_product (@{$amazon_details->{Items}->{Item}->{SimilarProducts}->{SimilarProduct}}) {
213         # do we have any of these isbns in our collection?
214         my $similar_biblionumbers = get_biblionumber_from_isbn($similar_product->{ASIN});
215         # verify that there is at least one similar item
216         $similar_products_exist++ if ${@$similar_biblionumbers}[0];
217         push @similar_products, +{ similar_biblionumbers => $similar_biblionumbers, title => $similar_product->{Title}, ASIN => $similar_product->{ASIN}  };
218     }
219     my $editorial_reviews = \@{$amazon_details->{Items}->{Item}->{EditorialReviews}->{EditorialReview}};
220     my $average_rating = $amazon_details->{Items}->{Item}->{CustomerReviews}->{AverageRating};
221     $template->param( OPACAmazonSimilarItems => $similar_products_exist );
222     $template->param( amazon_average_rating => $average_rating * 20);
223     $template->param( AMAZON_CUSTOMER_REVIEWS    => $customer_reviews );
224     $template->param( AMAZON_SIMILAR_PRODUCTS => \@similar_products );
225     $template->param( AMAZON_EDITORIAL_REVIEWS    => $editorial_reviews );
226 }
227 # Shelf Browser Stuff
228 if (C4::Context->preference("OPACShelfBrowser")) {
229 # pick the first itemnumber unless one was selected by the user
230 my $starting_itemnumber = $query->param('shelfbrowse_itemnumber'); # || $items[0]->{itemnumber};
231 $template->param( OpenOPACShelfBrowser => 1) if $starting_itemnumber;
232 # find the right cn_sort value for this item
233 my ($starting_cn_sort, $starting_homebranch, $starting_location);
234 my $sth_get_cn_sort = $dbh->prepare("SELECT cn_sort,homebranch,location from items where itemnumber=?");
235 $sth_get_cn_sort->execute($starting_itemnumber);
236 my $branches = GetBranches();
237 while (my $result = $sth_get_cn_sort->fetchrow_hashref()) {
238     $starting_cn_sort = $result->{'cn_sort'};
239     $starting_homebranch->{code} = $result->{'homebranch'};
240     $starting_homebranch->{description} = $branches->{$result->{'homebranch'}}{branchname};
241     $starting_location->{code} = $result->{'location'};
242     $starting_location->{description} = GetAuthorisedValueDesc('','',   $result->{'location'} ,'','','LOC');
243
244 }
245
246 ## List of Previous Items
247 # order by cn_sort, which should include everything we need for ordering purposes (though not
248 # for limits, those need to be handled separately
249 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");
250 $sth_shelfbrowse_previous->execute($starting_cn_sort.$starting_itemnumber, $starting_homebranch->{code}, $starting_location->{code});
251 my @previous_items;
252 while (my $this_item = $sth_shelfbrowse_previous->fetchrow_hashref()) {
253     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=?");
254     $sth_get_biblio->execute($this_item->{biblionumber});
255     while (my $this_biblio = $sth_get_biblio->fetchrow_hashref()) {
256         $this_item->{'title'} = $this_biblio->{'title'};
257         $this_item->{'isbn'} = $this_biblio->{'isbn'};
258     }
259     unshift @previous_items, $this_item;
260 }
261 my $throwaway = pop @previous_items;
262 ## List of Next Items
263 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");
264 $sth_shelfbrowse_next->execute($starting_cn_sort.$starting_itemnumber, $starting_homebranch->{code}, $starting_location->{code});
265 my @next_items;
266 while (my $this_item = $sth_shelfbrowse_next->fetchrow_hashref()) {
267     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=?");
268     $sth_get_biblio->execute($this_item->{biblionumber});
269     while (my $this_biblio = $sth_get_biblio->fetchrow_hashref()) {
270         $this_item->{'title'} = $this_biblio->{'title'};
271         $this_item->{'isbn'} = $this_biblio->{'isbn'};
272     }
273     push @next_items, $this_item;
274 }
275
276 # alas, these won't auto-vivify, see http://www.perlmonks.org/?node_id=508481
277 my $shelfbrowser_next_itemnumber = $next_items[-1]->{itemnumber} if @next_items;
278 my $shelfbrowser_next_biblionumber = $next_items[-1]->{biblionumber} if @next_items;
279
280 $template->param(
281     starting_homebranch => $starting_homebranch->{description},
282     starting_location => $starting_location->{description},
283     shelfbrowser_prev_itemnumber => $previous_items[0]->{itemnumber},
284     shelfbrowser_next_itemnumber => $shelfbrowser_next_itemnumber,
285     shelfbrowser_prev_biblionumber => $previous_items[0]->{biblionumber},
286     shelfbrowser_next_biblionumber => $shelfbrowser_next_biblionumber,
287     PREVIOUS_SHELF_BROWSE => \@previous_items,
288     NEXT_SHELF_BROWSE => \@next_items,
289 );
290 }
291
292 output_html_with_http_headers $query, $cookie, $template->output;