Bug 12164: (followup) MoveOrders description corrected
[koha.git] / admin / marc_subfields_structure.pl
blob552bb894f71d9bc848f873c2f0efb36738c5b721
1 #!/usr/bin/perl
3 # Copyright 2000-2002 Katipo Communications
5 # This file is part of Koha.
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.
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.
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.
20 use strict;
21 #use warnings; FIXME - Bug 2505
22 use C4::Output;
23 use C4::Auth;
24 use CGI;
25 use C4::Context;
28 sub string_search {
29 my ( $searchstring, $frameworkcode ) = @_;
30 my $dbh = C4::Context->dbh;
31 $searchstring =~ s/\'/\\\'/g;
32 my @data = split( ' ', $searchstring );
33 my $count = @data;
34 my $sth =
35 $dbh->prepare(
36 "Select * from marc_subfield_structure where (tagfield like ? and frameworkcode=?) order by tagfield"
38 $sth->execute( "$searchstring%", $frameworkcode );
39 my @results;
40 my $cnt = 0;
41 my $u = 1;
43 while ( my $data = $sth->fetchrow_hashref ) {
44 push( @results, $data );
45 $cnt++;
46 $u++;
48 $sth->finish;
49 return ( $cnt, \@results );
52 sub marc_subfield_structure_exists {
53 my ($tagfield, $tagsubfield, $frameworkcode) = @_;
54 my $dbh = C4::Context->dbh;
55 my $sql = "select tagfield from marc_subfield_structure where tagfield = ? and tagsubfield = ? and frameworkcode = ?";
56 my $rows = $dbh->selectall_arrayref($sql, {}, $tagfield, $tagsubfield, $frameworkcode);
57 return @$rows > 0;
60 my $input = new CGI;
61 my $tagfield = $input->param('tagfield');
62 my $tagsubfield = $input->param('tagsubfield');
63 my $frameworkcode = $input->param('frameworkcode');
64 my $pkfield = "tagfield";
65 my $offset = $input->param('offset');
66 my $script_name = "/cgi-bin/koha/admin/marc_subfields_structure.pl";
68 my ( $template, $borrowernumber, $cookie ) = get_template_and_user(
70 template_name => "admin/marc_subfields_structure.tt",
71 query => $input,
72 type => "intranet",
73 authnotrequired => 0,
74 flagsrequired => { parameters => 'parameters_remaining_permissions' },
75 debug => 1,
79 my $op = $input->param('op');
80 $tagfield =~ s/\,//g;
82 if ($op) {
83 $template->param(
84 script_name => $script_name,
85 tagfield => $tagfield,
86 frameworkcode => $frameworkcode,
87 $op => 1
88 ); # we show only the TMPL_VAR names $op
90 else {
91 $template->param(
92 script_name => $script_name,
93 tagfield => $tagfield,
94 frameworkcode => $frameworkcode,
95 else => 1
96 ); # we show only the TMPL_VAR names $op
99 ################## ADD_FORM ##################################
100 # called by default. Used to create form to add or modify a record
101 if ( $op eq 'add_form' ) {
102 my $data;
103 my $dbh = C4::Context->dbh;
104 my $more_subfields = $input->param("more_subfields") + 1;
106 # builds kohafield tables
107 my @kohafields;
108 push @kohafields, "";
109 my $sth2 = $dbh->prepare("SHOW COLUMNS from biblio");
110 $sth2->execute;
111 while ( ( my $field ) = $sth2->fetchrow_array ) {
112 push @kohafields, "biblio." . $field;
114 $sth2 = $dbh->prepare("SHOW COLUMNS from biblioitems");
115 $sth2->execute;
116 while ( ( my $field ) = $sth2->fetchrow_array ) {
117 if ( $field eq 'notes' ) { $field = 'bnotes'; }
118 push @kohafields, "biblioitems." . $field;
120 $sth2 = $dbh->prepare("SHOW COLUMNS from items");
121 $sth2->execute;
122 while ( ( my $field ) = $sth2->fetchrow_array ) {
123 push @kohafields, "items." . $field;
126 # build authorised value list
127 $sth2->finish;
128 $sth2 = $dbh->prepare("select distinct category from authorised_values");
129 $sth2->execute;
130 my @authorised_values;
131 push @authorised_values, "";
132 while ( ( my $category ) = $sth2->fetchrow_array ) {
133 push @authorised_values, $category;
135 push( @authorised_values, "branches" );
136 push( @authorised_values, "itemtypes" );
137 push( @authorised_values, "cn_source" );
139 # build thesaurus categories list
140 $sth2->finish;
141 $sth2 = $dbh->prepare("select authtypecode from auth_types");
142 $sth2->execute;
143 my @authtypes;
144 push @authtypes, "";
145 while ( ( my $authtypecode ) = $sth2->fetchrow_array ) {
146 push @authtypes, $authtypecode;
149 # build value_builder list
150 my @value_builder = ('');
152 # read value_builder directory.
153 # 2 cases here : on CVS install, $cgidir does not need a /cgi-bin
154 # on a standard install, /cgi-bin need to be added.
155 # test one, then the other
156 my $cgidir = C4::Context->intranetdir . "/cgi-bin";
157 unless ( opendir( DIR, "$cgidir/cataloguing/value_builder" ) ) {
158 $cgidir = C4::Context->intranetdir;
159 opendir( DIR, "$cgidir/cataloguing/value_builder" )
160 || die "can't opendir $cgidir/value_builder: $!";
162 while ( my $line = readdir(DIR) ) {
163 if ( $line =~ /\.pl$/ ) {
164 push( @value_builder, $line );
167 @value_builder= sort {$a cmp $b} @value_builder;
168 closedir DIR;
170 # build values list
171 my $sth =
172 $dbh->prepare(
173 "select * from marc_subfield_structure where tagfield=? and frameworkcode=?"
174 ); # and tagsubfield='$tagsubfield'");
175 $sth->execute( $tagfield, $frameworkcode );
176 my @loop_data = ();
177 my $i = 0;
178 while ( $data = $sth->fetchrow_hashref ) {
179 my %row_data; # get a fresh hash for the row data
180 $row_data{defaultvalue} = $data->{defaultvalue};
181 $row_data{maxlength} = $data->{maxlength};
182 $row_data{tab} = CGI::scrolling_list(
183 -name => 'tab',
184 -id => "tab$i",
185 -values =>
186 [ '-1', '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', '10' ],
187 -labels => {
188 '-1' => 'ignore',
189 '0' => '0',
190 '1' => '1',
191 '2' => '2',
192 '3' => '3',
193 '4' => '4',
194 '5' => '5',
195 '6' => '6',
196 '7' => '7',
197 '8' => '8',
198 '9' => '9',
199 '10' => 'items (10)',
201 -default => $data->{'tab'},
202 -size => 1,
203 -multiple => 0,
205 $row_data{tagsubfield} =
206 $data->{'tagsubfield'}
207 . "<input type=\"hidden\" name=\"tagsubfield\" value=\""
208 . $data->{'tagsubfield'}
209 . "\" id=\"tagsubfield\" />";
210 $row_data{subfieldcode} = $data->{'tagsubfield'} eq '@'?'_':$data->{'tagsubfield'};
211 $row_data{urisubfieldcode} = $row_data{subfieldcode} eq '%' ? 'pct' : $row_data{subfieldcode};
212 $row_data{liblibrarian} = CGI::escapeHTML( $data->{'liblibrarian'} );
213 $row_data{libopac} = CGI::escapeHTML( $data->{'libopac'} );
214 $row_data{seealso} = CGI::escapeHTML( $data->{'seealso'} );
215 $row_data{kohafield} = CGI::scrolling_list(
216 -name => "kohafield",
217 -id => "kohafield$i",
218 -values => \@kohafields,
219 -default => "$data->{'kohafield'}",
220 -size => 1,
221 -multiple => 0,
223 $row_data{authorised_value} = CGI::scrolling_list(
224 -name => "authorised_value",
225 -id => "authorised_value$i",
226 -values => \@authorised_values,
227 -default => $data->{'authorised_value'},
228 -size => 1,
229 -multiple => 0,
231 $row_data{value_builder} = CGI::scrolling_list(
232 -name => "value_builder",
233 -id => "value_builder$i",
234 -values => \@value_builder,
235 -default => $data->{'value_builder'},
236 -size => 1,
237 -multiple => 0,
239 $row_data{authtypes} = CGI::scrolling_list(
240 -name => "authtypecode",
241 -id => "authtypecode$i",
242 -values => \@authtypes,
243 -default => $data->{'authtypecode'},
244 -size => 1,
245 -multiple => 0,
247 $row_data{repeatable} = CGI::checkbox(
248 -name => "repeatable$i",
249 -checked => $data->{'repeatable'} ? 'checked' : '',
250 -value => 1,
251 -label => '',
252 -id => "repeatable$i"
254 $row_data{mandatory} = CGI::checkbox(
255 -name => "mandatory$i",
256 -checked => $data->{'mandatory'} ? 'checked' : '',
257 -value => 1,
258 -label => '',
259 -id => "mandatory$i"
261 $row_data{hidden} = CGI::escapeHTML( $data->{hidden} );
262 $row_data{isurl} = CGI::checkbox(
263 -name => "isurl$i",
264 -id => "isurl$i",
265 -checked => $data->{'isurl'} ? 'checked' : '',
266 -value => 1,
267 -label => ''
269 $row_data{row} = $i;
270 $row_data{link} = CGI::escapeHTML( $data->{'link'} );
271 push( @loop_data, \%row_data );
272 $i++;
275 # add more_subfields empty lines for add if needed
276 my %row_data; # get a fresh hash for the row data
277 $row_data{'new_subfield'} = 1;
278 $row_data{'subfieldcode'} = '';
279 $row_data{'maxlength'} = 9999;
281 $row_data{tab} = CGI::scrolling_list(
282 -name => 'tab',
283 -id => "tab$i",
284 -values =>
285 [ '-1', '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', '10' ],
286 -labels => {
287 '-1' => 'ignore',
288 '0' => '0',
289 '1' => '1',
290 '2' => '2',
291 '3' => '3',
292 '4' => '4',
293 '5' => '5',
294 '6' => '6',
295 '7' => '7',
296 '8' => '8',
297 '9' => '9',
298 '10' => 'items (10)',
300 -default => "",
301 -size => 1,
302 -multiple => 0,
304 $row_data{tagsubfield} =
305 "<input type=\"text\" name=\"tagsubfield\" value=\""
306 . $data->{'tagsubfield'}
307 . "\" size=\"1\" id=\"tagsubfield\" maxlength=\"1\" />";
308 $row_data{liblibrarian} = "";
309 $row_data{libopac} = "";
310 $row_data{seealso} = "";
311 $row_data{kohafield} = CGI::scrolling_list(
312 -name => 'kohafield',
313 -id => "kohafield$i",
314 -values => \@kohafields,
315 -default => "",
316 -size => 1,
317 -multiple => 0,
319 $row_data{hidden} = "";
320 $row_data{repeatable} = CGI::checkbox(
321 -name => "repeatable$i",
322 -id => "repeatable$i",
323 -checked => '',
324 -value => 1,
325 -label => ''
327 $row_data{mandatory} = CGI::checkbox(
328 -name => "mandatory$i",
329 -id => "mandatory$i",
330 -checked => '',
331 -value => 1,
332 -label => ''
334 $row_data{isurl} = CGI::checkbox(
335 -name => "isurl$i",
336 -id => "isurl$i",
337 -checked => '',
338 -value => 1,
339 -label => ''
341 $row_data{value_builder} = CGI::scrolling_list(
342 -name => "value_builder",
343 -id => "value_builder$i",
344 -values => \@value_builder,
345 -default => $data->{'value_builder'},
346 -size => 1,
347 -multiple => 0,
349 $row_data{authorised_value} = CGI::scrolling_list(
350 -name => "authorised_value",
351 -id => "authorised_value$i",
352 -values => \@authorised_values,
353 -size => 1,
354 -multiple => 0,
356 $row_data{authtypes} = CGI::scrolling_list(
357 -name => "authtypecode",
358 -id => "authtypecode$i",
359 -values => \@authtypes,
360 -size => 1,
361 -multiple => 0,
363 $row_data{link} = CGI::escapeHTML( $data->{'link'} );
364 $row_data{row} = $i;
365 push( @loop_data, \%row_data );
367 $template->param( 'use_heading_flags_p' => 1 );
368 $template->param( 'heading_edit_subfields_p' => 1 );
369 $template->param(
370 action => "Edit subfields",
371 tagfield => $tagfield,
372 loop => \@loop_data,
373 more_subfields => $more_subfields,
374 more_tag => $tagfield
377 # END $OP eq ADD_FORM
378 ################## ADD_VALIDATE ##################################
379 # called by add_form, used to insert/modify data in DB
381 elsif ( $op eq 'add_validate' ) {
382 my $dbh = C4::Context->dbh;
383 $template->param( tagfield => "$input->param('tagfield')" );
384 # my $sth = $dbh->prepare(
385 # "replace marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,seealso,authorised_value,authtypecode,value_builder,hidden,isurl,frameworkcode, link,defaultvalue)
386 # values (?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?)"
387 # );
388 my $sth_insert = $dbh->prepare(qq{
389 insert into marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,seealso,authorised_value,authtypecode,value_builder,hidden,isurl,frameworkcode, link,defaultvalue,maxlength)
390 values (?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?)
392 my $sth_update = $dbh->prepare(qq{
393 update marc_subfield_structure set tagfield=?, tagsubfield=?, liblibrarian=?, libopac=?, repeatable=?, mandatory=?, kohafield=?, tab=?, seealso=?, authorised_value=?, authtypecode=?, value_builder=?, hidden=?, isurl=?, frameworkcode=?, link=?, defaultvalue=?, maxlength=?
394 where tagfield=? and tagsubfield=? and frameworkcode=?
396 my @tagsubfield = $input->param('tagsubfield');
397 my @liblibrarian = $input->param('liblibrarian');
398 my @libopac = $input->param('libopac');
399 my @kohafield = $input->param('kohafield');
400 my @tab = $input->param('tab');
401 my @seealso = $input->param('seealso');
402 my @hidden = $input->param('hidden');
403 my @authorised_values = $input->param('authorised_value');
404 my @authtypecodes = $input->param('authtypecode');
405 my @value_builder = $input->param('value_builder');
406 my @link = $input->param('link');
407 my @defaultvalue = $input->param('defaultvalue');
408 my @maxlength = $input->param('maxlength');
410 for ( my $i = 0 ; $i <= $#tagsubfield ; $i++ ) {
411 my $tagfield = $input->param('tagfield');
412 my $tagsubfield = $tagsubfield[$i];
413 $tagsubfield = "@" unless $tagsubfield ne '';
414 $tagsubfield = "@" if $tagsubfield eq '_';
415 my $liblibrarian = $liblibrarian[$i];
416 my $libopac = $libopac[$i];
417 my $repeatable = $input->param("repeatable$i") ? 1 : 0;
418 my $mandatory = $input->param("mandatory$i") ? 1 : 0;
419 my $kohafield = $kohafield[$i];
420 my $tab = $tab[$i];
421 my $seealso = $seealso[$i];
422 my $authorised_value = $authorised_values[$i];
423 my $authtypecode = $authtypecodes[$i];
424 my $value_builder = $value_builder[$i];
425 my $hidden = $hidden[$i]; #input->param("hidden$i");
426 my $isurl = $input->param("isurl$i") ? 1 : 0;
427 my $link = $link[$i];
428 my $defaultvalue = $defaultvalue[$i];
429 my $maxlength = $maxlength[$i] ? $maxlength[$i] : 9999;
431 if (defined($liblibrarian) && $liblibrarian ne "") {
432 unless ( C4::Context->config('demo') eq 1 ) {
433 if (marc_subfield_structure_exists($tagfield, $tagsubfield, $frameworkcode)) {
434 $sth_update->execute(
435 $tagfield,
436 $tagsubfield,
437 $liblibrarian,
438 $libopac,
439 $repeatable,
440 $mandatory,
441 $kohafield,
442 $tab,
443 $seealso,
444 $authorised_value,
445 $authtypecode,
446 $value_builder,
447 $hidden,
448 $isurl,
449 $frameworkcode,
450 $link,
451 $defaultvalue,
452 $maxlength,
454 $tagfield,
455 $tagsubfield,
456 $frameworkcode,
459 } else {
460 $sth_insert->execute(
461 $tagfield,
462 $tagsubfield,
463 $liblibrarian,
464 $libopac,
465 $repeatable,
466 $mandatory,
467 $kohafield,
468 $tab,
469 $seealso,
470 $authorised_value,
471 $authtypecode,
472 $value_builder,
473 $hidden,
474 $isurl,
475 $frameworkcode,
476 $link,
477 $defaultvalue,
478 $maxlength,
484 $sth_insert->finish;
485 $sth_update->finish;
486 print
487 "Content-Type: text/html\n\n<META HTTP-EQUIV=Refresh CONTENT=\"0; URL=marc_subfields_structure.pl?tagfield=$tagfield&frameworkcode=$frameworkcode\"></html>";
488 exit;
490 # END $OP eq ADD_VALIDATE
491 ################## DELETE_CONFIRM ##################################
492 # called by default form, used to confirm deletion of data in DB
494 elsif ( $op eq 'delete_confirm' ) {
495 my $dbh = C4::Context->dbh;
496 my $sth =
497 $dbh->prepare(
498 "select * from marc_subfield_structure where tagfield=? and tagsubfield=? and frameworkcode=?"
501 $sth->execute( $tagfield, $tagsubfield, $frameworkcode );
502 my $data = $sth->fetchrow_hashref;
503 $sth->finish;
504 $template->param(
505 liblibrarian => $data->{'liblibrarian'},
506 tagsubfield => $data->{'tagsubfield'},
507 delete_link => $script_name,
508 tagfield => $tagfield,
509 tagsubfield => $tagsubfield,
510 frameworkcode => $frameworkcode,
513 # END $OP eq DELETE_CONFIRM
514 ################## DELETE_CONFIRMED ##################################
515 # called by delete_confirm, used to effectively confirm deletion of data in DB
517 elsif ( $op eq 'delete_confirmed' ) {
518 my $dbh = C4::Context->dbh;
519 unless ( C4::Context->config('demo') eq 1 ) {
520 my $sth =
521 $dbh->prepare(
522 "delete from marc_subfield_structure where tagfield=? and tagsubfield=? and frameworkcode=?"
524 $sth->execute( $tagfield, $tagsubfield, $frameworkcode );
525 $sth->finish;
527 print
528 "Content-Type: text/html\n\n<META HTTP-EQUIV=Refresh CONTENT=\"0; URL=marc_subfields_structure.pl?tagfield=$tagfield&frameworkcode=$frameworkcode\"></html>";
529 exit;
530 $template->param( tagfield => $tagfield );
532 # END $OP eq DELETE_CONFIRMED
533 ################## DEFAULT ##################################
535 else { # DEFAULT
536 my ( $count, $results ) = string_search( $tagfield, $frameworkcode );
537 my @loop_data = ();
538 for ( my $i = 0; $i < $count; $i++ ) {
539 my %row_data; # get a fresh hash for the row data
540 $row_data{tagfield} = $results->[$i]{'tagfield'};
541 $row_data{tagsubfield} = $results->[$i]{'tagsubfield'};
542 $row_data{liblibrarian} = $results->[$i]{'liblibrarian'};
543 $row_data{kohafield} = $results->[$i]{'kohafield'};
544 $row_data{repeatable} = $results->[$i]{'repeatable'};
545 $row_data{mandatory} = $results->[$i]{'mandatory'};
546 $row_data{tab} = $results->[$i]{'tab'};
547 $row_data{seealso} = $results->[$i]{'seealso'};
548 $row_data{authorised_value} = $results->[$i]{'authorised_value'};
549 $row_data{authtypecode} = $results->[$i]{'authtypecode'};
550 $row_data{value_builder} = $results->[$i]{'value_builder'};
551 $row_data{hidden} = $results->[$i]{'hidden'};
552 $row_data{isurl} = $results->[$i]{'isurl'};
553 $row_data{link} = $results->[$i]{'link'};
555 if ( $row_data{tab} eq -1 ) {
556 $row_data{subfield_ignored} = 1;
559 push( @loop_data, \%row_data );
561 $template->param( loop => \@loop_data );
562 $template->param(
563 edit_tagfield => $tagfield,
564 edit_frameworkcode => $frameworkcode
567 } #---- END $OP eq DEFAULT
569 output_html_with_http_headers $input, $cookie, $template->output;