Bug 6678 - Fix some problems with the standard NORMARC framework
[koha.git] / cataloguing / value_builder / marc21_field_008_authorities.pl
bloba7a671ee323b90abd47ca6def604b185a6eaa3a5
1 #!/usr/bin/perl
4 # Copyright 2000-2002 Katipo Communications
6 # This file is part of Koha.
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.
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.
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.
21 use strict;
22 #use warnings; FIXME - Bug 2505
23 use C4::Auth;
24 use CGI;
25 use C4::Context;
27 use C4::Search;
28 use C4::Output;
30 use constant FIXLEN_DATA_ELTS => '|| aca||aabn | a|a d';
31 use constant PREF_008 => 'MARCAuthorityControlField008';
33 =head1 DESCRIPTION
35 plugin_parameters : other parameters added when the plugin is called by the dopop function
37 =cut
39 # find today's date
40 my ($sec,$min,$hour,$mday,$mon,$year,$wday,$yday,$isdst) = localtime(time);
42 $year +=1900; $mon +=1;
43 my $dateentered = substr($year,2,2).sprintf ("%0.2d", $mon).sprintf ("%0.2d",$mday);
44 my $defaultval = Field008();
46 sub plugin_parameters {
47 my ($dbh,$record,$tagslib,$i,$tabloop) = @_;
48 return "";
51 sub plugin_javascript {
52 my ($dbh,$record,$tagslib,$field_number,$tabloop) = @_;
53 my $function_name= $field_number;
54 my $res="
55 <script type=\"text/javascript\">
56 //<![CDATA[
58 function Focus$function_name(subfield_managed) {
59 if (!document.getElementById(\"$field_number\").value) {
60 var authtype=document.forms['f'].elements['authtypecode'].value;
61 var fieldval='$dateentered$defaultval';
62 if(authtype && (authtype == 'TOPIC_TERM' || authtype == 'GENRE/FORM' || authtype == 'CHRON_TERM')) {
63 fieldval= fieldval.substr(0,14)+'b'+fieldval.substr(15);
65 document.getElementById(\"$field_number\").value=fieldval;
67 return 1;
70 function Blur$function_name(subfield_managed) {
71 return 1;
74 function Clic$function_name(i) {
75 var authtype=document.forms['f'].elements['authtypecode'].value;
76 defaultvalue=document.getElementById(\"$field_number\").value;
77 newin=window.open(\"../cataloguing/plugin_launcher.pl?plugin_name=marc21_field_008_authorities.pl&index=$field_number&result=\"+defaultvalue+\"&authtypecode=\"+authtype,\"tag_editor\",'width=1000,height=600,toolbar=false,scrollbars=yes');
80 //]]>
81 </script>
84 return ($function_name,$res);
86 sub plugin {
87 my ($input) = @_;
88 my $index= $input->param('index');
89 my $result= $input->param('result');
90 my $authtype= $input->param('authtypecode')||'';
91 substr($defaultval,14-6,1)='b' if $authtype=~ /TOPIC_TERM|GENRE.FORM|CHRON_TERM/;
93 my $dbh = C4::Context->dbh;
95 my ($template, $loggedinuser, $cookie)
96 = get_template_and_user({template_name => "cataloguing/value_builder/marc21_field_008_authorities.tmpl",
97 query => $input,
98 type => "intranet",
99 authnotrequired => 0,
100 flagsrequired => {editcatalogue => '*'},
101 debug => 1,
103 $result = "$dateentered$defaultval" unless $result;
104 my $f1 = substr($result,0,6);
105 my $f6 = substr($result,6,1);
106 my $f7 = substr($result,7,1);
107 my $f8 = substr($result,8,1);
108 my $f9 = substr($result,9,1);
109 my $f10 = substr($result,10,1);
110 my $f11 = substr($result,11,1);
111 my $f12 = substr($result,12,1);
112 my $f13 = substr($result,13,1);
113 my $f14 = substr($result,14,1);
114 my $f15 = substr($result,15,1);
115 my $f16 = substr($result,16,1);
116 my $f17 = substr($result,17,1);
117 my $f28 = substr($result,28,1);
118 my $f29 = substr($result,29,1);
119 my $f31 = substr($result,31,1);
120 my $f32 = substr($result,32,1);
121 my $f33 = substr($result,33,1);
122 my $f38 = substr($result,38,1);
123 my $f39 = substr($result,39,1);
125 if ((!$f1) ||($f1 =~ m/ /)){
126 $f1=$dateentered;
129 $template->param( index => $index,
130 f1 => $f1,
131 f6 => $f6,
132 "f6$f6" => $f6,
133 f7 => $f7,
134 "f7$f7" => $f7,
135 f8 => $f8,
136 "f8$f8" => $f8,
137 f9 => $f9,
138 "f9$f9" => $f9,
139 f10 => $f10,
140 "f10$f10" => $f10,
141 f11 => $f11,
142 "f11$f11" => $f11,
143 f12 => $f12,
144 "f12$f12" => $f12,
145 f13 => $f13,
146 "f13$f13" => $f13,
147 f14 => $f14,
148 "f14$f14" => $f14,
149 f15 => $f15,
150 "f15$f15" => $f15,
151 f16 => $f16,
152 "f16$f16" => $f16,
153 f17 => $f17,
154 "f17$f17" => $f17,
155 f28 => $f28,
156 "f28$f28" => $f28,
157 f29 => $f29,
158 "f29$f29" => $f29,
159 f31 => $f31,
160 "f31$f31" => $f31,
161 f32 => $f32,
162 "f32$f32" => $f32,
163 f33 => $f33,
164 "f33$f33" => $f33,
165 f38 => $f38,
166 "f38$f38" => $f38,
167 f39 => $f39,
168 "f39$f39" => $f39,
170 output_html_with_http_headers $input, $cookie, $template->output;
173 sub Field008 {
174 my $pref= C4::Context->preference(PREF_008);
175 if(!$pref) {
176 return FIXLEN_DATA_ELTS;
178 elsif(length($pref)<34) {
179 warn "marc21_field_008_authorities.pl: Syspref ".PREF_008." should be 34 characters long ";
180 return FIXLEN_DATA_ELTS;
182 return substr($pref,0,34); #ignore remainder