Bug 11015: add copyright headers to some files
[koha.git] / Koha / SearchEngine / Solr.pm
1 package Koha::SearchEngine::Solr;
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 use Moose;
21 use Koha::SearchEngine::Config;
22
23 extends 'Koha::SearchEngine', 'Data::SearchEngine::Solr';
24
25 has '+url' => (
26     is => 'ro',
27     isa => 'Str',
28 #    default => sub {
29 #        C4::Context->preference('SolrAPI');
30 #    },
31     lazy => 1,
32     builder => '_build_url',
33     required => 1
34 );
35
36 sub _build_url {
37     my ( $self ) = @_;
38     $self->config->SolrAPI;
39 }
40
41 has '+options' => (
42     is => 'ro',
43     isa => 'HashRef',
44     default => sub {
45       {
46         wt => 'json',
47         fl => '*,score',
48         fq => 'recordtype:biblio',
49         facets => 'true'
50       }
51     }
52
53 );
54
55 has indexes => (
56     is => 'ro',
57     lazy => 1,
58     default => sub {
59 #        my $dbh => ...;
60     },
61 );
62
63 1;