3 # Copyright (C) 2008 LibLime
5 # This file is part of Koha.
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.
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.
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>.
38 my $heading = C4::Heading->new_from_bib_field($field, $frameworkcode);
39 my $thesaurus = $heading->thesaurus();
40 my $type = $heading->type();
41 my $display_heading = $heading->display_form();
42 my $search_form = $heading->search_form();
46 C<C4::Heading> implements a simple class to representing
47 headings found in bibliographic and authority records.
51 =head2 new_from_bib_field
53 my $heading = C4::Heading->new_from_bib_field($field, $frameworkcode, [, $marc_flavour]);
55 Given a C<MARC::Field> object containing a heading from a
56 bib record, create a C<C4::Heading> object.
58 The optional second parameter is the MARC flavour (i.e., MARC21
59 or UNIMARC); if this parameter is not supplied, it is
60 taken from the Koha application context.
62 If the MARC field supplied is not a valid heading, undef
67 sub new_from_bib_field
{
70 my $frameworkcode = shift;
71 my $marcflavour = @_ ?
shift : C4
::Context
->preference('marcflavour');
73 my $marc_handler = _marc_format_handler
($marcflavour);
75 my $tag = $field->tag();
76 return unless $marc_handler->valid_bib_heading_tag( $tag, $frameworkcode );
79 $self->{'field'} = $field;
81 $self->{'auth_type'}, $self->{'thesaurus'},
82 $self->{'search_form'}, $self->{'display_form'},
84 ) = $marc_handler->parse_heading($field);
92 my $auth_type = $heading->auth_type();
94 Return the auth_type of the heading.
100 return $self->{'auth_type'};
105 my $field = $heading->field();
107 Return the MARC::Field the heading is based on.
113 return $self->{'field'};
118 my $display = $heading->display_form();
120 Return the "canonical" display form of the heading.
126 return $self->{'display_form'};
131 my $search_form = $heading->search_form();
133 Return the "canonical" search form of the heading.
139 return $self->{'search_form'};
144 my $authorities = $heading->authorities([$skipmetadata]);
146 Return a list of authority records for this
147 heading. If passed a true value for $skipmetadata,
148 SearchAuthorities will return only authids.
154 my $skipmetadata = shift;
155 my ( $results, $total ) = _search
( $self, 'match-heading', $skipmetadata );
159 =head2 preferred_authorities
161 my $preferred_authorities = $heading->preferred_authorities;
163 Return a list of authority records for headings
164 that are a preferred form of the heading.
168 sub preferred_authorities
{
170 my $skipmetadata = shift || undef;
171 my ( $results, $total ) = _search
( 'see-from', $skipmetadata );
175 =head1 INTERNAL METHODS
183 my $index = shift || undef;
184 my $skipmetadata = shift || undef;
192 push @marclist, $index;
194 push @operator, $self->{'match_type'};
195 push @value, $self->{'search_form'};
198 # if ($self->{'thesaurus'}) {
199 # push @marclist, 'thesaurus';
200 # push @and_or, 'and';
201 # push @excluding, '';
202 # push @operator, 'is';
203 # push @value, $self->{'thesaurus'};
206 require Koha
::SearchEngine
::QueryBuilder
;
207 require Koha
::SearchEngine
::Search
;
209 # Use state variables to avoid recreating the objects every time.
210 # With Elasticsearch this also avoids creating a massive amount of
211 # ES connectors that would eventually run out of file descriptors.
212 state $builder = Koha
::SearchEngine
::QueryBuilder
->new(
213 { index => $Koha::SearchEngine
::AUTHORITIES_INDEX
} );
214 state $searcher = Koha
::SearchEngine
::Search
->new(
215 {index => $Koha::SearchEngine
::AUTHORITIES_INDEX
} );
217 my $search_query = $builder->build_authorities_query_compat(
218 \
@marclist, \
@and_or, \
@excluding, \
@operator,
219 \
@value, $self->{'auth_type'},
222 return $searcher->search_auth_compat( $search_query, 0, 20, $skipmetadata );
225 =head1 INTERNAL FUNCTIONS
227 =head2 _marc_format_handler
229 Returns a C4::Heading::MARC21 or C4::Heading::UNIMARC object
230 depending on the selected MARC flavour.
234 sub _marc_format_handler
{
235 my $marcflavour = uc shift;
236 $marcflavour = 'MARC21' if ( $marcflavour eq 'NORMARC' );
237 my $pname = "C4::Heading::$marcflavour";
239 return $pname->new();
244 Koha Development Team <http://koha-community.org/>
246 Galen Charlton <galen.charlton@liblime.com>