Bug 12478 - pile of elasticsearch code
[koha.git] / Koha / SearchEngine / Zebra / Search.pm
1 package Koha::SearchEngine::Zebra::Search;
2
3 # This file is part of Koha.
4 #
5 # Copyright 2012 BibLibre
6 #
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.
11 #
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.
16 #
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>.
19
20 # I don't think this ever worked right
21 #use Moose::Role;
22 #with 'Koha::SearchEngine::SearchRole';
23
24 use base qw(Class::Accessor);
25 # Removed because it doesn't exist/doesn't work.
26 #use Data::SearchEngine::Zebra;
27 #use Data::SearchEngine::Query;
28 #use Koha::SearchEngine::Zebra;
29 #use Data::Dump qw(dump);
30
31 use C4::Search; # :(
32
33 # Broken without the Data:: stuff
34 #has searchengine => (
35 #    is => 'rw',
36 #    isa => 'Koha::SearchEngine::Zebra',
37 #    default => sub { Koha::SearchEngine::Zebra->new },
38 #    lazy => 1
39 #);
40
41 sub search {
42     my ($self,$query_string) = @_;
43
44      my $query = Data::SearchEngine::Query->new(
45        count => 10,
46        page => 1,
47        query => $query_string,
48      );
49
50     warn "search for $query_string";
51
52     my $results = $self->searchengine->search($query);
53
54     foreach my $item (@{ $results->items }) {
55         my $title = $item->get_value('ste_title');
56         #utf8::encode($title);
57         print "$title\n";
58                 warn dump $title;
59     }
60 }
61
62 =head2 search_compat
63
64 This passes straight through to C4::Search::getRecords.
65
66 =cut
67
68 sub search_compat {
69     shift; # get rid of $self
70
71     return getRecords(@_);
72 }
73
74 sub dosmth {'bou' }
75
76 1;