New framework handling. New koha_attr table for mapping MARC to koha
[koha.git] / admin / auth_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
29
30 sub StringSearch  {
31         my ($env,$searchstring,$authtypecode)=@_;
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 auth_subfield_structure where (tagfield like ? and authtypecode=?) order by tagfield");
37         $sth->execute("$searchstring%",$authtypecode);
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 $authtypecode=$input->param('authtypecode');
55 my $pkfield="tagfield";
56 my $offset=$input->param('offset');
57 my $script_name="/cgi-bin/koha/admin/auth_subfields_structure.pl";
58
59 my ($template, $borrowernumber, $cookie)
60     = get_template_and_user({template_name => "admin/auth_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                                                 authtypecode => $authtypecode,
75                                                 $op              => 1); # we show only the TMPL_VAR names $op
76 } else {
77 $template->param(script_name => $script_name,
78                                                 tagfield =>$tagfield,
79                                                 authtypecode => $authtypecode,
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         
90         # build authorised value list
91
92 my      $sth2 = $dbh->prepare("select distinct category from authorised_values");
93         $sth2->execute;
94         my @authorised_values;
95         push @authorised_values,"";
96         while ((my $category) = $sth2->fetchrow_array) {
97                 push @authorised_values, $category;
98         }
99         push (@authorised_values,"branches");
100         push (@authorised_values,"itemtypes");
101
102         # build value_builder list
103         my @value_builder=('');
104
105         # read value_builder directory.
106         # 2 cases here : on CVS install, $cgidir does not need a /cgi-bin
107         # on a standard install, /cgi-bin need to be added. 
108         # test one, then the other
109         my $cgidir = C4::Context->intranetdir ."/cgi-bin";
110         unless (opendir(DIR, "$cgidir/value_builder")) {
111                 $cgidir = C4::Context->intranetdir;
112                 opendir(DIR, "$cgidir/value_builder") || die "can't opendir $cgidir/value_builder: $!";
113         } 
114         while (my $line = readdir(DIR)) {
115                 if ($line =~ /\.pl$/) {
116                         push (@value_builder,$line);
117                 }
118         }
119         closedir DIR;
120
121         # build values list
122         my $sth=$dbh->prepare("select * from auth_subfield_structure where tagfield=? and authtypecode=?"); # and tagsubfield='$tagsubfield'");
123         $sth->execute($tagfield,$authtypecode);
124         my @loop_data = ();
125         my $toggle=1;
126         my $i=0;
127         while ($data =$sth->fetchrow_hashref) {
128
129                 my %row_data;  # get a fresh hash for the row data
130                 if ($toggle eq 1){
131                         $toggle=0;
132                 } else {
133                         $toggle=1;
134                 }
135                 $row_data{tab} = CGI::scrolling_list(-name=>'tab',
136                                         -id=>"tab$i",
137                                         -values=>['-1','0'],
138                                         -labels => {'-1' =>'ignore','0'=>'0',
139                                                                         },
140                                         -default=>$data->{'tab'},
141                                         -size=>1,
142                                         -multiple=>0,
143                                         );
144                 $row_data{ohidden} = CGI::scrolling_list(-name=>'ohidden',
145                                         -id=>"ohidden$i",
146                                         -values=>['0','2'],
147                                         -labels => {'0'=>'Show','2' =>'Hide',},
148                                         -default=>substr($data->{'hidden'},0,1),
149                                         -size=>1,
150                                         -multiple=>0,
151                                         );
152                 $row_data{ihidden} = CGI::scrolling_list(-name=>'ihidden',
153                                         -id=>"ihidden$i",
154                                         -values=>['0','2'],
155                                         -labels => {'0'=>'Show',
156                                                                         '2' =>'Hide',
157                                                                         },
158                                         -default=>substr($data->{'hidden'},1,1),
159                                         -size=>1,
160                                         -multiple=>0,
161                                         );
162                 $row_data{ehidden} = CGI::scrolling_list(-name=>'ehidden',
163                                         -id=>"ehidden$i",
164                                         -values=>['0','1','2'],
165                                         -labels => {'0'=>'Show','1'=>'Show Collapsed',
166                                                                         '2' =>'Hide',
167                                                                         },
168                                         -default=>substr($data->{'hidden'},2,1),
169                                         -size=>1,
170                                         -multiple=>0,
171                                         );
172                 $row_data{tagsubfield} =$data->{'tagsubfield'}."<input type=\"hidden\" name=\"tagsubfield\" value=\"".$data->{'tagsubfield'}."\" id=\"tagsubfield\">";
173                 $row_data{liblibrarian} = CGI::escapeHTML($data->{'liblibrarian'});
174                 $row_data{libopac} = CGI::escapeHTML($data->{'libopac'});
175                 $row_data{seealso} = CGI::escapeHTML($data->{'seealso'});
176                 $row_data{authorised_value}  = CGI::scrolling_list(-name=>'authorised_value',
177                                         -id=>'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                                         -id=>'value_builder',
185                                         -values=> \@value_builder,
186                                         -default=>$data->{'value_builder'},
187                                         -size=>1,
188                                         -multiple=>0,
189                                         );
190                 
191                 $row_data{repeatable} = CGI::checkbox(-name=>"repeatable$i",
192         -checked => $data->{'repeatable'}?'checked':'',
193         -value => 1,
194         -label => '',
195         -id => "repeatable$i");
196                 $row_data{mandatory} = CGI::checkbox(-name => "mandatory$i",
197         -checked => $data->{'mandatory'}?'checked':'',
198         -value => 1,
199         -label => '',
200         -id => "mandatory$i");
201                 $row_data{hidden} = CGI::escapeHTML($data->{hidden}) ;
202                 $row_data{isurl} = CGI::checkbox( -name => "isurl$i",
203                         -id => "isurl$i",
204                         -checked => $data->{'isurl'}?'checked':'',
205                         -value => 1,
206                         -label => '');
207                 $row_data{link} = CGI::checkbox( -name => "link$i",
208                         -id => "link$i",
209                         -checked => $data->{'link'}?'checked':'',
210                         -value => 1,
211                         -label => '');
212                 $row_data{row} = $i;
213                 $row_data{toggle} = $toggle;
214                 # $row_data{link} = CGI::escapeHTML($data->{'link'});
215                 push(@loop_data, \%row_data);
216                 $i++;
217         }
218         # add more_subfields empty lines for add if needed
219         for (my $i=1;$i<=$more_subfields;$i++) {
220                 my %row_data;  # get a fresh hash for the row data
221                 $row_data{tab} = CGI::scrolling_list(-name=>'tab',
222                                         -id => "tab$i",
223                                         -values=>['-1','0'],
224                                         -labels => {'-1' =>'ignore','0'=>'0',
225                                                                         },
226                                         -default=>"",
227                                         -size=>1,
228                                         -multiple=>0,
229                                         );
230                 $row_data{ohidden} = CGI::scrolling_list(-name=>'ohidden',
231                                         -id=>"ohidden$i",
232                                         -values=>['0','2'],
233                                         -labels => {'0'=>'Show','2' =>'Hide',},
234                                         -default=>"0",
235                                         -size=>1,
236                                         -multiple=>0,
237                                         );
238
239                 $row_data{ihidden} = CGI::scrolling_list(-name=>'ihidden',
240                                         -id=>"ihidden$i",
241                                         -values=>['0','2'],
242                                         -labels => {'0'=>'Show','2' =>'Hide',},
243                                         -default=>"0",
244                                         -size=>1,
245                                         -multiple=>0,
246                                         );
247                 $row_data{ehidden} = CGI::scrolling_list(-name=>'ehidden',
248                                         -id=>"ehidden$i",
249                                         -values=>['0','1','2'],
250                                         -labels => {'0'=>'Show','1'=>'Show Collapsed',
251                                                                         '2' =>'Hide',
252                                                                         },
253                                         -default=>"0",
254                                         -size=>1,
255                                         -multiple=>0,
256                                         );
257                 $row_data{tagsubfield} = "<input type=\"text\" name=\"tagsubfield\" value=\"".$data->{'tagsubfield'}."\" size=\"1\" id=\"tagsubfield\" maxlength=\"1\">";
258                 $row_data{liblibrarian} = "";
259                 $row_data{libopac} = "";
260                 $row_data{seealso} = "";
261                 $row_data{hidden} = "000";
262                 $row_data{repeatable} = CGI::checkbox( -name=> 'repeatable',
263                                 -id => "repeatable$i",
264                                 -checked => '',
265                                 -value => 1,
266                                 -label => '');
267                 $row_data{mandatory} = CGI::checkbox( -name=> 'mandatory',
268                         -id => "mandatory$i",
269                         -checked => '',
270                         -value => 1,
271                         -label => '');
272                 $row_data{isurl} = CGI::checkbox(-name => 'isurl',
273                         -id => "isurl$i",
274                         -checked => '',
275                         -value => 1,
276                         -label => '');
277                 
278                 $row_data{authorised_value}  = CGI::scrolling_list(-name=>'authorised_value',
279                                         -id => 'authorised_value',
280                                         -values=> \@authorised_values,
281                                         -size=>1,
282                                         -multiple=>0,
283                                         );
284                 $row_data{link} = CGI::checkbox( -name => "link",
285                         -id => "link$i",
286                         -checked => '',
287                         -value => 1,
288                         -label => '');
289                 # $row_data{link} = CGI::escapeHTML($data->{'link'});
290                 $row_data{toggle} = $toggle;
291                 $row_data{row} = $i;
292                 push(@loop_data, \%row_data);
293         }
294         $template->param('use-heading-flags-p' => 1);
295         $template->param('heading-edit-subfields-p' => 1);
296         $template->param(action => "Edit subfields",
297                                                         tagfield => "<input type=\"hidden\" name=\"tagfield\" value=\"$tagfield\">$tagfield",
298                                                         loop => \@loop_data,
299                                                         more_subfields => $more_subfields,
300                                                         more_tag => $tagfield);
301
302                                                                                                 # END $OP eq ADD_FORM
303 ################## ADD_VALIDATE ##################################
304 # called by add_form, used to insert/modify data in DB
305 } elsif ($op eq 'add_validate') {
306         my $dbh = C4::Context->dbh;
307         $template->param(tagfield => "$input->param('tagfield')");
308         my $sth=$dbh->prepare("replace auth_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,tab,seealso,authorised_value,authtypecode,value_builder,hidden,isurl, link)
309                                                                         values (?,?,?,?,?,?,?,?,?,?,?,?,?,?)");
310         my @tagsubfield = $input->param('tagsubfield');
311         my @liblibrarian        = $input->param('liblibrarian');
312         my @libopac             = $input->param('libopac');
313         my @tab                         = $input->param('tab');
314         my @seealso             = $input->param('seealso');
315         #my @hidden             = $input->param('hidden');
316         my @hidden;
317         my @ohidden             = $input->param('ohidden');
318         my @ihidden             = $input->param('ihidden');
319         my @ehidden             = $input->param('ehidden');
320         my @authorised_values   = $input->param('authorised_value');
321 #       my $authtypecodes       = $input->param('authtypecode');
322         my @value_builder       =$input->param('value_builder');
323         my @link                =$input->param('link');
324         for (my $i=0; $i<= $#tagsubfield ; $i++) {
325                 my $tagfield                    =$input->param('tagfield');
326                 my $tagsubfield         =$tagsubfield[$i];
327                 $tagsubfield="@" unless $tagsubfield ne '';
328                 my $liblibrarian                =$liblibrarian[$i];
329                 my $libopac                     =$libopac[$i];
330                 my $repeatable          =$input->param("repeatable$i")?1:0;
331                 my $mandatory           =$input->param("mandatory$i")?1:0;
332
333                 my $tab                         =$tab[$i];
334                 my $seealso                             =$seealso[$i];
335                 my $authorised_value            =$authorised_values[$i];
336 #               my $authtypecode                =$authtypecodes;
337                 my $value_builder=$value_builder[$i];
338                 my $hidden = $ohidden[$i].$ihidden[$i].$ehidden[$i]; #collate from 3 hiddens;
339                 my $isurl = $input->param("isurl$i")?1:0;
340                 my $link = $input->param("link$i")?1:0;
341                 if ($liblibrarian) {
342                         unless (C4::Context->config('demo') eq 1) {
343                                 $sth->execute ($tagfield,
344                                                                         $tagsubfield,
345                                                                         $liblibrarian,
346                                                                         $libopac,
347                                                                         $repeatable,
348                                                                         $mandatory,
349                                                                         $tab,
350                                                                         $seealso,
351                                                                         $authorised_value,
352                                                                         $authtypecode,
353                                                                         $value_builder,
354                                                                         $hidden,
355                                                                         $isurl,
356                                                                         
357
358          $link,
359                                               );
360                         }
361                 }
362         }
363         $sth->finish;
364         print "Content-Type: text/html\n\n<META HTTP-EQUIV=Refresh CONTENT=\"0; URL=auth_subfields_structure.pl?tagfield=$tagfield&authtypecode=$authtypecode\"></html>";
365         exit;
366
367                                                                                                         # END $OP eq ADD_VALIDATE
368 ################## DELETE_CONFIRM ##################################
369 # called by default form, used to confirm deletion of data in DB
370 } elsif ($op eq 'delete_confirm') {
371         my $dbh = C4::Context->dbh;
372         my $sth=$dbh->prepare("select * from auth_subfield_structure where tagfield=? and tagsubfield=? and authtypecode=?");
373         #FIXME : called with 2 bind variables when 3 are needed
374         $sth->execute($tagfield,$tagsubfield);
375         my $data=$sth->fetchrow_hashref;
376         $sth->finish;
377         $template->param(liblibrarian => $data->{'liblibrarian'},
378                                                         tagsubfield => $data->{'tagsubfield'},
379                                                         delete_link => $script_name,
380                                                         tagfield      =>$tagfield,
381                                                         tagsubfield => $tagsubfield,
382                                                         authtypecode => $authtypecode,
383                                                         );
384                                                                                                         # END $OP eq DELETE_CONFIRM
385 ################## DELETE_CONFIRMED ##################################
386 # called by delete_confirm, used to effectively confirm deletion of data in DB
387 } elsif ($op eq 'delete_confirmed') {
388         my $dbh = C4::Context->dbh;
389         unless (C4::Context->config('demo') eq 1) {
390                 my $sth=$dbh->prepare("delete from auth_subfield_structure where tagfield=? and tagsubfield=? and authtypecode=?");
391                 $sth->execute($tagfield,$tagsubfield,$authtypecode);
392                 $sth->finish;
393         }
394         print "Content-Type: text/html\n\n<META HTTP-EQUIV=Refresh CONTENT=\"0; URL=auth_subfields_structure.pl?tagfield=$tagfield&authtypecode=$authtypecode\"></html>";
395         exit;
396         $template->param(tagfield => $tagfield);
397                                                                                                         # END $OP eq DELETE_CONFIRMED
398 ################## DEFAULT ##################################
399 } else { # DEFAULT
400         my $env;
401         my ($count,$results)=StringSearch($env,$tagfield,$authtypecode);
402         my $toggle=1;
403         my @loop_data = ();
404         for (my $i=$offset; $i < ($offset+$pagesize<$count?$offset+$pagesize:$count); $i++){
405                 if ($toggle eq 1){
406                         $toggle=0;
407                 } else {
408                         $toggle=1;
409                 }
410                 my %row_data;  # get a fresh hash for the row data
411                 $row_data{tagfield} = $results->[$i]{'tagfield'};
412                 $row_data{tagsubfield} = $results->[$i]{'tagsubfield'};
413                 $row_data{liblibrarian} = $results->[$i]{'liblibrarian'};
414                 $row_data{repeatable} = $results->[$i]{'repeatable'};
415                 $row_data{mandatory} = $results->[$i]{'mandatory'};
416                 $row_data{tab} = $results->[$i]{'tab'};
417                 $row_data{seealso} = $results->[$i]{'seealso'};
418                 $row_data{authorised_value} = $results->[$i]{'authorised_value'};
419                 $row_data{authtypecode} = $results->[$i]{'authtypecode'};
420                 $row_data{value_builder}        = $results->[$i]{'value_builder'};
421                 $row_data{hidden}       = $results->[$i]{'hidden'} if($results->[$i]{'hidden'} gt "000") ;
422                 $row_data{isurl}        = $results->[$i]{'isurl'};
423                 $row_data{link} = $results->[$i]{'link'};
424                 $row_data{delete} = "$script_name?op=delete_confirm&amp;tagfield=$tagfield&amp;tagsubfield=".$results->[$i]{'tagsubfield'}."&authtypecode=$authtypecode";
425                 $row_data{toggle} = $toggle;
426                 if ($row_data{tab} eq -1) {
427                         $row_data{subfield_ignored} = 1;
428                 }
429
430                 push(@loop_data, \%row_data);
431         }
432         $template->param(loop => \@loop_data);
433         $template->param(edit_tagfield => $tagfield,
434                 edit_authtypecode => $authtypecode);
435         
436         if ($offset>0) {
437                 my $prevpage = $offset-$pagesize;
438                 $template->param(prev =>"<a href=\"$script_name?offset=$prevpage\">");
439         }
440         if ($offset+$pagesize<$count) {
441                 my $nextpage =$offset+$pagesize;
442                 $template->param(next => "<a href=\"$script_name?offset=$nextpage\">");
443         }
444 } #---- END $OP eq DEFAULT
445 $template->param(intranetcolorstylesheet => C4::Context->preference("intranetcolorstylesheet"),
446                 intranetstylesheet => C4::Context->preference("intranetstylesheet"),
447                 IntranetNav => C4::Context->preference("IntranetNav"),
448                 );
449 output_html_with_http_headers $input, $cookie, $template->output;