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
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.
23 use List
::MoreUtils
qw(any);
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
;
42 use Koha
::Subscriptions
;
46 Koha::Biblio - Koha Biblio Object class
56 Overloaded I<store> method to set default values
63 $self->datecreated( dt_from_string
) unless $self->datecreated;
65 return $self->SUPER::store
;
70 my $metadata = $biblio->metadata();
72 Returns a Koha::Biblio::Metadata object
79 my $metadata = $self->_result->metadata;
80 return Koha
::Biblio
::Metadata
->_new_from_dbic($metadata);
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.
96 return map { $_->{subfield
} } @
{
97 C4
::Biblio
::GetRecordValue
(
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
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';
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:
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.
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');
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 },
184 group_by
=> [qw
/fromBranch/]
185 })->count == scalar(@holdingbranches) ?
0 : 1;
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:
200 $rules : { <field> => [ value_1, ... ], ... }
202 Note: $rules inherits its structure from the parsed YAML from reading
203 the I<OpacHiddenItems> system preference.
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
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;
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
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.
277 sub article_request_type_for_items
{
278 my ( $self, $borrower ) = @_;
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
287 return 'item_only' if $counts->{item_only
};
288 return 'yes' if $counts->{yes
};
289 return 'no' if $counts->{no};
293 =head3 article_requests
295 my @requests = $biblio->article_requests
297 Returns the article requests associated with this Biblio
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
317 sub article_requests_current
{
318 my ( $self, $borrower ) = @_;
320 $self->{_article_requests_current
} ||= Koha
::ArticleRequests
->search(
322 biblionumber
=> $self->biblionumber(),
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
341 sub article_requests_finished
{
342 my ( $self, $borrower ) = @_;
344 $self->{_article_requests_finished
} ||= Koha
::ArticleRequests
->search(
346 biblionumber
=> $self->biblionumber(),
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
};
359 my $items = $biblio->items();
361 Returns the related Koha::Items object for this biblio
368 my $items_rs = $self->_result->items;
370 return Koha
::Items
->_new_from_dbic( $items_rs );
375 my $itemtype = $biblio->itemtype();
377 Returns the itemtype for this record.
384 return $self->biblioitem()->itemtype();
389 my $holds = $biblio->holds();
391 return the current holds placed on this record
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);
404 my $holds = $biblio->current_holds
406 Return the holds placed on this bibliographic record.
407 It does not include future holds.
413 my $dtf = Koha
::Database
->new->schema->storage->datetime_parser;
415 { reservedate
=> { '<=' => $dtf->format_date(dt_from_string
) } } );
420 my $field = $self->biblioitem()->itemtype
422 Returns the related Koha::Biblioitem object for this Biblio object
429 $self->{_biblioitem
} ||= Koha
::Biblioitems
->find( { biblionumber
=> $self->biblionumber() } );
431 return $self->{_biblioitem
};
436 my $subscriptions = $self->subscriptions
438 Returns the related Koha::Subscriptions object for this Biblio object
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.
458 sub has_items_waiting_or_intransit
{
461 if ( Koha
::Holds
->search({ biblionumber
=> $self->id,
462 found
=> ['W', 'T'] })->count ) {
466 foreach my $item ( $self->items->as_list ) {
467 return 1 if $item->get_transfer;
475 my $coins = $biblio->get_coins;
477 Returns the COinS (a span) which can be included in a biblio record
484 my $record = $self->metadata->record;
486 my $pos7 = substr $record->leader(), 7, 1;
487 my $pos6 = substr $record->leader(), 6, 1;
490 my ( $aulast, $aufirst ) = ( '', '' );
501 # For the purposes of generating COinS metadata, LDR/06-07 can be
502 # considered the same for UNIMARC and MARC21
511 'i' => 'audioRecording',
512 'j' => 'audioRecording',
515 'm' => 'computerProgram',
520 'a' => 'journalArticle',
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' ) {
534 } elsif ( $genre eq 'journal' ) {
537 } elsif ( $genre eq 'journalArticle' ) {
545 if ( C4
::Context
->preference("marcflavour") eq "UNIMARC" ) {
548 $aulast = $record->subfield( '700', 'a' ) || '';
549 $aufirst = $record->subfield( '700', 'b' ) || '';
550 push @authors, "$aufirst $aulast" if ($aufirst or $aulast);
553 if ( $record->field('200') ) {
554 for my $au ( $record->field('200')->subfield('g') ) {
559 $title = $record->subfield( '200', 'a' );
560 my $subfield_210d = $record->subfield('210', 'd');
561 if ($subfield_210d and $subfield_210d =~ /(\d{4})/) {
564 $publisher = $record->subfield( '210', 'c' ) || '';
565 $isbn = $record->subfield( '010', 'a' ) || '';
566 $issn = $record->subfield( '011', 'a' ) || '';
569 # MARC21 need some improve
572 if ( $record->field('100') ) {
573 push @authors, $record->subfield( '100', 'a' );
577 if ( $record->field('700') ) {
578 for my $au ( $record->field('700')->subfield('a') ) {
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);
592 $pubyear = $record->subfield( '260', 'c' ) || '';
593 $publisher = $record->subfield( '260', 'b' ) || '';
594 $isbn = $record->subfield( '020', 'a' ) || '';
595 $issn = $record->subfield( '022', 'a' ) || '';
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 ];
614 [ 'rft.isbn', $isbn ],
615 [ 'rft.issn', $issn ],
618 # If it's a subscription, these informations have no meaning.
619 if ($genre ne 'journal') {
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( '&',
631 map { $$_[1] ?
$$_[0] . '=' . uri_escape_utf8
( $$_[1] ) : () } @params );
638 my $url = $biblio->get_openurl;
640 Returns url for OpenURL resolver set in OpenURLResolverURL system preference
647 my $OpenURLResolverURL = C4
::Context
->preference('OpenURLResolverURL');
649 if ($OpenURLResolverURL) {
650 my $uri = URI
->new($OpenURLResolverURL);
652 if (not defined $uri->query) {
653 $OpenURLResolverURL .= '?';
655 $OpenURLResolverURL .= '&';
657 $OpenURLResolverURL .= $self->get_coins;
660 return $OpenURLResolverURL;
673 Kyle M Hall <kyle@bywatersolutions.com>