Bug 13437: Trivial edits on marc21 plugins before conversion
[koha.git] / cataloguing / value_builder / marc21_field_007.pl
1 #!/usr/bin/perl
2
3 # Copyright 2000-2002 Katipo Communications
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 strict;
21
22 #use warnings; FIXME - Bug 2505
23 use C4::Auth;
24 use CGI qw ( -utf8 );
25 use C4::Context;
26
27 use C4::Search;
28 use C4::Output;
29
30 sub plugin_javascript {
31     my ( $dbh, $record, $tagslib, $field_number, $tabloop ) = @_;
32     my $function_name = $field_number;
33     my $res           = "
34 <script type=\"text/javascript\">
35 //<![CDATA[
36
37 function Clic$function_name(i) {
38         defaultvalue=document.getElementById(\"$field_number\").value;
39         newin=window.open(\"../cataloguing/plugin_launcher.pl?plugin_name=marc21_field_007.pl&index=$field_number&result=\"+defaultvalue,\"tag_editor\",'width=1000,height=600,toolbar=false,scrollbars=yes');
40
41 }
42 //]]>
43 </script>
44 ";
45
46     return ( $function_name, $res );
47 }
48
49 sub plugin {
50     my ($input) = @_;
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             authnotrequired => 0,
61             flagsrequired   => { editcatalogue => '*' },
62             debug           => 1,
63         }
64     );
65     $result = "ta" unless $result;
66     my $f0 = substr( $result, 0, 1 );
67     my $f1 = substr( $result, 1, 1 );
68
69     #added new parameters to allow for all material types
70     my $f2  = substr( $result, 2,  1 );
71     my $f3  = substr( $result, 3,  1 );
72     my $f4  = substr( $result, 4,  1 );
73     my $f5  = substr( $result, 5,  1 );
74     my $f6  = substr( $result, 6,  1 );
75     my $f7  = substr( $result, 7,  1 );
76     my $f8  = substr( $result, 8,  1 );
77     my $f9  = substr( $result, 9,  1 );
78     my $f10 = substr( $result, 10, 1 );
79     my $f11 = substr( $result, 11, 1 );
80     my $f12 = substr( $result, 12, 1 );
81     my $f13 = substr( $result, 13, 1 );
82     my $f14 = substr( $result, 14, 1 );
83     my $f15 = substr( $result, 15, 1 );
84     my $f16 = substr( $result, 16, 1 );
85     my $f17 = substr( $result, 17, 1 );
86     my $f18 = substr( $result, 18, 1 );
87     my $f19 = substr( $result, 19, 1 );
88     my $f20 = substr( $result, 20, 1 );
89     my $f21 = substr( $result, 21, 1 );
90     my $f22 = substr( $result, 22, 1 );
91
92     #FIXME:  There is probably a more-elegant way to do this!
93     #FIXME:  Two of the material types treat position 06, 07, and 08 as a single
94     #three-char field.  This script works fine for creating values and sending them
95     #back to the MARC, but if there is already a value in the 007, it won't send
96     #it properly to the value builder for those two instances.  Not sure how to solve.
97     $template->param(
98         index     => $index,
99         f0        => $f0,
100         "f0$f0"   => $f0,
101         f1        => $f1,
102         "f1$f1"   => $f1,
103         f2        => $f2,
104         "f2$f2"   => $f2,
105         f3        => $f3,
106         "f3$f3"   => $f3,
107         f4        => $f4,
108         "f4$f4"   => $f4,
109         f5        => $f5,
110         "f5$f5"   => $f5,
111         f6        => $f6,
112         "f6$f6"   => $f6,
113         f7        => $f7,
114         "f7$f7"   => $f7,
115         f8        => $f8,
116         "f8$f8"   => $f8,
117         f9        => $f9,
118         "f9$f9"   => $f9,
119         f10       => $f10,
120         "f10$f10" => $f10,
121         f11       => $f11,
122         "f11$f11" => $f11,
123         f12       => $f12,
124         "f12$f12" => $f12,
125         f13       => $f13,
126         "f13$f13" => $f13,
127         f14       => $f14,
128         "f14$f14" => $f14,
129         f15       => $f15,
130         "f15$f15" => $f15,
131         f16       => $f16,
132         "f16$f16" => $f16,
133         f17       => $f17,
134         "f17$f17" => $f17,
135         f18       => $f18,
136         "f18$f18" => $f18,
137         f19       => $f19,
138         "f19$f19" => $f19,
139         f20       => $f20,
140         "f20$f20" => $f20,
141         f21       => $f21,
142         "f21$f21" => $f21,
143         f22       => $f22,
144         "f22$f22" => $f22,
145     );
146     output_html_with_http_headers $input, $cookie, $template->output;
147 }