Bug 30477: Add new UNIMARC installer translation files
[koha.git] / cataloguing / value_builder / marc21_field_007.pl
1 #!/usr/bin/perl
2
3 # Converted to new plugin style (Bug 13437)
4
5 # Copyright 2000-2002 Katipo Communications
6 #
7 # This file is part of Koha.
8 #
9 # Koha is free software; you can redistribute it and/or modify it
10 # under the terms of the GNU General Public License as published by
11 # the Free Software Foundation; either version 3 of the License, or
12 # (at your option) any later version.
13 #
14 # Koha is distributed in the hope that it will be useful, but
15 # WITHOUT ANY WARRANTY; without even the implied warranty of
16 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 # GNU General Public License for more details.
18 #
19 # You should have received a copy of the GNU General Public License
20 # along with Koha; if not, see <http://www.gnu.org/licenses>.
21
22 use Modern::Perl;
23
24 use C4::Auth qw( get_template_and_user );
25 use CGI qw ( -utf8 );
26 use C4::Context;
27
28 use C4::Search;
29 use C4::Output qw( output_html_with_http_headers );
30
31 my $builder = sub {
32     my ( $params ) = @_;
33     my $function_name = $params->{id};
34     my $res           = "
35 <script>
36
37 function Click$function_name(event) {
38     defaultvalue=document.getElementById(event.data.id).value;
39     newin=window.open(\"../cataloguing/plugin_launcher.pl?plugin_name=marc21_field_007.pl&index=\"+ event.data.id +\"&result=\"+defaultvalue,\"tag_editor\",'width=1000,height=600,toolbar=false,scrollbars=yes');
40
41 }
42 </script>
43 ";
44
45     return $res;
46 };
47
48 my $launcher = sub {
49     my ( $params ) = @_;
50     my $input = $params->{cgi};
51     my $index   = $input->param('index');
52     my $result  = $input->param('result');
53
54     my $dbh = C4::Context->dbh;
55
56     my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
57         {   template_name   => "cataloguing/value_builder/marc21_field_007.tt",
58             query           => $input,
59             type            => "intranet",
60             flagsrequired   => { editcatalogue => '*' },
61         }
62     );
63
64     $result = "ta" unless $result;
65     my $pad_length = 23 - length $result;
66     my @fvalues = split //, $result;
67     if ($pad_length>0) {
68         push @fvalues, (undef)x($pad_length);
69     }
70     my @fnames = map { "f$_" } (0..22);
71
72     #FIXME:  Two of the material types treat position 06, 07, and 08 as a single
73     #three-char field.  This script works fine for creating values and sending them
74     #back to the MARC, but if there is already a value in the 007, it won't send
75     #it properly to the value builder for those two instances.  Not sure how to solve.
76     $template->param( index => $index );
77     foreach my $count ( 0..22 ) {
78         if (defined $fvalues[$count]) {
79             # template uses f##pipe variables.
80             my $key2;
81             if ($fvalues[$count] eq q{|}) {
82                 $key2 = $fnames[$count] . 'pipe';
83             }
84             else {
85                 $key2 = $fnames[$count] . $fvalues[$count];
86             }
87             $template->param(
88                 $fnames[$count] => $fvalues[$count],
89                 $key2           => $fvalues[$count]
90             );
91         }
92     }
93     output_html_with_http_headers $input, $cookie, $template->output;
94 };
95
96 return { builder => $builder, launcher => $launcher };