Merge remote branch 'magnus/bug3644-normarc' into new/pending_qa/enh/bug_3644
[koha.git] / cataloguing / value_builder / marc21_field_008.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 under the
8 # terms of the GNU General Public License as published by the Free Software
9 # Foundation; either version 2 of the License, or (at your option) any later
10 # version.
11 #
12 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
13 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
14 # A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
15 #
16 # You should have received a copy of the GNU General Public License along
17 # with Koha; if not, write to the Free Software Foundation, Inc.,
18 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
19
20 use strict;
21 #use warnings; FIXME - Bug 2505
22 use C4::Auth;
23 use CGI;
24 use C4::Context;
25
26 use C4::Search;
27 use C4::Output;
28
29 use XML::LibXML;
30
31 =head1 DESCRIPTION
32
33 plugin_parameters : other parameters added when the plugin is called by the dopop function
34
35 =cut
36
37 # find today's date
38 my ($sec, $min, $hour, $mday, $mon, $year, $wday, $yday, $isdst) = localtime(time);
39
40 $year += 1900;
41 $mon  += 1;
42 my $dateentered = substr($year, 2, 2) . sprintf("%0.2d", $mon) . sprintf("%0.2d", $mday);
43
44 sub plugin_parameters {
45     my ($dbh, $record, $tagslib, $i, $tabloop) = @_;
46     return "";
47 }
48
49 sub plugin_javascript {
50     my ($dbh, $record, $tagslib, $field_number, $tabloop) = @_;
51     my $function_name = $field_number;
52     my $res           = "
53 <script type=\"text/javascript\">
54 //<![CDATA[
55
56 function Focus$function_name(subfield_managed) {
57
58         if ( document.getElementById(\"$field_number\").value ) {
59         }
60         else {
61                 document.getElementById(\"$field_number\").value='$dateentered' + 't        xxu||||| |||| 00| 0 eng d';
62         }
63     return 1;
64 }
65
66 function Blur$function_name(subfield_managed) {
67         return 1;
68 }
69
70 function Clic$function_name(i) {
71         defaultvalue=document.getElementById(\"$field_number\").value;
72         newin=window.open(\"../cataloguing/plugin_launcher.pl?plugin_name=marc21_field_008.pl&index=$field_number&result=\"+defaultvalue,\"tag_editor\",'width=1000,height=600,toolbar=false,scrollbars=yes');
73
74 }
75 //]]>
76 </script>
77 ";
78
79     return ($function_name, $res);
80 }
81
82 sub plugin {
83     my ($input) = @_;
84     my $index   = $input->param('index');
85     my $result  = $input->param('result');
86
87     my $dbh = C4::Context->dbh;
88
89     my ($template, $loggedinuser, $cookie) = get_template_and_user(
90         {   template_name   => "cataloguing/value_builder/marc21_field_008.tmpl",
91             query           => $input,
92             type            => "intranet",
93             authnotrequired => 0,
94             flagsrequired   => { editcatalogue => '*' },
95             debug           => 1,
96         }
97     );
98
99     #   $result = "      t        xxu           00  0 eng d" unless $result;
100     $result = "$dateentered" . "t        xxu||||| |||| 00| 0 eng d" unless $result;
101     my $errorXml = '';
102     # Check if the xml, xsd exists and is validated
103     my $dir = C4::Context->config('intrahtdocs') . '/prog/' . $template->param('lang') . '/modules/cataloguing/value_builder/';
104     if (-r $dir . 'marc21_field_008.xml') {
105         my $doc = XML::LibXML->new->parse_file($dir . 'marc21_field_008.xml');
106         if (-r $dir . 'marc21_field_CF.xsd') {
107             my $xmlschema = XML::LibXML::Schema->new(location => $dir . 'marc21_field_CF.xsd');
108             eval {
109                 $xmlschema->validate( $doc );
110             };
111             $errorXml = 'Can\'t validate the xml data from ' . $dir . 'marc21_field_008.xml' if ($@);
112         }
113     } else {
114         $errorXml = 'Can\'t read the xml file ' . $dir . 'marc21_field_008.xml';
115     }
116     $template->param(tagfield => '008',
117             index => $index,
118             result => $result,
119             errorXml => $errorXml,
120     );
121     output_html_with_http_headers $input, $cookie, $template->output;
122 }
123
124 1;