Merge remote branch 'kc/master' into new/enh/bug_5917
[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 plugin {
71     my ($input) = @_;
72     my $index  = $input->param('index');
73     my $result = $input->param('result');
74
75     my $dbh = C4::Context->dbh;
76
77     my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
78         {
79             template_name => "cataloguing/value_builder/unimarc_field_100.tmpl",
80             query         => $input,
81             type          => "intranet",
82             authnotrequired => 0,
83             flagsrequired   => { editcatalogue => '*' },
84             debug           => 1,
85         }
86     );
87     $result = '        d        u  y0frey50      ba' unless $result;
88     my $f1 = substr( $result, 0, 8 );
89     if ( $f1 eq '        ' ) {
90         my @today = Date::Calc::Today();
91         $f1 = $today[0] . sprintf('%02s',$today[1]) . sprintf('%02s',$today[2]);
92     }
93     my $f2  = substr( $result, 8,  1 );
94     my $f3  = substr( $result, 9,  4 );
95     $f3='' if $f3 eq '    '; # empty publication year if only spaces, otherwise it's hard to fill the field
96     my $f4  = substr( $result, 13, 4 );
97     $f4='' if $f4 eq '    ';
98     my $f5  = substr( $result, 17, 1 );
99     my $f6  = substr( $result, 18, 1 );
100     my $f7  = substr( $result, 19, 1 );
101     my $f8  = substr( $result, 20, 1 );
102     my $f9  = substr( $result, 21, 1 );
103     my $f10 = substr( $result, 22, 3 );
104     my $f11 = substr( $result, 25, 1 );
105     my $f12 = substr( $result, 26, 2 );
106     my $f13 = substr( $result, 28, 2 );
107     my $f14 = substr( $result, 30, 4 );
108     my $f15 = substr( $result, 34, 2 );
109
110     $template->param(
111         index     => $index,
112         f1        => $f1,
113         f3        => $f3,
114         "f2$f2"   => 1,
115         f4        => $f4,
116         "f5$f5"   => 1,
117         "f6$f6"   => 1,
118         "f7$f7"   => 1,
119         "f8$f8"   => 1,
120         "f9$f9"   => 1,
121         "f10"     => $f10,
122         "f11$f11" => 1,
123         "f12$f12" => 1,
124         "f13$f13" => 1,
125         "f14"     => $f14,
126         "f15$f15" => 1
127     );
128     output_html_with_http_headers $input, $cookie, $template->output;
129 }
130
131 1;