]> git.koha-community.org Git - koha.git/blob - Koha/Biblio.pm
Bug 27945: Terminology: max daily => open requests limit
[koha.git] / Koha / Biblio.pm
1 package Koha::Biblio;
2
3 # Copyright ByWater Solutions 2014
4 #
5 # This file is part of Koha.
6 #
7 # Koha is free software; you can redistribute it and/or modify it
8 # under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 3 of the License, or
10 # (at your option) any later version.
11 #
12 # Koha is distributed in the hope that it will be useful, but
13 # WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 # GNU General Public License for more details.
16 #
17 # You should have received a copy of the GNU General Public License
18 # along with Koha; if not, see <http://www.gnu.org/licenses>.
19
20 use Modern::Perl;
21
22 use List::MoreUtils qw( any );
23 use URI;
24 use URI::Escape qw( uri_escape_utf8 );
25
26 use C4::Koha qw( GetNormalizedISBN );
27 use C4::XSLT qw( transformMARCXML4XSLT );
28
29 use Koha::Database;
30 use Koha::DateUtils qw( dt_from_string );
31
32 use base qw(Koha::Object);
33
34 use Koha::Acquisition::Orders;
35 use Koha::ArticleRequest::Status;
36 use Koha::ArticleRequests;
37 use Koha::Biblio::Metadatas;
38 use Koha::Biblioitems;
39 use Koha::CirculationRules;
40 use Koha::Item::Transfer::Limits;
41 use Koha::Items;
42 use Koha::Libraries;
43 use Koha::Suggestions;
44 use Koha::Subscriptions;
45
46 =head1 NAME
47
48 Koha::Biblio - Koha Biblio Object class
49
50 =head1 API
51
52 =head2 Class Methods
53
54 =cut
55
56 =head3 store
57
58 Overloaded I<store> method to set default values
59
60 =cut
61
62 sub store {
63     my ( $self ) = @_;
64
65     $self->datecreated( dt_from_string ) unless $self->datecreated;
66
67     return $self->SUPER::store;
68 }
69
70 =head3 metadata
71
72 my $metadata = $biblio->metadata();
73
74 Returns a Koha::Biblio::Metadata object
75
76 =cut
77
78 sub metadata {
79     my ( $self ) = @_;
80
81     my $metadata = $self->_result->metadata;
82     return Koha::Biblio::Metadata->_new_from_dbic($metadata);
83 }
84
85 =head3 orders
86
87 my $orders = $biblio->orders();
88
89 Returns a Koha::Acquisition::Orders object
90
91 =cut
92
93 sub orders {
94     my ( $self ) = @_;
95
96     my $orders = $self->_result->orders;
97     return Koha::Acquisition::Orders->_new_from_dbic($orders);
98 }
99
100 =head3 active_orders
101
102 my $active_orders = $biblio->active_orders();
103
104 Returns the active acquisition orders related to this biblio.
105 An order is considered active when it is not cancelled (i.e. when datecancellation
106 is not undef).
107
108 =cut
109
110 sub active_orders {
111     my ( $self ) = @_;
112
113     return $self->orders->search({ datecancellationprinted => undef });
114 }
115
116 =head3 can_article_request
117
118 my $bool = $biblio->can_article_request( $borrower );
119
120 Returns true if article requests can be made for this record
121
122 $borrower must be a Koha::Patron object
123
124 =cut
125
126 sub can_article_request {
127     my ( $self, $borrower ) = @_;
128
129     my $rule = $self->article_request_type($borrower);
130     return q{} if $rule eq 'item_only' && !$self->items()->count();
131     return 1 if $rule && $rule ne 'no';
132
133     return q{};
134 }
135
136 =head3 can_be_transferred
137
138 $biblio->can_be_transferred({ to => $to_library, from => $from_library })
139
140 Checks if at least one item of a biblio can be transferred to given library.
141
142 This feature is controlled by two system preferences:
143 UseBranchTransferLimits to enable / disable the feature
144 BranchTransferLimitsType to use either an itemnumber or ccode as an identifier
145                          for setting the limitations
146
147 Performance-wise, it is recommended to use this method for a biblio instead of
148 iterating each item of a biblio with Koha::Item->can_be_transferred().
149
150 Takes HASHref that can have the following parameters:
151     MANDATORY PARAMETERS:
152     $to   : Koha::Library
153     OPTIONAL PARAMETERS:
154     $from : Koha::Library # if given, only items from that
155                           # holdingbranch are considered
156
157 Returns 1 if at least one of the item of a biblio can be transferred
158 to $to_library, otherwise 0.
159
160 =cut
161
162 sub can_be_transferred {
163     my ($self, $params) = @_;
164
165     my $to   = $params->{to};
166     my $from = $params->{from};
167
168     return 1 unless C4::Context->preference('UseBranchTransferLimits');
169     my $limittype = C4::Context->preference('BranchTransferLimitsType');
170
171     my $items;
172     foreach my $item_of_bib ($self->items->as_list) {
173         next unless $item_of_bib->holdingbranch;
174         next if $from && $from->branchcode ne $item_of_bib->holdingbranch;
175         return 1 if $item_of_bib->holdingbranch eq $to->branchcode;
176         my $code = $limittype eq 'itemtype'
177             ? $item_of_bib->effective_itemtype
178             : $item_of_bib->ccode;
179         return 1 unless $code;
180         $items->{$code}->{$item_of_bib->holdingbranch} = 1;
181     }
182
183     # At this point we will have a HASHref containing each itemtype/ccode that
184     # this biblio has, inside which are all of the holdingbranches where those
185     # items are located at. Then, we will query Koha::Item::Transfer::Limits to
186     # find out whether a transfer limits for such $limittype from any of the
187     # listed holdingbranches to the given $to library exist. If at least one
188     # holdingbranch for that $limittype does not have a transfer limit to given
189     # $to library, then we know that the transfer is possible.
190     foreach my $code (keys %{$items}) {
191         my @holdingbranches = keys %{$items->{$code}};
192         return 1 if Koha::Item::Transfer::Limits->search({
193             toBranch => $to->branchcode,
194             fromBranch => { 'in' => \@holdingbranches },
195             $limittype => $code
196         }, {
197             group_by => [qw/fromBranch/]
198         })->count == scalar(@holdingbranches) ? 0 : 1;
199     }
200
201     return 0;
202 }
203
204
205 =head3 pickup_locations
206
207     my $pickup_locations = $biblio->pickup_locations( {patron => $patron } );
208
209 Returns a Koha::Libraries set of possible pickup locations for this biblio's items,
210 according to patron's home library (if patron is defined and holds are allowed
211 only from hold groups) and if item can be transferred to each pickup location.
212
213 =cut
214
215 sub pickup_locations {
216     my ( $self, $params ) = @_;
217
218     my $patron = $params->{patron};
219
220     my @pickup_locations;
221     foreach my $item_of_bib ( $self->items->as_list ) {
222         push @pickup_locations,
223           $item_of_bib->pickup_locations( { patron => $patron } )
224           ->_resultset->get_column('branchcode')->all;
225     }
226
227     return Koha::Libraries->search(
228         { branchcode => { '-in' => \@pickup_locations } }, { order_by => ['branchname'] } );
229 }
230
231 =head3 hidden_in_opac
232
233     my $bool = $biblio->hidden_in_opac({ [ rules => $rules ] })
234
235 Returns true if the biblio matches the hidding criteria defined in $rules.
236 Returns false otherwise. It involves the I<OpacHiddenItems> and
237 I<OpacHiddenItemsHidesRecord> system preferences.
238
239 Takes HASHref that can have the following parameters:
240     OPTIONAL PARAMETERS:
241     $rules : { <field> => [ value_1, ... ], ... }
242
243 Note: $rules inherits its structure from the parsed YAML from reading
244 the I<OpacHiddenItems> system preference.
245
246 =cut
247
248 sub hidden_in_opac {
249     my ( $self, $params ) = @_;
250
251     my $rules = $params->{rules} // {};
252
253     my @items = $self->items->as_list;
254
255     return 0 unless @items; # Do not hide if there is no item
256
257     # Ok, there are items, don't even try the rules unless OpacHiddenItemsHidesRecord
258     return 0 unless C4::Context->preference('OpacHiddenItemsHidesRecord');
259
260     return !(any { !$_->hidden_in_opac({ rules => $rules }) } @items);
261 }
262
263 =head3 article_request_type
264
265 my $type = $biblio->article_request_type( $borrower );
266
267 Returns the article request type based on items, or on the record
268 itself if there are no items.
269
270 $borrower must be a Koha::Patron object
271
272 =cut
273
274 sub article_request_type {
275     my ( $self, $borrower ) = @_;
276
277     return q{} unless $borrower;
278
279     my $rule = $self->article_request_type_for_items( $borrower );
280     return $rule if $rule;
281
282     # If the record has no items that are requestable, go by the record itemtype
283     $rule = $self->article_request_type_for_bib($borrower);
284     return $rule if $rule;
285
286     return q{};
287 }
288
289 =head3 article_request_type_for_bib
290
291 my $type = $biblio->article_request_type_for_bib
292
293 Returns the article request type 'yes', 'no', 'item_only', 'bib_only', for the given record
294
295 =cut
296
297 sub article_request_type_for_bib {
298     my ( $self, $borrower ) = @_;
299
300     return q{} unless $borrower;
301
302     my $borrowertype = $borrower->categorycode;
303     my $itemtype     = $self->itemtype();
304
305     my $rule = Koha::CirculationRules->get_effective_rule(
306         {
307             rule_name    => 'article_requests',
308             categorycode => $borrowertype,
309             itemtype     => $itemtype,
310         }
311     );
312
313     return q{} unless $rule;
314     return $rule->rule_value || q{}
315 }
316
317 =head3 article_request_type_for_items
318
319 my $type = $biblio->article_request_type_for_items
320
321 Returns the article request type 'yes', 'no', 'item_only', 'bib_only', for the given record's items
322
323 If there is a conflict where some items are 'bib_only' and some are 'item_only', 'bib_only' will be returned.
324
325 =cut
326
327 sub article_request_type_for_items {
328     my ( $self, $borrower ) = @_;
329
330     my $counts;
331     foreach my $item ( $self->items()->as_list() ) {
332         my $rule = $item->article_request_type($borrower);
333         return $rule if $rule eq 'bib_only';    # we don't need to go any further
334         $counts->{$rule}++;
335     }
336
337     return 'item_only' if $counts->{item_only};
338     return 'yes'       if $counts->{yes};
339     return 'no'        if $counts->{no};
340     return q{};
341 }
342
343 =head3 article_requests
344
345 my @requests = $biblio->article_requests
346
347 Returns the article requests associated with this Biblio
348
349 =cut
350
351 sub article_requests {
352     my ( $self, $borrower ) = @_;
353
354     $self->{_article_requests} ||= Koha::ArticleRequests->search( { biblionumber => $self->biblionumber() } );
355
356     return wantarray ? $self->{_article_requests}->as_list : $self->{_article_requests};
357 }
358
359 =head3 article_requests_current
360
361 my @requests = $biblio->article_requests_current
362
363 Returns the article requests associated with this Biblio that are incomplete
364
365 =cut
366
367 sub article_requests_current {
368     my ( $self, $borrower ) = @_;
369
370     $self->{_article_requests_current} ||= Koha::ArticleRequests->search(
371         {
372             biblionumber => $self->biblionumber(),
373             -or          => [
374                 { status => Koha::ArticleRequest::Status::Requested },
375                 { status => Koha::ArticleRequest::Status::Pending },
376                 { status => Koha::ArticleRequest::Status::Processing }
377             ]
378         }
379     );
380
381     return wantarray ? $self->{_article_requests_current}->as_list : $self->{_article_requests_current};
382 }
383
384 =head3 article_requests_finished
385
386 my @requests = $biblio->article_requests_finished
387
388 Returns the article requests associated with this Biblio that are completed
389
390 =cut
391
392 sub article_requests_finished {
393     my ( $self, $borrower ) = @_;
394
395     $self->{_article_requests_finished} ||= Koha::ArticleRequests->search(
396         {
397             biblionumber => $self->biblionumber(),
398             -or          => [
399                 { status => Koha::ArticleRequest::Status::Completed },
400                 { status => Koha::ArticleRequest::Status::Canceled }
401             ]
402         }
403     );
404
405     return wantarray ? $self->{_article_requests_finished}->as_list : $self->{_article_requests_finished};
406 }
407
408 =head3 items
409
410 my $items = $biblio->items();
411
412 Returns the related Koha::Items object for this biblio
413
414 =cut
415
416 sub items {
417     my ($self) = @_;
418
419     my $items_rs = $self->_result->items;
420
421     return Koha::Items->_new_from_dbic( $items_rs );
422 }
423
424 =head3 itemtype
425
426 my $itemtype = $biblio->itemtype();
427
428 Returns the itemtype for this record.
429
430 =cut
431
432 sub itemtype {
433     my ( $self ) = @_;
434
435     return $self->biblioitem()->itemtype();
436 }
437
438 =head3 holds
439
440 my $holds = $biblio->holds();
441
442 return the current holds placed on this record
443
444 =cut
445
446 sub holds {
447     my ( $self, $params, $attributes ) = @_;
448     $attributes->{order_by} = 'priority' unless exists $attributes->{order_by};
449     my $hold_rs = $self->_result->reserves->search( $params, $attributes );
450     return Koha::Holds->_new_from_dbic($hold_rs);
451 }
452
453 =head3 current_holds
454
455 my $holds = $biblio->current_holds
456
457 Return the holds placed on this bibliographic record.
458 It does not include future holds.
459
460 =cut
461
462 sub current_holds {
463     my ($self) = @_;
464     my $dtf = Koha::Database->new->schema->storage->datetime_parser;
465     return $self->holds(
466         { reservedate => { '<=' => $dtf->format_date(dt_from_string) } } );
467 }
468
469 =head3 biblioitem
470
471 my $field = $self->biblioitem()->itemtype
472
473 Returns the related Koha::Biblioitem object for this Biblio object
474
475 =cut
476
477 sub biblioitem {
478     my ($self) = @_;
479
480     $self->{_biblioitem} ||= Koha::Biblioitems->find( { biblionumber => $self->biblionumber() } );
481
482     return $self->{_biblioitem};
483 }
484
485 =head3 suggestions
486
487 my $suggestions = $self->suggestions
488
489 Returns the related Koha::Suggestions object for this Biblio object
490
491 =cut
492
493 sub suggestions {
494     my ($self) = @_;
495
496     my $suggestions_rs = $self->_result->suggestions;
497     return Koha::Suggestions->_new_from_dbic( $suggestions_rs );
498 }
499
500 =head3 subscriptions
501
502 my $subscriptions = $self->subscriptions
503
504 Returns the related Koha::Subscriptions object for this Biblio object
505
506 =cut
507
508 sub subscriptions {
509     my ($self) = @_;
510
511     $self->{_subscriptions} ||= Koha::Subscriptions->search( { biblionumber => $self->biblionumber } );
512
513     return $self->{_subscriptions};
514 }
515
516 =head3 has_items_waiting_or_intransit
517
518 my $itemsWaitingOrInTransit = $biblio->has_items_waiting_or_intransit
519
520 Tells if this bibliographic record has items waiting or in transit.
521
522 =cut
523
524 sub has_items_waiting_or_intransit {
525     my ( $self ) = @_;
526
527     if ( Koha::Holds->search({ biblionumber => $self->id,
528                                found => ['W', 'T'] })->count ) {
529         return 1;
530     }
531
532     foreach my $item ( $self->items->as_list ) {
533         return 1 if $item->get_transfer;
534     }
535
536     return 0;
537 }
538
539 =head2 get_coins
540
541 my $coins = $biblio->get_coins;
542
543 Returns the COinS (a span) which can be included in a biblio record
544
545 =cut
546
547 sub get_coins {
548     my ( $self ) = @_;
549
550     my $record = $self->metadata->record;
551
552     my $pos7 = substr $record->leader(), 7, 1;
553     my $pos6 = substr $record->leader(), 6, 1;
554     my $mtx;
555     my $genre;
556     my ( $aulast, $aufirst ) = ( '', '' );
557     my @authors;
558     my $title;
559     my $hosttitle;
560     my $pubyear   = '';
561     my $isbn      = '';
562     my $issn      = '';
563     my $publisher = '';
564     my $pages     = '';
565     my $titletype = '';
566
567     # For the purposes of generating COinS metadata, LDR/06-07 can be
568     # considered the same for UNIMARC and MARC21
569     my $fmts6 = {
570         'a' => 'book',
571         'b' => 'manuscript',
572         'c' => 'book',
573         'd' => 'manuscript',
574         'e' => 'map',
575         'f' => 'map',
576         'g' => 'film',
577         'i' => 'audioRecording',
578         'j' => 'audioRecording',
579         'k' => 'artwork',
580         'l' => 'document',
581         'm' => 'computerProgram',
582         'o' => 'document',
583         'r' => 'document',
584     };
585     my $fmts7 = {
586         'a' => 'journalArticle',
587         's' => 'journal',
588     };
589
590     $genre = $fmts6->{$pos6} ? $fmts6->{$pos6} : 'book';
591
592     if ( $genre eq 'book' ) {
593             $genre = $fmts7->{$pos7} if $fmts7->{$pos7};
594     }
595
596     ##### We must transform mtx to a valable mtx and document type ####
597     if ( $genre eq 'book' ) {
598             $mtx = 'book';
599             $titletype = 'b';
600     } elsif ( $genre eq 'journal' ) {
601             $mtx = 'journal';
602             $titletype = 'j';
603     } elsif ( $genre eq 'journalArticle' ) {
604             $mtx   = 'journal';
605             $genre = 'article';
606             $titletype = 'a';
607     } else {
608             $mtx = 'dc';
609     }
610
611     if ( C4::Context->preference("marcflavour") eq "UNIMARC" ) {
612
613         # Setting datas
614         $aulast  = $record->subfield( '700', 'a' ) || '';
615         $aufirst = $record->subfield( '700', 'b' ) || '';
616         push @authors, "$aufirst $aulast" if ($aufirst or $aulast);
617
618         # others authors
619         if ( $record->field('200') ) {
620             for my $au ( $record->field('200')->subfield('g') ) {
621                 push @authors, $au;
622             }
623         }
624
625         $title     = $record->subfield( '200', 'a' );
626         my $subfield_210d = $record->subfield('210', 'd');
627         if ($subfield_210d and $subfield_210d =~ /(\d{4})/) {
628             $pubyear = $1;
629         }
630         $publisher = $record->subfield( '210', 'c' ) || '';
631         $isbn      = $record->subfield( '010', 'a' ) || '';
632         $issn      = $record->subfield( '011', 'a' ) || '';
633     } else {
634
635         # MARC21 need some improve
636
637         # Setting datas
638         if ( $record->field('100') ) {
639             push @authors, $record->subfield( '100', 'a' );
640         }
641
642         # others authors
643         if ( $record->field('700') ) {
644             for my $au ( $record->field('700')->subfield('a') ) {
645                 push @authors, $au;
646             }
647         }
648         $title = $record->field('245');
649         $title &&= $title->as_string('ab');
650         if ($titletype eq 'a') {
651             $pubyear   = $record->field('008') || '';
652             $pubyear   = substr($pubyear->data(), 7, 4) if $pubyear;
653             $isbn      = $record->subfield( '773', 'z' ) || '';
654             $issn      = $record->subfield( '773', 'x' ) || '';
655             $hosttitle = $record->subfield( '773', 't' ) || $record->subfield( '773', 'a') || q{};
656             my @rels = $record->subfield( '773', 'g' );
657             $pages = join(', ', @rels);
658         } else {
659             $pubyear   = $record->subfield( '260', 'c' ) || '';
660             $publisher = $record->subfield( '260', 'b' ) || '';
661             $isbn      = $record->subfield( '020', 'a' ) || '';
662             $issn      = $record->subfield( '022', 'a' ) || '';
663         }
664
665     }
666
667     my @params = (
668         [ 'ctx_ver', 'Z39.88-2004' ],
669         [ 'rft_val_fmt', "info:ofi/fmt:kev:mtx:$mtx" ],
670         [ ($mtx eq 'dc' ? 'rft.type' : 'rft.genre'), $genre ],
671         [ "rft.${titletype}title", $title ],
672     );
673
674     # rft.title is authorized only once, so by checking $titletype
675     # we ensure that rft.title is not already in the list.
676     if ($hosttitle and $titletype) {
677         push @params, [ 'rft.title', $hosttitle ];
678     }
679
680     push @params, (
681         [ 'rft.isbn', $isbn ],
682         [ 'rft.issn', $issn ],
683     );
684
685     # If it's a subscription, these informations have no meaning.
686     if ($genre ne 'journal') {
687         push @params, (
688             [ 'rft.aulast', $aulast ],
689             [ 'rft.aufirst', $aufirst ],
690             (map { [ 'rft.au', $_ ] } @authors),
691             [ 'rft.pub', $publisher ],
692             [ 'rft.date', $pubyear ],
693             [ 'rft.pages', $pages ],
694         );
695     }
696
697     my $coins_value = join( '&amp;',
698         map { $$_[1] ? $$_[0] . '=' . uri_escape_utf8( $$_[1] ) : () } @params );
699
700     return $coins_value;
701 }
702
703 =head2 get_openurl
704
705 my $url = $biblio->get_openurl;
706
707 Returns url for OpenURL resolver set in OpenURLResolverURL system preference
708
709 =cut
710
711 sub get_openurl {
712     my ( $self ) = @_;
713
714     my $OpenURLResolverURL = C4::Context->preference('OpenURLResolverURL');
715
716     if ($OpenURLResolverURL) {
717         my $uri = URI->new($OpenURLResolverURL);
718
719         if (not defined $uri->query) {
720             $OpenURLResolverURL .= '?';
721         } else {
722             $OpenURLResolverURL .= '&amp;';
723         }
724         $OpenURLResolverURL .= $self->get_coins;
725     }
726
727     return $OpenURLResolverURL;
728 }
729
730 =head3 is_serial
731
732 my $serial = $biblio->is_serial
733
734 Return boolean true if this bibbliographic record is continuing resource
735
736 =cut
737
738 sub is_serial {
739     my ( $self ) = @_;
740
741     return 1 if $self->serial;
742
743     my $record = $self->metadata->record;
744     return 1 if substr($record->leader, 7, 1) eq 's';
745
746     return 0;
747 }
748
749 =head3 custom_cover_image_url
750
751 my $image_url = $biblio->custom_cover_image_url
752
753 Return the specific url of the cover image for this bibliographic record.
754 It is built regaring the value of the system preference CustomCoverImagesURL
755
756 =cut
757
758 sub custom_cover_image_url {
759     my ( $self ) = @_;
760     my $url = C4::Context->preference('CustomCoverImagesURL');
761     if ( $url =~ m|{isbn}| ) {
762         my $isbn = $self->biblioitem->isbn;
763         return unless $isbn;
764         $url =~ s|{isbn}|$isbn|g;
765     }
766     if ( $url =~ m|{normalized_isbn}| ) {
767         my $normalized_isbn = C4::Koha::GetNormalizedISBN($self->biblioitem->isbn);
768         return unless $normalized_isbn;
769         $url =~ s|{normalized_isbn}|$normalized_isbn|g;
770     }
771     if ( $url =~ m|{issn}| ) {
772         my $issn = $self->biblioitem->issn;
773         return unless $issn;
774         $url =~ s|{issn}|$issn|g;
775     }
776
777     my $re = qr|{(?<field>\d{3})\$(?<subfield>.)}|;
778     if ( $url =~ $re ) {
779         my $field = $+{field};
780         my $subfield = $+{subfield};
781         my $marc_record = $self->metadata->record;
782         my $value = $marc_record->subfield($field, $subfield);
783         return unless $value;
784         $url =~ s|$re|$value|;
785     }
786
787     return $url;
788 }
789
790 =head3 cover_images
791
792 Return the cover images associated with this biblio.
793
794 =cut
795
796 sub cover_images {
797     my ( $self ) = @_;
798
799     my $cover_images_rs = $self->_result->cover_images;
800     return unless $cover_images_rs;
801     return Koha::CoverImages->_new_from_dbic($cover_images_rs);
802 }
803
804 =head3 get_marc_notes
805
806     $marcnotesarray = $biblio->get_marc_notes({ marcflavour => $marcflavour });
807
808 Get all notes from the MARC record and returns them in an array.
809 The notes are stored in different fields depending on MARC flavour.
810 MARC21 5XX $u subfields receive special attention as they are URIs.
811
812 =cut
813
814 sub get_marc_notes {
815     my ( $self, $params ) = @_;
816
817     my $marcflavour = $params->{marcflavour};
818     my $opac = $params->{opac};
819
820     my $scope = $marcflavour eq "UNIMARC"? '3..': '5..';
821     my @marcnotes;
822
823     #MARC21 specs indicate some notes should be private if first indicator 0
824     my %maybe_private = (
825         541 => 1,
826         542 => 1,
827         561 => 1,
828         583 => 1,
829         590 => 1
830     );
831
832     my %hiddenlist = map { $_ => 1 }
833         split( /,/, C4::Context->preference('NotesToHide'));
834     my $record = $self->metadata->record;
835     $record = transformMARCXML4XSLT( $self->biblionumber, $record, $opac );
836
837     foreach my $field ( $record->field($scope) ) {
838         my $tag = $field->tag();
839         next if $hiddenlist{ $tag };
840         next if $opac && $maybe_private{$tag} && !$field->indicator(1);
841         if( $marcflavour ne 'UNIMARC' && $field->subfield('u') ) {
842             # Field 5XX$u always contains URI
843             # Examples: 505u, 506u, 510u, 514u, 520u, 530u, 538u, 540u, 542u, 552u, 555u, 561u, 563u, 583u
844             # We first push the other subfields, then all $u's separately
845             # Leave further actions to the template (see e.g. opac-detail)
846             my $othersub =
847                 join '', ( 'a' .. 't', 'v' .. 'z', '0' .. '9' ); # excl 'u'
848             push @marcnotes, { marcnote => $field->as_string($othersub) };
849             foreach my $sub ( $field->subfield('u') ) {
850                 $sub =~ s/^\s+|\s+$//g; # trim
851                 push @marcnotes, { marcnote => $sub };
852             }
853         } else {
854             push @marcnotes, { marcnote => $field->as_string() };
855         }
856     }
857     return \@marcnotes;
858 }
859
860 =head3 to_api
861
862     my $json = $biblio->to_api;
863
864 Overloaded method that returns a JSON representation of the Koha::Biblio object,
865 suitable for API output. The related Koha::Biblioitem object is merged as expected
866 on the API.
867
868 =cut
869
870 sub to_api {
871     my ($self, $args) = @_;
872
873     my $response = $self->SUPER::to_api( $args );
874     my $biblioitem = $self->biblioitem->to_api;
875
876     return { %$response, %$biblioitem };
877 }
878
879 =head3 to_api_mapping
880
881 This method returns the mapping for representing a Koha::Biblio object
882 on the API.
883
884 =cut
885
886 sub to_api_mapping {
887     return {
888         biblionumber     => 'biblio_id',
889         frameworkcode    => 'framework_id',
890         unititle         => 'uniform_title',
891         seriestitle      => 'series_title',
892         copyrightdate    => 'copyright_date',
893         datecreated      => 'creation_date'
894     };
895 }
896
897 =head3 get_marc_host
898
899     $host = $biblio->get_marc_host;
900     # OR:
901     ( $host, $relatedparts ) = $biblio->get_marc_host;
902
903     Returns host biblio record from MARC21 773 (undef if no 773 present).
904     It looks at the first 773 field with MARCorgCode or only a control
905     number. Complete $w or numeric part is used to search host record.
906     The optional parameter no_items triggers a check if $biblio has items.
907     If there are, the sub returns undef.
908     Called in list context, it also returns 773$g (related parts).
909
910 =cut
911
912 sub get_marc_host {
913     my ($self, $params) = @_;
914     my $no_items = $params->{no_items};
915     return if C4::Context->preference('marcflavour') eq 'UNIMARC'; # TODO
916     return if $params->{no_items} && $self->items->count > 0;
917
918     my $record;
919     eval { $record = $self->metadata->record };
920     return if !$record;
921
922     # We pick the first $w with your MARCOrgCode or the first $w that has no
923     # code (between parentheses) at all.
924     my $orgcode = C4::Context->preference('MARCOrgCode') // q{};
925     my $hostfld;
926     foreach my $f ( $record->field('773') ) {
927         my $w = $f->subfield('w') or next;
928         if( $w =~ /^\($orgcode\)\s*(\d+)/i or $w =~ /^\d+/ ) {
929             $hostfld = $f;
930             last;
931         }
932     }
933     return if !$hostfld;
934     my $rcn = $hostfld->subfield('w');
935
936     # Look for control number with/without orgcode
937     my $engine = Koha::SearchEngine::Search->new({ index => $Koha::SearchEngine::BIBLIOS_INDEX });
938     my $bibno;
939     for my $try (1..2) {
940         my ( $error, $results, $total_hits ) = $engine->simple_search_compat( 'Control-number='.$rcn, 0,1 );
941         if( !$error and $total_hits == 1 ) {
942             $bibno = $engine->extract_biblionumber( $results->[0] );
943             last;
944         }
945         # Add or remove orgcode for second try
946         if( $try == 1 && $rcn =~ /\)\s*(\d+)/ ) {
947             $rcn = $1; # number only
948         } elsif( $try == 1 && $rcn =~ /^\d+/ ) {
949             $rcn = "($orgcode)$rcn";
950         } else {
951             last;
952         }
953     }
954     if( $bibno ) {
955         my $host = Koha::Biblios->find($bibno) or return;
956         return wantarray ? ( $host, $hostfld->subfield('g') ) : $host;
957     }
958 }
959
960 =head2 Internal methods
961
962 =head3 type
963
964 =cut
965
966 sub _type {
967     return 'Biblio';
968 }
969
970 =head1 AUTHOR
971
972 Kyle M Hall <kyle@bywatersolutions.com>
973
974 =cut
975
976 1;