Bug 18276: Remove GetBiblioFromItemNumber - Easy ones
[koha.git] / cataloguing / value_builder / marc21_field_006.pl
1 #!/usr/bin/perl
2
3 # Converted to new plugin style (Bug 13437)
4
5 # Copyright 2000-2002 Katipo Communications
6 #
7 # This file is part of Koha.
8 #
9 # Koha is free software; you can redistribute it and/or modify it
10 # under the terms of the GNU General Public License as published by
11 # the Free Software Foundation; either version 3 of the License, or
12 # (at your option) any later version.
13 #
14 # Koha is distributed in the hope that it will be useful, but
15 # WITHOUT ANY WARRANTY; without even the implied warranty of
16 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 # GNU General Public License for more details.
18 #
19 # You should have received a copy of the GNU General Public License
20 # along with Koha; if not, see <http://www.gnu.org/licenses>.
21
22 use Modern::Perl;
23 use C4::Auth;
24 use CGI qw ( -utf8 );
25 use C4::Context;
26
27 use C4::Search;
28 use C4::Output;
29
30 use XML::LibXML;
31
32 my $builder = sub {
33     my ( $params ) = @_;
34     my $function_name = $params->{id};
35     my $res           = "
36 <script type=\"text/javascript\">
37 //<![CDATA[
38
39 function Click$function_name(event) {
40     defaultvalue=document.getElementById(event.data.id).value;
41     newin=window.open(\"../cataloguing/plugin_launcher.pl?plugin_name=marc21_field_006.pl&index=\"+ event.data.id +\"&result=\"+defaultvalue,\"tag_editor\",'width=1000,height=600,toolbar=false,scrollbars=yes');
42
43 }
44 //]]>
45 </script>
46 ";
47
48     return $res;
49 };
50
51 my $launcher = sub {
52     my ( $params ) = @_;
53     my $input = $params->{cgi};
54     my $index   = $input->param('index');
55     my $result  = $input->param('result');
56
57     my $dbh = C4::Context->dbh;
58
59     my ($template, $loggedinuser, $cookie) = get_template_and_user(
60         {   template_name   => "cataloguing/value_builder/marc21_field_006.tt",
61             query           => $input,
62             type            => "intranet",
63             authnotrequired => 0,
64             flagsrequired   => { editcatalogue => '*' },
65             debug           => 1,
66         }
67     );
68     $result = "a|||||r|||| 00| 0 " unless $result;
69     my $material_form_mapping = {
70         a => 'BKS', t => 'BKS',
71         c => 'MU', d => 'MU', i => 'MU', j => 'MU',
72         e => 'MP', f => 'MP',
73         g => 'VM', k => 'VM', o => 'VM', r => 'VM',
74         m => 'CF',
75         p => 'MX',
76         s => 'CR',
77     };
78     my $material_code = substr(($result // ' '), 0, 1);
79     my $material_configuration = $material_form_mapping->{$material_code};
80
81     my $errorXml = '';
82     # Check if the xml, xsd exists and is validated
83     my $dir = C4::Context->config('intrahtdocs') . '/prog/' . $template->{lang} . '/data/';
84     if (-r $dir . 'marc21_field_006.xml') {
85         my $doc = XML::LibXML->new->parse_file($dir . 'marc21_field_006.xml');
86         if (-r $dir . 'marc21_field_CF.xsd') {
87             my $xmlschema = XML::LibXML::Schema->new(location => $dir . 'marc21_field_CF.xsd');
88             eval {
89                 $xmlschema->validate( $doc );
90             };
91             $errorXml = 'Can\'t validate the xml data from ' . $dir . 'marc21_field_006.xml' if ($@);
92         }
93     } else {
94         $errorXml = 'Can\'t read the xml file ' . $dir . 'marc21_field_006.xml';
95     }
96     $template->param(tagfield => '006',
97             index => $index,
98             result => $result,
99             errorXml => $errorXml,
100             material_configuration => $material_configuration,
101     );
102     output_html_with_http_headers $input, $cookie, $template->output;
103 };
104
105 return { builder => $builder, launcher => $launcher };