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