small fix to add subtitles and subject in mappable fields.
[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,$type)=@_;
32         my $dbh = C4::Context->dbh;
33         $searchstring=~ s/\'/\\\'/g;
34         my @data=split(' ',$searchstring);
35         my $count=@data;
36         my $query="Select tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,thesaurus_category,value_builder from marc_subfield_structure where (tagfield like \"$searchstring%\") order by tagfield";
37         my $sth=$dbh->prepare($query);
38         $sth->execute;
39         my @results;
40         my $cnt=0;
41         while (my $data=$sth->fetchrow_hashref){
42         push(@results,$data);
43         $cnt ++;
44         }
45         #  $sth->execute;
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 $pkfield="tagfield";
55 my $reqsel="select tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,thesaurus_category,value_builder from marc_subfield_structure where tagfield='$tagfield' and tagsubfield='$tagsubfield'";
56 my $reqdel="delete from marc_subfield_structure where tagfield='$tagfield' and tagsubfield='$tagsubfield'";
57 my $offset=$input->param('offset');
58 my $script_name="/cgi-bin/koha/admin/marc_subfields_structure.pl";
59
60 my ($template, $borrowernumber, $cookie)
61     = get_template_and_user({template_name => "parameters/marc_subfields_structure.tmpl",
62                              query => $input,
63                              type => "intranet",
64                              authnotrequired => 0,
65                              flagsrequired => {parameters => 1},
66                              debug => 1,
67                              });
68 my $pagesize=30;
69 my $op = $input->param('op');
70 $tagfield=~ s/\,//g;
71
72 if ($op) {
73 $template->param(script_name => $script_name,
74                                                 tagfield =>$tagfield,
75                                                 $op              => 1); # we show only the TMPL_VAR names $op
76 } else {
77 $template->param(script_name => $script_name,
78                                                 tagfield =>$tagfield,
79                                                 else              => 1); # we show only the TMPL_VAR names $op
80 }
81
82 ################## ADD_FORM ##################################
83 # called by default. Used to create form to add or  modify a record
84 if ($op eq 'add_form') {
85         my $data;
86         my $dbh = C4::Context->dbh;
87         my $more_subfields = $input->param("more_subfields")+1;
88         # builds kohafield tables
89         my @kohafields;
90         push @kohafields, "";
91         my $sth2=$dbh->prepare("SHOW COLUMNS from biblio");
92         $sth2->execute;
93         while ((my $field) = $sth2->fetchrow_array) {
94                 push @kohafields, "biblio.".$field;
95         }
96         my $sth2=$dbh->prepare("SHOW COLUMNS from biblioitems");
97         $sth2->execute;
98         while ((my $field) = $sth2->fetchrow_array) {
99                 push @kohafields, "biblioitems.".$field;
100         }
101         my $sth2=$dbh->prepare("SHOW COLUMNS from items");
102         $sth2->execute;
103         while ((my $field) = $sth2->fetchrow_array) {
104                 push @kohafields, "items.".$field;
105         }
106         
107         # other subfields
108         push @kohafields, "additionalauthors.author";
109         push @kohafields, "bibliosubject.subject";
110         push @kohafields, "bibliosubtitle.title";
111         # build authorised value list
112         $sth2->finish;
113         $sth2 = $dbh->prepare("select distinct category from authorised_values");
114         $sth2->execute;
115         my @authorised_values;
116         push @authorised_values,"";
117         while ((my $category) = $sth2->fetchrow_array) {
118                 push @authorised_values, $category;
119         }
120         push (@authorised_values,"branches");
121         push (@authorised_values,"itemtypes");
122         # build thesaurus categories list
123         $sth2->finish;
124         $sth2 = $dbh->prepare("select distinct category from bibliothesaurus");
125         $sth2->execute;
126         my @thesaurus_category;
127         push @thesaurus_category,"";
128         while ((my $category) = $sth2->fetchrow_array) {
129                 push @thesaurus_category, $category;
130         }
131         # build value_builder list
132         my @value_builder=('');
133         opendir(DIR, "../value_builder") || die "can't opendir ../value_builder: $!";
134         while (my $line = readdir(DIR)) {
135                 if ($line =~ /\.pl$/) {
136                         push (@value_builder,$line);
137                 }
138         }
139         closedir DIR;
140
141         # build values list
142         my $sth=$dbh->prepare("select tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,thesaurus_category,value_builder from marc_subfield_structure where tagfield='$tagfield'"); # and tagsubfield='$tagsubfield'");
143         $sth->execute;
144         my @loop_data = ();
145         my $toggle="white";
146         my $i=0;
147         while ($data =$sth->fetchrow_hashref) {
148                 my %row_data;  # get a fresh hash for the row data
149                 if ($toggle eq 'white'){
150                         $toggle="#ffffcc";
151                 } else {
152                         $toggle="white";
153                 }
154                 $row_data{tab} = CGI::scrolling_list(-name=>'tab',
155                                         -values=>['-1','0','1','2','3','4','5','6','7','8','9','10'],
156                                         -labels => {'-1' =>'ignore','0'=>'0','1'=>'1',
157                                                                         '2' =>'2','3'=>'3','4'=>'4',
158                                                                         '5' =>'5','6'=>'6','7'=>'7',
159                                                                         '8' =>'8','9'=>'9','10'=>'items (10)',
160                                                                         },
161                                         -default=>$data->{'tab'},
162                                         -size=>1,
163                                         -multiple=>0,
164                                         );
165                 $row_data{tagsubfield} =$data->{'tagsubfield'}."<input type='hidden' name='tagsubfield' value='".$data->{'tagsubfield'}."'>";
166                 $row_data{liblibrarian} = CGI::escapeHTML($data->{'liblibrarian'});
167                 $row_data{libopac} = CGI::escapeHTML($data->{'libopac'});
168                 $row_data{kohafield}= CGI::scrolling_list( -name=>"kohafield",
169                                         -values=> \@kohafields,
170                                         -default=> "$data->{'kohafield'}",
171                                         -size=>1,
172                                         -multiple=>0,
173                                         );
174                 $row_data{authorised_value}  = CGI::scrolling_list(-name=>'authorised_value',
175                                         -values=> \@authorised_values,
176                                         -default=>$data->{'authorised_value'},
177                                         -size=>1,
178                                         -multiple=>0,
179                                         );
180                 $row_data{value_builder}  = CGI::scrolling_list(-name=>'value_builder',
181                                         -values=> \@value_builder,
182                                         -default=>$data->{'value_builder'},
183                                         -size=>1,
184                                         -multiple=>0,
185                                         );
186                 $row_data{thesaurus_category}  = CGI::scrolling_list(-name=>'thesaurus_category',
187                                         -values=> \@thesaurus_category,
188                                         -default=>$data->{'thesaurus_category'},
189                                         -size=>1,
190                                         -multiple=>0,
191                                         );
192 #               $row_data{kohafield} = $data->{'kohafield'};
193                 $row_data{repeatable} = CGI::checkbox("repeatable$i",$data->{'repeatable'}?'checked':'',1,'');
194                 $row_data{mandatory} = CGI::checkbox("mandatory$i",$data->{'mandatory'}?'checked':'',1,'');
195                 $row_data{bgcolor} = $toggle;
196                 push(@loop_data, \%row_data);
197                 $i++;
198         }
199         # add more_subfields empty lines for add if needed
200         for (my $i=1;$i<=$more_subfields;$i++) {
201                 my %row_data;  # get a fresh hash for the row data
202                 $row_data{tab} = CGI::scrolling_list(-name=>'tab',
203                                         -values=>['-1','0','1','2','3','4','5','6','7','8','9','10'],
204                                         -labels => {'-1' =>'ignore','0'=>'0','1'=>'1',
205                                                                         '2' =>'2','3'=>'3','4'=>'4',
206                                                                         '5' =>'5','6'=>'6','7'=>'7',
207                                                                         '8' =>'8','9'=>'9','10'=>'items (10)',
208                                                                         },
209                                         -default=>"",
210                                         -size=>1,
211                                         -multiple=>0,
212                                         );
213                 $row_data{tagsubfield} = "<input type='text' name='tagsubfield' value='".$data->{'tagsubfield'}."' size=3 maxlength=1>";
214                 $row_data{liblibrarian} = "";
215                 $row_data{libopac} = "";
216                 $row_data{repeatable} = CGI::checkbox('repeatable','',1,'');
217                 $row_data{mandatory} = CGI::checkbox('mandatory','',1,'');
218                 $row_data{kohafield}= CGI::scrolling_list( -name=>'kohafield',
219                                         -values=> \@kohafields,
220                                         -default=> "",
221                                         -size=>1,
222                                         -multiple=>0,
223                                         );
224                 $row_data{authorised_value}  = CGI::scrolling_list(-name=>'authorised_value',
225                                         -values=> \@authorised_values,
226                                         -size=>1,
227                                         -multiple=>0,
228                                         );
229                 $row_data{thesaurus_category}  = CGI::scrolling_list(-name=>'thesaurus_category',
230                                         -values=> \@thesaurus_category,
231                                         -size=>1,
232                                         -multiple=>0,
233                                         );
234                 $row_data{bgcolor} = $toggle;
235                 push(@loop_data, \%row_data);
236         }
237         $template->param(action => "Edit subfields",
238                                                         tagfield => "<input type=hidden name=tagfield value='$tagfield'>$tagfield",
239                                                         loop => \@loop_data,
240                                                         more_subfields => $more_subfields,
241                                                         more_tag => $tagfield);
242
243                                                                                                 # END $OP eq ADD_FORM
244 ################## ADD_VALIDATE ##################################
245 # called by add_form, used to insert/modify data in DB
246 } elsif ($op eq 'add_validate') {
247         my $dbh = C4::Context->dbh;
248         $template->param(tagfield => "$input->param('tagfield')");
249         my $sth=$dbh->prepare("replace marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,thesaurus_category,value_builder)
250                                                                         values (?,?,?,?,?,?,?,?,?,?,?)");
251         my @tagsubfield = $input->param('tagsubfield');
252         my @liblibrarian        = $input->param('liblibrarian');
253         my @libopac             = $input->param('libopac');
254         my @kohafield           = $input->param('kohafield');
255         my @tab                         = $input->param('tab');
256         my @authorised_values   = $input->param('authorised_value');
257         my @thesaurus_category  = $input->param('thesaurus_category');
258         my @value_builder       =$input->param('value_builder');
259         for (my $i=0; $i<= $#tagsubfield ; $i++) {
260                 my $tagfield                    =$input->param('tagfield');
261                 my $tagsubfield         =$tagsubfield[$i];
262                 $tagsubfield="@" unless $tagsubfield;
263                 my $liblibrarian                =$liblibrarian[$i];
264                 my $libopac                     =$libopac[$i];
265                 my $repeatable          =$input->param("repeatable$i")?1:0;
266                 my $mandatory           =$input->param("mandatory$i")?1:0;
267                 my $kohafield           =$kohafield[$i];
268                 my $tab                         =$tab[$i];
269                 my $authorised_value            =$authorised_values[$i];
270                 my $thesaurus_category          =$thesaurus_category[$i];
271                 my $value_builder=$value_builder[$i];
272                 if ($liblibrarian) {
273                         $sth->execute ($tagfield,
274                                                                 $tagsubfield,
275                                                                 $liblibrarian,
276                                                                 $libopac,
277                                                                 $repeatable,
278                                                                 $mandatory,
279                                                                 $kohafield,
280                                                                 $tab,
281                                                                 $authorised_value,
282                                                                 $thesaurus_category,
283                                                                 $value_builder);
284                 }
285         }
286         $sth->finish;
287         print "Content-Type: text/html\n\n<META HTTP-EQUIV=Refresh CONTENT=\"0; URL=marc_subfields_structure.pl?tagfield=$tagfield\"></html>";
288         exit;
289
290                                                                                                         # END $OP eq ADD_VALIDATE
291 ################## DELETE_CONFIRM ##################################
292 # called by default form, used to confirm deletion of data in DB
293 } elsif ($op eq 'delete_confirm') {
294         my $dbh = C4::Context->dbh;
295         my $sth=$dbh->prepare($reqsel);
296         $sth->execute;
297         my $data=$sth->fetchrow_hashref;
298         $sth->finish;
299         $template->param(liblibrarian => $data->{'liblibrarian'},
300                                                         tagsubfield => $data->{'tagsubfield'},
301                                                         delete_link => $script_name,
302                                                         tagfield      =>$tagfield,
303                                                         tagsubfield => $tagsubfield,
304                                                         );
305                                                                                                         # END $OP eq DELETE_CONFIRM
306 ################## DELETE_CONFIRMED ##################################
307 # called by delete_confirm, used to effectively confirm deletion of data in DB
308 } elsif ($op eq 'delete_confirmed') {
309         my $dbh = C4::Context->dbh;
310         my $sth=$dbh->prepare($reqdel);
311         $sth->execute;
312         $sth->finish;
313         print "Content-Type: text/html\n\n<META HTTP-EQUIV=Refresh CONTENT=\"0; URL=marc_subfields_structure.pl?tagfield=$tagfield\"></html>";
314         exit;
315         $template->param(tagfield => $tagfield);
316                                                                                                         # END $OP eq DELETE_CONFIRMED
317 ################## DEFAULT ##################################
318 } else { # DEFAULT
319         my $env;
320         my ($count,$results)=StringSearch($env,$tagfield,'web');
321         my $toggle="white";
322         my @loop_data = ();
323         for (my $i=$offset; $i < ($offset+$pagesize<$count?$offset+$pagesize:$count); $i++){
324                 if ($toggle eq 'white'){
325                         $toggle="#ffffcc";
326                 } else {
327                         $toggle="white";
328                 }
329                 my %row_data;  # get a fresh hash for the row data
330                 $row_data{tagfield} = $results->[$i]{'tagfield'};
331                 $row_data{tagsubfield} = $results->[$i]{'tagsubfield'};
332                 $row_data{liblibrarian} = $results->[$i]{'liblibrarian'};
333                 $row_data{kohafield} = $results->[$i]{'kohafield'};
334                 $row_data{repeatable} = $results->[$i]{'repeatable'};
335                 $row_data{mandatory} = $results->[$i]{'mandatory'};
336                 $row_data{tab} = $results->[$i]{'tab'};
337                 $row_data{authorised_value} = $results->[$i]{'authorised_value'};
338                 $row_data{thesaurus_category}   = $results->[$i]{'thesaurus_category'};
339                 $row_data{value_builder}        = $results->[$i]{'value_builder'};
340                 $row_data{delete} = "$script_name?op=delete_confirm&tagfield=$tagfield&tagsubfield=".$results->[$i]{'tagsubfield'};
341                 $row_data{bgcolor} = $toggle;
342                 push(@loop_data, \%row_data);
343         }
344         $template->param(loop => \@loop_data);
345         $template->param(edit => "<a href='$script_name?op=add_form&tagfield=$tagfield'>");
346         if ($offset>0) {
347                 my $prevpage = $offset-$pagesize;
348                 $template->param(prev =>"<a href=$script_name?offset=$prevpage>");
349         }
350         if ($offset+$pagesize<$count) {
351                 my $nextpage =$offset+$pagesize;
352                 $template->param(next => "<a href=$script_name?offset=$nextpage>");
353         }
354 } #---- END $OP eq DEFAULT
355
356 output_html_with_http_headers $input, $cookie, $template->output;