Bug 11349: Change .tmpl -> .tt in scripts using templates
[koha-equinox.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 $lang = C4::Context->preference('DefaultLanguageField008' );
51     $lang = "eng" unless $lang;
52     $lang = pack("A3", $lang);
53
54     my ($dbh, $record, $tagslib, $field_number, $tabloop) = @_;
55     my $function_name = $field_number;
56     my $res           = "
57 <script type=\"text/javascript\">
58 //<![CDATA[
59
60 function Focus$function_name(subfield_managed) {
61         if ( document.getElementById(\"$field_number\").value ) {
62         }
63         else {
64         document.getElementById(\"$field_number\").value='$dateentered' + 'b        xxu||||| |||| 00| 0 $lang d';
65         }
66     return 1;
67 }
68
69 function Blur$function_name(subfield_managed) {
70         return 1;
71 }
72
73 function Clic$function_name(i) {
74         defaultvalue=document.getElementById(\"$field_number\").value;
75     //Retrieve full leader string and pass it to the 008 tag editor
76     var leader_value = \$(\"input[id^='tag_000']\").val();
77     var leader_parameter = \"\";
78     if (leader_value){
79         //Only add the parameter to the URL if there is a value to add
80         leader_parameter = \"&leader=\"+leader_value;
81     }
82     newin=window.open(\"../cataloguing/plugin_launcher.pl?plugin_name=marc21_field_008.pl&index=$field_number&result=\"+defaultvalue+leader_parameter,\"tag_editor\",'width=1000,height=600,toolbar=false,scrollbars=yes');
83
84 }
85 //]]>
86 </script>
87 ";
88
89     return ($function_name, $res);
90 }
91
92 sub plugin {
93     my $lang = C4::Context->preference('DefaultLanguageField008' );
94     $lang = "eng" unless $lang;
95     $lang = pack("A3", $lang);
96
97     my ($input) = @_;
98     my $index   = $input->param('index');
99     my $result  = $input->param('result');
100     my $leader  = $input->param('leader');
101
102     my $material_configuration;
103     if ($leader && length($leader) == '24') {
104         #MARC 21 Material Type Configuration
105         #Field 008/18-34 Configuration
106         #If Leader/06 = a and Leader/07 = a, c, d, or m: Books
107         #If Leader/06 = a and Leader/07 = b, i, or s: Continuing Resources
108         #If Leader/06 = t: Books
109         #If Leader/06 = c, d, i, or j: Music
110         #If Leader/06 = e, or f: Maps
111         #If Leader/06 = g, k, o, or r: Visual Materials
112         #If Leader/06 = m: Computer Files
113         #If Leader/06 = p: Mixed Materials
114         #http://www.loc.gov/marc/bibliographic/bdleader.html
115         my $material_configuration_mapping = {
116             a => {
117                 a => 'BKS',
118                 c => 'BKS',
119                 d => 'BKS',
120                 m => 'BKS',
121                 b => 'CR',
122                 i => 'CR',
123                 s => 'CR',
124             },
125             t => 'BKS',
126             c => 'MU',
127             d => 'MU',
128             i => 'MU',
129             j => 'MU',
130             e => 'MP',
131             f => 'MP',
132             g => 'VM',
133             k => 'VM',
134             o => 'VM',
135             r => 'VM',
136             m => 'CF',
137             p => 'MX',
138         };
139         my $leader06 = substr($leader, 6, 1);
140         my $leader07 = substr($leader, 7, 1);
141         #Retrieve material type using leader06
142         $material_configuration = $material_configuration_mapping->{$leader06};
143         #If the value returned is a ref (i.e. leader06 is 'a'), then use leader07 to get the actual material type
144         if ( ($material_configuration) && (ref($material_configuration) eq 'HASH') ){
145             $material_configuration = $material_configuration->{$leader07};
146         }
147     }
148
149     my $dbh = C4::Context->dbh;
150
151     my ($template, $loggedinuser, $cookie) = get_template_and_user(
152         {   template_name   => "cataloguing/value_builder/marc21_field_008.tt",
153             query           => $input,
154             type            => "intranet",
155             authnotrequired => 0,
156             flagsrequired   => { editcatalogue => '*' },
157             debug           => 1,
158         }
159     );
160
161     $result = "$dateentered" . "b        xxu||||| |||| 00| 0 $lang d" unless $result;
162     my $errorXml = '';
163     # Check if the xml, xsd exists and is validated
164     my $dir = C4::Context->config('intrahtdocs') . '/prog/' . $template->{lang} . '/data/';
165     if (-r $dir . 'marc21_field_008.xml') {
166         my $doc = XML::LibXML->new->parse_file($dir . 'marc21_field_008.xml');
167         if (-r $dir . 'marc21_field_CF.xsd') {
168             my $xmlschema = XML::LibXML::Schema->new(location => $dir . 'marc21_field_CF.xsd');
169             eval {
170                 $xmlschema->validate( $doc );
171             };
172             $errorXml = 'Can\'t validate the xml data from ' . $dir . 'marc21_field_008.xml' if ($@);
173         }
174     } else {
175         $errorXml = 'Can\'t read the xml file ' . $dir . 'marc21_field_008.xml';
176     }
177     $template->param(tagfield => '008',
178             index => $index,
179             result => $result,
180             errorXml => $errorXml,
181             material_configuration => $material_configuration,
182     );
183     output_html_with_http_headers $input, $cookie, $template->output;
184 }
185
186 1;