Adding branchname to output for deletion confirmation screen (Bug 552)
[koha.git] / 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         opendir(DIR, "../value_builder") || die "can't opendir ../value_builder: $!";
136         while (my $line = readdir(DIR)) {
137                 if ($line =~ /\.pl$/) {
138                         push (@value_builder,$line);
139                 }
140         }
141         closedir DIR;
142
143         # build values list
144         my $sth=$dbh->prepare("select * from marc_subfield_structure where tagfield=? and frameworkcode=?"); # and tagsubfield='$tagsubfield'");
145         $sth->execute($tagfield,$frameworkcode);
146         my @loop_data = ();
147         my $toggle="white";
148         my $i=0;
149         while ($data =$sth->fetchrow_hashref) {
150                 my %row_data;  # get a fresh hash for the row data
151                 if ($toggle eq 'white'){
152                         $toggle="#ffffcc";
153                 } else {
154                         $toggle="white";
155                 }
156                 $row_data{tab} = CGI::scrolling_list(-name=>'tab',
157                                         -values=>['-1','0','1','2','3','4','5','6','7','8','9','10'],
158                                         -labels => {'-1' =>'ignore','0'=>'0','1'=>'1',
159                                                                         '2' =>'2','3'=>'3','4'=>'4',
160                                                                         '5' =>'5','6'=>'6','7'=>'7',
161                                                                         '8' =>'8','9'=>'9','10'=>'items (10)',
162                                                                         },
163                                         -default=>$data->{'tab'},
164                                         -size=>1,
165                                         -multiple=>0,
166                                         );
167                 $row_data{tagsubfield} =$data->{'tagsubfield'}."<input type='hidden' name='tagsubfield' value='".$data->{'tagsubfield'}."'>";
168                 $row_data{liblibrarian} = CGI::escapeHTML($data->{'liblibrarian'});
169                 $row_data{libopac} = CGI::escapeHTML($data->{'libopac'});
170                 $row_data{seealso} = CGI::escapeHTML($data->{'seealso'});
171                 $row_data{kohafield}= CGI::scrolling_list( -name=>"kohafield",
172                                         -values=> \@kohafields,
173                                         -default=> "$data->{'kohafield'}",
174                                         -size=>1,
175                                         -multiple=>0,
176                                         );
177                 $row_data{authorised_value}  = CGI::scrolling_list(-name=>'authorised_value',
178                                         -values=> \@authorised_values,
179                                         -default=>$data->{'authorised_value'},
180                                         -size=>1,
181                                         -multiple=>0,
182                                         );
183                 $row_data{value_builder}  = CGI::scrolling_list(-name=>'value_builder',
184                                         -values=> \@value_builder,
185                                         -default=>$data->{'value_builder'},
186                                         -size=>1,
187                                         -multiple=>0,
188                                         );
189                 $row_data{authtypes}  = CGI::scrolling_list(-name=>'authtypecode',
190                                         -values=> \@authtypes,
191                                         -default=>$data->{'authtypecode'},
192                                         -size=>1,
193                                         -multiple=>0,
194                                         );
195                 $row_data{repeatable} = CGI::checkbox("repeatable$i",$data->{'repeatable'}?'checked':'',1,'');
196                 $row_data{mandatory} = CGI::checkbox("mandatory$i",$data->{'mandatory'}?'checked':'',1,'');
197                 $row_data{hidden} = CGI::checkbox("hidden$i",$data->{'hidden'}?'checked':'',1,'');
198                 $row_data{isurl} = CGI::checkbox("isurl$i",$data->{'isurl'}?'checked':'',1,'');
199                 $row_data{bgcolor} = $toggle;
200                 $row_data{link} = CGI::escapeHTML($data->{'link'});
201                 push(@loop_data, \%row_data);
202                 $i++;
203         }
204         # add more_subfields empty lines for add if needed
205         for (my $i=1;$i<=$more_subfields;$i++) {
206                 my %row_data;  # get a fresh hash for the row data
207                 $row_data{tab} = CGI::scrolling_list(-name=>'tab',
208                                         -values=>['-1','0','1','2','3','4','5','6','7','8','9','10'],
209                                         -labels => {'-1' =>'ignore','0'=>'0','1'=>'1',
210                                                                         '2' =>'2','3'=>'3','4'=>'4',
211                                                                         '5' =>'5','6'=>'6','7'=>'7',
212                                                                         '8' =>'8','9'=>'9','10'=>'items (10)',
213                                                                         },
214                                         -default=>"",
215                                         -size=>1,
216                                         -multiple=>0,
217                                         );
218                 $row_data{tagsubfield} = "<input type=\"text\" name=\"tagsubfield\" value=\"".$data->{'tagsubfield'}."\" size=\"3\" maxlength=\"1\">";
219                 $row_data{liblibrarian} = "";
220                 $row_data{libopac} = "";
221                 $row_data{seealso} = "";
222                 $row_data{repeatable} = CGI::checkbox('repeatable','',1,'');
223                 $row_data{mandatory} = CGI::checkbox('mandatory','',1,'');
224                 $row_data{hidden} = CGI::checkbox('hidden','',1,'');
225                 $row_data{isurl} = CGI::checkbox('isurl','',1,'');
226                 $row_data{kohafield}= CGI::scrolling_list( -name=>'kohafield',
227                                         -values=> \@kohafields,
228                                         -default=> "",
229                                         -size=>1,
230                                         -multiple=>0,
231                                         );
232                 $row_data{authorised_value}  = CGI::scrolling_list(-name=>'authorised_value',
233                                         -values=> \@authorised_values,
234                                         -size=>1,
235                                         -multiple=>0,
236                                         );
237                 $row_data{authtypes}  = CGI::scrolling_list(-name=>'authtypecode',
238                                         -values=> \@authtypes,
239                                         -size=>1,
240                                         -multiple=>0,
241                                         );
242                 $row_data{link} = CGI::escapeHTML($data->{'link'});
243                 $row_data{bgcolor} = $toggle;
244                 push(@loop_data, \%row_data);
245         }
246         $template->param('use-heading-flags-p' => 1);
247         $template->param('heading-edit-subfields-p' => 1);
248         $template->param(action => "Edit subfields",
249                                                         tagfield => "<input type=\"hidden\" name=\"tagfield\" value=\"$tagfield\">$tagfield",
250                                                         loop => \@loop_data,
251                                                         more_subfields => $more_subfields,
252                                                         more_tag => $tagfield);
253
254                                                                                                 # END $OP eq ADD_FORM
255 ################## ADD_VALIDATE ##################################
256 # called by add_form, used to insert/modify data in DB
257 } elsif ($op eq 'add_validate') {
258         my $dbh = C4::Context->dbh;
259         $template->param(tagfield => "$input->param('tagfield')");
260         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)
261                                                                         values (?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?)");
262         my @tagsubfield = $input->param('tagsubfield');
263         my @liblibrarian        = $input->param('liblibrarian');
264         my @libopac             = $input->param('libopac');
265         my @kohafield           = $input->param('kohafield');
266         my @tab                         = $input->param('tab');
267         my @seealso             = $input->param('seealso');
268         my @authorised_values   = $input->param('authorised_value');
269         my @authtypecodes       = $input->param('authtypecode');
270         my @value_builder       =$input->param('value_builder');
271         my @link                =$input->param('link');
272         for (my $i=0; $i<= $#tagsubfield ; $i++) {
273                 my $tagfield                    =$input->param('tagfield');
274                 my $tagsubfield         =$tagsubfield[$i];
275                 $tagsubfield="@" unless $tagsubfield;
276                 my $liblibrarian                =$liblibrarian[$i];
277                 my $libopac                     =$libopac[$i];
278                 my $repeatable          =$input->param("repeatable$i")?1:0;
279                 my $mandatory           =$input->param("mandatory$i")?1:0;
280                 my $kohafield           =$kohafield[$i];
281                 my $tab                         =$tab[$i];
282                 my $seealso                             =$seealso[$i];
283                 my $authorised_value            =$authorised_values[$i];
284                 my $authtypecode                =$authtypecodes[$i];
285                 my $value_builder=$value_builder[$i];
286                 my $hidden = $input->param("hidden$i")?1:0;
287                 my $isurl = $input->param("isurl$i")?1:0;
288                 my $link = $link[$i];
289                 if ($liblibrarian) {
290                         unless (C4::Context->config('demo') eq 1) {
291                                 $sth->execute ($tagfield,
292                                                                         $tagsubfield,
293                                                                         $liblibrarian,
294                                                                         $libopac,
295                                                                         $repeatable,
296                                                                         $mandatory,
297                                                                         $kohafield,
298                                                                         $tab,
299                                                                         $seealso,
300                                                                         $authorised_value,
301                                                                         $authtypecode,
302                                                                         $value_builder,
303                                                                         $hidden,
304                                                                         $isurl,
305                                                                         $frameworkcode,
306
307          $link,
308                                               );
309                         }
310                 }
311         }
312         $sth->finish;
313         print "Content-Type: text/html\n\n<META HTTP-EQUIV=Refresh CONTENT=\"0; URL=marc_subfields_structure.pl?tagfield=$tagfield&frameworkcode=$frameworkcode\"></html>";
314         exit;
315
316                                                                                                         # END $OP eq ADD_VALIDATE
317 ################## DELETE_CONFIRM ##################################
318 # called by default form, used to confirm deletion of data in DB
319 } elsif ($op eq 'delete_confirm') {
320         my $dbh = C4::Context->dbh;
321         my $sth=$dbh->prepare("select * from marc_subfield_structure where tagfield=? and tagsubfield=? and frameworkcode=?");
322         #FIXME : called with 2 bind variables when 3 are needed
323         $sth->execute($tagfield,$tagsubfield);
324         my $data=$sth->fetchrow_hashref;
325         $sth->finish;
326         $template->param(liblibrarian => $data->{'liblibrarian'},
327                                                         tagsubfield => $data->{'tagsubfield'},
328                                                         delete_link => $script_name,
329                                                         tagfield      =>$tagfield,
330                                                         tagsubfield => $tagsubfield,
331                                                         frameworkcode => $frameworkcode,
332                                                         );
333                                                                                                         # END $OP eq DELETE_CONFIRM
334 ################## DELETE_CONFIRMED ##################################
335 # called by delete_confirm, used to effectively confirm deletion of data in DB
336 } elsif ($op eq 'delete_confirmed') {
337         my $dbh = C4::Context->dbh;
338         unless (C4::Context->config('demo') eq 1) {
339                 my $sth=$dbh->prepare("delete from marc_subfield_structure where tagfield=? and tagsubfield=? and frameworkcode=?");
340                 $sth->execute($tagfield,$tagsubfield,$frameworkcode);
341                 $sth->finish;
342         }
343         print "Content-Type: text/html\n\n<META HTTP-EQUIV=Refresh CONTENT=\"0; URL=marc_subfields_structure.pl?tagfield=$tagfield&frameworkcode=$frameworkcode\"></html>";
344         exit;
345         $template->param(tagfield => $tagfield);
346                                                                                                         # END $OP eq DELETE_CONFIRMED
347 ################## DEFAULT ##################################
348 } else { # DEFAULT
349         my $env;
350         my ($count,$results)=StringSearch($env,$tagfield,$frameworkcode);
351         my $toggle="white";
352         my @loop_data = ();
353         for (my $i=$offset; $i < ($offset+$pagesize<$count?$offset+$pagesize:$count); $i++){
354                 if ($toggle eq 'white'){
355                         $toggle="#ffffcc";
356                 } else {
357                         $toggle="white";
358                 }
359                 my %row_data;  # get a fresh hash for the row data
360                 $row_data{tagfield} = $results->[$i]{'tagfield'};
361                 $row_data{tagsubfield} = $results->[$i]{'tagsubfield'};
362                 $row_data{liblibrarian} = $results->[$i]{'liblibrarian'};
363                 $row_data{kohafield} = $results->[$i]{'kohafield'};
364                 $row_data{repeatable} = $results->[$i]{'repeatable'};
365                 $row_data{mandatory} = $results->[$i]{'mandatory'};
366                 $row_data{tab} = $results->[$i]{'tab'};
367                 $row_data{seealso} = $results->[$i]{'seealso'};
368                 $row_data{authorised_value} = $results->[$i]{'authorised_value'};
369                 $row_data{authtypecode} = $results->[$i]{'authtypecode'};
370                 $row_data{value_builder}        = $results->[$i]{'value_builder'};
371                 $row_data{hidden}       = $results->[$i]{'hidden'};
372                 $row_data{isurl}        = $results->[$i]{'isurl'};
373                 $row_data{delete} = "$script_name?op=delete_confirm&amp;tagfield=$tagfield&amp;tagsubfield=".$results->[$i]{'tagsubfield'}."&frameworkcode=$frameworkcode";
374                 $row_data{bgcolor} = $toggle;
375                 if ($row_data{tab} eq -1) {
376                         $row_data{subfield_ignored} = 1;
377                 }
378
379                 push(@loop_data, \%row_data);
380         }
381         $template->param(loop => \@loop_data);
382         $template->param(edit => "<a href=\"$script_name?op=add_form&amp;tagfield=$tagfield&frameworkcode=$frameworkcode\">");
383         if ($offset>0) {
384                 my $prevpage = $offset-$pagesize;
385                 $template->param(prev =>"<a href=\"$script_name?offset=$prevpage\">");
386         }
387         if ($offset+$pagesize<$count) {
388                 my $nextpage =$offset+$pagesize;
389                 $template->param(next => "<a href=\"$script_name?offset=$nextpage\">");
390         }
391 } #---- END $OP eq DEFAULT
392
393 output_html_with_http_headers $input, $cookie, $template->output;