Main Koha release repository https://koha-community.org
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

59 lines
1.6 KiB

package Koha::SearchEngine::Indexer;
# This file is part of Koha.
#
# Copyright 2020 ByWater Solutions
#
# Koha is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 3 of the License, or
# (at your option) any later version.
#
# Koha is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with Koha; if not, see <http://www.gnu.org/licenses>.
# This is a shim that gives you the appropriate search object for your
# system preference.
=head1 NAME
Koha::SearchEngine::Indexer - instantiate the search object that corresponds to
the C<SearchEngine> system preference.
=head1 DESCRIPTION
This allows you to be agnostic about what the search engine configuration is
and just get whatever indexer object you need.
=head1 SYNOPSIS
use Koha::SearchEngine::Indexer;
my $searcher = Koha::SearchEngine::Indexer->new({ index => Koha::SearchEngine::Index});
=head1 METHODS
=head2 new
Creates a new C<Search> of whatever the relevant type is.
=cut
use Modern::Perl;
use C4::Context;
use C4::Biblio qw//;
sub new {
my $engine = C4::Context->preference("SearchEngine") // 'Zebra';
my $file = "Koha/SearchEngine/${engine}/Indexer.pm";
my $class = "Koha::SearchEngine::${engine}::Indexer";
require $file;
shift @_;
return $class->new(@_);
}
1;