Bug 17255 - Upgrade Elastic Search code to work with version 5.1
[koha.git] / Koha / SearchEngine / Elasticsearch / Indexer.pm
blobe5babee5357eac23c53e4a0b5d914c05abc43401
1 package Koha::SearchEngine::Elasticsearch::Indexer;
3 # Copyright 2013 Catalyst IT
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 Carp;
21 use Modern::Perl;
22 use base qw(Koha::SearchEngine::Elasticsearch);
23 use Data::Dumper;
25 # For now just marc, but we can do anything here really
26 use Catmandu::Importer::MARC;
27 use Catmandu::Store::ElasticSearch;
29 Koha::SearchEngine::Elasticsearch::Indexer->mk_accessors(qw( store ));
31 =head1 NAME
33 Koha::SearchEngine::Elasticsearch::Indexer - handles adding new records to the index
35 =head1 SYNOPSIS
37 my $indexer = Koha::SearchEngine::Elasticsearch::Indexer->new(
38 { index => Koha::SearchEngine::BIBLIOS_INDEX } );
39 $indexer->drop_index();
40 $indexer->update_index(\@biblionumbers, \@records);
42 =head1 FUNCTIONS
44 =head2 $indexer->update_index($biblionums, $records);
46 C<$biblionums> is an arrayref containing the biblionumbers for the records.
48 C<$records> is an arrayref containing the L<MARC::Record>s themselves.
50 The values in the arrays must match up, and the 999$c value in the MARC record
51 will be rewritten using the values in C<$biblionums> to ensure they are correct.
52 If C<$biblionums> is C<undef>, this won't happen, but you should be sure that
53 999$c is correct on your own then.
55 Note that this will modify the original record if C<$biblionums> is supplied.
56 If that's a problem, clone them first.
58 =cut
60 sub update_index {
61 my ($self, $biblionums, $records) = @_;
63 # TODO should have a separate path for dealing with a large number
64 # of records at once where we use the bulk update functions in ES.
65 if ($biblionums) {
66 $self->_sanitise_records($biblionums, $records);
69 my $from = $self->_convert_marc_to_json($records);
70 if ( !$self->store ) {
71 my $params = $self->get_elasticsearch_params();
72 $self->store(
73 Catmandu::Store::ElasticSearch->new(
74 %$params,
75 index_settings => $self->get_elasticsearch_settings(),
76 index_mappings => $self->get_elasticsearch_mappings(),
81 #print Data::Dumper::Dumper( $from->to_array );
82 $self->store->bag->add_many($from);
83 $self->store->bag->commit;
84 return 1;
87 =head2 $indexer->update_index_background($biblionums, $records)
89 This has exactly the same API as C<update_index_background> however it'll
90 return immediately. It'll start a background process that does the adding.
92 If it fails to add to Elasticsearch then it'll add to a queue that will cause
93 it to be updated by a regular index cron job in the future.
95 # TODO implement in the future - I don't know the best way of doing this yet.
96 # If fork: make sure process group is changed so apache doesn't wait for us.
98 =cut
100 sub update_index_background {
101 my $self = shift;
102 $self->update_index(@_);
105 =head2 $indexer->delete_index($biblionums)
107 C<$biblionums> is an arrayref of biblionumbers to delete from the index.
109 =cut
111 sub delete_index {
112 my ($self, $biblionums) = @_;
114 if ( !$self->store ) {
115 my $params = $self->get_elasticsearch_params();
116 $self->store(
117 Catmandu::Store::ElasticSearch->new(
118 %$params,
119 index_settings => $self->get_elasticsearch_settings(),
120 index_mappings => $self->get_elasticsearch_mappings(),
124 $self->store->bag->delete($_) foreach @$biblionums;
125 $self->store->bag->commit;
128 =head2 $indexer->delete_index_background($biblionums)
130 Identical to L<delete_index>, this will return immediately and start a
131 background process to do the actual deleting.
133 =cut
135 # TODO implement in the future
137 sub delete_index_background {
138 my $self = shift;
139 $self->delete_index(@_);
142 =head2 $indexer->drop_index();
144 Drops the index from the elasticsearch server. Calling C<update_index>
145 after this will recreate it again.
147 =cut
149 sub drop_index {
150 my ($self) = @_;
152 if (!$self->store) {
153 # If this index doesn't exist, this will create it. Then it'll be
154 # deleted. That's not the end of the world however.
155 my $params = $self->get_elasticsearch_params();
156 $self->store(
157 Catmandu::Store::ElasticSearch->new(
158 %$params,
159 index_settings => $self->get_elasticsearch_settings(),
160 index_mappings => $self->get_elasticsearch_mappings(),
164 $self->store->drop();
165 $self->store(undef);
168 sub _sanitise_records {
169 my ($self, $biblionums, $records) = @_;
171 confess "Unequal number of values in \$biblionums and \$records." if (@$biblionums != @$records);
173 my $c = @$biblionums;
174 for (my $i=0; $i<$c; $i++) {
175 my $bibnum = $biblionums->[$i];
176 my $rec = $records->[$i];
177 # I've seen things you people wouldn't believe. Attack ships on fire
178 # off the shoulder of Orion. I watched C-beams glitter in the dark near
179 # the Tannhauser gate. MARC records where 999$c doesn't match the
180 # biblionumber column. All those moments will be lost in time... like
181 # tears in rain...
182 if ( $rec ) {
183 $rec->delete_fields($rec->field('999'));
184 $rec->append_fields(MARC::Field->new('999','','','c' => $bibnum, 'd' => $bibnum));
189 sub _convert_marc_to_json {
190 my $self = shift;
191 my $records = shift;
192 my $importer =
193 Catmandu::Importer::MARC->new( records => $records, id => '999c' );
194 my $fixer = Catmandu::Fix->new( fixes => $self->get_fixer_rules() );
195 $importer = $fixer->fix($importer);
196 return $importer;
201 __END__
203 =head1 AUTHOR
205 =over 4
207 =item Chris Cormack C<< <chrisc@catalyst.net.nz> >>
209 =item Robin Sheat C<< <robin@catalyst.net.nz> >>
211 =back