Bug 15541 - Prevent normalization during matching/import process
[koha-ffzg.git] / Koha / SearchEngine / Search.pm
index 8d9b469..7d928d7 100644 (file)
@@ -1,12 +1,58 @@
 package Koha::SearchEngine::Search;
-use Moose;
+
+# This file is part of Koha.
+#
+# Copyright 2015 Catalyst IT
+#
+# 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::Search - 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 search object you need.
+
+=head1 SYNOPSIS
+
+    use Koha::SearchEngine::Search;
+    my $searcher = Koha::SearchEngine::Search->new();
+
+=head1 METHODS
+
+=head2 new
+
+Creates a new C<Search> of whatever the relevant type is.
+
+=cut
+
 use C4::Context;
+use Modern::Perl;
 
-use Moose::Util qw( apply_all_roles );
+sub new {
+    my $engine = C4::Context->preference("SearchEngine") // 'Zebra';
+    my $file = "Koha/SearchEngine/${engine}/Search.pm";
+    my $class = "Koha::SearchEngine::${engine}::Search";
+    require $file;
+    shift @_;
+    return $class->new(@_);
+}
 
-sub BUILD {
-    my $self = shift;
-    my $syspref = C4::Context->preference("SearchEngine");
-    apply_all_roles( $self, "Koha::SearchEngine::${syspref}::Search" );
-};
 1;