Bug 15758: Koha::Libraries - Remove GetBranches
[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::Branch;
29 use C4::Koha;
30 use C4::Serials;    #uses getsubscriptionfrom biblionumber
31 use C4::Output;
32 use C4::Biblio;
33 use C4::Items;
34 use C4::Circulation;
35 use C4::Tags qw(get_tags);
36 use C4::XISBN qw(get_xisbns get_biblionumber_from_isbn);
37 use C4::External::Amazon;
38 use C4::External::Syndetics qw(get_syndetics_index get_syndetics_summary get_syndetics_toc get_syndetics_excerpt get_syndetics_reviews get_syndetics_anotes );
39 use C4::Review;
40 use C4::Ratings;
41 use C4::Members;
42 use C4::XSLT;
43 use C4::ShelfBrowser;
44 use C4::Reserves;
45 use C4::Charset;
46 use MARC::Record;
47 use MARC::Field;
48 use List::MoreUtils qw/any none/;
49 use C4::Images;
50 use Koha::DateUtils;
51 use C4::HTML5Media;
52 use C4::CourseReserves qw(GetItemCourseReservesInfo);
53 use Koha::RecordProcessor;
54 use Koha::Virtualshelves;
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 $libravatar_enabled = 0;
806 if ( C4::Context->preference('ShowReviewer') and C4::Context->preference('ShowReviewerPhoto')) {
807     eval {
808         require Libravatar::URL;
809         Libravatar::URL->import();
810     };
811     if (!$@ ) {
812         $libravatar_enabled = 1;
813     }
814 }
815
816 my $reviews = getreviews( $biblionumber, 1 );
817 my $loggedincommenter;
818
819
820
821
822 foreach ( @$reviews ) {
823     my $borrowerData   = GetMember('borrowernumber' => $_->{borrowernumber});
824     # setting some borrower info into this hash
825     $_->{title}     = $borrowerData->{'title'};
826     $_->{surname}   = $borrowerData->{'surname'};
827     $_->{firstname} = $borrowerData->{'firstname'};
828     if ($libravatar_enabled and $borrowerData->{'email'}) {
829         $_->{avatarurl} = libravatar_url(email => $borrowerData->{'email'}, https => $ENV{HTTPS});
830     }
831     $_->{userid}    = $borrowerData->{'userid'};
832     $_->{cardnumber}    = $borrowerData->{'cardnumber'};
833
834     if ($borrowerData->{'borrowernumber'} eq $borrowernumber) {
835                 $_->{your_comment} = 1;
836                 $loggedincommenter = 1;
837         }
838 }
839
840 if ( C4::Context->preference("OPACISBD") ) {
841     $template->param( ISBD => 1 );
842 }
843
844 $template->param(
845     itemloop            => \@itemloop,
846     otheritemloop       => \@otheritemloop,
847     subscriptionsnumber => $subscriptionsnumber,
848     biblionumber        => $biblionumber,
849     subscriptions       => \@subs,
850     subscriptionsnumber => $subscriptionsnumber,
851     reviews             => $reviews,
852     loggedincommenter   => $loggedincommenter
853 );
854
855 # Lists
856 if (C4::Context->preference("virtualshelves") ) {
857     my $shelves = Koha::Virtualshelves->search(
858         {
859             biblionumber => $biblionumber,
860             category => 2,
861         },
862         {
863             join => 'virtualshelfcontents',
864         }
865     );
866     $template->param( shelves => $shelves );
867 }
868
869 # XISBN Stuff
870 if (C4::Context->preference("OPACFRBRizeEditions")==1) {
871     eval {
872         $template->param(
873             XISBNS => get_xisbns($isbn)
874         );
875     };
876     if ($@) { warn "XISBN Failed $@"; }
877 }
878
879 # Serial Collection
880 my @sc_fields = $record->field(955);
881 my @lc_fields = $marcflavour eq 'UNIMARC'
882     ? $record->field(930)
883     : $record->field(852);
884 my @serialcollections = ();
885
886 foreach my $sc_field (@sc_fields) {
887     my %row_data;
888
889     $row_data{text}    = $sc_field->subfield('r');
890     $row_data{branch}  = $sc_field->subfield('9');
891     foreach my $lc_field (@lc_fields) {
892         $row_data{itemcallnumber} = $marcflavour eq 'UNIMARC'
893             ? $lc_field->subfield('a') # 930$a
894             : $lc_field->subfield('h') # 852$h
895             if ($sc_field->subfield('5') eq $lc_field->subfield('5'));
896     }
897
898     if ($row_data{text} && $row_data{branch}) { 
899         push (@serialcollections, \%row_data);
900     }
901 }
902
903 if (scalar(@serialcollections) > 0) {
904     $template->param(
905         serialcollection  => 1,
906         serialcollections => \@serialcollections);
907 }
908
909 # Local cover Images stuff
910 if (C4::Context->preference("OPACLocalCoverImages")){
911                 $template->param(OPACLocalCoverImages => 1);
912 }
913
914 # HTML5 Media
915 if ( (C4::Context->preference("HTML5MediaEnabled") eq 'both') or (C4::Context->preference("HTML5MediaEnabled") eq 'opac') ) {
916     $template->param( C4::HTML5Media->gethtml5media($record));
917 }
918
919 my $syndetics_elements;
920
921 if ( C4::Context->preference("SyndeticsEnabled") ) {
922     $template->param("SyndeticsEnabled" => 1);
923     $template->param("SyndeticsClientCode" => C4::Context->preference("SyndeticsClientCode"));
924         eval {
925             $syndetics_elements = &get_syndetics_index($isbn,$upc,$oclc);
926             for my $element (values %$syndetics_elements) {
927                 $template->param("Syndetics$element"."Exists" => 1 );
928                 #warn "Exists: "."Syndetics$element"."Exists";
929         }
930     };
931     warn $@ if $@;
932 }
933
934 if ( C4::Context->preference("SyndeticsEnabled")
935         && C4::Context->preference("SyndeticsSummary")
936         && ( exists($syndetics_elements->{'SUMMARY'}) || exists($syndetics_elements->{'AVSUMMARY'}) ) ) {
937         eval {
938             my $syndetics_summary = &get_syndetics_summary($isbn,$upc,$oclc, $syndetics_elements);
939             $template->param( SYNDETICS_SUMMARY => $syndetics_summary );
940         };
941         warn $@ if $@;
942
943 }
944
945 if ( C4::Context->preference("SyndeticsEnabled")
946         && C4::Context->preference("SyndeticsTOC")
947         && exists($syndetics_elements->{'TOC'}) ) {
948         eval {
949     my $syndetics_toc = &get_syndetics_toc($isbn,$upc,$oclc);
950     $template->param( SYNDETICS_TOC => $syndetics_toc );
951         };
952         warn $@ if $@;
953 }
954
955 if ( C4::Context->preference("SyndeticsEnabled")
956     && C4::Context->preference("SyndeticsExcerpt")
957     && exists($syndetics_elements->{'DBCHAPTER'}) ) {
958     eval {
959     my $syndetics_excerpt = &get_syndetics_excerpt($isbn,$upc,$oclc);
960     $template->param( SYNDETICS_EXCERPT => $syndetics_excerpt );
961     };
962         warn $@ if $@;
963 }
964
965 if ( C4::Context->preference("SyndeticsEnabled")
966     && C4::Context->preference("SyndeticsReviews")) {
967     eval {
968     my $syndetics_reviews = &get_syndetics_reviews($isbn,$upc,$oclc,$syndetics_elements);
969     $template->param( SYNDETICS_REVIEWS => $syndetics_reviews );
970     };
971         warn $@ if $@;
972 }
973
974 if ( C4::Context->preference("SyndeticsEnabled")
975     && C4::Context->preference("SyndeticsAuthorNotes")
976         && exists($syndetics_elements->{'ANOTES'}) ) {
977     eval {
978     my $syndetics_anotes = &get_syndetics_anotes($isbn,$upc,$oclc);
979     $template->param( SYNDETICS_ANOTES => $syndetics_anotes );
980     };
981     warn $@ if $@;
982 }
983
984 # LibraryThingForLibraries ID Code and Tabbed View Option
985 if( C4::Context->preference('LibraryThingForLibrariesEnabled') ) 
986
987 $template->param(LibraryThingForLibrariesID =>
988 C4::Context->preference('LibraryThingForLibrariesID') ); 
989 $template->param(LibraryThingForLibrariesTabbedView =>
990 C4::Context->preference('LibraryThingForLibrariesTabbedView') );
991
992
993 # Novelist Select
994 if( C4::Context->preference('NovelistSelectEnabled') ) 
995
996 $template->param(NovelistSelectProfile => C4::Context->preference('NovelistSelectProfile') ); 
997 $template->param(NovelistSelectPassword => C4::Context->preference('NovelistSelectPassword') ); 
998 $template->param(NovelistSelectView => C4::Context->preference('NovelistSelectView') ); 
999
1000
1001
1002 # Babelthèque
1003 if ( C4::Context->preference("Babeltheque") ) {
1004     $template->param( 
1005         Babeltheque => 1,
1006         Babeltheque_url_js => C4::Context->preference("Babeltheque_url_js"),
1007     );
1008 }
1009
1010 # Social Networks
1011 if ( C4::Context->preference( "SocialNetworks" ) ) {
1012     $template->param( current_url => C4::Context->preference('OPACBaseURL') . "/cgi-bin/koha/opac-detail.pl?biblionumber=$biblionumber" );
1013     $template->param( SocialNetworks => 1 );
1014 }
1015
1016 # Shelf Browser Stuff
1017 if (C4::Context->preference("OPACShelfBrowser")) {
1018     my $starting_itemnumber = $query->param('shelfbrowse_itemnumber');
1019     if (defined($starting_itemnumber)) {
1020         $template->param( OpenOPACShelfBrowser => 1) if $starting_itemnumber;
1021         my $nearby = GetNearbyItems($starting_itemnumber);
1022
1023         $template->param(
1024             starting_itemnumber => $starting_itemnumber,
1025             starting_homebranch => $nearby->{starting_homebranch}->{description},
1026             starting_location => $nearby->{starting_location}->{description},
1027             starting_ccode => $nearby->{starting_ccode}->{description},
1028             shelfbrowser_prev_item => $nearby->{prev_item},
1029             shelfbrowser_next_item => $nearby->{next_item},
1030             shelfbrowser_items => $nearby->{items},
1031         );
1032
1033         # in which tab shelf browser should open ?
1034         if (grep { $starting_itemnumber == $_->{itemnumber} } @itemloop) {
1035             $template->param(shelfbrowser_tab => 'holdings');
1036         } else {
1037             $template->param(shelfbrowser_tab => 'otherholdings');
1038         }
1039     }
1040 }
1041
1042 $template->param( AmazonTld => get_amazon_tld() ) if ( C4::Context->preference("OPACAmazonCoverImages"));
1043
1044 if (C4::Context->preference("BakerTaylorEnabled")) {
1045         $template->param(
1046                 BakerTaylorEnabled  => 1,
1047                 BakerTaylorImageURL => &image_url(),
1048                 BakerTaylorLinkURL  => &link_url(),
1049                 BakerTaylorBookstoreURL => C4::Context->preference('BakerTaylorBookstoreURL'),
1050         );
1051         my ($bt_user, $bt_pass);
1052         if ($isbn and
1053                 $bt_user = C4::Context->preference('BakerTaylorUsername') and
1054                 $bt_pass = C4::Context->preference('BakerTaylorPassword')    )
1055         {
1056                 $template->param(
1057                 BakerTaylorContentURL   =>
1058                 sprintf("http://contentcafe2.btol.com/ContentCafeClient/ContentCafe.aspx?UserID=%s&Password=%s&ItemKey=%s&Options=Y",
1059                                 $bt_user,$bt_pass,$isbn)
1060                 );
1061         }
1062 }
1063
1064 my $tag_quantity;
1065 if (C4::Context->preference('TagsEnabled') and $tag_quantity = C4::Context->preference('TagsShowOnDetail')) {
1066         $template->param(
1067                 TagsEnabled => 1,
1068                 TagsShowOnDetail => $tag_quantity,
1069                 TagsInputOnDetail => C4::Context->preference('TagsInputOnDetail')
1070         );
1071         $template->param(TagLoop => get_tags({biblionumber=>$biblionumber, approved=>1,
1072                                                                 'sort'=>'-weight', limit=>$tag_quantity}));
1073 }
1074
1075 if (C4::Context->preference("OPACURLOpenInNewWindow")) {
1076     # These values are going to be read by Javascript, at least in the case
1077     # of the google covers
1078     $template->param(covernewwindow => 'true');
1079 } else {
1080     $template->param(covernewwindow => 'false');
1081 }
1082
1083 if ( C4::Context->preference('OpacStarRatings') !~ /disable/ ) {
1084     my $rating = GetRating( $biblionumber, $borrowernumber );
1085     $template->param(
1086         rating_value   => $rating->{'rating_value'},
1087         rating_total   => $rating->{'rating_total'},
1088         rating_avg     => $rating->{'rating_avg'},
1089         rating_avg_int => $rating->{'rating_avg_int'},
1090         borrowernumber => $borrowernumber
1091     );
1092 }
1093
1094 #Search for title in links
1095 my $marccontrolnumber   = GetMarcControlnumber ($record, $marcflavour);
1096 my $marcissns = GetMarcISSN ( $record, $marcflavour );
1097 my $issn = $marcissns->[0] || '';
1098
1099 if (my $search_for_title = C4::Context->preference('OPACSearchForTitleIn')){
1100     $dat->{title} =~ s/\/+$//; # remove trailing slash
1101     $dat->{title} =~ s/\s+$//; # remove trailing space
1102     $search_for_title = parametrized_url(
1103         $search_for_title,
1104         {
1105             TITLE         => $dat->{title},
1106             AUTHOR        => $dat->{author},
1107             ISBN          => $isbn,
1108             ISSN          => $issn,
1109             CONTROLNUMBER => $marccontrolnumber,
1110             BIBLIONUMBER  => $biblionumber,
1111         }
1112     );
1113     $template->param('OPACSearchForTitleIn' => $search_for_title);
1114 }
1115
1116 #IDREF
1117 if ( C4::Context->preference("IDREF") ) {
1118     # If the record comes from the SUDOC
1119     if ( $record->field('009') ) {
1120         my $unimarc3 = $record->field("009")->data;
1121         if ( $unimarc3 =~ /^\d+$/ ) {
1122             $template->param(
1123                 IDREF => 1,
1124             );
1125         }
1126     }
1127 }
1128
1129 # We try to select the best default tab to show, according to what
1130 # the user wants, and what's available for display
1131 my $opac_serial_default = C4::Context->preference('opacSerialDefaultTab');
1132 my $defaulttab = 
1133     $opac_serial_default eq 'subscriptions' && $subscriptionsnumber
1134         ? 'subscriptions' :
1135     $opac_serial_default eq 'serialcollection' && @serialcollections > 0
1136         ? 'serialcollection' :
1137     $opac_serial_default eq 'holdings' && scalar (@itemloop) > 0
1138         ? 'holdings' :
1139     $subscriptionsnumber
1140         ? 'subscriptions' :
1141     @serialcollections > 0 
1142         ? 'serialcollection' : 'subscriptions';
1143 $template->param('defaulttab' => $defaulttab);
1144
1145 if (C4::Context->preference('OPACLocalCoverImages') == 1) {
1146     my @images = ListImagesForBiblio($biblionumber);
1147     $template->{VARS}->{localimages} = \@images;
1148 }
1149
1150 $template->{VARS}->{IDreamBooksReviews} = C4::Context->preference('IDreamBooksReviews');
1151 $template->{VARS}->{IDreamBooksReadometer} = C4::Context->preference('IDreamBooksReadometer');
1152 $template->{VARS}->{IDreamBooksResults} = C4::Context->preference('IDreamBooksResults');
1153 $template->{VARS}->{OPACPopupAuthorsSearch} = C4::Context->preference('OPACPopupAuthorsSearch');
1154
1155 if (C4::Context->preference('OpacHighlightedWords')) {
1156     $template->{VARS}->{query_desc} = $query->param('query_desc');
1157 }
1158 $template->{VARS}->{'trackclicks'} = C4::Context->preference('TrackClicks');
1159
1160 if ( C4::Context->preference('UseCourseReserves') ) {
1161     foreach my $i ( @items ) {
1162         $i->{'course_reserves'} = GetItemCourseReservesInfo( itemnumber => $i->{'itemnumber'} );
1163     }
1164 }
1165
1166 $template->param(
1167     'OpacLocationBranchToDisplay'         => C4::Context->preference('OpacLocationBranchToDisplay') ,
1168     'OpacLocationBranchToDisplayShelving' => C4::Context->preference('OpacLocationBranchToDisplayShelving'),
1169 );
1170
1171 output_html_with_http_headers $query, $cookie, $template->output;