Bug 23192: Correct tab input on waiting_holds.inc
[koha.git] / Koha / Biblio.pm
blobf38a101e27860a3085ef53902f9526d0337f0f63
1 package Koha::Biblio;
3 # Copyright ByWater Solutions 2014
5 # This file is part of Koha.
7 # Koha is free software; you can redistribute it and/or modify it under the
8 # terms of the GNU General Public License as published by the Free Software
9 # Foundation; either version 3 of the License, or (at your option) any later
10 # version.
12 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
13 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
14 # A PARTICULAR PURPOSE. See the GNU General Public License for more details.
16 # You should have received a copy of the GNU General Public License along
17 # with Koha; if not, write to the Free Software Foundation, Inc.,
18 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
20 use Modern::Perl;
22 use Carp;
23 use List::MoreUtils qw(any);
24 use URI;
25 use URI::Escape;
27 use C4::Biblio qw();
29 use Koha::Database;
30 use Koha::DateUtils qw( dt_from_string );
32 use base qw(Koha::Object);
34 use Koha::ArticleRequest::Status;
35 use Koha::ArticleRequests;
36 use Koha::Biblio::Metadatas;
37 use Koha::Biblioitems;
38 use Koha::IssuingRules;
39 use Koha::Item::Transfer::Limits;
40 use Koha::Items;
41 use Koha::Libraries;
42 use Koha::Subscriptions;
44 =head1 NAME
46 Koha::Biblio - Koha Biblio Object class
48 =head1 API
50 =head2 Class Methods
52 =cut
54 =head3 store
56 Overloaded I<store> method to set default values
58 =cut
60 sub store {
61 my ( $self ) = @_;
63 $self->datecreated( dt_from_string ) unless $self->datecreated;
65 return $self->SUPER::store;
68 =head3 metadata
70 my $metadata = $biblio->metadata();
72 Returns a Koha::Biblio::Metadata object
74 =cut
76 sub metadata {
77 my ( $self ) = @_;
79 my $metadata = $self->_result->metadata;
80 return Koha::Biblio::Metadata->_new_from_dbic($metadata);
83 =head3 subtitles
85 my @subtitles = $biblio->subtitles();
87 Returns list of subtitles for a record.
89 Keyword to MARC mapping for subtitle must be set for this method to return any possible values.
91 =cut
93 sub subtitles {
94 my ( $self ) = @_;
96 return map { $_->{subfield} } @{
97 C4::Biblio::GetRecordValue(
98 'subtitle',
99 C4::Biblio::GetMarcBiblio({ biblionumber => $self->id }),
100 $self->frameworkcode ) };
103 =head3 can_article_request
105 my $bool = $biblio->can_article_request( $borrower );
107 Returns true if article requests can be made for this record
109 $borrower must be a Koha::Patron object
111 =cut
113 sub can_article_request {
114 my ( $self, $borrower ) = @_;
116 my $rule = $self->article_request_type($borrower);
117 return q{} if $rule eq 'item_only' && !$self->items()->count();
118 return 1 if $rule && $rule ne 'no';
120 return q{};
123 =head3 can_be_transferred
125 $biblio->can_be_transferred({ to => $to_library, from => $from_library })
127 Checks if at least one item of a biblio can be transferred to given library.
129 This feature is controlled by two system preferences:
130 UseBranchTransferLimits to enable / disable the feature
131 BranchTransferLimitsType to use either an itemnumber or ccode as an identifier
132 for setting the limitations
134 Performance-wise, it is recommended to use this method for a biblio instead of
135 iterating each item of a biblio with Koha::Item->can_be_transferred().
137 Takes HASHref that can have the following parameters:
138 MANDATORY PARAMETERS:
139 $to : Koha::Library
140 OPTIONAL PARAMETERS:
141 $from : Koha::Library # if given, only items from that
142 # holdingbranch are considered
144 Returns 1 if at least one of the item of a biblio can be transferred
145 to $to_library, otherwise 0.
147 =cut
149 sub can_be_transferred {
150 my ($self, $params) = @_;
152 my $to = $params->{to};
153 my $from = $params->{from};
155 return 1 unless C4::Context->preference('UseBranchTransferLimits');
156 my $limittype = C4::Context->preference('BranchTransferLimitsType');
158 my $items;
159 foreach my $item_of_bib ($self->items->as_list) {
160 next unless $item_of_bib->holdingbranch;
161 next if $from && $from->branchcode ne $item_of_bib->holdingbranch;
162 return 1 if $item_of_bib->holdingbranch eq $to->branchcode;
163 my $code = $limittype eq 'itemtype'
164 ? $item_of_bib->effective_itemtype
165 : $item_of_bib->ccode;
166 return 1 unless $code;
167 $items->{$code}->{$item_of_bib->holdingbranch} = 1;
170 # At this point we will have a HASHref containing each itemtype/ccode that
171 # this biblio has, inside which are all of the holdingbranches where those
172 # items are located at. Then, we will query Koha::Item::Transfer::Limits to
173 # find out whether a transfer limits for such $limittype from any of the
174 # listed holdingbranches to the given $to library exist. If at least one
175 # holdingbranch for that $limittype does not have a transfer limit to given
176 # $to library, then we know that the transfer is possible.
177 foreach my $code (keys %{$items}) {
178 my @holdingbranches = keys %{$items->{$code}};
179 return 1 if Koha::Item::Transfer::Limits->search({
180 toBranch => $to->branchcode,
181 fromBranch => { 'in' => \@holdingbranches },
182 $limittype => $code
183 }, {
184 group_by => [qw/fromBranch/]
185 })->count == scalar(@holdingbranches) ? 0 : 1;
188 return 0;
191 =head3 hidden_in_opac
193 my $bool = $biblio->hidden_in_opac({ [ rules => $rules ] })
195 Returns true if the biblio matches the hidding criteria defined in $rules.
196 Returns false otherwise.
198 Takes HASHref that can have the following parameters:
199 OPTIONAL PARAMETERS:
200 $rules : { <field> => [ value_1, ... ], ... }
202 Note: $rules inherits its structure from the parsed YAML from reading
203 the I<OpacHiddenItems> system preference.
205 =cut
207 sub hidden_in_opac {
208 my ( $self, $params ) = @_;
210 my $rules = $params->{rules} // {};
212 my @items = $self->items->as_list;
214 return 0 unless @items; # Do not hide if there is no item
216 return !(any { !$_->hidden_in_opac({ rules => $rules }) } @items);
219 =head3 article_request_type
221 my $type = $biblio->article_request_type( $borrower );
223 Returns the article request type based on items, or on the record
224 itself if there are no items.
226 $borrower must be a Koha::Patron object
228 =cut
230 sub article_request_type {
231 my ( $self, $borrower ) = @_;
233 return q{} unless $borrower;
235 my $rule = $self->article_request_type_for_items( $borrower );
236 return $rule if $rule;
238 # If the record has no items that are requestable, go by the record itemtype
239 $rule = $self->article_request_type_for_bib($borrower);
240 return $rule if $rule;
242 return q{};
245 =head3 article_request_type_for_bib
247 my $type = $biblio->article_request_type_for_bib
249 Returns the article request type 'yes', 'no', 'item_only', 'bib_only', for the given record
251 =cut
253 sub article_request_type_for_bib {
254 my ( $self, $borrower ) = @_;
256 return q{} unless $borrower;
258 my $borrowertype = $borrower->categorycode;
259 my $itemtype = $self->itemtype();
261 my $issuing_rule = Koha::IssuingRules->get_effective_issuing_rule({ categorycode => $borrowertype, itemtype => $itemtype });
263 return q{} unless $issuing_rule;
264 return $issuing_rule->article_requests || q{}
267 =head3 article_request_type_for_items
269 my $type = $biblio->article_request_type_for_items
271 Returns the article request type 'yes', 'no', 'item_only', 'bib_only', for the given record's items
273 If there is a conflict where some items are 'bib_only' and some are 'item_only', 'bib_only' will be returned.
275 =cut
277 sub article_request_type_for_items {
278 my ( $self, $borrower ) = @_;
280 my $counts;
281 foreach my $item ( $self->items()->as_list() ) {
282 my $rule = $item->article_request_type($borrower);
283 return $rule if $rule eq 'bib_only'; # we don't need to go any further
284 $counts->{$rule}++;
287 return 'item_only' if $counts->{item_only};
288 return 'yes' if $counts->{yes};
289 return 'no' if $counts->{no};
290 return q{};
293 =head3 article_requests
295 my @requests = $biblio->article_requests
297 Returns the article requests associated with this Biblio
299 =cut
301 sub article_requests {
302 my ( $self, $borrower ) = @_;
304 $self->{_article_requests} ||= Koha::ArticleRequests->search( { biblionumber => $self->biblionumber() } );
306 return wantarray ? $self->{_article_requests}->as_list : $self->{_article_requests};
309 =head3 article_requests_current
311 my @requests = $biblio->article_requests_current
313 Returns the article requests associated with this Biblio that are incomplete
315 =cut
317 sub article_requests_current {
318 my ( $self, $borrower ) = @_;
320 $self->{_article_requests_current} ||= Koha::ArticleRequests->search(
322 biblionumber => $self->biblionumber(),
323 -or => [
324 { status => Koha::ArticleRequest::Status::Pending },
325 { status => Koha::ArticleRequest::Status::Processing }
330 return wantarray ? $self->{_article_requests_current}->as_list : $self->{_article_requests_current};
333 =head3 article_requests_finished
335 my @requests = $biblio->article_requests_finished
337 Returns the article requests associated with this Biblio that are completed
339 =cut
341 sub article_requests_finished {
342 my ( $self, $borrower ) = @_;
344 $self->{_article_requests_finished} ||= Koha::ArticleRequests->search(
346 biblionumber => $self->biblionumber(),
347 -or => [
348 { status => Koha::ArticleRequest::Status::Completed },
349 { status => Koha::ArticleRequest::Status::Canceled }
354 return wantarray ? $self->{_article_requests_finished}->as_list : $self->{_article_requests_finished};
357 =head3 items
359 my $items = $biblio->items();
361 Returns the related Koha::Items object for this biblio
363 =cut
365 sub items {
366 my ($self) = @_;
368 my $items_rs = $self->_result->items;
370 return Koha::Items->_new_from_dbic( $items_rs );
373 =head3 itemtype
375 my $itemtype = $biblio->itemtype();
377 Returns the itemtype for this record.
379 =cut
381 sub itemtype {
382 my ( $self ) = @_;
384 return $self->biblioitem()->itemtype();
387 =head3 holds
389 my $holds = $biblio->holds();
391 return the current holds placed on this record
393 =cut
395 sub holds {
396 my ( $self, $params, $attributes ) = @_;
397 $attributes->{order_by} = 'priority' unless exists $attributes->{order_by};
398 my $hold_rs = $self->_result->reserves->search( $params, $attributes );
399 return Koha::Holds->_new_from_dbic($hold_rs);
402 =head3 current_holds
404 my $holds = $biblio->current_holds
406 Return the holds placed on this bibliographic record.
407 It does not include future holds.
409 =cut
411 sub current_holds {
412 my ($self) = @_;
413 my $dtf = Koha::Database->new->schema->storage->datetime_parser;
414 return $self->holds(
415 { reservedate => { '<=' => $dtf->format_date(dt_from_string) } } );
418 =head3 biblioitem
420 my $field = $self->biblioitem()->itemtype
422 Returns the related Koha::Biblioitem object for this Biblio object
424 =cut
426 sub biblioitem {
427 my ($self) = @_;
429 $self->{_biblioitem} ||= Koha::Biblioitems->find( { biblionumber => $self->biblionumber() } );
431 return $self->{_biblioitem};
434 =head3 subscriptions
436 my $subscriptions = $self->subscriptions
438 Returns the related Koha::Subscriptions object for this Biblio object
440 =cut
442 sub subscriptions {
443 my ($self) = @_;
445 $self->{_subscriptions} ||= Koha::Subscriptions->search( { biblionumber => $self->biblionumber } );
447 return $self->{_subscriptions};
450 =head3 has_items_waiting_or_intransit
452 my $itemsWaitingOrInTransit = $biblio->has_items_waiting_or_intransit
454 Tells if this bibliographic record has items waiting or in transit.
456 =cut
458 sub has_items_waiting_or_intransit {
459 my ( $self ) = @_;
461 if ( Koha::Holds->search({ biblionumber => $self->id,
462 found => ['W', 'T'] })->count ) {
463 return 1;
466 foreach my $item ( $self->items->as_list ) {
467 return 1 if $item->get_transfer;
470 return 0;
473 =head2 get_coins
475 my $coins = $biblio->get_coins;
477 Returns the COinS (a span) which can be included in a biblio record
479 =cut
481 sub get_coins {
482 my ( $self ) = @_;
484 my $record = $self->metadata->record;
486 my $pos7 = substr $record->leader(), 7, 1;
487 my $pos6 = substr $record->leader(), 6, 1;
488 my $mtx;
489 my $genre;
490 my ( $aulast, $aufirst ) = ( '', '' );
491 my @authors;
492 my $title;
493 my $hosttitle;
494 my $pubyear = '';
495 my $isbn = '';
496 my $issn = '';
497 my $publisher = '';
498 my $pages = '';
499 my $titletype = '';
501 # For the purposes of generating COinS metadata, LDR/06-07 can be
502 # considered the same for UNIMARC and MARC21
503 my $fmts6 = {
504 'a' => 'book',
505 'b' => 'manuscript',
506 'c' => 'book',
507 'd' => 'manuscript',
508 'e' => 'map',
509 'f' => 'map',
510 'g' => 'film',
511 'i' => 'audioRecording',
512 'j' => 'audioRecording',
513 'k' => 'artwork',
514 'l' => 'document',
515 'm' => 'computerProgram',
516 'o' => 'document',
517 'r' => 'document',
519 my $fmts7 = {
520 'a' => 'journalArticle',
521 's' => 'journal',
524 $genre = $fmts6->{$pos6} ? $fmts6->{$pos6} : 'book';
526 if ( $genre eq 'book' ) {
527 $genre = $fmts7->{$pos7} if $fmts7->{$pos7};
530 ##### We must transform mtx to a valable mtx and document type ####
531 if ( $genre eq 'book' ) {
532 $mtx = 'book';
533 $titletype = 'b';
534 } elsif ( $genre eq 'journal' ) {
535 $mtx = 'journal';
536 $titletype = 'j';
537 } elsif ( $genre eq 'journalArticle' ) {
538 $mtx = 'journal';
539 $genre = 'article';
540 $titletype = 'a';
541 } else {
542 $mtx = 'dc';
545 if ( C4::Context->preference("marcflavour") eq "UNIMARC" ) {
547 # Setting datas
548 $aulast = $record->subfield( '700', 'a' ) || '';
549 $aufirst = $record->subfield( '700', 'b' ) || '';
550 push @authors, "$aufirst $aulast" if ($aufirst or $aulast);
552 # others authors
553 if ( $record->field('200') ) {
554 for my $au ( $record->field('200')->subfield('g') ) {
555 push @authors, $au;
559 $title = $record->subfield( '200', 'a' );
560 my $subfield_210d = $record->subfield('210', 'd');
561 if ($subfield_210d and $subfield_210d =~ /(\d{4})/) {
562 $pubyear = $1;
564 $publisher = $record->subfield( '210', 'c' ) || '';
565 $isbn = $record->subfield( '010', 'a' ) || '';
566 $issn = $record->subfield( '011', 'a' ) || '';
567 } else {
569 # MARC21 need some improve
571 # Setting datas
572 if ( $record->field('100') ) {
573 push @authors, $record->subfield( '100', 'a' );
576 # others authors
577 if ( $record->field('700') ) {
578 for my $au ( $record->field('700')->subfield('a') ) {
579 push @authors, $au;
582 $title = $record->subfield( '245', 'a' ) . $record->subfield( '245', 'b' );
583 if ($titletype eq 'a') {
584 $pubyear = $record->field('008') || '';
585 $pubyear = substr($pubyear->data(), 7, 4) if $pubyear;
586 $isbn = $record->subfield( '773', 'z' ) || '';
587 $issn = $record->subfield( '773', 'x' ) || '';
588 $hosttitle = $record->subfield( '773', 't' ) || $record->subfield( '773', 'a') || q{};
589 my @rels = $record->subfield( '773', 'g' );
590 $pages = join(', ', @rels);
591 } else {
592 $pubyear = $record->subfield( '260', 'c' ) || '';
593 $publisher = $record->subfield( '260', 'b' ) || '';
594 $isbn = $record->subfield( '020', 'a' ) || '';
595 $issn = $record->subfield( '022', 'a' ) || '';
600 my @params = (
601 [ 'ctx_ver', 'Z39.88-2004' ],
602 [ 'rft_val_fmt', "info:ofi/fmt:kev:mtx:$mtx" ],
603 [ ($mtx eq 'dc' ? 'rft.type' : 'rft.genre'), $genre ],
604 [ "rft.${titletype}title", $title ],
607 # rft.title is authorized only once, so by checking $titletype
608 # we ensure that rft.title is not already in the list.
609 if ($hosttitle and $titletype) {
610 push @params, [ 'rft.title', $hosttitle ];
613 push @params, (
614 [ 'rft.isbn', $isbn ],
615 [ 'rft.issn', $issn ],
618 # If it's a subscription, these informations have no meaning.
619 if ($genre ne 'journal') {
620 push @params, (
621 [ 'rft.aulast', $aulast ],
622 [ 'rft.aufirst', $aufirst ],
623 (map { [ 'rft.au', $_ ] } @authors),
624 [ 'rft.pub', $publisher ],
625 [ 'rft.date', $pubyear ],
626 [ 'rft.pages', $pages ],
630 my $coins_value = join( '&amp;',
631 map { $$_[1] ? $$_[0] . '=' . uri_escape_utf8( $$_[1] ) : () } @params );
633 return $coins_value;
636 =head2 get_openurl
638 my $url = $biblio->get_openurl;
640 Returns url for OpenURL resolver set in OpenURLResolverURL system preference
642 =cut
644 sub get_openurl {
645 my ( $self ) = @_;
647 my $OpenURLResolverURL = C4::Context->preference('OpenURLResolverURL');
649 if ($OpenURLResolverURL) {
650 my $uri = URI->new($OpenURLResolverURL);
652 if (not defined $uri->query) {
653 $OpenURLResolverURL .= '?';
654 } else {
655 $OpenURLResolverURL .= '&amp;';
657 $OpenURLResolverURL .= $self->get_coins;
660 return $OpenURLResolverURL;
663 =head3 type
665 =cut
667 sub _type {
668 return 'Biblio';
671 =head1 AUTHOR
673 Kyle M Hall <kyle@bywatersolutions.com>
675 =cut