87c2d73a83793618b73b4992028491a073db54b4
[koha-ffzg.git] / Koha / SearchEngine / Elasticsearch / Search.pm
1 package Koha::SearchEngine::Elasticsearch::Search;
2
3 # Copyright 2014 Catalyst IT
4 #
5 # This file is part of Koha.
6 #
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.
11 #
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.
15 #
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.
19
20 =head1 NAME
21
22 Koha::SearchEngine::ElasticSearch::Search - search functions for Elasticsearch
23
24 =head1 SYNOPSIS
25
26     my $searcher = Koha::SearchEngine::ElasticSearch::Search->new();
27     my $builder = Koha::SearchEngine::Elasticsearch::QueryBuilder->new();
28     my $query = $builder->build_query('perl');
29     my $results = $searcher->search($query);
30     print "There were " . $results->total . " results.\n";
31     $results->each(sub {
32         push @hits, @_[0];
33     });
34
35 =head1 METHODS
36
37 =cut
38
39 use base qw(Koha::ElasticSearch);
40 use Koha::ItemTypes;
41
42 use Catmandu::Store::ElasticSearch;
43
44 use Data::Dumper; #TODO remove
45 use Carp qw(cluck);
46
47 Koha::SearchEngine::Elasticsearch::Search->mk_accessors(qw( store ));
48
49 =head2 search
50
51     my $results = $searcher->search($query, $page, $count, %options);
52
53 Run a search using the query. It'll return C<$count> results, starting at page
54 C<$page> (C<$page> counts from 1, anything less that, or C<undef> becomes 1.)
55 C<$count> is also the number of entries on a page.
56
57 C<%options> is a hash containing extra options:
58
59 =over 4
60
61 =item offset
62
63 If provided, this overrides the C<$page> value, and specifies the record as
64 an offset (i.e. the number of the record to start with), rather than a page.
65
66 =back
67
68 Returns
69
70 =cut
71
72 sub search {
73     my ($self, $query, $page, $count, %options) = @_;
74
75     my $params = $self->get_elasticsearch_params();
76     my %paging;
77     # 20 is the default number of results per page
78     $paging{limit} = $count || 20;
79     # ES/Catmandu doesn't want pages, it wants a record to start from.
80     if (exists $options{offset}) {
81         $paging{start} = $options{offset};
82     } else {
83         $page = (!defined($page) || ($page <= 0)) ? 1 : $page - 1;
84         $paging{start} = $page * $paging{limit};
85     }
86     $self->store(
87         Catmandu::Store::ElasticSearch->new(
88             %$params,
89             trace_calls => 1,
90         )
91     );
92     my $results = $self->store->bag->search( %$query, %paging );
93     return $results;
94 }
95
96 =head2 search_compat
97
98     my ( $error, $results, $facets ) = $search->search_compat(
99         $query,            $simple_query, \@sort_by,       \@servers,
100         $results_per_page, $offset,       $expanded_facet, $branches,
101         $query_type,       $scan
102       )
103
104 A search interface somewhat compatible with L<C4::Search->getRecords>. Anything
105 that is returned in the query created by build_query_compat will probably
106 get ignored here.
107
108 =cut
109
110 sub search_compat {
111     my (
112         $self,     $query,            $simple_query, $sort_by,
113         $servers,  $results_per_page, $offset,       $expanded_facet,
114         $branches, $query_type,       $scan
115     ) = @_;
116
117     my %options;
118     $options{offset} = $offset;
119     my $results = $self->search($query, undef, $results_per_page, %options);
120
121     # Convert each result into a MARC::Record
122     my (@records, $index);
123     $index = $offset; # opac-search expects results to be put in the
124         # right place in the array, according to $offset
125     $results->each(sub {
126             # The results come in an array for some reason
127             my $marc_json = @_[0]->{record};
128             my $marc = $self->json2marc($marc_json);
129             $records[$index++] = $marc;
130         });
131     # consumers of this expect a name-spaced result, we provide the default
132     # configuration.
133     my %result;
134     $result{biblioserver}{hits} = $results->total;
135     $result{biblioserver}{RECORDS} = \@records;
136     return (undef, \%result, $self->_convert_facets($results->{facets}));
137 }
138
139 =head2 search_marc
140
141     my ( $results, $total ) =
142       $searcher->search_marc( $query, $page, $count, %options );
143
144 This has a similar calling convention to L<search>, however it assumes that all
145 the results are going to contain MARC, and just provides an arrayref of them,
146 along with a count of the total number of results.
147
148 =cut
149
150 sub search_marc {
151     # TODO this probably should be temporary, until something more
152     # comprehensive is implemented using Koha::RecordProcessor and such.
153     my $self = shift;
154
155     my $res = $self->search(@_);
156     my @records;
157     $res->each(sub {
158             my $marc_json = @_[0]->{record};
159             my $marc = $self->json2marc($marc_json);
160             push @records, $marc;
161         });
162     return (\@records, $res->total);
163 }
164
165 =head2 json2marc
166
167     my $marc = $self->json2marc($marc_json);
168
169 Converts the form of marc (based on its JSON, but as a Perl structure) that
170 Catmandu stores into a MARC::Record object.
171
172 =cut
173
174 sub json2marc {
175     my ( $self, $marcjson ) = @_;
176
177     my $marc = MARC::Record->new();
178     $marc->encoding('UTF-8');
179
180     # fields are like:
181     # [ '245', '1', '2', 'a' => 'Title', 'b' => 'Subtitle' ]
182     # conveniently, this is the form that MARC::Field->new() likes
183     foreach $field (@$marcjson) {
184         next if @$field < 5;    # Shouldn't be possible, but...
185         if ( $field->[0] eq 'LDR' ) {
186             $marc->leader( $field->[4] );
187         }
188         else {
189             my $marc_field = MARC::Field->new(@$field);
190             $marc->append_fields($marc_field);
191         }
192     }
193     return $marc;
194 }
195
196 =head2 _convert_facets
197
198     my $koha_facets = _convert_facets($es_facets);
199
200 Converts elasticsearch facets types to the form that Koha expects.
201 It expects the ES facet name to match the Koha type, for example C<itype>,
202 C<au>, C<su-to>, etc.
203
204 =cut
205
206 sub _convert_facets {
207     my ( $self, $es ) = @_;
208
209     return undef if !$es;
210
211     # These should correspond to the ES field names, as opposed to the CCL
212     # things that zebra uses.
213     my %type_to_label = (
214         author   => 'Authors',
215         location => 'Location',
216         itype    => 'ItemTypes',
217         se       => 'Series',
218         subject  => 'Topics',
219         'su-geo' => 'Places',
220     );
221
222     # We also have some special cases, e.g. itypes that need to show the
223     # value rather than the code.
224     my $itypes = Koha::ItemTypes->new();
225     my %special = ( itype => sub { $itypes->get_description_for_code(@_) }, );
226     my @res;
227     while ( ( $type, $data ) = each %$es ) {
228         next if !exists( $type_to_label{$type} );
229         my $facet = {
230             type_id => $type . '_id',
231             expand  => $type,
232             expandable => 1,    # TODO figure how that's supposed to work
233             "type_label_$type_to_label{$type}" => 1,
234             type_link_value                    => $type,
235         };
236         foreach my $term ( @{ $data->{terms} } ) {
237             my $t = $term->{term};
238             my $c = $term->{count};
239             if ( exists( $special{$type} ) ) {
240                 $label = $special{$type}->($t);
241             }
242             else {
243                 $label = $t;
244             }
245             push @{ $facet->{facets} }, {
246                 facet_count       => $c,
247                 facet_link_value  => $t,
248                 facet_title_value => $t . " ($c)",
249                 facet_label_value => $label,    # TODO either truncate this,
250                      # or make the template do it like it should anyway
251                 type_link_value => $type,
252             };
253         }
254         push @res, $facet if exists $facet->{facets};
255     }
256     return \@res;
257 }
258
259
260 1;