fixes from A. Tarallo, for mod_perl compliance
[koha_ffzg] / admin / marc_subfields_structure.pl
1 #!/usr/bin/perl
2
3
4 # Copyright 2000-2002 Katipo Communications
5 #
6 # This file is part of Koha.
7 #
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.
12 #
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.
16 #
17 # You should have received a copy of the GNU General Public License along with
18 # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
19 # Suite 330, Boston, MA  02111-1307 USA
20
21 use strict;
22 use C4::Output;
23 use C4::Interface::CGI::Output;
24 use C4::Auth;
25 use CGI;
26 use C4::Search;
27 use C4::Context;
28 use HTML::Template;
29
30 sub StringSearch  {
31         my ($env,$searchstring,$frameworkcode)=@_;
32         my $dbh = C4::Context->dbh;
33         $searchstring=~ s/\'/\\\'/g;
34         my @data=split(' ',$searchstring);
35         my $count=@data;
36         my $sth=$dbh->prepare("Select * from marc_subfield_structure where (tagfield like ? and frameworkcode=?) order by tagfield");
37         $sth->execute("$searchstring%",$frameworkcode);
38         my @results;
39         my $cnt=0;
40         my $u=1;
41         while (my $data=$sth->fetchrow_hashref){
42                 push(@results,$data);
43                 $cnt ++;
44                 $u++;
45         }
46         $sth->finish;
47         $dbh->disconnect;
48         return ($cnt,\@results);
49 }
50
51 my $input = new CGI;
52 my $tagfield=$input->param('tagfield');
53 my $tagsubfield=$input->param('tagsubfield');
54 my $frameworkcode=$input->param('frameworkcode');
55 my $pkfield="tagfield";
56 my $offset=$input->param('offset');
57 my $script_name="/cgi-bin/koha/admin/marc_subfields_structure.pl";
58
59 my ($template, $borrowernumber, $cookie)
60     = get_template_and_user({template_name => "parameters/marc_subfields_structure.tmpl",
61                              query => $input,
62                              type => "intranet",
63                              authnotrequired => 0,
64                              flagsrequired => {parameters => 1},
65                              debug => 1,
66                              });
67 my $pagesize=30;
68 my $op = $input->param('op');
69 $tagfield=~ s/\,//g;
70
71 if ($op) {
72 $template->param(script_name => $script_name,
73                                                 tagfield =>$tagfield,
74                                                 frameworkcode => $frameworkcode,
75                                                 $op              => 1); # we show only the TMPL_VAR names $op
76 } else {
77 $template->param(script_name => $script_name,
78                                                 tagfield =>$tagfield,
79                                                 frameworkcode => $frameworkcode,
80                                                 else              => 1); # we show only the TMPL_VAR names $op
81 }
82
83 ################## ADD_FORM ##################################
84 # called by default. Used to create form to add or  modify a record
85 if ($op eq 'add_form') {
86         my $data;
87         my $dbh = C4::Context->dbh;
88         my $more_subfields = $input->param("more_subfields")+1;
89         # builds kohafield tables
90         my @kohafields;
91         push @kohafields, "";
92         my $sth2=$dbh->prepare("SHOW COLUMNS from biblio");
93         $sth2->execute;
94         while ((my $field) = $sth2->fetchrow_array) {
95                 push @kohafields, "biblio.".$field;
96         }
97         my $sth2=$dbh->prepare("SHOW COLUMNS from biblioitems");
98         $sth2->execute;
99         while ((my $field) = $sth2->fetchrow_array) {
100                 if ($field eq 'notes') { $field = 'bnotes'; }
101                 push @kohafields, "biblioitems.".$field;
102         }
103         my $sth2=$dbh->prepare("SHOW COLUMNS from items");
104         $sth2->execute;
105         while ((my $field) = $sth2->fetchrow_array) {
106                 push @kohafields, "items.".$field;
107         }
108         
109         # other subfields
110         push @kohafields, "additionalauthors.author";
111         push @kohafields, "bibliosubject.subject";
112         push @kohafields, "bibliosubtitle.title";
113         # build authorised value list
114         $sth2->finish;
115         $sth2 = $dbh->prepare("select distinct category from authorised_values");
116         $sth2->execute;
117         my @authorised_values;
118         push @authorised_values,"";
119         while ((my $category) = $sth2->fetchrow_array) {
120                 push @authorised_values, $category;
121         }
122         push (@authorised_values,"branches");
123         push (@authorised_values,"itemtypes");
124         # build thesaurus categories list
125         $sth2->finish;
126         $sth2 = $dbh->prepare("select authtypecode from auth_types");
127         $sth2->execute;
128         my @authtypes;
129         push @authtypes,"";
130         while ((my $authtypecode) = $sth2->fetchrow_array) {
131                 push @authtypes, $authtypecode;
132         }
133         # build value_builder list
134         my @value_builder=('');
135
136         my $cgidir = C4::Context->intranetdir . "/cgi-bin";
137         opendir(DIR, "$cgidir/value_builder") || die "can't opendir $cgidir/value_builder: $!";
138         while (my $line = readdir(DIR)) {
139                 if ($line =~ /\.pl$/) {
140                         push (@value_builder,$line);
141                 }
142         }
143         closedir DIR;
144
145         # build values list
146         my $sth=$dbh->prepare("select * from marc_subfield_structure where tagfield=? and frameworkcode=?"); # and tagsubfield='$tagsubfield'");
147         $sth->execute($tagfield,$frameworkcode);
148         my @loop_data = ();
149         my $toggle="white";
150         my $i=0;
151         while ($data =$sth->fetchrow_hashref) {
152                 my %row_data;  # get a fresh hash for the row data
153                 if ($toggle eq 'white'){
154                         $toggle="#ffffcc";
155                 } else {
156                         $toggle="white";
157                 }
158                 $row_data{tab} = CGI::scrolling_list(-name=>'tab',
159                                         -values=>['-1','0','1','2','3','4','5','6','7','8','9','10'],
160                                         -labels => {'-1' =>'ignore','0'=>'0','1'=>'1',
161                                                                         '2' =>'2','3'=>'3','4'=>'4',
162                                                                         '5' =>'5','6'=>'6','7'=>'7',
163                                                                         '8' =>'8','9'=>'9','10'=>'items (10)',
164                                                                         },
165                                         -default=>$data->{'tab'},
166                                         -size=>1,
167                                         -multiple=>0,
168                                         );
169                 $row_data{tagsubfield} =$data->{'tagsubfield'}."<input type='hidden' name='tagsubfield' value='".$data->{'tagsubfield'}."'>";
170                 $row_data{liblibrarian} = CGI::escapeHTML($data->{'liblibrarian'});
171                 $row_data{libopac} = CGI::escapeHTML($data->{'libopac'});
172                 $row_data{seealso} = CGI::escapeHTML($data->{'seealso'});
173                 $row_data{kohafield}= CGI::scrolling_list( -name=>"kohafield",
174                                         -values=> \@kohafields,
175                                         -default=> "$data->{'kohafield'}",
176                                         -size=>1,
177                                         -multiple=>0,
178                                         );
179                 $row_data{authorised_value}  = CGI::scrolling_list(-name=>'authorised_value',
180                                         -values=> \@authorised_values,
181                                         -default=>$data->{'authorised_value'},
182                                         -size=>1,
183                                         -multiple=>0,
184                                         );
185                 $row_data{value_builder}  = CGI::scrolling_list(-name=>'value_builder',
186                                         -values=> \@value_builder,
187                                         -default=>$data->{'value_builder'},
188                                         -size=>1,
189                                         -multiple=>0,
190                                         );
191                 $row_data{authtypes}  = CGI::scrolling_list(-name=>'authtypecode',
192                                         -values=> \@authtypes,
193                                         -default=>$data->{'authtypecode'},
194                                         -size=>1,
195                                         -multiple=>0,
196                                         );
197                 $row_data{repeatable} = CGI::checkbox("repeatable$i",$data->{'repeatable'}?'checked':'',1,'');
198                 $row_data{mandatory} = CGI::checkbox("mandatory$i",$data->{'mandatory'}?'checked':'',1,'');
199                 $row_data{hidden} = CGI::checkbox("hidden$i",$data->{'hidden'}?'checked':'',1,'');
200                 $row_data{isurl} = CGI::checkbox("isurl$i",$data->{'isurl'}?'checked':'',1,'');
201                 $row_data{bgcolor} = $toggle;
202                 $row_data{link} = CGI::escapeHTML($data->{'link'});
203                 push(@loop_data, \%row_data);
204                 $i++;
205         }
206         # add more_subfields empty lines for add if needed
207         for (my $i=1;$i<=$more_subfields;$i++) {
208                 my %row_data;  # get a fresh hash for the row data
209                 $row_data{tab} = CGI::scrolling_list(-name=>'tab',
210                                         -values=>['-1','0','1','2','3','4','5','6','7','8','9','10'],
211                                         -labels => {'-1' =>'ignore','0'=>'0','1'=>'1',
212                                                                         '2' =>'2','3'=>'3','4'=>'4',
213                                                                         '5' =>'5','6'=>'6','7'=>'7',
214                                                                         '8' =>'8','9'=>'9','10'=>'items (10)',
215                                                                         },
216                                         -default=>"",
217                                         -size=>1,
218                                         -multiple=>0,
219                                         );
220                 $row_data{tagsubfield} = "<input type=\"text\" name=\"tagsubfield\" value=\"".$data->{'tagsubfield'}."\" size=\"3\" maxlength=\"1\">";
221                 $row_data{liblibrarian} = "";
222                 $row_data{libopac} = "";
223                 $row_data{seealso} = "";
224                 $row_data{repeatable} = CGI::checkbox('repeatable','',1,'');
225                 $row_data{mandatory} = CGI::checkbox('mandatory','',1,'');
226                 $row_data{hidden} = CGI::checkbox('hidden','',1,'');
227                 $row_data{isurl} = CGI::checkbox('isurl','',1,'');
228                 $row_data{kohafield}= CGI::scrolling_list( -name=>'kohafield',
229                                         -values=> \@kohafields,
230                                         -default=> "",
231                                         -size=>1,
232                                         -multiple=>0,
233                                         );
234                 $row_data{authorised_value}  = CGI::scrolling_list(-name=>'authorised_value',
235                                         -values=> \@authorised_values,
236                                         -size=>1,
237                                         -multiple=>0,
238                                         );
239                 $row_data{authtypes}  = CGI::scrolling_list(-name=>'authtypecode',
240                                         -values=> \@authtypes,
241                                         -size=>1,
242                                         -multiple=>0,
243                                         );
244                 $row_data{link} = CGI::escapeHTML($data->{'link'});
245                 $row_data{bgcolor} = $toggle;
246                 push(@loop_data, \%row_data);
247         }
248         $template->param('use-heading-flags-p' => 1);
249         $template->param('heading-edit-subfields-p' => 1);
250         $template->param(action => "Edit subfields",
251                                                         tagfield => "<input type=\"hidden\" name=\"tagfield\" value=\"$tagfield\">$tagfield",
252                                                         loop => \@loop_data,
253                                                         more_subfields => $more_subfields,
254                                                         more_tag => $tagfield);
255
256                                                                                                 # END $OP eq ADD_FORM
257 ################## ADD_VALIDATE ##################################
258 # called by add_form, used to insert/modify data in DB
259 } elsif ($op eq 'add_validate') {
260         my $dbh = C4::Context->dbh;
261         $template->param(tagfield => "$input->param('tagfield')");
262         my $sth=$dbh->prepare("replace marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,seealso,authorised_value,authtypecode,value_builder,hidden,isurl,frameworkcode, link)
263                                                                         values (?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?)");
264         my @tagsubfield = $input->param('tagsubfield');
265         my @liblibrarian        = $input->param('liblibrarian');
266         my @libopac             = $input->param('libopac');
267         my @kohafield           = $input->param('kohafield');
268         my @tab                         = $input->param('tab');
269         my @seealso             = $input->param('seealso');
270         my @authorised_values   = $input->param('authorised_value');
271         my @authtypecodes       = $input->param('authtypecode');
272         my @value_builder       =$input->param('value_builder');
273         my @link                =$input->param('link');
274         for (my $i=0; $i<= $#tagsubfield ; $i++) {
275                 my $tagfield                    =$input->param('tagfield');
276                 my $tagsubfield         =$tagsubfield[$i];
277                 $tagsubfield="@" unless $tagsubfield;
278                 my $liblibrarian                =$liblibrarian[$i];
279                 my $libopac                     =$libopac[$i];
280                 my $repeatable          =$input->param("repeatable$i")?1:0;
281                 my $mandatory           =$input->param("mandatory$i")?1:0;
282                 my $kohafield           =$kohafield[$i];
283                 my $tab                         =$tab[$i];
284                 my $seealso                             =$seealso[$i];
285                 my $authorised_value            =$authorised_values[$i];
286                 my $authtypecode                =$authtypecodes[$i];
287                 my $value_builder=$value_builder[$i];
288                 my $hidden = $input->param("hidden$i")?1:0;
289                 my $isurl = $input->param("isurl$i")?1:0;
290                 my $link = $link[$i];
291                 if ($liblibrarian) {
292                         unless (C4::Context->config('demo') eq 1) {
293                                 $sth->execute ($tagfield,
294                                                                         $tagsubfield,
295                                                                         $liblibrarian,
296                                                                         $libopac,
297                                                                         $repeatable,
298                                                                         $mandatory,
299                                                                         $kohafield,
300                                                                         $tab,
301                                                                         $seealso,
302                                                                         $authorised_value,
303                                                                         $authtypecode,
304                                                                         $value_builder,
305                                                                         $hidden,
306                                                                         $isurl,
307                                                                         $frameworkcode,
308
309          $link,
310                                               );
311                         }
312                 }
313         }
314         $sth->finish;
315         print "Content-Type: text/html\n\n<META HTTP-EQUIV=Refresh CONTENT=\"0; URL=marc_subfields_structure.pl?tagfield=$tagfield&frameworkcode=$frameworkcode\"></html>";
316         exit;
317
318                                                                                                         # END $OP eq ADD_VALIDATE
319 ################## DELETE_CONFIRM ##################################
320 # called by default form, used to confirm deletion of data in DB
321 } elsif ($op eq 'delete_confirm') {
322         my $dbh = C4::Context->dbh;
323         my $sth=$dbh->prepare("select * from marc_subfield_structure where tagfield=? and tagsubfield=? and frameworkcode=?");
324         #FIXME : called with 2 bind variables when 3 are needed
325         $sth->execute($tagfield,$tagsubfield);
326         my $data=$sth->fetchrow_hashref;
327         $sth->finish;
328         $template->param(liblibrarian => $data->{'liblibrarian'},
329                                                         tagsubfield => $data->{'tagsubfield'},
330                                                         delete_link => $script_name,
331                                                         tagfield      =>$tagfield,
332                                                         tagsubfield => $tagsubfield,
333                                                         frameworkcode => $frameworkcode,
334                                                         );
335                                                                                                         # END $OP eq DELETE_CONFIRM
336 ################## DELETE_CONFIRMED ##################################
337 # called by delete_confirm, used to effectively confirm deletion of data in DB
338 } elsif ($op eq 'delete_confirmed') {
339         my $dbh = C4::Context->dbh;
340         unless (C4::Context->config('demo') eq 1) {
341                 my $sth=$dbh->prepare("delete from marc_subfield_structure where tagfield=? and tagsubfield=? and frameworkcode=?");
342                 $sth->execute($tagfield,$tagsubfield,$frameworkcode);
343                 $sth->finish;
344         }
345         print "Content-Type: text/html\n\n<META HTTP-EQUIV=Refresh CONTENT=\"0; URL=marc_subfields_structure.pl?tagfield=$tagfield&frameworkcode=$frameworkcode\"></html>";
346         exit;
347         $template->param(tagfield => $tagfield);
348                                                                                                         # END $OP eq DELETE_CONFIRMED
349 ################## DEFAULT ##################################
350 } else { # DEFAULT
351         my $env;
352         my ($count,$results)=StringSearch($env,$tagfield,$frameworkcode);
353         my $toggle="white";
354         my @loop_data = ();
355         for (my $i=$offset; $i < ($offset+$pagesize<$count?$offset+$pagesize:$count); $i++){
356                 if ($toggle eq 'white'){
357                         $toggle="#ffffcc";
358                 } else {
359                         $toggle="white";
360                 }
361                 my %row_data;  # get a fresh hash for the row data
362                 $row_data{tagfield} = $results->[$i]{'tagfield'};
363                 $row_data{tagsubfield} = $results->[$i]{'tagsubfield'};
364                 $row_data{liblibrarian} = $results->[$i]{'liblibrarian'};
365                 $row_data{kohafield} = $results->[$i]{'kohafield'};
366                 $row_data{repeatable} = $results->[$i]{'repeatable'};
367                 $row_data{mandatory} = $results->[$i]{'mandatory'};
368                 $row_data{tab} = $results->[$i]{'tab'};
369                 $row_data{seealso} = $results->[$i]{'seealso'};
370                 $row_data{authorised_value} = $results->[$i]{'authorised_value'};
371                 $row_data{authtypecode} = $results->[$i]{'authtypecode'};
372                 $row_data{value_builder}        = $results->[$i]{'value_builder'};
373                 $row_data{hidden}       = $results->[$i]{'hidden'};
374                 $row_data{isurl}        = $results->[$i]{'isurl'};
375                 $row_data{delete} = "$script_name?op=delete_confirm&amp;tagfield=$tagfield&amp;tagsubfield=".$results->[$i]{'tagsubfield'}."&frameworkcode=$frameworkcode";
376                 $row_data{bgcolor} = $toggle;
377                 if ($row_data{tab} eq -1) {
378                         $row_data{subfield_ignored} = 1;
379                 }
380
381                 push(@loop_data, \%row_data);
382         }
383         $template->param(loop => \@loop_data);
384         $template->param(edit => "<a href=\"$script_name?op=add_form&amp;tagfield=$tagfield&frameworkcode=$frameworkcode\">");
385         if ($offset>0) {
386                 my $prevpage = $offset-$pagesize;
387                 $template->param(prev =>"<a href=\"$script_name?offset=$prevpage\">");
388         }
389         if ($offset+$pagesize<$count) {
390                 my $nextpage =$offset+$pagesize;
391                 $template->param(next => "<a href=\"$script_name?offset=$nextpage\">");
392         }
393 } #---- END $OP eq DEFAULT
394
395 output_html_with_http_headers $input, $cookie, $template->output;