Bug 9978: Replace license header with the correct license (GPLv3+)
[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
9 # under the terms of the GNU General Public License as published by
10 # the Free Software Foundation; either version 3 of the License, or
11 # (at your option) any later version.
12 #
13 # Koha is distributed in the hope that it will be useful, but
14 # WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 # GNU General Public License for more details.
17 #
18 # You should have received a copy of the GNU General Public License
19 # along with Koha; if not, see <http://www.gnu.org/licenses>.
20
21 use strict;
22 #use warnings; FIXME - Bug 2505
23
24 use Koha::Util::FrameworkPlugin qw(wrapper);
25 use C4::Auth;
26 use CGI qw ( -utf8 );
27 use C4::Context;
28 use C4::Output;
29
30
31 sub plugin_javascript {
32     my ( $dbh, $record, $tagslib, $field_number, $tabloop ) = @_;
33     my $res           = "
34         <script type='text/javascript'>
35             function Clic$field_number(i) {
36                 var defaultvalue;
37                 try {
38                     defaultvalue = document.getElementById(i).value;
39                 } catch(e) {
40                     alert('error when getting '+i);
41                     return;
42                 }
43                 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');
44             }
45         </script>
46 ";
47
48     return ( $field_number, $res );
49 }
50
51
52 sub plugin {
53     my ($input) = @_;
54     my $index  = $input->param('index');
55     my $result = $input->param('result');
56
57     my $dbh = C4::Context->dbh;
58
59     my $defaultlanguage = C4::Context->preference("UNIMARCField100Language");
60     $defaultlanguage = "fre" if (!$defaultlanguage || length($defaultlanguage) != 3);
61
62     my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
63         {
64             template_name => "cataloguing/value_builder/unimarc_field_100.tt",
65             query         => $input,
66             type          => "intranet",
67             authnotrequired => 0,
68             flagsrequired   => { editcatalogue => '*' },
69             debug           => 1,
70         }
71     );
72     $result = "        d        u  y0".$defaultlanguage."y50      ba" unless $result;
73     my $f1 = substr( $result, 0, 8 );
74     if ( $f1 eq '        ' ) {
75         my @today = Date::Calc::Today();
76         $f1 = $today[0] . sprintf('%02s',$today[1]) . sprintf('%02s',$today[2]);
77     }
78     my $f2  = substr( $result, 8,  1 ); $f2  = wrapper( $f2 ) if $f2;
79     my $f3  = substr( $result, 9,  4 );
80     $f3='' if $f3 eq '    '; # empty publication year if only spaces, otherwise it's hard to fill the field
81     my $f4  = substr( $result, 13, 4 );
82     $f4='' if $f4 eq '    ';
83     my $f5  = substr( $result, 17, 1 ); $f5  = wrapper( $f5 ) if $f5;
84     my $f6  = substr( $result, 18, 1 ); $f6  = wrapper( $f6 ) if $f6;
85     my $f7  = substr( $result, 19, 1 ); $f7  = wrapper( $f7 ) if $f7;
86     my $f8  = substr( $result, 20, 1 );
87     my $f9  = substr( $result, 21, 1 );
88     my $f10 = substr( $result, 22, 3 );
89     my $f11 = substr( $result, 25, 1 );
90     my $f12 = substr( $result, 26, 2 );
91     my $f13 = substr( $result, 28, 2 );
92     my $f14 = substr( $result, 30, 4 );
93     my $f15 = substr( $result, 34, 2 ); $f15 = wrapper( $f15 ) if $f15;
94
95     $template->param(
96         index     => $index,
97         f1        => $f1,
98         f3        => $f3,
99         "f2$f2"   => 1,
100         f4        => $f4,
101         "f5$f5"   => 1,
102         "f6$f6"   => 1,
103         "f7$f7"   => 1,
104         "f8$f8"   => 1,
105         "f9$f9"   => 1,
106         "f10"     => $f10,
107         "f11$f11" => 1,
108         "f12$f12" => 1,
109         "f13$f13" => 1,
110         "f14"     => $f14,
111         "f15$f15" => 1
112     );
113     output_html_with_http_headers $input, $cookie, $template->output;
114 }