uptodate SQL structure
[koha.git] / admin / marctagstructure.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 CGI;
23 use C4::Auth;
24 use C4::Koha;
25 use C4::Context;
26 use C4::Output;
27 use C4::Context;
28
29
30 # retrieve parameters
31 my $input = new CGI;
32 my $frameworkcode = $input->param('frameworkcode'); # set to select framework
33 $frameworkcode="" unless $frameworkcode;
34 my $existingframeworkcode = $input->param('existingframeworkcode'); # set when we have to create a new framework (in frameworkcode) by copying an old one (in existingframeworkcode)
35 $existingframeworkcode = "" unless $existingframeworkcode;
36 my $frameworkinfo = getframeworkinfo($frameworkcode);
37 my $searchfield=$input->param('searchfield');
38 $searchfield=0 unless $searchfield;
39 $searchfield=~ s/\,//g;
40
41 my $offset=$input->param('offset') || 0;
42 my $op = $input->param('op') || '';
43 my $dspchoice = $input->param('select_display');
44 my $pagesize=20;
45
46 my $script_name="/cgi-bin/koha/admin/marctagstructure.pl";
47
48 my $dbh = C4::Context->dbh;
49
50 # open template
51 my ($template, $loggedinuser, $cookie)
52     = get_template_and_user({template_name => "admin/marctagstructure.tmpl",
53                              query => $input,
54                              type => "intranet",
55                              authnotrequired => 0,
56                              flagsrequired => {parameters => 1},
57                              debug => 1,
58                              });
59
60 # get framework list
61 my $frameworks = getframeworks();
62 my @frameworkloop;
63 foreach my $thisframeworkcode (keys %$frameworks) {
64         my $selected = 1 if $thisframeworkcode eq $frameworkcode;
65         my %row =(value => $thisframeworkcode,
66                                 selected => $selected,
67                                 frameworktext => $frameworks->{$thisframeworkcode}->{'frameworktext'},
68                         );
69         push @frameworkloop, \%row;
70 }
71
72 # check that framework is defined in marc_tag_structure
73 my $sth=$dbh->prepare("select count(*) from marc_tag_structure where frameworkcode=?");
74 $sth->execute($frameworkcode);
75 my ($frameworkexist) = $sth->fetchrow;
76 if ($frameworkexist) {
77 } else {
78         # if frameworkcode does not exists, then OP must be changed to "create framework" if we are not on the way to create it
79         # (op = itemtyp_create_confirm)
80         if ($op eq "framework_create_confirm") {
81                 duplicate_framework($frameworkcode, $existingframeworkcode);
82                 $op=""; # unset $op to go back to framework list
83         } else {
84                 $op = "framework_create";
85         }
86 }
87 $template->param(frameworkloop => \@frameworkloop,
88                                 frameworkcode => $frameworkcode,
89                                 frameworktext => $frameworkinfo->{frameworktext});
90 if ($op) {
91 $template->param(script_name => $script_name,
92                                                 $op              => 1); # we show only the TMPL_VAR names $op
93 } else {
94 $template->param(script_name => $script_name,
95                                                 else              => 1); # we show only the TMPL_VAR names $op
96 }
97
98
99 ################## ADD_FORM ##################################
100 # called by default. Used to create form to add or  modify a record
101 if ($op eq 'add_form') {
102         #---- if primkey exists, it's a modify action, so read values to modify...
103         my $data;
104         if ($searchfield) {
105                 $sth=$dbh->prepare("select tagfield,liblibrarian,libopac,repeatable,mandatory,authorised_value from marc_tag_structure where tagfield=? and frameworkcode=?");
106                 $sth->execute($searchfield,$frameworkcode);
107                 $data=$sth->fetchrow_hashref;
108                 $sth->finish;
109         }
110         my $sth = $dbh->prepare("select distinct category from authorised_values");
111         $sth->execute;
112         my @authorised_values;
113         push @authorised_values,"";
114         while ((my $category) = $sth->fetchrow_array) {
115                 push @authorised_values, $category;
116         }
117         my $authorised_value  = CGI::scrolling_list(-name=>'authorised_value',
118                         -values=> \@authorised_values,
119                         -size=>1,
120                         -tabindex=>'',
121                         -id=>"authorised_value",
122                         -multiple=>0,
123                         -default => $data->{'authorised_value'},
124                         );
125
126         if ($searchfield) {
127                 $template->param(action => "Modify tag",
128                                                                 searchfield => $searchfield);
129                 $template->param('heading-modify-tag-p' => 1);
130         } else {
131                 $template->param(action => "Add tag");
132                 $template->param('heading-add-tag-p' => 1);
133         }
134         $template->param('use-heading-flags-p' => 1);
135         $template->param(liblibrarian => $data->{'liblibrarian'},
136                         libopac => $data->{'libopac'},
137                         repeatable => CGI::checkbox(-name=>'repeatable',
138                                                 -checked=> $data->{'repeatable'}?'checked':'',
139                                                 -value=> 1,
140                                                 -tabindex=>'',
141                                                 -label => '',
142                                                 -id=> 'repeatable'),
143                         mandatory => CGI::checkbox(-name => 'mandatory',
144                                                 -checked => $data->{'mandatory'}?'checked':'',
145                                                 -value => 1,
146                                                 -tabindex=>'',
147                                                 -label => '',
148                                                 -id => 'mandatory'),
149                         authorised_value => $authorised_value,
150                         frameworkcode => $frameworkcode,
151                         );
152                                                                                                         # END $OP eq ADD_FORM
153 ################## ADD_VALIDATE ##################################
154 # called by add_form, used to insert/modify data in DB
155 } elsif ($op eq 'add_validate') {
156         $sth=$dbh->prepare("replace marc_tag_structure (tagfield,liblibrarian,libopac,repeatable,mandatory,authorised_value,frameworkcode) values (?,?,?,?,?,?,?)");
157         my $tagfield       =$input->param('tagfield');
158         my $liblibrarian  = $input->param('liblibrarian');
159         my $libopac       =$input->param('libopac');
160         my $repeatable =$input->param('repeatable');
161         my $mandatory =$input->param('mandatory');
162         my $authorised_value =$input->param('authorised_value');
163         unless (C4::Context->config('demo') eq 1) {
164                 $sth->execute($tagfield,
165                                                         $liblibrarian,
166                                                         $libopac,
167                                                         $repeatable?1:0,
168                                                         $mandatory?1:0,
169                                                         $authorised_value,
170                                                         $frameworkcode
171                                                         );
172         }
173         $sth->finish;
174         print "Content-Type: text/html\n\n<META HTTP-EQUIV=Refresh CONTENT=\"0; URL=marctagstructure.pl?searchfield=$tagfield&frameworkcode=$frameworkcode\"></html>";
175         exit;
176                                                                                                         # END $OP eq ADD_VALIDATE
177 ################## DELETE_CONFIRM ##################################
178 # called by default form, used to confirm deletion of data in DB
179 } elsif ($op eq 'delete_confirm') {
180         $sth=$dbh->prepare("select tagfield,liblibrarian,libopac,repeatable,mandatory,authorised_value from marc_tag_structure where tagfield=? and frameworkcode=?");
181         $sth->execute($searchfield,$frameworkcode);
182         my $data=$sth->fetchrow_hashref;
183         $sth->finish;
184         $template->param(liblibrarian => $data->{'liblibrarian'},
185                                                         searchfield => $searchfield,
186                                                         frameworkcode => $frameworkcode,
187                                                         );
188                                                                                                         # END $OP eq DELETE_CONFIRM
189 ################## DELETE_CONFIRMED ##################################
190 # called by delete_confirm, used to effectively confirm deletion of data in DB
191 } elsif ($op eq 'delete_confirmed') {
192         unless (C4::Context->config('demo') eq 1) {
193                 $dbh->do("delete from marc_tag_structure where tagfield='$searchfield' and frameworkcode='$frameworkcode'");
194                 $dbh->do("delete from marc_subfield_structure where tagfield='$searchfield' and frameworkcode='$frameworkcode'");
195         }
196                                                                                                         # END $OP eq DELETE_CONFIRMED
197 ################## ITEMTYPE_CREATE ##################################
198 # called automatically if an unexisting  frameworkis selected
199 } elsif ($op eq 'framework_create') {
200         $sth = $dbh->prepare("select count(*),marc_tag_structure.frameworkcode,frameworktext from marc_tag_structure,biblio_framework where biblio_framework.frameworkcode=marc_tag_structure.frameworkcode group by marc_tag_structure.frameworkcode");
201         $sth->execute;
202         my @existingframeworkloop;
203         while (my ($tot,$thisframeworkcode,$frameworktext) = $sth->fetchrow) {
204                 if ($tot>0) {
205                         my %line = ( value => $thisframeworkcode,
206                                                 frameworktext => $frameworktext,
207                                         );
208                         push @existingframeworkloop,\%line;
209                 }
210         }
211         $template->param(existingframeworkloop => \@existingframeworkloop,
212                                         frameworkcode => $frameworkcode,
213 #                                       FRtext => $frameworkinfo->{frameworktext},
214                                         );
215 ################## DEFAULT ##################################
216 } else { # DEFAULT
217         # here, $op can be unset or set to "framework_create_confirm".
218         if  ($searchfield ne '') {
219                  $template->param(searchfield => $searchfield);
220         }
221         my $cnt=0;
222         if ($dspchoice) {
223                 #here, user only wants used tags/subfields displayed
224                 $searchfield=~ s/\'/\\\'/g;
225                 my @data=split(' ',$searchfield);
226                 my $sth=$dbh->prepare("
227                       SELECT marc_tag_structure.tagfield AS mts_tagfield,
228                               marc_tag_structure.liblibrarian as mts_liblibrarian,
229                               marc_tag_structure.libopac as mts_libopac,
230                               marc_tag_structure.repeatable as mts_repeatable,
231                               marc_tag_structure.mandatory as mts_mandatory,
232                               marc_tag_structure.authorised_value as mts_authorized_value,
233                               marc_subfield_structure.*
234                 FROM marc_tag_structure 
235                 LEFT JOIN marc_subfield_structure ON (marc_tag_structure.tagfield=marc_subfield_structure.tagfield AND marc_tag_structure.frameworkcode=marc_subfield_structure.frameworkcode) WHERE (marc_tag_structure.tagfield >= ? and marc_tag_structure.frameworkcode=?) AND marc_subfield_structure.tab>=0 ORDER BY marc_tag_structure.tagfield,marc_subfield_structure.tagsubfield");
236                 #could be ordoned by tab
237                 $sth->execute($data[0], $frameworkcode);
238                 my @results = ();
239                 while (my $data=$sth->fetchrow_hashref){
240                         push(@results,$data);
241                         $cnt++;
242                 }
243                 $sth->finish;
244                 
245                 my $toggle=0;
246                 my @loop_data = ();
247                 my $j=1;
248                 my $i=$offset;
249                 while ($i < ($offset+$pagesize<$cnt?$offset+$pagesize:$cnt)) {
250                         if ($toggle eq 0){
251                                 $toggle=1;
252                         } else {
253                                 $toggle=0;
254                         }
255                         my %row_data;  # get a fresh hash for the row data
256                         $row_data{tagfield} = $results[$i]->{'mts_tagfield'};
257                         $row_data{liblibrarian} = $results[$i]->{'mts_liblibrarian'};
258                         $row_data{repeatable} = $results[$i]->{'mts_repeatable'};
259                         $row_data{mandatory} = $results[$i]->{'mts_mandatory'};
260                         $row_data{authorised_value} = $results[$i]->{'mts_authorised_value'};
261                         $row_data{subfield_link} ="marc_subfields_structure.pl?op=add_form&tagfield=".$results[$i]->{'mts_tagfield'}."&frameworkcode=".$frameworkcode;
262                         $row_data{edit} = "$script_name?op=add_form&amp;searchfield=".$results[$i]->{'mts_tagfield'}."&frameworkcode=".$frameworkcode;
263                         $row_data{delete} = "$script_name?op=delete_confirm&amp;searchfield=".$results[$i]->{'mts_tagfield'}."&frameworkcode=".$frameworkcode;
264                         $row_data{toggle} = $toggle;
265                         $j=$i;
266                         my @internal_loop = ();
267                         while (($results[$i]->{'tagfield'}==$results[$j]->{'tagfield'}) and ($j< ($offset+$pagesize<$cnt?$offset+$pagesize:$cnt))) {
268                                 my %subfield_data;
269                                 $subfield_data{tagsubfield} = $results[$j]->{'tagsubfield'};
270                                 $subfield_data{liblibrarian} = $results[$j]->{'liblibrarian'};
271                                 $subfield_data{kohafield} = $results[$j]->{'kohafield'};
272                                 $subfield_data{repeatable} = $results[$j]->{'repeatable'};
273                                 $subfield_data{mandatory} = $results[$j]->{'mandatory'};
274                                 $subfield_data{tab} = $results[$j]->{'tab'};
275                                 $subfield_data{seealso} = $results[$j]->{'seealso'};
276                                 $subfield_data{authorised_value} = $results[$j]->{'authorised_value'};
277                                 $subfield_data{authtypecode}= $results[$j]->{'authtypecode'};
278                                 $subfield_data{value_builder}= $results[$j]->{'value_builder'};
279                                 $subfield_data{toggle}  = $toggle;
280 #                               warn "tagfield :  ".$results[$j]->{'tagfield'}." tagsubfield :".$results[$j]->{'tagsubfield'};
281                                 push @internal_loop,\%subfield_data;
282                                 $j++;
283                         }
284                         $row_data{'subfields'}=\@internal_loop;
285                         push(@loop_data, \%row_data);
286 #                       undef @internal_loop;
287                         $i=$j;
288                 }
289                 $template->param(select_display => "True",
290                                                 loop => \@loop_data);
291                 #  $sth->execute;
292                 $sth->finish;
293         } else {
294                 #here, normal old style : display every tags
295                 my ($count,$results)=StringSearch($searchfield,$frameworkcode);
296                 $cnt = $count;
297                 my $toggle=0;
298                 my @loop_data = ();
299                 for (my $i=$offset; $i < ($offset+$pagesize<$count?$offset+$pagesize:$count); $i++){
300                         if ($toggle eq 0){
301                                 $toggle=1;
302                         } else {
303                                 $toggle=0;
304                         }
305                         my %row_data;  # get a fresh hash for the row data
306                         $row_data{tagfield} = $results->[$i]{'tagfield'};
307                         $row_data{liblibrarian} = $results->[$i]{'liblibrarian'};
308                         $row_data{repeatable} = $results->[$i]{'repeatable'};
309                         $row_data{mandatory} = $results->[$i]{'mandatory'};
310                         $row_data{authorised_value} = $results->[$i]{'authorised_value'};
311                         $row_data{subfield_link} ="marc_subfields_structure.pl?tagfield=".$results->[$i]{'tagfield'}."&frameworkcode=".$frameworkcode;
312                         $row_data{edit} = "$script_name?op=add_form&amp;searchfield=".$results->[$i]{'tagfield'}."&frameworkcode=".$frameworkcode;
313                         $row_data{delete} = "$script_name?op=delete_confirm&amp;searchfield=".$results->[$i]{'tagfield'}."&frameworkcode=".$frameworkcode;
314                         $row_data{toggle} = $toggle;
315                         push(@loop_data, \%row_data);
316                 }
317                 $template->param(loop => \@loop_data);
318         }
319         if ($offset>0) {
320                 my $prevpage = $offset-$pagesize;
321                 $template->param(isprevpage => $offset,
322                                                 prevpage=> $prevpage,
323                                                 searchfield => $searchfield,
324                                                 script_name => $script_name,
325                                                 frameworkcode => $frameworkcode,
326                 );
327         }
328         if ($offset+$pagesize<$cnt) {
329                 my $nextpage =$offset+$pagesize;
330                 $template->param(nextpage =>$nextpage,
331                                                 searchfield => $searchfield,
332                                                 script_name => $script_name,
333                                                 frameworkcode => $frameworkcode,
334                 );
335         }
336 } #---- END $OP eq DEFAULT
337
338 $template->param(loggeninuser => $loggedinuser,
339                 intranetcolorstylesheet => C4::Context->preference("intranetcolorstylesheet"),
340                 intranetstylesheet => C4::Context->preference("intranetstylesheet"),
341                 IntranetNav => C4::Context->preference("IntranetNav"),
342                 );
343 output_html_with_http_headers $input, $cookie, $template->output;
344
345
346 #
347 # the sub used for searches
348 #
349 sub StringSearch  {
350         my ($searchstring,$frameworkcode)=@_;
351         my $dbh = C4::Context->dbh;
352         $searchstring=~ s/\'/\\\'/g;
353         my @data=split(' ',$searchstring);
354         my $count=@data;
355         my $sth=$dbh->prepare("Select tagfield,liblibrarian,libopac,repeatable,mandatory,authorised_value from marc_tag_structure where (tagfield >= ? and frameworkcode=?) order by tagfield");
356         $sth->execute($data[0], $frameworkcode);
357         my @results;
358         while (my $data=$sth->fetchrow_hashref){
359         push(@results,$data);
360         }
361         #  $sth->execute;
362         $sth->finish;
363         return (scalar(@results),\@results);
364 }
365
366 #
367 # the sub used to duplicate a framework from an existing one in MARC parameters tables.
368 #
369 sub duplicate_framework {
370         my ($newframeworkcode,$oldframeworkcode) = @_;
371         my $sth = $dbh->prepare("select tagfield,liblibrarian,libopac,repeatable,mandatory,authorised_value from marc_tag_structure where frameworkcode=?");
372         $sth->execute($oldframeworkcode);
373         my $sth_insert = $dbh->prepare("insert into marc_tag_structure (tagfield, liblibrarian, libopac, repeatable, mandatory, authorised_value, frameworkcode) values (?,?,?,?,?,?,?)");
374         while ( my ($tagfield,$liblibrarian,$libopac,$repeatable,$mandatory,$authorised_value) = $sth->fetchrow) {
375                 $sth_insert->execute($tagfield,$liblibrarian,$libopac,$repeatable,$mandatory,$authorised_value,$newframeworkcode);
376         }
377
378         $sth = $dbh->prepare("select frameworkcode,tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,seealso from marc_subfield_structure where frameworkcode=?");
379         $sth->execute($oldframeworkcode);
380         $sth_insert = $dbh->prepare("insert into marc_subfield_structure (frameworkcode,tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,seealso) values (?,?,?,?,?,?,?,?,?,?,?,?,?)");
381         while ( my ($frameworkcode, $tagfield, $tagsubfield, $liblibrarian, $libopac, $repeatable, $mandatory, $kohafield, $tab, $authorised_value, $thesaurus_category, $value_builder, $seealso) = $sth->fetchrow) {
382             $sth_insert->execute($newframeworkcode, $tagfield, $tagsubfield, $liblibrarian, $libopac, $repeatable, $mandatory, $kohafield, $tab, $authorised_value, $thesaurus_category, $value_builder, $seealso);
383         }
384 }
385