X-Git-Url: http://koha-dev.rot13.org:8081/gitweb/?a=blobdiff_plain;f=admin%2Fmatching-rules.pl;h=3cdbbb7b6f304376c534e43df7d8df797cffe243;hb=9d6d641d1f8b77271800f43bc027b651f9aea52b;hp=ea86c480fbe6c12895936e651aabbc62be25c2ae;hpb=4f44847c11add59ab7d0c55aeffac1fa2835cc1f;p=srvgit diff --git a/admin/matching-rules.pl b/admin/matching-rules.pl index ea86c480fb..3cdbbb7b6f 100755 --- a/admin/matching-rules.pl +++ b/admin/matching-rules.pl @@ -4,51 +4,51 @@ # # This file is part of Koha. # -# 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 2 of the License, or (at your option) any later -# version. +# 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. +# 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, write to the Free Software Foundation, Inc., -# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. +# You should have received a copy of the GNU General Public License +# along with Koha; if not, see . # -use strict; -use warnings; +use Modern::Perl; -use CGI; -use C4::Auth; +use CGI qw ( -utf8 ); +use C4::Auth qw( get_template_and_user ); use C4::Context; -use C4::Output; -use C4::Koha; -use C4::Matcher; +use C4::Output qw( output_html_with_http_headers ); +use C4::Matcher qw/valid_normalization_routines/; my $script_name = "/cgi-bin/koha/admin/matching-rules.pl"; -our $input = new CGI; +our $input = CGI->new; my $op = $input->param('op') || ''; my ($template, $loggedinuser, $cookie) - = get_template_and_user({template_name => "admin/matching-rules.tmpl", + = get_template_and_user({template_name => "admin/matching-rules.tt", query => $input, type => "intranet", - authnotrequired => 0, - flagsrequired => {parameters => 'parameters_remaining_permissions'}, - debug => 1, + flagsrequired => { parameters => 'manage_matching_rules' }, }); $template->param(script_name => $script_name); my $matcher_id = $input->param("matcher_id"); -$template->param(max_matchpoint => 0); -$template->param(max_matchcheck => 0); +$template->param( max_matchpoint => 0 ); +$template->param( max_matchcheck => 0 ); +my @valid_norms = C4::Matcher::valid_normalization_routines(); +unshift @valid_norms, 'none'; +$template->param( valid_norms => \@valid_norms ); + my $display_list = 0; if ($op eq "edit_matching_rule") { edit_matching_rule_form($template, $matcher_id); @@ -96,18 +96,18 @@ sub add_update_matching_rule { # do parsing my $matcher = C4::Matcher->new($record_type, 1000); - $matcher->code($input->param('code')); - $matcher->description($input->param('description')); - $matcher->threshold($input->param('threshold')); + $matcher->code(scalar $input->param('code')); + $matcher->description(scalar $input->param('description')); + $matcher->threshold(scalar $input->param('threshold')); # matchpoints - my @mp_nums = sort map { /^mp_(\d+)_search_index/ ? int($1): () } $input->param; + my @mp_nums = sort map { /^mp_(\d+)_search_index/ ? int($1): () } $input->multi_param; foreach my $mp_num (@mp_nums) { my $index = $input->param("mp_${mp_num}_search_index"); my $score = $input->param("mp_${mp_num}_score"); # components my $components = []; - my @comp_nums = sort map { /^mp_${mp_num}_c_(\d+)_tag/ ? int($1): () } $input->param; + my @comp_nums = sort map { /^mp_${mp_num}_c_(\d+)_tag/ ? int($1): () } $input->multi_param; foreach my $comp_num (@comp_nums) { my $component = {}; $component->{'tag'} = $input->param("mp_${mp_num}_c_${comp_num}_tag"); @@ -116,9 +116,9 @@ sub add_update_matching_rule { $component->{'length'} = $input->param("mp_${mp_num}_c_${comp_num}_length"); # norms $component->{'norms'} = []; - my @norm_nums = sort map { /^mp_${mp_num}_c_${comp_num}_n_(\d+)_norm/ ? int($1): () } $input->param; + my @norm_nums = sort map { /^mp_${mp_num}_c_${comp_num}_n_(\d+)_norm/ ? int($1): () } $input->multi_param; foreach my $norm_num (@norm_nums) { - push @{ $component->{'norms'} }, $input->param("mp_${mp_num}_c_${comp_num}_n_${norm_num}_norm"); + push @{ $component->{'norms'} }, $input->multi_param("mp_${mp_num}_c_${comp_num}_n_${norm_num}_norm"); } push @$components, $component; } @@ -126,11 +126,11 @@ sub add_update_matching_rule { } # match checks - my @mc_nums = sort map { /^mc_(\d+)_id/ ? int($1): () } $input->param; + my @mc_nums = sort map { /^mc_(\d+)_id/ ? int($1): () } $input->multi_param; foreach my $mc_num (@mc_nums) { # source components my $src_components = []; - my @src_comp_nums = sort map { /^mc_${mc_num}_src_c_(\d+)_tag/ ? int($1): () } $input->param; + my @src_comp_nums = sort map { /^mc_${mc_num}_src_c_(\d+)_tag/ ? int($1): () } $input->multi_param; foreach my $comp_num (@src_comp_nums) { my $component = {}; $component->{'tag'} = $input->param("mc_${mc_num}_src_c_${comp_num}_tag"); @@ -139,15 +139,15 @@ sub add_update_matching_rule { $component->{'length'} = $input->param("mc_${mc_num}_src_c_${comp_num}_length"); # norms $component->{'norms'} = []; - my @norm_nums = sort map { /^mc_${mc_num}_src_c_${comp_num}_n_(\d+)_norm/ ? int($1): () } $input->param; + my @norm_nums = sort map { /^mc_${mc_num}_src_c_${comp_num}_n_(\d+)_norm/ ? int($1): () } $input->multi_param; foreach my $norm_num (@norm_nums) { - push @{ $component->{'norms'} }, $input->param("mc_${mc_num}_src_c_${comp_num}_n_${norm_num}_norm"); + push @{ $component->{'norms'} }, $input->multi_param("mc_${mc_num}_src_c_${comp_num}_n_${norm_num}_norm"); } push @$src_components, $component; } # target components my $tgt_components = []; - my @tgt_comp_nums = sort map { /^mc_${mc_num}_tgt_c_(\d+)_tag/ ? int($1): () } $input->param; + my @tgt_comp_nums = sort map { /^mc_${mc_num}_tgt_c_(\d+)_tag/ ? int($1): () } $input->multi_param; foreach my $comp_num (@tgt_comp_nums) { my $component = {}; $component->{'tag'} = $input->param("mc_${mc_num}_tgt_c_${comp_num}_tag"); @@ -156,9 +156,9 @@ sub add_update_matching_rule { $component->{'length'} = $input->param("mc_${mc_num}_tgt_c_${comp_num}_length"); # norms $component->{'norms'} = []; - my @norm_nums = sort map { /^mc_${mc_num}_tgt_c_${comp_num}_n_(\d+)_norm/ ? int($1): () } $input->param; + my @norm_nums = sort map { /^mc_${mc_num}_tgt_c_${comp_num}_n_(\d+)_norm/ ? int($1): () } $input->multi_param; foreach my $norm_num (@norm_nums) { - push @{ $component->{'norms'} }, $input->param("mc_${mc_num}_tgt_c_${comp_num}_n_${norm_num}_norm"); + push @{ $component->{'norms'} }, $input->multi_param("mc_${mc_num}_tgt_c_${comp_num}_n_${norm_num}_norm"); } push @$tgt_components, $component; }