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