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