Bug 11175: (QA follow-up) Restore link to more results
[koha.git] / opac / opac-detail.pl
1 #!/usr/bin/perl
2
3 # Copyright 2000-2002 Katipo Communications
4 # Copyright 2010 BibLibre
5 # Copyright 2011 KohaAloha, NZ
6 #
7 # This file is part of Koha.
8 #
9 # Koha is free software; you can redistribute it and/or modify it
10 # under the terms of the GNU General Public License as published by
11 # the Free Software Foundation; either version 3 of the License, or
12 # (at your option) any later version.
13 #
14 # Koha is distributed in the hope that it will be useful, but
15 # WITHOUT ANY WARRANTY; without even the implied warranty of
16 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 # GNU General Public License for more details.
18 #
19 # You should have received a copy of the GNU General Public License
20 # along with Koha; if not, see <http://www.gnu.org/licenses>.
21
22
23 use Modern::Perl;
24
25 use CGI qw ( -utf8 );
26 use C4::Acquisition qw( SearchOrders );
27 use C4::Auth qw( get_template_and_user get_session );
28 use C4::Koha qw(
29     getitemtypeimagelocation
30     GetNormalizedEAN
31     GetNormalizedISBN
32     GetNormalizedOCLCNumber
33     GetNormalizedUPC
34 );
35 use C4::Search qw( new_record_from_zebra );
36 use C4::Serials qw( CountSubscriptionFromBiblionumber SearchSubscriptions GetLatestSerials );
37 use C4::Output qw( parametrized_url output_html_with_http_headers );
38 use C4::Biblio qw(
39     CountItemsIssued
40     GetBiblioData
41     GetMarcAuthors
42     GetMarcBiblio
43     GetMarcControlnumber
44     GetMarcISBN
45     GetMarcISSN
46     GetMarcSeries
47     GetMarcSubjects
48     GetMarcUrls
49 );
50 use C4::Items qw( GetHiddenItemnumbers GetItemsInfo );
51 use C4::Circulation qw( GetTransfers );
52 use C4::Tags qw( get_tags );
53 use C4::XISBN qw( get_xisbns );
54 use C4::External::Amazon qw( get_amazon_tld );
55 use C4::External::BakerTaylor qw( image_url link_url );
56 use C4::External::Syndetics qw(
57     get_syndetics_anotes
58     get_syndetics_excerpt
59     get_syndetics_index
60     get_syndetics_reviews
61     get_syndetics_summary
62     get_syndetics_toc
63 );
64 use C4::Members;
65 use C4::XSLT qw( XSLTParse4Display );
66 use C4::ShelfBrowser qw( GetNearbyItems );
67 use C4::Reserves qw( GetReserveStatus );
68 use C4::Charset qw( SetUTF8Flag );
69 use MARC::Field;
70 use List::MoreUtils qw( any );
71 use C4::HTML5Media;
72 use C4::CourseReserves qw( GetItemCourseReservesInfo );
73
74 use Koha::Biblios;
75 use Koha::RecordProcessor;
76 use Koha::AuthorisedValues;
77 use Koha::CirculationRules;
78 use Koha::Items;
79 use Koha::ItemTypes;
80 use Koha::Acquisition::Orders;
81 use Koha::Virtualshelves;
82 use Koha::Patrons;
83 use Koha::Plugins;
84 use Koha::Ratings;
85 use Koha::Reviews;
86 use Koha::SearchEngine::Search;
87 use Koha::SearchEngine::QueryBuilder;
88
89
90 my $query = CGI->new();
91
92 my $biblionumber = $query->param('biblionumber') || $query->param('bib') || 0;
93 $biblionumber = int($biblionumber);
94
95 my $specific_item = $query->param('itemnumber') ? Koha::Items->find( scalar $query->param('itemnumber') ) : undef;
96 $biblionumber = $specific_item->biblionumber if $specific_item;
97
98 my ( $template, $borrowernumber, $cookie ) = get_template_and_user(
99     {
100         template_name   => "opac-detail.tt",
101         query           => $query,
102         type            => "opac",
103         authnotrequired => ( C4::Context->preference("OpacPublic") ? 1 : 0 ),
104     }
105 );
106
107 my @all_items = GetItemsInfo($biblionumber);
108 if( $specific_item ) {
109     @all_items = grep { $_->{itemnumber} == $query->param('itemnumber') } @all_items;
110     $template->param( specific_item => 1 );
111 }
112 my @hiddenitems;
113 my $patron = Koha::Patrons->find( $borrowernumber );
114
115 my $record = GetMarcBiblio({
116     biblionumber => $biblionumber,
117     opac         => 1 });
118 if ( ! $record ) {
119     print $query->redirect("/cgi-bin/koha/errors/404.pl"); # escape early
120     exit;
121 }
122
123 my $biblio = Koha::Biblios->find( $biblionumber );
124 unless ( $patron and $patron->category->override_hidden_items ) {
125     # only skip this check if there's a logged in user
126     # and its category overrides OpacHiddenItems
127     if ( $biblio->hidden_in_opac({ rules => C4::Context->yaml_preference('OpacHiddenItems') }) ) {
128         print $query->redirect('/cgi-bin/koha/errors/404.pl'); # escape early
129         exit;
130     }
131     if ( scalar @all_items >= 1 ) {
132         push @hiddenitems,
133           GetHiddenItemnumbers( { items => \@all_items, borcat => $patron ? $patron->categorycode : undef } );
134     }
135 }
136
137 my $framework = $biblio ? $biblio->frameworkcode : q{};
138 my $record_processor = Koha::RecordProcessor->new({
139     filters => 'ViewPolicy',
140     options => {
141         interface => 'opac',
142         frameworkcode => $framework
143     }
144 });
145 $record_processor->process($record);
146
147 # redirect if opacsuppression is enabled and biblio is suppressed
148 if (C4::Context->preference('OpacSuppression')) {
149     # FIXME hardcoded; the suppression flag ought to be materialized
150     # as a column on biblio or the like
151     my $opacsuppressionfield = '942';
152     my $opacsuppressionfieldvalue = $record->field($opacsuppressionfield);
153     # redirect to opac-blocked info page or 404?
154     my $opacsuppressionredirect;
155     if ( C4::Context->preference("OpacSuppressionRedirect") ) {
156         $opacsuppressionredirect = "/cgi-bin/koha/opac-blocked.pl";
157     } else {
158         $opacsuppressionredirect = "/cgi-bin/koha/errors/404.pl";
159     }
160     if ( $opacsuppressionfieldvalue &&
161          $opacsuppressionfieldvalue->subfield("n") &&
162          $opacsuppressionfieldvalue->subfield("n") == 1) {
163         # if OPAC suppression by IP address
164         if (C4::Context->preference('OpacSuppressionByIPRange')) {
165             my $IPAddress = $ENV{'REMOTE_ADDR'};
166             my $IPRange = C4::Context->preference('OpacSuppressionByIPRange');
167             if ($IPAddress !~ /^$IPRange/)  {
168                 print $query->redirect($opacsuppressionredirect);
169                 exit;
170             }
171         } else {
172             print $query->redirect($opacsuppressionredirect);
173             exit;
174         }
175     }
176 }
177
178 $template->param(
179     biblio => $biblio
180 );
181
182 # get biblionumbers stored in the cart
183 my @cart_list;
184
185 if($query->cookie("bib_list")){
186     my $cart_list = $query->cookie("bib_list");
187     @cart_list = split(/\//, $cart_list);
188     if ( grep {$_ eq $biblionumber} @cart_list) {
189         $template->param( incart => 1 );
190     }
191 }
192
193
194 SetUTF8Flag($record);
195 my $marcflavour      = C4::Context->preference("marcflavour");
196 my $ean = GetNormalizedEAN( $record, $marcflavour );
197
198 {
199     my $variables = {
200         anonymous_session   => ($borrowernumber) ? 0 : 1,
201     };
202
203     my $lang   = C4::Languages::getlanguage();
204     my @plugin_responses = Koha::Plugins->call(
205         'opac_detail_xslt_variables',
206         {
207             biblio_id => $biblionumber,
208             lang      => $lang,
209             patron_id => $borrowernumber
210
211         }
212     );
213     for my $plugin_variables ( @plugin_responses ) {
214         $variables = { %$variables, %$plugin_variables };
215     }
216
217     $template->param(
218         XSLTBloc => XSLTParse4Display(
219             {
220                 biblionumber   => $biblionumber,
221                 record         => $record,
222                 xsl_syspref    => 'OPACXSLTDetailsDisplay',
223                 fix_amps       => 1,
224                 xslt_variables => $variables
225             }
226         ),
227     );
228 }
229
230 my $OpacBrowseResults = C4::Context->preference("OpacBrowseResults");
231
232 # We look for the busc param to build the simple paging from the search
233 if ($OpacBrowseResults) {
234 my $session = get_session($query->cookie("CGISESSID"));
235 my %paging = (previous => {}, next => {});
236 if ($session->param('busc')) {
237     use URI::Escape qw( uri_escape_utf8 uri_unescape );
238
239     # Rebuild the string to store on session
240     # param value is URI encoded and params separator is HTML encode (&amp;)
241     sub rebuildBuscParam
242     {
243         my $arrParamsBusc = shift;
244
245         my $pasarParams = '';
246         my $j = 0;
247         for (keys %$arrParamsBusc) {
248             if ($_ =~ /^(?:query|listBiblios|newlistBiblios|query_type|simple_query|total|offset|offsetSearch|next|previous|count|expand|scan)/) {
249                 if (defined($arrParamsBusc->{$_})) {
250                     $pasarParams .= '&amp;' if ($j);
251                     $pasarParams .= $_ . '=' . Encode::decode('UTF-8', uri_escape_utf8( $arrParamsBusc->{$_} ));
252                     $j++;
253                 }
254             } else {
255                 for my $value (@{$arrParamsBusc->{$_}}) {
256                     next if !defined($value);
257                     $pasarParams .= '&amp;' if ($j);
258                     $pasarParams .= $_ . '=' . Encode::decode('UTF-8', uri_escape_utf8($value));
259                     $j++;
260                 }
261             }
262         }
263         return $pasarParams;
264     }#rebuildBuscParam
265
266     # Search given the current values from the busc param
267     sub searchAgain
268     {
269         my ($arrParamsBusc, $offset, $results_per_page, $patron) = @_;
270
271         my $itemtypes = { map { $_->{itemtype} => $_ } @{ Koha::ItemTypes->search_with_localization->unblessed } };
272         my @servers;
273         @servers = @{$arrParamsBusc->{'server'}} if $arrParamsBusc->{'server'};
274         @servers = ("biblioserver") unless (@servers);
275
276         my ($default_sort_by, @sort_by);
277         $default_sort_by = C4::Context->preference('OPACdefaultSortField')."_".C4::Context->preference('OPACdefaultSortOrder') if (C4::Context->preference('OPACdefaultSortField') && C4::Context->preference('OPACdefaultSortOrder'));
278         @sort_by = @{$arrParamsBusc->{'sort_by'}} if $arrParamsBusc->{'sort_by'};
279         $sort_by[0] = $default_sort_by if !$sort_by[0] && defined($default_sort_by);
280         my ($error, $results_hashref, $facets);
281         eval {
282             ($error, $results_hashref, $facets) = getRecords($arrParamsBusc->{'query'},$arrParamsBusc->{'simple_query'},\@sort_by,\@servers,$results_per_page,$offset,undef,$itemtypes,$arrParamsBusc->{'query_type'},$arrParamsBusc->{'scan'});
283         };
284         my $hits;
285         my @newresults;
286         my $search_context = {
287             'interface' => 'opac',
288             'category'  => ($patron) ? $patron->categorycode : q{}
289         };
290         for (my $i=0;$i<@servers;$i++) {
291             my $server = $servers[$i];
292             $hits = $results_hashref->{$server}->{"hits"};
293             @newresults = searchResults( $search_context, '', $hits, $results_per_page, $offset, $arrParamsBusc->{'scan'}, $results_hashref->{$server}->{"RECORDS"});
294         }
295         return \@newresults;
296     }#searchAgain
297
298     # Build the current list of biblionumbers in this search
299     sub buildListBiblios
300     {
301         my ($newresultsRef, $results_per_page) = @_;
302
303         my $listBiblios = '';
304         my $j = 0;
305         foreach (@$newresultsRef) {
306             my $bibnum = ($_->{biblionumber})?$_->{biblionumber}:0;
307             $listBiblios .= $bibnum . ',';
308             $j++;
309             last if ($j == $results_per_page);
310         }
311         chop $listBiblios if ($listBiblios =~ /,$/);
312         return $listBiblios;
313     }#buildListBiblios
314
315     my $busc = $session->param("busc");
316     my @arrBusc = split(/\&(?:amp;)?/, $busc);
317     my ($key, $value);
318     my %arrParamsBusc = ();
319     for (@arrBusc) {
320         ($key, $value) = split(/=/, $_, 2);
321         if ($key =~ /^(?:query|listBiblios|newlistBiblios|query_type|simple_query|next|previous|total|offset|offsetSearch|count|expand|scan)/) {
322             $arrParamsBusc{$key} = uri_unescape($value);
323         } else {
324             unless (exists($arrParamsBusc{$key})) {
325                 $arrParamsBusc{$key} = [];
326             }
327             push @{$arrParamsBusc{$key}}, uri_unescape($value);
328         }
329     }
330     my $searchAgain = 0;
331     my $count = C4::Context->preference('OPACnumSearchResults') || 20;
332     my $results_per_page = ($arrParamsBusc{'count'} && $arrParamsBusc{'count'} =~ /^[0-9]+?/)?$arrParamsBusc{'count'}:$count;
333     $arrParamsBusc{'count'} = $results_per_page;
334     my $offset = ($arrParamsBusc{'offset'} && $arrParamsBusc{'offset'} =~ /^[0-9]+?/)?$arrParamsBusc{'offset'}:0;
335     # The value OPACnumSearchResults has changed and the search has to be rebuild
336     if ($count != $results_per_page) {
337         if (exists($arrParamsBusc{'listBiblios'}) && $arrParamsBusc{'listBiblios'} =~ /^[0-9]+(?:,[0-9]+)*$/) {
338             my $indexBiblio = 0;
339             my @arrBibliosAux = split(',', $arrParamsBusc{'listBiblios'});
340             for (@arrBibliosAux) {
341                 last if ($_ == $biblionumber);
342                 $indexBiblio++;
343             }
344             $indexBiblio += $offset;
345             $offset = int($indexBiblio / $count) * $count;
346             $arrParamsBusc{'offset'} = $offset;
347         }
348         $arrParamsBusc{'count'} = $count;
349         $results_per_page = $count;
350         my $newresultsRef = searchAgain(\%arrParamsBusc, $offset, $results_per_page, $patron);
351         $arrParamsBusc{'listBiblios'} = buildListBiblios($newresultsRef, $results_per_page);
352         delete $arrParamsBusc{'previous'} if (exists($arrParamsBusc{'previous'}));
353         delete $arrParamsBusc{'next'} if (exists($arrParamsBusc{'next'}));
354         delete $arrParamsBusc{'offsetSearch'} if (exists($arrParamsBusc{'offsetSearch'}));
355         delete $arrParamsBusc{'newlistBiblios'} if (exists($arrParamsBusc{'newlistBiblios'}));
356         my $newbusc = rebuildBuscParam(\%arrParamsBusc);
357         $session->param("busc" => $newbusc);
358         @arrBusc = split(/\&(?:amp;)?/, $newbusc);
359     } else {
360         my $modifyListBiblios = 0;
361         # We come from a previous click
362         if (exists($arrParamsBusc{'previous'})) {
363             $modifyListBiblios = 1 if ($biblionumber == $arrParamsBusc{'previous'});
364             delete $arrParamsBusc{'previous'};
365         } elsif (exists($arrParamsBusc{'next'})) { # We come from a next click
366             $modifyListBiblios = 2 if ($biblionumber == $arrParamsBusc{'next'});
367             delete $arrParamsBusc{'next'};
368         }
369         if ($modifyListBiblios) {
370             if (exists($arrParamsBusc{'newlistBiblios'})) {
371                 my $listBibliosAux = $arrParamsBusc{'listBiblios'};
372                 $arrParamsBusc{'listBiblios'} = $arrParamsBusc{'newlistBiblios'};
373                 my @arrAux = split(',', $listBibliosAux);
374                 $arrParamsBusc{'newlistBiblios'} = $listBibliosAux;
375                 if ($modifyListBiblios == 1) {
376                     $arrParamsBusc{'next'} = $arrAux[0];
377                     $paging{'next'}->{biblionumber} = $arrAux[0];
378                 }else {
379                     $arrParamsBusc{'previous'} = $arrAux[$#arrAux];
380                     $paging{'previous'}->{biblionumber} = $arrAux[$#arrAux];
381                 }
382             } else {
383                 delete $arrParamsBusc{'listBiblios'};
384             }
385             my $offsetAux = $arrParamsBusc{'offset'};
386             $arrParamsBusc{'offset'} = $arrParamsBusc{'offsetSearch'};
387             $arrParamsBusc{'offsetSearch'} = $offsetAux;
388             $offset = $arrParamsBusc{'offset'};
389             my $newbusc = rebuildBuscParam(\%arrParamsBusc);
390             $session->param("busc" => $newbusc);
391             @arrBusc = split(/\&(?:amp;)?/, $newbusc);
392         }
393     }
394     my $buscParam = '';
395     my $j = 0;
396     # Rebuild the query for the button "back to results"
397     for (@arrBusc) {
398         unless ($_ =~ /^(?:query|listBiblios|newlistBiblios|query_type|simple_query|next|previous|total|count|offsetSearch)/) {
399             $buscParam .= '&amp;' unless ($j == 0);
400             $buscParam .= $_; # string already URI encoded
401             $j++;
402         }
403     }
404     $template->param('busc' => $buscParam);
405     my $offsetSearch;
406     my @arrBiblios;
407     # We are inside the list of biblios and we don't have to search
408     if (exists($arrParamsBusc{'listBiblios'}) && $arrParamsBusc{'listBiblios'} =~ /^[0-9]+(?:,[0-9]+)*$/) {
409         @arrBiblios = split(',', $arrParamsBusc{'listBiblios'});
410         if (@arrBiblios) {
411             # We are at the first item of the list
412             if ($arrBiblios[0] == $biblionumber) {
413                 if (@arrBiblios > 1) {
414                     for (my $j = 1; $j < @arrBiblios; $j++) {
415                         next unless ($arrBiblios[$j]);
416                         $paging{'next'}->{biblionumber} = $arrBiblios[$j];
417                         last;
418                     }
419                 }
420                 # search again if we are not at the first searching list
421                 if ($offset && !$arrParamsBusc{'previous'}) {
422                     $searchAgain = 1;
423                     $offsetSearch = $offset - $results_per_page;
424                 }
425             # we are at the last item of the list
426             } elsif ($arrBiblios[$#arrBiblios] == $biblionumber) {
427                 for (my $j = $#arrBiblios - 1; $j >= 0; $j--) {
428                     next unless ($arrBiblios[$j]);
429                     $paging{'previous'}->{biblionumber} = $arrBiblios[$j];
430                     last;
431                 }
432                 if (!$offset) {
433                     # search again if we are at the first list and there is more results
434                     $searchAgain = 1 if (!$arrParamsBusc{'next'} && $arrParamsBusc{'total'} != @arrBiblios);
435                 } else {
436                     # search again if we aren't at the first list and there is more results
437                     $searchAgain = 1 if (!$arrParamsBusc{'next'} && $arrParamsBusc{'total'} > ($offset + @arrBiblios));
438                 }
439                 $offsetSearch = $offset + $results_per_page if ($searchAgain);
440             } else {
441                 for (my $j = 1; $j < $#arrBiblios; $j++) {
442                     if ($arrBiblios[$j] == $biblionumber) {
443                         for (my $z = $j - 1; $z >= 0; $z--) {
444                             next unless ($arrBiblios[$z]);
445                             $paging{'previous'}->{biblionumber} = $arrBiblios[$z];
446                             last;
447                         }
448                         for (my $z = $j + 1; $z < @arrBiblios; $z++) {
449                             next unless ($arrBiblios[$z]);
450                             $paging{'next'}->{biblionumber} = $arrBiblios[$z];
451                             last;
452                         }
453                         last;
454                     }
455                 }
456             }
457         }
458         $offsetSearch = 0 if (defined($offsetSearch) && $offsetSearch < 0);
459     }
460     if ($searchAgain) {
461         my $newresultsRef = searchAgain(\%arrParamsBusc, $offsetSearch, $results_per_page, $patron);
462         my @newresults = @$newresultsRef;
463         # build the new listBiblios
464         my $listBiblios = buildListBiblios(\@newresults, $results_per_page);
465         unless (exists($arrParamsBusc{'listBiblios'})) {
466             $arrParamsBusc{'listBiblios'} = $listBiblios;
467             @arrBiblios = split(',', $arrParamsBusc{'listBiblios'});
468         } else {
469             $arrParamsBusc{'newlistBiblios'} = $listBiblios;
470         }
471         # From the new list we build again the next and previous result
472         if (@arrBiblios) {
473             if ($arrBiblios[0] == $biblionumber) {
474                 for (my $j = $#newresults; $j >= 0; $j--) {
475                     next unless ($newresults[$j]);
476                     $paging{'previous'}->{biblionumber} = $newresults[$j]->{biblionumber};
477                     $arrParamsBusc{'previous'} = $paging{'previous'}->{biblionumber};
478                     $arrParamsBusc{'offsetSearch'} = $offsetSearch;
479                    last;
480                 }
481             } elsif ($arrBiblios[$#arrBiblios] == $biblionumber) {
482                 for (my $j = 0; $j < @newresults; $j++) {
483                     next unless ($newresults[$j]);
484                     $paging{'next'}->{biblionumber} = $newresults[$j]->{biblionumber};
485                     $arrParamsBusc{'next'} = $paging{'next'}->{biblionumber};
486                     $arrParamsBusc{'offsetSearch'} = $offsetSearch;
487                     last;
488                 }
489             }
490         }
491         # build new busc param
492         my $newbusc = rebuildBuscParam(\%arrParamsBusc);
493         $session->param("busc" => $newbusc);
494     }
495     my ($numberBiblioPaging, $dataBiblioPaging);
496     # Previous biblio
497     $numberBiblioPaging = $paging{'previous'}->{biblionumber};
498     if ($numberBiblioPaging) {
499         $template->param( 'previousBiblionumber' => $numberBiblioPaging );
500         $dataBiblioPaging = Koha::Biblios->find( $numberBiblioPaging );
501         $template->param('previousTitle' => $dataBiblioPaging->title) if $dataBiblioPaging;
502     }
503     # Next biblio
504     $numberBiblioPaging = $paging{'next'}->{biblionumber};
505     if ($numberBiblioPaging) {
506         $template->param( 'nextBiblionumber' => $numberBiblioPaging );
507         $dataBiblioPaging = Koha::Biblios->find( $numberBiblioPaging );
508         $template->param('nextTitle' => $dataBiblioPaging->title) if $dataBiblioPaging;
509     }
510     # Partial list of biblio results
511     my @listResults;
512     for (my $j = 0; $j < @arrBiblios; $j++) {
513         next unless ($arrBiblios[$j]);
514         $dataBiblioPaging = Koha::Biblios->find( $arrBiblios[$j] ) if ($arrBiblios[$j] != $biblionumber);
515         next unless $dataBiblioPaging;
516         push @listResults, {index => $j + 1 + $offset, biblionumber => $arrBiblios[$j], title => ($arrBiblios[$j] == $biblionumber)?'':$dataBiblioPaging->title, author => ($arrBiblios[$j] != $biblionumber && $dataBiblioPaging->author)?$dataBiblioPaging->author:'', url => ($arrBiblios[$j] == $biblionumber)?'':'opac-detail.pl?biblionumber=' . $arrBiblios[$j]};
517     }
518     $template->param('listResults' => \@listResults) if (@listResults);
519     $template->param('indexPag' => 1 + $offset, 'totalPag' => $arrParamsBusc{'total'}, 'indexPagEnd' => scalar(@arrBiblios) + $offset);
520     $template->param( 'offset' => $offset );
521 }
522 }
523
524 $template->param(
525     OPACShowCheckoutName => C4::Context->preference("OPACShowCheckoutName"),
526 );
527
528 if ( C4::Context->preference('EasyAnalyticalRecords') ) {
529     # adding items linked via host biblios
530     my $analyticfield = '773';
531     if ($marcflavour eq 'MARC21'){
532         $analyticfield = '773';
533     } elsif ($marcflavour eq 'UNIMARC') {
534         $analyticfield = '461';
535     }
536     foreach my $hostfield ( $record->field($analyticfield)) {
537         my $hostbiblionumber = $hostfield->subfield("0");
538         my $linkeditemnumber = $hostfield->subfield("9");
539         my @hostitemInfos = GetItemsInfo($hostbiblionumber);
540         foreach my $hostitemInfo (@hostitemInfos){
541             if ($hostitemInfo->{itemnumber} eq $linkeditemnumber){
542                 push(@all_items, $hostitemInfo);
543             }
544         }
545     }
546 }
547
548 my @items;
549
550 # Are there items to hide?
551 my $hideitems;
552 $hideitems = 1 if C4::Context->preference('hidelostitems') or scalar(@hiddenitems) > 0;
553
554 # Hide items
555 if ($hideitems) {
556     for my $itm (@all_items) {
557         if  ( C4::Context->preference('hidelostitems') ) {
558             push @items, $itm unless $itm->{itemlost} or any { $itm->{'itemnumber'} eq $_ } @hiddenitems;
559         } else {
560             push @items, $itm unless any { $itm->{'itemnumber'} eq $_ } @hiddenitems;
561     }
562 }
563 } else {
564     # Or not
565     @items = @all_items;
566 }
567
568 my $dat = &GetBiblioData($biblionumber);
569 my $HideMARC = $record_processor->filters->[0]->should_hide_marc(
570     {
571         frameworkcode => $dat->{'frameworkcode'},
572         interface     => 'opac',
573     } );
574
575 my $itemtypes = { map { $_->{itemtype} => $_ } @{ Koha::ItemTypes->search_with_localization->unblessed } };
576 # imageurl:
577 my $itemtype = $dat->{'itemtype'};
578 if ( $itemtype ) {
579     $dat->{'imageurl'}    = getitemtypeimagelocation( 'opac', $itemtypes->{$itemtype}->{'imageurl'} );
580     $dat->{'description'} = $itemtypes->{$itemtype}->{translated_description};
581 }
582
583 my $shelflocations =
584   { map { $_->{authorised_value} => $_->{opac_description} } Koha::AuthorisedValues->get_descriptions_by_koha_field( { frameworkcode => $dat->{frameworkcode}, kohafield => 'items.location' } ) };
585 my $collections =
586   { map { $_->{authorised_value} => $_->{opac_description} } Koha::AuthorisedValues->get_descriptions_by_koha_field( { frameworkcode => $dat->{frameworkcode}, kohafield => 'items.ccode' } ) };
587 my $copynumbers =
588   { map { $_->{authorised_value} => $_->{opac_description} } Koha::AuthorisedValues->get_descriptions_by_koha_field( { frameworkcode => $dat->{frameworkcode}, kohafield => 'items.copynumber' } ) };
589
590 #coping with subscriptions
591 my $subscriptionsnumber = CountSubscriptionFromBiblionumber($biblionumber);
592 my @subscriptions       = SearchSubscriptions({ biblionumber => $biblionumber, orderby => 'title' });
593
594 my @subs;
595 $dat->{'serial'}=1 if $subscriptionsnumber;
596 foreach my $subscription (@subscriptions) {
597     my $serials_to_display;
598     my %cell;
599     $cell{subscriptionid}    = $subscription->{subscriptionid};
600     $cell{subscriptionnotes} = $subscription->{notes};
601     $cell{missinglist}       = $subscription->{missinglist};
602     $cell{opacnote}          = $subscription->{opacnote};
603     $cell{histstartdate}     = $subscription->{histstartdate};
604     $cell{histenddate}       = $subscription->{histenddate};
605     $cell{branchcode}        = $subscription->{branchcode};
606     $cell{callnumber}        = $subscription->{callnumber};
607     $cell{location}          = $subscription->{location};
608     $cell{closed}            = $subscription->{closed};
609     $cell{letter}            = $subscription->{letter};
610     $cell{biblionumber}      = $subscription->{biblionumber};
611     #get the three latest serials.
612     $serials_to_display = $subscription->{opacdisplaycount};
613     $serials_to_display = C4::Context->preference('OPACSerialIssueDisplayCount') unless $serials_to_display;
614         $cell{opacdisplaycount} = $serials_to_display;
615     $cell{latestserials} =
616       GetLatestSerials( $subscription->{subscriptionid}, $serials_to_display );
617     if ( $borrowernumber ) {
618         my $subscription_object = Koha::Subscriptions->find( $subscription->{subscriptionid} );
619         my $subscriber = $subscription_object->subscribers->find( $borrowernumber );
620         $cell{hasalert} = 1 if $subscriber;
621     }
622     push @subs, \%cell;
623 }
624
625 $dat->{'count'} = scalar(@items);
626
627
628 my (%item_reserves, %priority);
629 my ($show_holds_count, $show_priority);
630 for ( C4::Context->preference("OPACShowHoldQueueDetails") ) {
631     m/holds/o and $show_holds_count = 1;
632     m/priority/ and $show_priority = 1;
633 }
634 my $has_hold;
635 if ( $show_holds_count || $show_priority) {
636     my $holds = $biblio->holds;
637     $template->param( holds_count  => $holds->count );
638     while ( my $hold = $holds->next ) {
639         $item_reserves{ $hold->itemnumber }++ if $hold->itemnumber;
640         if ($show_priority && $hold->borrowernumber == $borrowernumber) {
641             $has_hold = 1;
642             $hold->itemnumber
643                 ? ($priority{ $hold->itemnumber } = $hold->priority)
644                 : ($template->param( priority => $hold->priority ));
645         }
646     }
647 }
648 $template->param( show_priority => $has_hold ) ;
649
650 my %itemfields;
651 my (@itemloop, @otheritemloop);
652 my $currentbranch = C4::Context->userenv ? C4::Context->userenv->{branch} : undef;
653 if ($currentbranch and C4::Context->preference('OpacSeparateHoldings')) {
654     $template->param(SeparateHoldings => 1);
655 }
656 my $separatebranch = C4::Context->preference('OpacSeparateHoldingsBranch');
657 my $viewallitems = $query->param('viewallitems');
658 my $max_items_to_display = C4::Context->preference('OpacMaxItemsToDisplay') // 50;
659
660 # Get component parts details
661 my $showcomp = C4::Context->preference('ShowComponentRecords');
662 my $parts;
663 if ( $showcomp eq 'both' || $showcomp eq 'opac' ) {
664     if ( my $components = $biblio->get_marc_components(300) ) {
665         for my $part ( @{$components} ) {
666             $part = C4::Search::new_record_from_zebra( 'biblioserver', $part );
667
668             push @{$parts},
669               XSLTParse4Display(
670                 {
671                     biblionumber => $biblionumber,
672                     record       => $part,
673                     xsl_syspref  => 'OPACXSLTResultsDisplay',
674                     fix_amps     => 1,
675                 }
676               );
677         }
678         $template->param( ComponentParts => $parts );
679         $template->param( ComponentPartsQuery => $biblio->get_components_query );
680     }
681 }
682
683 # Get items on order
684 my ( @itemnumbers_on_order );
685 if ( C4::Context->preference('OPACAcquisitionDetails' ) ) {
686     my $orders = C4::Acquisition::SearchOrders({
687         biblionumber => $biblionumber,
688         ordered => 1,
689     });
690     my $total_quantity = 0;
691     for my $order ( @$orders ) {
692         my $order = Koha::Acquisition::Orders->find( $order->{ordernumber} );
693         my $basket = $order->basket;
694         if ( $basket->effective_create_items eq 'ordering' ) {
695             @itemnumbers_on_order = $order->items->get_column('itemnumber');
696         }
697         $total_quantity += $order->quantity;
698     }
699     $template->{VARS}->{acquisition_details} = {
700         total_quantity => $total_quantity,
701     };
702 }
703
704 my $allow_onshelf_holds;
705 my ( $itemloop_has_images, $otheritemloop_has_images );
706 if ( not $viewallitems and @items > $max_items_to_display ) {
707     $template->param(
708         too_many_items => 1,
709         items_count => scalar( @items ),
710     );
711 } else {
712   for my $itm (@items) {
713     my $item = Koha::Items->find( $itm->{itemnumber} );
714     $itm->{holds_count} = $item_reserves{ $itm->{itemnumber} };
715     $itm->{priority} = $priority{ $itm->{itemnumber} };
716
717     $allow_onshelf_holds = Koha::CirculationRules->get_onshelfholds_policy( { item => $item, patron => $patron } )
718       unless $allow_onshelf_holds;
719
720     # get collection code description, too
721     my $ccode = $itm->{'ccode'};
722     $itm->{'ccode'} = $collections->{$ccode} if defined($ccode) && $collections && exists( $collections->{$ccode} );
723     my $copynumber = $itm->{'copynumber'};
724     $itm->{'copynumber'} = $copynumbers->{$copynumber} if ( defined($copynumbers) && defined($copynumber) && exists( $copynumbers->{$copynumber} ) );
725     if ( defined $itm->{'location'} ) {
726         $itm->{'location_description'} = $shelflocations->{ $itm->{'location'} };
727     }
728     if (exists $itm->{itype} && defined($itm->{itype}) && exists $itemtypes->{ $itm->{itype} }) {
729         $itm->{'imageurl'}    = getitemtypeimagelocation( 'opac', $itemtypes->{ $itm->{itype} }->{'imageurl'} );
730         $itm->{'description'} = $itemtypes->{ $itm->{itype} }->{translated_description};
731     }
732     foreach (qw(ccode materials enumchron copynumber itemnotes location_description uri)) {
733         $itemfields{$_} = 1 if ($itm->{$_});
734     }
735
736      my $reserve_status = C4::Reserves::GetReserveStatus($itm->{itemnumber});
737       if( $reserve_status eq "Waiting"){ $itm->{'waiting'} = 1; }
738       if( $reserve_status eq "Reserved"){ $itm->{'onhold'} = 1; }
739     
740      my ( $transfertwhen, $transfertfrom, $transfertto ) = GetTransfers($itm->{itemnumber});
741      if ( defined( $transfertwhen ) && $transfertwhen ne '' ) {
742         $itm->{transfertwhen} = $transfertwhen;
743         $itm->{transfertfrom} = $transfertfrom;
744         $itm->{transfertto}   = $transfertto;
745      }
746     
747     if ( C4::Context->preference('OPACAcquisitionDetails') ) {
748         $itm->{on_order} = 1
749           if grep { $_ eq $itm->{itemnumber} } @itemnumbers_on_order;
750     }
751
752     if ( C4::Context->preference("OPACLocalCoverImages") == 1 ) {
753         $itm->{cover_images} = $item->cover_images;
754     }
755
756     my $itembranch = $itm->{$separatebranch};
757     if ($currentbranch and C4::Context->preference('OpacSeparateHoldings')) {
758         if ($itembranch and $itembranch eq $currentbranch) {
759             push @itemloop, $itm;
760             $itemloop_has_images++ if $item->cover_images->count;
761         } else {
762             push @otheritemloop, $itm;
763             $otheritemloop_has_images++ if $item->cover_images->count;
764         }
765     } else {
766         push @itemloop, $itm;
767         $itemloop_has_images++ if $item->cover_images->count;
768     }
769   }
770 }
771
772 if( $allow_onshelf_holds || CountItemsIssued($biblionumber) || $biblio->has_items_waiting_or_intransit ) {
773     $template->param( ReservableItems => 1 );
774 }
775
776 $template->param(
777     itemloop_has_images      => $itemloop_has_images,
778     otheritemloop_has_images => $otheritemloop_has_images,
779 );
780
781 # Display only one tab if one items list is empty
782 if (scalar(@itemloop) == 0 || scalar(@otheritemloop) == 0) {
783     $template->param(SeparateHoldings => 0);
784     if (scalar(@itemloop) == 0) {
785         @itemloop = @otheritemloop;
786     }
787 }
788
789 my $marcnotesarray = $biblio->get_marc_notes({ marcflavour => $marcflavour, opac => 1 });
790
791 if( C4::Context->preference('ArticleRequests') ) {
792     my $patron = $borrowernumber ? Koha::Patrons->find($borrowernumber) : undef;
793     my $itemtype = Koha::ItemTypes->find($biblio->itemtype);
794     my $artreqpossible = $patron
795         ? $biblio->can_article_request( $patron )
796         : $itemtype
797         ? $itemtype->may_article_request
798         : q{};
799     $template->param( artreqpossible => $artreqpossible );
800 }
801
802 my $norequests = ! $biblio->items->filter_by_for_hold->count;
803     $template->param(
804                      MARCNOTES               => $marcnotesarray,
805                      norequests              => $norequests,
806                      RequestOnOpac           => C4::Context->preference("RequestOnOpac"),
807                      itemdata_ccode          => $itemfields{ccode},
808                      itemdata_materials      => $itemfields{materials},
809                      itemdata_enumchron      => $itemfields{enumchron},
810                      itemdata_uri            => $itemfields{uri},
811                      itemdata_copynumber     => $itemfields{copynumber},
812                      itemdata_itemnotes      => $itemfields{itemnotes},
813                      itemdata_location       => $itemfields{location_description},
814                      OpacStarRatings         => C4::Context->preference("OpacStarRatings"),
815     );
816
817 if (C4::Context->preference("AlternateHoldingsField") && scalar @items == 0) {
818     my $fieldspec = C4::Context->preference("AlternateHoldingsField");
819     my $subfields = substr $fieldspec, 3;
820     my $holdingsep = C4::Context->preference("AlternateHoldingsSeparator") || ' ';
821     my @alternateholdingsinfo = ();
822     my @holdingsfields = $record->field(substr $fieldspec, 0, 3);
823
824     for my $field (@holdingsfields) {
825         my %holding = ( holding => '' );
826         my $havesubfield = 0;
827         for my $subfield ($field->subfields()) {
828             if ((index $subfields, $$subfield[0]) >= 0) {
829                 $holding{'holding'} .= $holdingsep if (length $holding{'holding'} > 0);
830                 $holding{'holding'} .= $$subfield[1];
831                 $havesubfield++;
832             }
833         }
834         if ($havesubfield) {
835             push(@alternateholdingsinfo, \%holding);
836         }
837     }
838
839     $template->param(
840         ALTERNATEHOLDINGS   => \@alternateholdingsinfo,
841         );
842 }
843
844 # FIXME: The template uses this hash directly. Need to filter.
845 foreach ( keys %{$dat} ) {
846     next if ( $HideMARC->{$_} );
847     $template->param( "$_" => defined $dat->{$_} ? $dat->{$_} : '' );
848 }
849
850 # some useful variables for enhanced content;
851 # in each case, we're grabbing the first value we find in
852 # the record and normalizing it
853 my $upc = GetNormalizedUPC($record,$marcflavour);
854 my $oclc = GetNormalizedOCLCNumber($record,$marcflavour);
855 my $isbn = GetNormalizedISBN(undef,$record,$marcflavour);
856 my $content_identifier_exists;
857 if ( $isbn or $ean or $oclc or $upc ) {
858     $content_identifier_exists = 1;
859 }
860 $template->param(
861         normalized_upc => $upc,
862         normalized_ean => $ean,
863         normalized_oclc => $oclc,
864         normalized_isbn => $isbn,
865         content_identifier_exists =>  $content_identifier_exists,
866 );
867
868 # Catch the exception as Koha::Biblio::Metadata->record can explode if the MARCXML is invalid
869 # COinS format FIXME: for books Only
870 my $coins = eval { $biblio->get_coins };
871 $template->param( ocoins => $coins );
872
873 my ( $loggedincommenter, $reviews );
874 if ( C4::Context->preference('OPACComments') ) {
875     $reviews = Koha::Reviews->search(
876         {
877             biblionumber => $biblionumber,
878             -or => { approved => 1, borrowernumber => $borrowernumber }
879         },
880         {
881             order_by => { -desc => 'datereviewed' }
882         }
883     )->unblessed;
884     my $libravatar_enabled = 0;
885     if ( C4::Context->preference('ShowReviewer') and C4::Context->preference('ShowReviewerPhoto') ) {
886         eval {
887             require Libravatar::URL;
888             Libravatar::URL->import();
889         };
890         if ( !$@ ) {
891             $libravatar_enabled = 1;
892         }
893     }
894     for my $review (@$reviews) {
895         my $review_patron = Koha::Patrons->find( $review->{borrowernumber} ); # FIXME Should be Koha::Review->reviewer or similar
896
897         # setting some borrower info into this hash
898         if ( $review_patron ) {
899             $review->{patron} = $review_patron;
900             if ( $libravatar_enabled and $review_patron->email ) {
901                 $review->{avatarurl} = libravatar_url( email => $review_patron->email, https => $ENV{HTTPS} );
902             }
903
904             if ( $review_patron->borrowernumber eq $borrowernumber ) {
905                 $loggedincommenter = 1;
906             }
907         }
908     }
909 }
910
911 if ( C4::Context->preference("OPACISBD") ) {
912     $template->param( ISBD => 1 );
913 }
914
915 $template->param(
916     itemloop            => \@itemloop,
917     otheritemloop       => \@otheritemloop,
918     biblionumber        => $biblionumber,
919     subscriptions       => \@subs,
920     subscriptionsnumber => $subscriptionsnumber,
921     reviews             => $reviews,
922     loggedincommenter   => $loggedincommenter
923 );
924
925 # Lists
926 if (C4::Context->preference("virtualshelves") ) {
927     my $shelves = Koha::Virtualshelves->search(
928         {
929             biblionumber => $biblionumber,
930             category => 2,
931         },
932         {
933             join => 'virtualshelfcontents',
934         }
935     );
936     $template->param( shelves => $shelves );
937 }
938
939 # XISBN Stuff
940 if (C4::Context->preference("OPACFRBRizeEditions")==1) {
941     eval {
942         $template->param(
943             XISBNS => scalar get_xisbns($isbn, $biblionumber)
944         );
945     };
946     if ($@) { warn "XISBN Failed $@"; }
947 }
948
949 # Serial Collection
950 my @sc_fields = $record->field(955);
951 my @lc_fields = $marcflavour eq 'UNIMARC'
952     ? $record->field(930)
953     : $record->field(852);
954 my @serialcollections = ();
955
956 foreach my $sc_field (@sc_fields) {
957     my %row_data;
958
959     $row_data{text}    = $sc_field->subfield('r');
960     $row_data{branch}  = $sc_field->subfield('9');
961     foreach my $lc_field (@lc_fields) {
962         $row_data{itemcallnumber} = $marcflavour eq 'UNIMARC'
963             ? $lc_field->subfield('a') # 930$a
964             : $lc_field->subfield('h') # 852$h
965             if ($sc_field->subfield('5') eq $lc_field->subfield('5'));
966     }
967
968     if ($row_data{text} && $row_data{branch}) { 
969         push (@serialcollections, \%row_data);
970     }
971 }
972
973 if (scalar(@serialcollections) > 0) {
974     $template->param(
975         serialcollection  => 1,
976         serialcollections => \@serialcollections);
977 }
978
979 # Local cover Images stuff
980 if (C4::Context->preference("OPACLocalCoverImages")){
981                 $template->param(OPACLocalCoverImages => 1);
982 }
983
984 # HTML5 Media
985 if ( (C4::Context->preference("HTML5MediaEnabled") eq 'both') or (C4::Context->preference("HTML5MediaEnabled") eq 'opac') ) {
986     $template->param( C4::HTML5Media->gethtml5media($record));
987 }
988
989 my $syndetics_elements;
990
991 if ( C4::Context->preference("SyndeticsEnabled") ) {
992     $template->param("SyndeticsEnabled" => 1);
993     $template->param("SyndeticsClientCode" => C4::Context->preference("SyndeticsClientCode"));
994         eval {
995             $syndetics_elements = &get_syndetics_index($isbn,$upc,$oclc);
996             for my $element (values %$syndetics_elements) {
997                 $template->param("Syndetics$element"."Exists" => 1 );
998                 #warn "Exists: "."Syndetics$element"."Exists";
999         }
1000     };
1001     warn $@ if $@;
1002 }
1003
1004 if ( C4::Context->preference("SyndeticsEnabled")
1005         && C4::Context->preference("SyndeticsSummary")
1006         && ( exists($syndetics_elements->{'SUMMARY'}) || exists($syndetics_elements->{'AVSUMMARY'}) ) ) {
1007         eval {
1008             my $syndetics_summary = &get_syndetics_summary($isbn,$upc,$oclc, $syndetics_elements);
1009             $template->param( SYNDETICS_SUMMARY => $syndetics_summary );
1010         };
1011         warn $@ if $@;
1012
1013 }
1014
1015 if ( C4::Context->preference("SyndeticsEnabled")
1016         && C4::Context->preference("SyndeticsTOC")
1017         && exists($syndetics_elements->{'TOC'}) ) {
1018         eval {
1019     my $syndetics_toc = &get_syndetics_toc($isbn,$upc,$oclc);
1020     $template->param( SYNDETICS_TOC => $syndetics_toc );
1021         };
1022         warn $@ if $@;
1023 }
1024
1025 if ( C4::Context->preference("SyndeticsEnabled")
1026     && C4::Context->preference("SyndeticsExcerpt")
1027     && exists($syndetics_elements->{'DBCHAPTER'}) ) {
1028     eval {
1029     my $syndetics_excerpt = &get_syndetics_excerpt($isbn,$upc,$oclc);
1030     $template->param( SYNDETICS_EXCERPT => $syndetics_excerpt );
1031     };
1032         warn $@ if $@;
1033 }
1034
1035 if ( C4::Context->preference("SyndeticsEnabled")
1036     && C4::Context->preference("SyndeticsReviews")) {
1037     eval {
1038     my $syndetics_reviews = &get_syndetics_reviews($isbn,$upc,$oclc,$syndetics_elements);
1039     $template->param( SYNDETICS_REVIEWS => $syndetics_reviews );
1040     };
1041         warn $@ if $@;
1042 }
1043
1044 if ( C4::Context->preference("SyndeticsEnabled")
1045     && C4::Context->preference("SyndeticsAuthorNotes")
1046         && exists($syndetics_elements->{'ANOTES'}) ) {
1047     eval {
1048     my $syndetics_anotes = &get_syndetics_anotes($isbn,$upc,$oclc);
1049     $template->param( SYNDETICS_ANOTES => $syndetics_anotes );
1050     };
1051     warn $@ if $@;
1052 }
1053
1054 # LibraryThingForLibraries ID Code and Tabbed View Option
1055 if( C4::Context->preference('LibraryThingForLibrariesEnabled') ) 
1056
1057 $template->param(LibraryThingForLibrariesID =>
1058 C4::Context->preference('LibraryThingForLibrariesID') ); 
1059 $template->param(LibraryThingForLibrariesTabbedView =>
1060 C4::Context->preference('LibraryThingForLibrariesTabbedView') );
1061
1062
1063 # Novelist Select
1064 if( C4::Context->preference('NovelistSelectEnabled') ) 
1065
1066 $template->param(NovelistSelectProfile => C4::Context->preference('NovelistSelectProfile') ); 
1067 $template->param(NovelistSelectPassword => C4::Context->preference('NovelistSelectPassword') ); 
1068 $template->param(NovelistSelectView => C4::Context->preference('NovelistSelectView') ); 
1069
1070
1071
1072 # Babelthèque
1073 if ( C4::Context->preference("Babeltheque") ) {
1074     $template->param( 
1075         Babeltheque => 1,
1076         Babeltheque_url_js => C4::Context->preference("Babeltheque_url_js"),
1077     );
1078 }
1079
1080 # Social Networks
1081 if ( C4::Context->preference( "SocialNetworks" ) ) {
1082     $template->param( current_url => C4::Context->preference('OPACBaseURL') . "/cgi-bin/koha/opac-detail.pl?biblionumber=$biblionumber" );
1083     $template->param( SocialNetworks => 1 );
1084 }
1085
1086 # Shelf Browser Stuff
1087 if (C4::Context->preference("OPACShelfBrowser")) {
1088     my $starting_itemnumber = $query->param('shelfbrowse_itemnumber');
1089     if (defined($starting_itemnumber)) {
1090         $template->param( OpenOPACShelfBrowser => 1) if $starting_itemnumber;
1091         my $nearby = GetNearbyItems($starting_itemnumber);
1092
1093         $template->param(
1094             starting_itemnumber => $starting_itemnumber,
1095             starting_homebranch => $nearby->{starting_homebranch}->{description},
1096             starting_location => $nearby->{starting_location}->{description},
1097             starting_ccode => $nearby->{starting_ccode}->{description},
1098             shelfbrowser_prev_item => $nearby->{prev_item},
1099             shelfbrowser_next_item => $nearby->{next_item},
1100             shelfbrowser_items => $nearby->{items},
1101         );
1102
1103         # in which tab shelf browser should open ?
1104         if (grep { $starting_itemnumber == $_->{itemnumber} } @itemloop) {
1105             $template->param(shelfbrowser_tab => 'holdings');
1106         } else {
1107             $template->param(shelfbrowser_tab => 'otherholdings');
1108         }
1109     }
1110 }
1111
1112 $template->param( AmazonTld => get_amazon_tld() ) if ( C4::Context->preference("OPACAmazonCoverImages"));
1113
1114 if (C4::Context->preference("BakerTaylorEnabled")) {
1115         $template->param(
1116                 BakerTaylorEnabled  => 1,
1117                 BakerTaylorImageURL => &image_url(),
1118                 BakerTaylorLinkURL  => &link_url(),
1119                 BakerTaylorBookstoreURL => C4::Context->preference('BakerTaylorBookstoreURL'),
1120         );
1121         my ($bt_user, $bt_pass);
1122         if ($isbn and
1123                 $bt_user = C4::Context->preference('BakerTaylorUsername') and
1124                 $bt_pass = C4::Context->preference('BakerTaylorPassword')    )
1125         {
1126                 $template->param(
1127                 BakerTaylorContentURL   =>
1128         sprintf("https://contentcafe2.btol.com/ContentCafeClient/ContentCafe.aspx?UserID=%s&Password=%s&ItemKey=%s&Options=Y",
1129                                 $bt_user,$bt_pass,$isbn)
1130                 );
1131         }
1132 }
1133
1134 my $tag_quantity;
1135 if (C4::Context->preference('TagsEnabled') and $tag_quantity = C4::Context->preference('TagsShowOnDetail')) {
1136         $template->param(
1137                 TagsEnabled => 1,
1138                 TagsShowOnDetail => $tag_quantity,
1139                 TagsInputOnDetail => C4::Context->preference('TagsInputOnDetail')
1140         );
1141         $template->param(TagLoop => get_tags({biblionumber=>$biblionumber, approved=>1,
1142                                                                 'sort'=>'-weight', limit=>$tag_quantity}));
1143 }
1144
1145 if (C4::Context->preference("OPACURLOpenInNewWindow")) {
1146     # These values are going to be read by Javascript, at least in the case
1147     # of the google covers
1148     $template->param(covernewwindow => 'true');
1149 } else {
1150     $template->param(covernewwindow => 'false');
1151 }
1152
1153 $template->param(borrowernumber => $borrowernumber);
1154
1155 if ( C4::Context->preference('OpacStarRatings') !~ /disable/ ) {
1156     my $ratings = Koha::Ratings->search({ biblionumber => $biblionumber });
1157     my $my_rating = $borrowernumber ? $ratings->search({ borrowernumber => $borrowernumber })->next : undef;
1158     $template->param(
1159         ratings => $ratings,
1160         my_rating => $my_rating,
1161     );
1162 }
1163
1164 #Search for title in links
1165 my $marccontrolnumber   = GetMarcControlnumber ($record, $marcflavour);
1166 my $marcissns = GetMarcISSN ( $record, $marcflavour );
1167 my $issn = $marcissns->[0] || '';
1168
1169 if (my $search_for_title = C4::Context->preference('OPACSearchForTitleIn')){
1170     $dat->{title} =~ s/\/+$//; # remove trailing slash
1171     $dat->{title} =~ s/\s+$//; # remove trailing space
1172     $search_for_title = parametrized_url(
1173         $search_for_title,
1174         {
1175             TITLE         => $dat->{title},
1176             AUTHOR        => $dat->{author},
1177             ISBN          => $isbn,
1178             ISSN          => $issn,
1179             CONTROLNUMBER => $marccontrolnumber,
1180             BIBLIONUMBER  => $biblionumber,
1181         }
1182     );
1183     $template->param('OPACSearchForTitleIn' => $search_for_title);
1184 }
1185
1186 #IDREF
1187 if ( C4::Context->preference("IDREF") ) {
1188     # If the record comes from the SUDOC
1189     if ( $record->field('009') ) {
1190         my $unimarc3 = $record->field("009")->data;
1191         if ( $unimarc3 =~ /^\d+$/ ) {
1192             $template->param(
1193                 IDREF => 1,
1194             );
1195         }
1196     }
1197 }
1198
1199 # We try to select the best default tab to show, according to what
1200 # the user wants, and what's available for display
1201 my $opac_serial_default = C4::Context->preference('opacSerialDefaultTab');
1202 my $defaulttab = 
1203     $viewallitems
1204         ? 'holdings' :
1205     $opac_serial_default eq 'subscriptions' && $subscriptionsnumber
1206         ? 'subscriptions' :
1207     $opac_serial_default eq 'serialcollection' && @serialcollections > 0
1208         ? 'serialcollection' :
1209     $opac_serial_default eq 'holdings' && scalar (@itemloop) > 0
1210         ? 'holdings' :
1211     ( $showcomp eq 'both' || $showcomp eq 'opac' ) && scalar (@itemloop) == 0 && $parts
1212         ? 'components' :
1213     scalar (@itemloop) == 0
1214         ? 'media' :
1215     $subscriptionsnumber
1216         ? 'subscriptions' :
1217     @serialcollections > 0 
1218         ? 'serialcollection' : 'subscriptions';
1219 $template->param('defaulttab' => $defaulttab);
1220
1221 if (C4::Context->preference('OPACLocalCoverImages') == 1) {
1222     $template->param( localimages => $biblio->cover_images );
1223 }
1224
1225 $template->{VARS}->{OPACPopupAuthorsSearch} = C4::Context->preference('OPACPopupAuthorsSearch');
1226
1227 if (C4::Context->preference('OpacHighlightedWords')) {
1228     $template->{VARS}->{query_desc} = $query->param('query_desc');
1229 }
1230 $template->{VARS}->{'trackclicks'} = C4::Context->preference('TrackClicks');
1231
1232 if ( C4::Context->preference('UseCourseReserves') ) {
1233     foreach my $i ( @items ) {
1234         $i->{'course_reserves'} = GetItemCourseReservesInfo( itemnumber => $i->{'itemnumber'} );
1235     }
1236 }
1237
1238 $template->param(
1239     'OpacLocationBranchToDisplay' => C4::Context->preference('OpacLocationBranchToDisplay'),
1240 );
1241
1242 output_html_with_http_headers $query, $cookie, $template->output;