Bug 24573: Add missing dependencies to cpanfile
[koha.git] / admin / oai_set_mappings.pl
blobf6477943ab1871c248a08e536ca1443d462a87b9
1 #!/usr/bin/perl
3 # Copyright 2011 BibLibre SARL
4 # This file is part of Koha.
6 # Koha is free software; you can redistribute it and/or modify it
7 # under the terms of the GNU General Public License as published by
8 # the Free Software Foundation; either version 3 of the License, or
9 # (at your option) any later version.
11 # Koha is distributed in the hope that it will be useful, but
12 # WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 # GNU General Public License for more details.
16 # You should have received a copy of the GNU General Public License
17 # along with Koha; if not, see <http://www.gnu.org/licenses>.
19 =head1 NAME
21 oai_set_mappings.pl
23 =head1 DESCRIPTION
25 Define mappings for a given set.
26 Mappings are conditions that define which biblio is included in which set.
27 A condition is in the form 200$a = 'abc'.
28 Multiple conditions can be defined for a given set. In this case,
29 the OR operator will be applied.
31 =cut
33 use Modern::Perl;
35 use CGI qw ( -utf8 );
36 use C4::Auth;
37 use C4::Output;
38 use C4::OAI::Sets;
40 use Data::Dumper;
42 my $input = new CGI;
43 my ($template, $loggedinuser, $cookie, $flags) = get_template_and_user( {
44 template_name => 'admin/oai_set_mappings.tt',
45 query => $input,
46 type => 'intranet',
47 authnotrequired => 0,
48 flagsrequired => { 'parameters' => 'manage_oai_sets' },
49 debug => 1,
50 } );
52 my $id = $input->param('id');
53 my $op = $input->param('op');
55 if($op && $op eq "save") {
56 my @marcfields = $input->multi_param('marcfield');
57 my @marcsubfields = $input->multi_param('marcsubfield');
58 my @operators = $input->multi_param('operator');
59 my @marcvalues = $input->multi_param('marcvalue');
60 my @ruleoperators = $input->multi_param('rule_operator');
61 my @ruleorders = $input->multi_param('rule_order');
63 my @mappings;
64 my $i = 0;
65 while($i < @marcfields and $i < @marcsubfields and $i < @marcvalues) {
66 if($marcfields[$i] and $marcsubfields[$i]) {
67 push @mappings, {
68 marcfield => $marcfields[$i],
69 marcsubfield => $marcsubfields[$i],
70 operator => $operators[$i],
71 marcvalue => $marcvalues[$i],
72 rule_operator => $ruleoperators[$i],
73 rule_order => $i
76 $i++;
78 $mappings[0]{'rule_operator'} = undef if (@mappings);
79 ModOAISetMappings($id, \@mappings);
80 $template->param(mappings_saved => 1);
83 my $set = GetOAISet($id);
84 my $mappings = GetOAISetMappings($id);
86 $template->param(
87 id => $id,
88 setName => $set->{'name'},
89 setSpec => $set->{'spec'},
90 mappings => $mappings,
93 output_html_with_http_headers $input, $cookie, $template->output;