Bug 11175: (QA follow-up) Take account of bug 15851
[koha.git] / catalogue / detail.pl
1 #!/usr/bin/perl
2
3 # This file is part of Koha.
4 #
5 # Koha is free software; you can redistribute it and/or modify it
6 # under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; either version 3 of the License, or
8 # (at your option) any later version.
9 #
10 # Koha is distributed in the hope that it will be useful, but
11 # WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 # GNU General Public License for more details.
14 #
15 # You should have received a copy of the GNU General Public License
16 # along with Koha; if not, see <http://www.gnu.org/licenses>.
17
18
19 use Modern::Perl;
20
21 use CGI qw ( -utf8 );
22 use HTML::Entities;
23 use C4::Auth qw( get_template_and_user );
24 use C4::Context;
25 use C4::Koha qw(
26     GetAuthorisedValues
27     getitemtypeimagelocation
28     GetNormalizedEAN
29     GetNormalizedISBN
30     GetNormalizedOCLCNumber
31     GetNormalizedUPC
32 );
33 use C4::Serials qw( CountSubscriptionFromBiblionumber SearchSubscriptions GetLatestSerials );
34 use C4::Output qw( output_html_with_http_headers );
35 use C4::Biblio qw( GetBiblioData GetFrameworkCode GetMarcBiblio );
36 use C4::Items qw( GetAnalyticsCount GetHostItemsInfo GetItemsInfo );
37 use C4::Circulation qw( GetTransfers );
38 use C4::Reserves;
39 use C4::Serials qw( CountSubscriptionFromBiblionumber SearchSubscriptions GetLatestSerials );
40 use C4::XISBN qw( get_xisbns );
41 use C4::External::Amazon qw( get_amazon_tld );
42 use C4::Search qw( z3950_search_args enabled_staff_search_views );
43 use C4::Tags qw( get_tags );
44 use C4::XSLT qw( XSLTParse4Display );
45 use Koha::DateUtils qw( format_sqldatetime );
46 use C4::HTML5Media;
47 use C4::CourseReserves qw( GetItemCourseReservesInfo );
48 use Koha::AuthorisedValues;
49 use Koha::Biblios;
50 use Koha::CoverImages;
51 use Koha::Illrequests;
52 use Koha::Items;
53 use Koha::ItemTypes;
54 use Koha::Patrons;
55 use Koha::Virtualshelves;
56 use Koha::Plugins;
57 use Koha::SearchEngine::Search;
58 use Koha::SearchEngine::QueryBuilder;
59
60 my $query = CGI->new();
61
62 my $analyze = $query->param('analyze');
63
64 my ( $template, $borrowernumber, $cookie, $flags ) = get_template_and_user(
65     {
66     template_name   =>  'catalogue/detail.tt',
67         query           => $query,
68         type            => "intranet",
69         flagsrequired   => { catalogue => 1 },
70     }
71 );
72
73 # Determine if we should be offering any enhancement plugin buttons
74 if ( C4::Context->config('enable_plugins') ) {
75     # Only pass plugins that can offer a toolbar button
76     my @plugins = Koha::Plugins->new()->GetPlugins({
77         method => 'intranet_catalog_biblio_enhancements_toolbar_button'
78     });
79     $template->param(
80         plugins => \@plugins,
81     );
82 }
83
84 my $biblionumber = $query->param('biblionumber');
85 $biblionumber = HTML::Entities::encode($biblionumber);
86 my $record       = GetMarcBiblio({ biblionumber => $biblionumber });
87 my $biblio = Koha::Biblios->find( $biblionumber );
88 $template->param( 'biblio', $biblio );
89
90 if ( not defined $record ) {
91     # biblionumber invalid -> report and exit
92     $template->param( unknownbiblionumber => 1,
93                       biblionumber => $biblionumber );
94     output_html_with_http_headers $query, $cookie, $template->output;
95     exit;
96 }
97
98 eval { $biblio->metadata->record };
99 $template->param( decoding_error => $@ );
100
101 if($query->cookie("holdfor")){
102     my $holdfor_patron = Koha::Patrons->find( $query->cookie("holdfor") );
103     if ( $holdfor_patron ) {
104         $template->param(
105             # FIXME Should pass the patron object
106             holdfor => $query->cookie("holdfor"),
107             holdfor_surname => $holdfor_patron->surname,
108             holdfor_firstname => $holdfor_patron->firstname,
109             holdfor_cardnumber => $holdfor_patron->cardnumber,
110         );
111     }
112 }
113
114 if($query->cookie("searchToOrder")){
115     my ( $basketno, $vendorid ) = split( /\//, $query->cookie("searchToOrder") );
116     $template->param(
117         searchtoorder_basketno => $basketno,
118         searchtoorder_vendorid => $vendorid
119     );
120 }
121
122 my $fw           = GetFrameworkCode($biblionumber);
123 my $showallitems = $query->param('showallitems');
124 my $marcflavour  = C4::Context->preference("marcflavour");
125
126 {
127     # XSLT processing of some stuff
128
129     $template->param(
130         XSLTDetailsDisplay => '1',
131         XSLTBloc => XSLTParse4Display(
132             {
133                 biblionumber   => $biblionumber,
134                 record         => $record,
135                 xsl_syspref    => "XSLTDetailsDisplay",
136                 fix_amps       => 1,
137             }
138         ),
139     );
140 }
141
142 $template->param( 'SpineLabelShowPrintOnBibDetails' => C4::Context->preference("SpineLabelShowPrintOnBibDetails") );
143
144 # Catch the exception as Koha::Biblio::Metadata->record can explode if the MARCXML is invalid
145 # Do not propagate it as we already deal with it previously in this script
146 my $coins = eval { $biblio->get_coins };
147 $template->param( ocoins => $coins );
148
149 # some useful variables for enhanced content;
150 # in each case, we're grabbing the first value we find in
151 # the record and normalizing it
152 my $upc = GetNormalizedUPC($record,$marcflavour);
153 my $ean = GetNormalizedEAN($record,$marcflavour);
154 my $oclc = GetNormalizedOCLCNumber($record,$marcflavour);
155 my $isbn = GetNormalizedISBN(undef,$record,$marcflavour);
156
157 $template->param(
158     normalized_upc => $upc,
159     normalized_ean => $ean,
160     normalized_oclc => $oclc,
161     normalized_isbn => $isbn,
162 );
163
164 my $marcnotesarray   = $biblio->get_marc_notes({ marcflavour => $marcflavour });
165
166 my $itemtypes = { map { $_->{itemtype} => $_ } @{ Koha::ItemTypes->search->unblessed } };
167
168 my $dbh = C4::Context->dbh;
169
170 my @all_items = GetItemsInfo( $biblionumber );
171 my @items;
172 my $patron = Koha::Patrons->find( $borrowernumber );
173 for my $itm (@all_items) {
174     push @items, $itm unless ( $itm->{itemlost} && $patron->category->hidelostitems && !$showallitems);
175 }
176
177 # flag indicating existence of at least one item linked via a host record
178 my $hostrecords;
179 # adding items linked via host biblios
180 my @hostitems = GetHostItemsInfo($record);
181 if (@hostitems){
182     $hostrecords =1;
183     push (@items,@hostitems);
184 }
185
186 my $dat = &GetBiblioData($biblionumber);
187
188 #coping with subscriptions
189 my $subscriptionsnumber = CountSubscriptionFromBiblionumber($biblionumber);
190 my @subscriptions       = SearchSubscriptions({ biblionumber => $biblionumber, orderby => 'title' });
191 my @subs;
192
193 foreach my $subscription (@subscriptions) {
194     my %cell;
195     my $serials_to_display;
196     $cell{subscriptionid}    = $subscription->{subscriptionid};
197     $cell{subscriptionnotes} = $subscription->{internalnotes};
198     $cell{missinglist}       = $subscription->{missinglist};
199     $cell{librariannote}     = $subscription->{librariannote};
200     $cell{branchcode}        = $subscription->{branchcode};
201     $cell{hasalert}          = $subscription->{hasalert};
202     $cell{callnumber}        = $subscription->{callnumber};
203     $cell{location}          = $subscription->{location};
204     $cell{closed}            = $subscription->{closed};
205     #get the three latest serials.
206     $serials_to_display = $subscription->{staffdisplaycount};
207     $serials_to_display = C4::Context->preference('StaffSerialIssueDisplayCount') unless $serials_to_display;
208     $cell{staffdisplaycount} = $serials_to_display;
209     $cell{latestserials} =
210       GetLatestSerials( $subscription->{subscriptionid}, $serials_to_display );
211     push @subs, \%cell;
212 }
213
214
215 # Get acquisition details
216 if ( C4::Context->preference('AcquisitionDetails') ) {
217     my $orders = Koha::Acquisition::Orders->search(
218         { biblionumber => $biblionumber },
219         {
220             join => 'basketno',
221             order_by => 'basketno.booksellerid'
222         }
223     );    # GetHistory sorted by aqbooksellerid, but does it make sense?
224
225     $template->param(
226         orders => $orders,
227     );
228 }
229
230 if ( C4::Context->preference('suggestion') ) {
231     my $suggestions = Koha::Suggestions->search(
232         {
233             biblionumber => $biblionumber,
234             archived     => 0,
235         },
236         {
237             order_by => { -desc => 'suggesteddate' }
238         }
239     );
240     my $nb_archived_suggestions = Koha::Suggestions->search({ biblionumber => $biblionumber, archived => 1 })->count;
241     $template->param( suggestions => $suggestions, nb_archived_suggestions => $nb_archived_suggestions );
242 }
243
244 if ( defined $dat->{'itemtype'} ) {
245     $dat->{imageurl} = getitemtypeimagelocation( 'intranet', $itemtypes->{ $dat->{itemtype} }{imageurl} );
246 }
247
248 $dat->{'count'} = scalar @all_items + @hostitems;
249 $dat->{'showncount'} = scalar @items + @hostitems;
250 $dat->{'hiddencount'} = scalar @all_items + @hostitems - scalar @items;
251
252 my $shelflocations =
253   { map { $_->{authorised_value} => $_->{lib} } Koha::AuthorisedValues->get_descriptions_by_koha_field( { frameworkcode => $fw, kohafield => 'items.location' } ) };
254 my $collections =
255   { map { $_->{authorised_value} => $_->{lib} } Koha::AuthorisedValues->get_descriptions_by_koha_field( { frameworkcode => $fw, kohafield => 'items.ccode' } ) };
256 my $copynumbers =
257   { map { $_->{authorised_value} => $_->{lib} } Koha::AuthorisedValues->get_descriptions_by_koha_field( { frameworkcode => $fw, kohafield => 'items.copynumber' } ) };
258 my (@itemloop, @otheritemloop, %itemfields);
259
260 my $mss = Koha::MarcSubfieldStructures->search({ frameworkcode => $fw, kohafield => 'items.itemlost', authorised_value => [ -and => {'!=' => undef }, {'!=' => ''}] });
261 if ( $mss->count ) {
262     $template->param( itemlostloop => GetAuthorisedValues( $mss->next->authorised_value ) );
263 }
264 $mss = Koha::MarcSubfieldStructures->search({ frameworkcode => $fw, kohafield => 'items.damaged', authorised_value => [ -and => {'!=' => undef }, {'!=' => ''}] });
265 if ( $mss->count ) {
266     $template->param( itemdamagedloop => GetAuthorisedValues( $mss->next->authorised_value ) );
267 }
268 $mss = Koha::MarcSubfieldStructures->search({ frameworkcode => $fw, kohafield => 'items.withdrawn', authorised_value => { not => undef } });
269 if ( $mss->count ) {
270     $template->param( itemwithdrawnloop => GetAuthorisedValues( $mss->next->authorised_value) );
271 }
272
273 $mss = Koha::MarcSubfieldStructures->search({ frameworkcode => $fw, kohafield => 'items.materials', authorised_value => [ -and => {'!=' => undef }, {'!=' => ''}] });
274 my %materials_map;
275 if ($mss->count) {
276     my $materials_authvals = GetAuthorisedValues($mss->next->authorised_value);
277     if ($materials_authvals) {
278         foreach my $value (@$materials_authvals) {
279             $materials_map{$value->{authorised_value}} = $value->{lib};
280         }
281     }
282 }
283
284 my $analytics_flag;
285 my $materials_flag; # set this if the items have anything in the materials field
286 my $currentbranch = C4::Context->userenv ? C4::Context->userenv->{branch} : undef;
287 if ($currentbranch and C4::Context->preference('SeparateHoldings')) {
288     $template->param(SeparateHoldings => 1);
289 }
290 my $separatebranch = C4::Context->preference('SeparateHoldingsBranch') || 'homebranch';
291 my ( $itemloop_has_images, $otheritemloop_has_images );
292 foreach my $item (@items) {
293     my $itembranchcode = $item->{$separatebranch};
294
295     $item->{imageurl} = defined $item->{itype} ? getitemtypeimagelocation('intranet', $itemtypes->{ $item->{itype} }{imageurl})
296                                                : '';
297
298     $item->{datedue} = format_sqldatetime($item->{datedue});
299
300     #get shelf location and collection code description if they are authorised value.
301     # same thing for copy number
302     my $shelfcode = $item->{'location'};
303     $item->{'location'} = $shelflocations->{$shelfcode} if ( defined( $shelfcode ) && defined($shelflocations) && exists( $shelflocations->{$shelfcode} ) );
304     my $ccode = $item->{'ccode'};
305     $item->{'ccode'} = $collections->{$ccode} if ( defined( $ccode ) && defined($collections) && exists( $collections->{$ccode} ) );
306     my $copynumber = $item->{'copynumber'};
307     $item->{'copynumber'} = $copynumbers->{$copynumber} if ( defined($copynumber) && defined($copynumbers) && exists( $copynumbers->{$copynumber} ) );
308     foreach (qw(ccode enumchron copynumber stocknumber itemnotes itemnotes_nonpublic uri publisheddate)) { # Warning when removing GetItemsInfo - publisheddate (at least) is not part of the items table
309         $itemfields{$_} = 1 if ( $item->{$_} );
310     }
311
312     # checking for holds
313     my $item_object = Koha::Items->find( $item->{itemnumber} );
314     my $holds = $item_object->current_holds;
315     if ( my $first_hold = $holds->next ) {
316         $item->{first_hold} = $first_hold;
317     }
318
319     if ( my $checkout = $item_object->checkout ) {
320         $item->{CheckedOutFor} = $checkout->patron;
321     }
322
323     # Check the transit status
324     my ( $transfertwhen, $transfertfrom, $transfertto ) = GetTransfers($item->{itemnumber});
325     if ( defined( $transfertwhen ) && ( $transfertwhen ne '' ) ) {
326         $item->{transfertwhen} = $transfertwhen;
327         $item->{transfertfrom} = $transfertfrom;
328         $item->{transfertto}   = $transfertto;
329         $item->{nocancel} = 1;
330     }
331
332     foreach my $f (qw( itemnotes )) {
333         if ($item->{$f}) {
334             $item->{$f} =~ s|\n|<br />|g;
335             $itemfields{$f} = 1;
336         }
337     }
338
339     #item has a host number if its biblio number does not match the current bib
340
341     if ($item->{biblionumber} ne $biblionumber){
342         $item->{hostbiblionumber} = $item->{biblionumber};
343         $item->{hosttitle} = GetBiblioData($item->{biblionumber})->{title};
344     }
345         
346
347     if ( $analyze ) {
348         # count if item is used in analytical bibliorecords
349         # The 'countanalytics' flag is only used in the templates if analyze is set
350         my $countanalytics = C4::Context->preference('EasyAnalyticalRecords') ? GetAnalyticsCount($item->{itemnumber}) : 0;
351         if ($countanalytics > 0){
352             $analytics_flag=1;
353             $item->{countanalytics} = $countanalytics;
354         }
355     }
356
357     if (defined($item->{'materials'}) && $item->{'materials'} =~ /\S/){
358         $materials_flag = 1;
359         if (defined $materials_map{ $item->{materials} }) {
360             $item->{materials} = $materials_map{ $item->{materials} };
361         }
362     }
363
364     if ( C4::Context->preference('UseCourseReserves') ) {
365         $item->{'course_reserves'} = GetItemCourseReservesInfo( itemnumber => $item->{'itemnumber'} );
366     }
367
368     if ( C4::Context->preference('IndependentBranches') ) {
369         my $userenv = C4::Context->userenv();
370         if ( not C4::Context->IsSuperLibrarian()
371             and $userenv->{branch} ne $item->{homebranch} ) {
372             $item->{cannot_be_edited} = 1;
373         }
374     }
375
376     if ( C4::Context->preference("LocalCoverImages") == 1 ) {
377         $item->{cover_images} = $item_object->cover_images;
378     }
379
380     if ($currentbranch and C4::Context->preference('SeparateHoldings')) {
381         if ($itembranchcode and $itembranchcode eq $currentbranch) {
382             push @itemloop, $item;
383             $itemloop_has_images++ if $item_object->cover_images->count;
384         } else {
385             push @otheritemloop, $item;
386             $otheritemloop_has_images++ if $item_object->cover_images->count;
387         }
388     } else {
389         push @itemloop, $item;
390         $itemloop_has_images++ if $item_object->cover_images->count;
391     }
392 }
393
394 $template->param(
395     itemloop_has_images      => $itemloop_has_images,
396     otheritemloop_has_images => $otheritemloop_has_images,
397 );
398
399 # Display only one tab if one items list is empty
400 if (scalar(@itemloop) == 0 || scalar(@otheritemloop) == 0) {
401     $template->param(SeparateHoldings => 0);
402     if (scalar(@itemloop) == 0) {
403         @itemloop = @otheritemloop;
404     }
405 }
406
407 my $some_private_shelves = Koha::Virtualshelves->get_some_shelves(
408     {
409         borrowernumber => $borrowernumber,
410         add_allowed    => 1,
411         category       => 1,
412     }
413 );
414 my $some_public_shelves = Koha::Virtualshelves->get_some_shelves(
415     {
416         borrowernumber => $borrowernumber,
417         add_allowed    => 1,
418         category       => 2,
419     }
420 );
421
422
423 $template->param(
424     add_to_some_private_shelves => $some_private_shelves,
425     add_to_some_public_shelves  => $some_public_shelves,
426 );
427
428 $template->param(
429     MARCNOTES   => $marcnotesarray,
430     itemdata_ccode      => $itemfields{ccode},
431     itemdata_enumchron  => $itemfields{enumchron},
432     itemdata_uri        => $itemfields{uri},
433     itemdata_copynumber => $itemfields{copynumber},
434     itemdata_stocknumber => $itemfields{stocknumber},
435     itemdata_publisheddate => $itemfields{publisheddate},
436     volinfo                => $itemfields{enumchron},
437         itemdata_itemnotes  => $itemfields{itemnotes},
438         itemdata_nonpublicnotes => $itemfields{itemnotes_nonpublic},
439     z3950_search_params    => C4::Search::z3950_search_args($dat),
440         hostrecords         => $hostrecords,
441     analytics_flag    => $analytics_flag,
442     C4::Search::enabled_staff_search_views,
443         materials       => $materials_flag,
444 );
445
446 if (C4::Context->preference("AlternateHoldingsField") && scalar @items == 0) {
447     my $fieldspec = C4::Context->preference("AlternateHoldingsField");
448     my $subfields = substr $fieldspec, 3;
449     my $holdingsep = C4::Context->preference("AlternateHoldingsSeparator") || ' ';
450     my @alternateholdingsinfo = ();
451     my @holdingsfields = $record->field(substr $fieldspec, 0, 3);
452
453     for my $field (@holdingsfields) {
454         my %holding = ( holding => '' );
455         my $havesubfield = 0;
456         for my $subfield ($field->subfields()) {
457             if ((index $subfields, $$subfield[0]) >= 0) {
458                 $holding{'holding'} .= $holdingsep if (length $holding{'holding'} > 0);
459                 $holding{'holding'} .= $$subfield[1];
460                 $havesubfield++;
461             }
462         }
463         if ($havesubfield) {
464             push(@alternateholdingsinfo, \%holding);
465         }
466     }
467
468     $template->param(
469         ALTERNATEHOLDINGS   => \@alternateholdingsinfo,
470         );
471 }
472
473 my @results = ( $dat, );
474 foreach ( keys %{$dat} ) {
475     $template->param( "$_" => defined $dat->{$_} ? $dat->{$_} : '' );
476 }
477
478 # does not work: my %views_enabled = map { $_ => 1 } $template->query(loop => 'EnableViews');
479 # method query not found?!?!
480 $template->param( AmazonTld => get_amazon_tld() ) if ( C4::Context->preference("AmazonCoverImages"));
481 $template->param(
482     itemloop        => \@itemloop,
483     otheritemloop   => \@otheritemloop,
484     biblionumber        => $biblionumber,
485     ($analyze? 'analyze':'detailview') =>1,
486     subscriptions       => \@subs,
487     subscriptionsnumber => $subscriptionsnumber,
488     subscriptiontitle   => $dat->{title},
489     searchid            => scalar $query->param('searchid'),
490 );
491
492 # Lists
493
494 if (C4::Context->preference("virtualshelves") ) {
495     my $shelves = Koha::Virtualshelves->search(
496         {
497             biblionumber => $biblionumber,
498             category => 2,
499         },
500         {
501             join => 'virtualshelfcontents',
502         }
503     );
504     $template->param( 'shelves' => $shelves );
505 }
506
507 # XISBN Stuff
508 if (C4::Context->preference("FRBRizeEditions")==1) {
509     eval {
510         $template->param(
511             XISBNS => scalar get_xisbns($isbn, $biblionumber)
512         );
513     };
514     if ($@) { warn "XISBN Failed $@"; }
515 }
516
517 if ( C4::Context->preference("LocalCoverImages") == 1 ) {
518     my $images = $biblio->cover_images;
519     $template->param( localimages => $biblio->cover_images );
520 }
521
522 # HTML5 Media
523 if ( (C4::Context->preference("HTML5MediaEnabled") eq 'both') or (C4::Context->preference("HTML5MediaEnabled") eq 'staff') ) {
524     $template->param( C4::HTML5Media->gethtml5media($record));
525 }
526
527 # Displaying tags
528 my $tag_quantity;
529 if (C4::Context->preference('TagsEnabled') and $tag_quantity = C4::Context->preference('TagsShowOnDetail')) {
530     $template->param(
531         TagsEnabled => 1,
532         TagsShowOnDetail => $tag_quantity
533     );
534     $template->param(TagLoop => get_tags({biblionumber=>$biblionumber, approved=>1,
535                                 'sort'=>'-weight', limit=>$tag_quantity}));
536 }
537
538 #we only need to pass the number of holds to the template
539 my $holds = $biblio->holds;
540 $template->param( holdcount => $holds->count );
541
542 # Check if there are any ILL requests connected to the biblio
543 my $illrequests =
544     C4::Context->preference('ILLModule')
545   ? Koha::Illrequests->search( { biblio_id => $biblionumber } )
546   : [];
547 $template->param( illrequests => $illrequests );
548
549 my $StaffDetailItemSelection = C4::Context->preference('StaffDetailItemSelection');
550 if ($StaffDetailItemSelection) {
551     # Only enable item selection if user can execute at least one action
552     if (
553         $flags->{superlibrarian}
554         || (
555             ref $flags->{tools} eq 'HASH' && (
556                 $flags->{tools}->{items_batchmod}       # Modify selected items
557                 || $flags->{tools}->{items_batchdel}    # Delete selected items
558             )
559         )
560         || ( ref $flags->{tools} eq '' && $flags->{tools} )
561       )
562     {
563         $template->param(
564             StaffDetailItemSelection => $StaffDetailItemSelection );
565     }
566 }
567
568 # get biblionumbers stored in the cart
569 my @cart_list;
570
571 if($query->cookie("intranet_bib_list")){
572     my $cart_list = $query->cookie("intranet_bib_list");
573     @cart_list = split(/\//, $cart_list);
574     if ( grep {$_ eq $biblionumber} @cart_list) {
575         $template->param( incart => 1 );
576     }
577 }
578
579 if ( C4::Context->preference('UseCourseReserves') ) {
580     my $course_reserves = GetItemCourseReservesInfo( biblionumber => $biblionumber );
581     $template->param( course_reserves => $course_reserves );
582 }
583
584 $template->param(biblio => $biblio);
585
586 output_html_with_http_headers $query, $cookie, $template->output;