Bug 15468 - Search links on callnumbers with parentheses fails on OPAC results page
[koha.git] / C4 / Heading.pm
blob95fcf88622b75e7e1dcc539cb635a2ce898436de
1 package C4::Heading;
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>.
20 use strict;
21 use warnings;
22 use MARC::Record;
23 use MARC::Field;
24 use C4::Context;
25 use Module::Load;
26 use Carp;
28 our $VERSION = 3.07.00.049;
30 =head1 NAME
32 C4::Heading
34 =head1 SYNOPSIS
36 use C4::Heading;
37 my $heading = C4::Heading->new_from_bib_field($field, $frameworkcode);
38 my $thesaurus = $heading->thesaurus();
39 my $type = $heading->type();
40 my $display_heading = $heading->display_form();
41 my $search_form = $heading->search_form();
43 =head1 DESCRIPTION
45 C<C4::Heading> implements a simple class to representing
46 headings found in bibliographic and authority records.
48 =head1 METHODS
50 =head2 new_from_bib_field
52 my $heading = C4::Heading->new_from_bib_field($field, $frameworkcode, [, $marc_flavour]);
54 Given a C<MARC::Field> object containing a heading from a
55 bib record, create a C<C4::Heading> object.
57 The optional second parameter is the MARC flavour (i.e., MARC21
58 or UNIMARC); if this parameter is not supplied, it is
59 taken from the Koha application context.
61 If the MARC field supplied is not a valid heading, undef
62 is returned.
64 =cut
66 sub new_from_bib_field {
67 my $class = shift;
68 my $field = shift;
69 my $frameworkcode = shift;
70 my $marcflavour = @_ ? shift : C4::Context->preference('marcflavour');
72 my $marc_handler = _marc_format_handler($marcflavour);
74 my $tag = $field->tag();
75 return unless $marc_handler->valid_bib_heading_tag( $tag, $frameworkcode );
76 my $self = {};
78 $self->{'field'} = $field;
80 $self->{'auth_type'}, $self->{'thesaurus'},
81 $self->{'search_form'}, $self->{'display_form'},
82 $self->{'match_type'}
83 ) = $marc_handler->parse_heading($field);
85 bless $self, $class;
86 return $self;
89 =head2 auth_type
91 my $auth_type = $heading->auth_type();
93 Return the auth_type of the heading.
95 =cut
97 sub auth_type {
98 my $self = shift;
99 return $self->{'auth_type'};
102 =head2 field
104 my $field = $heading->field();
106 Return the MARC::Field the heading is based on.
108 =cut
110 sub field {
111 my $self = shift;
112 return $self->{'field'};
115 =head2 display_form
117 my $display = $heading->display_form();
119 Return the "canonical" display form of the heading.
121 =cut
123 sub display_form {
124 my $self = shift;
125 return $self->{'display_form'};
128 =head2 search_form
130 my $search_form = $heading->search_form();
132 Return the "canonical" search form of the heading.
134 =cut
136 sub search_form {
137 my $self = shift;
138 return $self->{'search_form'};
141 =head2 authorities
143 my $authorities = $heading->authorities([$skipmetadata]);
145 Return a list of authority records for this
146 heading. If passed a true value for $skipmetadata,
147 SearchAuthorities will return only authids.
149 =cut
151 sub authorities {
152 my $self = shift;
153 my $skipmetadata = shift;
154 my ( $results, $total ) = _search( $self, 'match-heading', $skipmetadata );
155 return $results;
158 =head2 preferred_authorities
160 my $preferred_authorities = $heading->preferred_authorities;
162 Return a list of authority records for headings
163 that are a preferred form of the heading.
165 =cut
167 sub preferred_authorities {
168 my $self = shift;
169 my $skipmetadata = shift || undef;
170 my ( $results, $total ) = _search( 'see-from', $skipmetadata );
171 return $results;
174 =head1 INTERNAL METHODS
176 =head2 _search
178 =cut
180 sub _search {
181 my $self = shift;
182 my $index = shift || undef;
183 my $skipmetadata = shift || undef;
184 my @marclist;
185 my @and_or;
186 my @excluding = [];
187 my @operator;
188 my @value;
190 if ($index) {
191 push @marclist, $index;
192 push @and_or, 'and';
193 push @operator, $self->{'match_type'};
194 push @value, $self->{'search_form'};
197 # if ($self->{'thesaurus'}) {
198 # push @marclist, 'thesaurus';
199 # push @and_or, 'and';
200 # push @excluding, '';
201 # push @operator, 'is';
202 # push @value, $self->{'thesaurus'};
204 require C4::AuthoritiesMarc;
205 return C4::AuthoritiesMarc::SearchAuthorities(
206 \@marclist, \@and_or, \@excluding, \@operator,
207 \@value, 0, 20, $self->{'auth_type'},
208 'AuthidAsc', $skipmetadata
212 =head1 INTERNAL FUNCTIONS
214 =head2 _marc_format_handler
216 Returns a C4::Heading::MARC21 or C4::Heading::UNIMARC object
217 depending on the selected MARC flavour.
219 =cut
221 sub _marc_format_handler {
222 my $marcflavour = uc shift;
223 $marcflavour = 'MARC21' if ( $marcflavour eq 'NORMARC' );
224 my $pname = "C4::Heading::$marcflavour";
225 load $pname;
226 return $pname->new();
229 =head1 AUTHOR
231 Koha Development Team <http://koha-community.org/>
233 Galen Charlton <galen.charlton@liblime.com>
235 =cut