Merge remote-tracking branch 'kc/new/enh/bug_5263' into kcmaster
[koha.git] / cataloguing / value_builder / unimarc_field_100.pl
1 #!/usr/bin/perl
2
3
4 # Copyright 2000-2002 Katipo Communications
5 #
6 # This file is part of Koha.
7 #
8 # Koha is free software; you can redistribute it and/or modify it under the
9 # terms of the GNU General Public License as published by the Free Software
10 # Foundation; either version 2 of the License, or (at your option) any later
11 # version.
12 #
13 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
14 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
15 # A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
16 #
17 # You should have received a copy of the GNU General Public License along
18 # with Koha; if not, write to the Free Software Foundation, Inc.,
19 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
20
21 use strict;
22 #use warnings; FIXME - Bug 2505
23 use C4::Auth;
24 use CGI;
25 use C4::Context;
26 use C4::Output;
27
28
29 =head1 FUNCTIONS
30
31 =head2 plugin_parameters
32
33 Other parameters added when the plugin is called by the dopop function
34
35 =cut
36
37 sub plugin_parameters {
38     my ( $dbh, $record, $tagslib, $i, $tabloop ) = @_;
39     return "";
40 }
41
42 sub plugin_javascript {
43     my ( $dbh, $record, $tagslib, $field_number, $tabloop ) = @_;
44     my $res           = "
45         <script type='text/javascript'>
46             function Focus$field_number() {
47                 return 1;
48             }
49
50             function Blur$field_number() {
51                 return 1;
52             }
53
54             function Clic$field_number(i) {
55                 var defaultvalue;
56                 try {
57                     defaultvalue = document.getElementById(i).value;
58                 } catch(e) {
59                     alert('error when getting '+i);
60                     return;
61                 }
62                 window.open(\"/cgi-bin/koha/cataloguing/plugin_launcher.pl?plugin_name=unimarc_field_100.pl&index=\"+i+\"&result=\"+defaultvalue,\"unimarc_field_100\",'width=1000,height=600,toolbar=false,scrollbars=yes');
63             }
64         </script>
65 ";
66
67     return ( $field_number, $res );
68 }
69
70 sub wrapper {
71     my ($char) = @_;
72     return "space" if $char eq " ";
73     return "dblspace" if $char eq "  ";
74     return "pipe" if $char eq "|";
75     return $char;
76 }
77
78 sub plugin {
79     my ($input) = @_;
80     my $index  = $input->param('index');
81     my $result = $input->param('result');
82
83     my $dbh = C4::Context->dbh;
84
85     my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
86         {
87             template_name => "cataloguing/value_builder/unimarc_field_100.tmpl",
88             query         => $input,
89             type          => "intranet",
90             authnotrequired => 0,
91             flagsrequired   => { editcatalogue => '*' },
92             debug           => 1,
93         }
94     );
95     $result = '        d        u  y0frey50      ba' unless $result;
96     my $f1 = substr( $result, 0, 8 );
97     if ( $f1 eq '        ' ) {
98         my @today = Date::Calc::Today();
99         $f1 = $today[0] . sprintf('%02s',$today[1]) . sprintf('%02s',$today[2]);
100     }
101     my $f2  = substr( $result, 8,  1 ); $f2  = wrapper( $f2 ) if $f2;
102     my $f3  = substr( $result, 9,  4 );
103     $f3='' if $f3 eq '    '; # empty publication year if only spaces, otherwise it's hard to fill the field
104     my $f4  = substr( $result, 13, 4 );
105     $f4='' if $f4 eq '    ';
106     my $f5  = substr( $result, 17, 1 ); $f5  = wrapper( $f5 ) if $f5;
107     my $f6  = substr( $result, 18, 1 ); $f6  = wrapper( $f6 ) if $f6;
108     my $f7  = substr( $result, 19, 1 ); $f7  = wrapper( $f7 ) if $f7;
109     my $f8  = substr( $result, 20, 1 );
110     my $f9  = substr( $result, 21, 1 );
111     my $f10 = substr( $result, 22, 3 );
112     my $f11 = substr( $result, 25, 1 );
113     my $f12 = substr( $result, 26, 2 );
114     my $f13 = substr( $result, 28, 2 );
115     my $f14 = substr( $result, 30, 4 );
116     my $f15 = substr( $result, 34, 2 ); $f15 = wrapper( $f15 ) if $f15;
117
118     $template->param(
119         index     => $index,
120         f1        => $f1,
121         f3        => $f3,
122         "f2$f2"   => 1,
123         f4        => $f4,
124         "f5$f5"   => 1,
125         "f6$f6"   => 1,
126         "f7$f7"   => 1,
127         "f8$f8"   => 1,
128         "f9$f9"   => 1,
129         "f10"     => $f10,
130         "f11$f11" => 1,
131         "f12$f12" => 1,
132         "f13$f13" => 1,
133         "f14"     => $f14,
134         "f15$f15" => 1
135     );
136     output_html_with_http_headers $input, $cookie, $template->output;
137 }
138
139 1;