Bug 18316: Change search field weight field to decimal
[koha.git] / admin / searchengine / elasticsearch / mappings.pl
1 #!/usr/bin/perl
2
3 # This file is part of Koha.
4 #
5 # Koha is free software; you can redistribute it and/or modify it
6 # under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; either version 3 of the License, or
8 # (at your option) any later version.
9 #
10 # Koha is distributed in the hope that it will be useful, but
11 # WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 # GNU General Public License for more details.
14 #
15 # You should have received a copy of the GNU General Public License
16 # along with Koha; if not, see <http://www.gnu.org/licenses>.
17
18 use Modern::Perl;
19 use CGI;
20 use Scalar::Util qw(looks_like_number);
21 use C4::Koha;
22 use C4::Output;
23 use C4::Auth;
24
25 use Koha::SearchEngine::Elasticsearch;
26 use Koha::SearchMarcMaps;
27 use Koha::SearchFields;
28
29 my $input = new CGI;
30 my ( $template, $borrowernumber, $cookie ) = get_template_and_user(
31     {   template_name   => 'admin/searchengine/elasticsearch/mappings.tt',
32         query           => $input,
33         type            => 'intranet',
34         authnotrequired => 0,
35         flagsrequired   => { parameters => 'manage_search_engine_config' },
36     }
37 );
38
39 my $index = $input->param('index') || 'biblios';
40 my $op    = $input->param('op')    || 'list';
41 my @messages;
42
43 my $database = Koha::Database->new();
44 my $schema   = $database->schema;
45
46 my $marc_type = lc C4::Context->preference('marcflavour');
47
48 if ( $op eq 'edit' ) {
49
50     $schema->storage->txn_begin;
51
52     my @field_name = $input->param('search_field_name');
53     my @field_label = $input->param('search_field_label');
54     my @field_type = $input->param('search_field_type');
55     my @field_weight = $input->param('search_field_weight');
56
57     my @index_name          = $input->param('mapping_index_name');
58     my @search_field_name  = $input->param('mapping_search_field_name');
59     my @mapping_sort        = $input->param('mapping_sort');
60     my @mapping_facet       = $input->param('mapping_facet');
61     my @mapping_suggestible = $input->param('mapping_suggestible');
62     my @mapping_marc_field  = $input->param('mapping_marc_field');
63
64     eval {
65
66         for my $i ( 0 .. scalar(@field_name) - 1 ) {
67             my $field_name = $field_name[$i];
68             my $field_label = $field_label[$i];
69             my $field_type = $field_type[$i];
70             my $field_weight = $field_weight[$i];
71
72             my $search_field = Koha::SearchFields->find( { name => $field_name }, { key => 'name' } );
73             $search_field->label($field_label);
74             $search_field->type($field_type);
75             $search_field->weight($field_weight) if looks_like_number($field_weight) && $field_weight > 0;
76             $search_field->store;
77         }
78
79         Koha::SearchMarcMaps->search( { marc_type => $marc_type, } )->delete;
80
81         for my $i ( 0 .. scalar(@index_name) - 1 ) {
82             my $index_name          = $index_name[$i];
83             my $search_field_name  = $search_field_name[$i];
84             my $mapping_marc_field  = $mapping_marc_field[$i];
85             my $mapping_facet       = $mapping_facet[$i];
86             my $mapping_suggestible = $mapping_suggestible[$i];
87             my $mapping_sort        = $mapping_sort[$i];
88             $mapping_sort = undef if $mapping_sort eq 'undef';
89
90             my $search_field = Koha::SearchFields->find({ name => $search_field_name }, { key => 'name' });
91             # TODO Check mapping format
92             my $marc_field = Koha::SearchMarcMaps->find_or_create({ index_name => $index_name, marc_type => $marc_type, marc_field => $mapping_marc_field });
93             $search_field->add_to_search_marc_maps($marc_field, { facet => $mapping_facet, suggestible => $mapping_suggestible, sort => $mapping_sort } );
94
95         }
96     };
97     if ($@) {
98         push @messages, { type => 'error', code => 'error_on_update', message => $@, };
99         $schema->storage->txn_rollback;
100     } else {
101         push @messages, { type => 'message', code => 'success_on_update' };
102         $schema->storage->txn_commit;
103     }
104 }
105 elsif( $op eq 'reset_confirmed' ) {
106     Koha::SearchMarcMaps->delete;
107     Koha::SearchFields->delete;
108     Koha::SearchEngine::Elasticsearch->reset_elasticsearch_mappings;
109     push @messages, { type => 'message', code => 'success_on_reset' };
110 }
111 elsif( $op eq 'reset_confirm' ) {
112     $template->param( reset_confirm => 1 );
113 }
114
115
116 my @indexes;
117
118 for my $index_name (qw| biblios authorities |) {
119     my $search_fields = Koha::SearchFields->search(
120         { 'search_marc_map.index_name' => $index_name, 'search_marc_map.marc_type' => $marc_type, },
121         {   join => { search_marc_to_fields => 'search_marc_map' },
122             '+select' => [ 'search_marc_to_fields.facet', 'search_marc_to_fields.suggestible', 'search_marc_to_fields.sort', 'search_marc_map.marc_field' ],
123             '+as'     => [ 'facet',                       'suggestible',                       'sort',                       'marc_field' ],
124             order_by => { -asc => [qw/name marc_field/] }
125         }
126     );
127
128     my @mappings;
129     while ( my $s = $search_fields->next ) {
130         push @mappings,
131           { search_field_name  => $s->name,
132             search_field_label => $s->label,
133             search_field_type  => $s->type,
134             marc_field         => $s->get_column('marc_field'),
135             sort               => $s->get_column('sort') // 'undef', # To avoid warnings "Use of uninitialized value in lc"
136             suggestible        => $s->get_column('suggestible'),
137             facet              => $s->get_column('facet'),
138           };
139     }
140
141     push @indexes, { index_name => $index_name, mappings => \@mappings };
142 }
143
144 my $search_fields = Koha::SearchFields->search( {}, { order_by => ['name'] } );
145 my @all_search_fields;
146 while ( my $search_field = $search_fields->next ) {
147     my $search_field_unblessed = $search_field->unblessed;
148     $search_field_unblessed->{mapped_biblios} = 1 if $search_field->is_mapped_biblios;
149     push @all_search_fields, $search_field_unblessed;
150 }
151
152 $template->param(
153     indexes           => \@indexes,
154     all_search_fields => \@all_search_fields,
155     messages          => \@messages,
156 );
157
158 output_html_with_http_headers $input, $cookie, $template->output;