Bug 26265: (QA follow-up) Remove g option from regex, add few dirs
[koha.git] / admin / fieldmapping.pl
1 #!/usr/bin/perl
2 # Copyright 2009 SARL BibLibre
3 # Copyright 2017 Koha Development Team
4 #
5 # This file is part of Koha.
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 Modern::Perl;
21 use CGI qw ( -utf8 );
22 use C4::Auth;
23 use C4::Biblio;
24 use C4::Output;
25
26 use Koha::BiblioFrameworks;
27 use Koha::FieldMappings;
28
29 my $query = new CGI;
30
31 my $frameworkcode = $query->param('framework') || "";
32 my $field         = $query->param('fieldname');
33 my $fieldcode     = $query->param('marcfield');
34 my $subfieldcode  = $query->param('marcsubfield');
35 my $op            = $query->param('op') || q{};
36 my $id            = $query->param('id');
37
38 my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
39     {
40         template_name   => "admin/fieldmapping.tt",
41         query           => $query,
42         type            => "intranet",
43         authnotrequired => 0,
44         flagsrequired   => { parameters => 'manage_keywords2marc_mappings' },
45         debug           => 1,
46     }
47 );
48
49 # FIXME Add exceptions
50 if ( $op eq "delete" and $id ) {
51     Koha::FieldMappings->find($id)->delete;
52 } elsif ( $field and $fieldcode ) {
53     my $params = { frameworkcode => $frameworkcode, field => $field, fieldcode => $fieldcode, subfieldcode => $subfieldcode };
54     my $exists = Koha::FieldMappings->search( $params )->count;;
55     unless ( $exists ) {
56         Koha::FieldMapping->new( $params )->store;
57     }
58 }
59
60 my $fields = Koha::FieldMappings->search({ frameworkcode => $frameworkcode });
61
62 my $frameworks = Koha::BiblioFrameworks->search({}, { order_by => ['frameworktext'] });
63 my $framework  = $frameworks->search( { frameworkcode => $frameworkcode } )->next;
64 $template->param(
65     frameworks => $frameworks,
66     framework  => $framework,
67     fields     => $fields,
68 );
69
70 output_html_with_http_headers $query, $cookie, $template->output;