Bug 24573: Add missing dependencies to cpanfile
[koha.git] / admin / marctagstructure.pl
blobb5d70040699b700fed3e3d4b709f947d6cea5161
1 #!/usr/bin/perl
4 # Copyright 2000-2002 Katipo Communications
6 # This file is part of Koha.
8 # Koha is free software; you can redistribute it and/or modify it
9 # under the terms of the GNU General Public License as published by
10 # the Free Software Foundation; either version 3 of the License, or
11 # (at your option) any later version.
13 # Koha is distributed in the hope that it will be useful, but
14 # WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 # GNU General Public License for more details.
18 # You should have received a copy of the GNU General Public License
19 # along with Koha; if not, see <http://www.gnu.org/licenses>.
21 use Modern::Perl;
22 use CGI qw ( -utf8 );
23 use C4::Auth;
24 use C4::Koha;
25 use C4::Context;
26 use C4::Output;
27 use C4::Context;
29 use Koha::Caches;
30 use Koha::AuthorisedValues;
31 use Koha::BiblioFrameworks;
33 # retrieve parameters
34 my $input = new CGI;
35 my $frameworkcode = $input->param('frameworkcode') || ''; # set to select framework
36 my $existingframeworkcode = $input->param('existingframeworkcode') || '';
37 my $searchfield = $input->param('searchfield') || 0;
38 $searchfield=~ s/\,//g;
40 my $offset = $input->param('offset') || 0;
41 my $op = $input->param('op') || '';
42 my $dspchoice = $input->cookie("marctagstructure_selectdisplay") // $input->param('select_display');
43 my $pagesize = 20;
45 my $script_name = "/cgi-bin/koha/admin/marctagstructure.pl";
47 my $dbh = C4::Context->dbh;
48 my $cache = Koha::Caches->get_instance();
50 # open template
51 my ($template, $loggedinuser, $cookie)
52 = get_template_and_user({template_name => "admin/marctagstructure.tt",
53 query => $input,
54 type => "intranet",
55 authnotrequired => 0,
56 flagsrequired => { parameters => 'manage_marc_frameworks' },
57 debug => 1,
58 });
60 my $frameworks = Koha::BiblioFrameworks->search({}, { order_by => ['frameworktext'] });
62 # check that framework is defined in marc_tag_structure
63 my $sth=$dbh->prepare("select count(*) from marc_tag_structure where frameworkcode=?");
64 $sth->execute($frameworkcode);
65 my ($frameworkexist) = $sth->fetchrow;
66 unless ($frameworkexist) {
67 # if frameworkcode does not exists, then OP must be changed to "create framework" if we are not on the way to create it
68 # (op = itemtyp_create_confirm)
69 if ($op eq "framework_create_confirm") {
70 duplicate_framework($frameworkcode, $existingframeworkcode);
71 $op = ""; # unset $op to go back to framework list
72 } else {
73 $op = "framework_create";
77 my $framework = $frameworks->search({ frameworkcode => $frameworkcode })->next;
78 $template->param(
79 frameworks => $frameworks,
80 framework => $framework,
81 script_name => $script_name,
82 ( $op || 'else' ) => 1,
86 ################## ADD_FORM ##################################
87 # called by default. Used to create form to add or modify a record
88 if ($op eq 'add_form') {
89 #---- if primkey exists, it's a modify action, so read values to modify...
90 my $data;
91 if ($searchfield) {
92 $sth=$dbh->prepare("select tagfield,liblibrarian,libopac,repeatable,mandatory,important,authorised_value,ind1_defaultvalue,ind2_defaultvalue from marc_tag_structure where tagfield=? and frameworkcode=?");
93 $sth->execute($searchfield,$frameworkcode);
94 $data=$sth->fetchrow_hashref;
97 if ($searchfield) {
98 $template->param(searchfield => $searchfield);
99 $template->param(action => "Modify tag");
100 $template->param('heading_modify_tag_p' => 1);
101 } else {
102 $template->param(action => "Add tag");
103 $template->param('heading_add_tag_p' => 1);
105 $template->param('use_heading_flags_p' => 1);
106 $template->param(liblibrarian => $data->{'liblibrarian'},
107 libopac => $data->{'libopac'},
108 repeatable => $data->{'repeatable'},
109 mandatory => $data->{'mandatory'},
110 important => $data->{'important'},
111 authorised_value => $data->{authorised_value},
112 ind1_defaultvalue => $data->{'ind1_defaultvalue'},
113 ind2_defaultvalue => $data->{'ind2_defaultvalue'}
114 ); # FIXME: move checkboxes to presentation layer
115 # END $OP eq ADD_FORM
116 ################## ADD_VALIDATE ##################################
117 # called by add_form, used to insert/modify data in DB
118 } elsif ($op eq 'add_validate') {
119 my $tagfield = $input->param('tagfield');
120 my $liblibrarian = $input->param('liblibrarian');
121 my $libopac = $input->param('libopac');
122 my $repeatable = $input->param('repeatable') ? 1 : 0;
123 my $mandatory = $input->param('mandatory') ? 1 : 0;
124 my $important = $input->param('important') ? 1 : 0;
125 my $authorised_value = $input->param('authorised_value');
126 my $ind1_defaultvalue = $input->param('ind1_defaultvalue');
127 my $ind2_defaultvalue = $input->param('ind2_defaultvalue');
128 if ($input->param('modif')) {
129 $sth = $dbh->prepare(
130 "UPDATE marc_tag_structure SET liblibrarian=? ,libopac=? ,repeatable=? ,mandatory=? ,important=? ,authorised_value=?, ind1_defaultvalue=?, ind2_defaultvalue=? WHERE frameworkcode=? AND tagfield=?"
132 $sth->execute( $liblibrarian,
133 $libopac,
134 $repeatable,
135 $mandatory,
136 $important,
137 $authorised_value,
138 $ind1_defaultvalue,
139 $ind2_defaultvalue,
140 $frameworkcode,
141 $tagfield
143 } else {
144 $sth = $dbh->prepare(
145 "INSERT INTO marc_tag_structure (tagfield,liblibrarian,libopac,repeatable,mandatory,important,authorised_value,ind1_defaultvalue,ind2_defaultvalue,frameworkcode) values (?,?,?,?,?,?,?,?,?,?)"
147 $sth->execute($tagfield,
148 $liblibrarian,
149 $libopac,
150 $repeatable,
151 $mandatory,
152 $important,
153 $authorised_value,
154 $ind1_defaultvalue,
155 $ind2_defaultvalue,
156 $frameworkcode
159 $cache->clear_from_cache("MarcStructure-0-$frameworkcode");
160 $cache->clear_from_cache("MarcStructure-1-$frameworkcode");
161 $cache->clear_from_cache("default_value_for_mod_marc-");
162 $cache->clear_from_cache("MarcSubfieldStructure-$frameworkcode");
163 print $input->redirect("/cgi-bin/koha/admin/marctagstructure.pl?searchfield=$tagfield&frameworkcode=$frameworkcode");
164 exit;
165 # END $OP eq ADD_VALIDATE
166 ################## DELETE_CONFIRM ##################################
167 # called by default form, used to confirm deletion of data in DB
168 } elsif ($op eq 'delete_confirm') {
169 $sth=$dbh->prepare("select tagfield,liblibrarian,libopac,repeatable,mandatory,authorised_value,ind1_defaultvalue,ind2_defaultvalue from marc_tag_structure where tagfield=? and frameworkcode=?");
170 $sth->execute($searchfield, $frameworkcode);
171 my $data = $sth->fetchrow_hashref;
172 $template->param(
173 liblibrarian => $data->{'liblibrarian'},
174 searchfield => $searchfield
176 # END $OP eq DELETE_CONFIRM
177 ################## DELETE_CONFIRMED ##################################
178 # called by delete_confirm, used to effectively confirm deletion of data in DB
179 } elsif ($op eq 'delete_confirmed') {
180 my $sth1 = $dbh->prepare("DELETE FROM marc_tag_structure WHERE tagfield=? AND frameworkcode=?");
181 my $sth2 = $dbh->prepare("DELETE FROM marc_subfield_structure WHERE tagfield=? AND frameworkcode=?");
182 $sth1->execute($searchfield, $frameworkcode);
183 $sth2->execute($searchfield, $frameworkcode);
184 $cache->clear_from_cache("MarcStructure-0-$frameworkcode");
185 $cache->clear_from_cache("MarcStructure-1-$frameworkcode");
186 $cache->clear_from_cache("default_value_for_mod_marc-");
187 $cache->clear_from_cache("MarcSubfieldStructure-$frameworkcode");
188 $template->param( searchfield => $searchfield );
189 # END $OP eq DELETE_CONFIRMED
190 ################## ITEMTYPE_CREATE ##################################
191 # called automatically if an unexisting frameworkis selected
192 } elsif ($op eq 'framework_create') {
193 $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");
194 $sth->execute;
195 my @existingframeworkloop;
196 while (my ($tot,$thisframeworkcode,$frameworktext) = $sth->fetchrow) {
197 if ($tot>0) {
198 push @existingframeworkloop, {
199 value => $thisframeworkcode,
200 frameworktext => $frameworktext,
204 $template->param( existingframeworkloop => \@existingframeworkloop );
206 ################## DEFAULT ##################################
207 } else { # DEFAULT
208 # here, $op can be unset or set to "framework_create_confirm".
209 if ($searchfield ne '') {
210 $template->param(searchfield => $searchfield);
212 my $cnt=0;
213 if ($dspchoice) {
214 #here, user only wants used tags/subfields displayed
215 $searchfield=~ s/\'/\\\'/g;
216 my @data=split(' ',$searchfield);
217 my $sth=$dbh->prepare("
218 SELECT marc_tag_structure.tagfield AS mts_tagfield,
219 marc_tag_structure.liblibrarian as mts_liblibrarian,
220 marc_tag_structure.libopac as mts_libopac,
221 marc_tag_structure.repeatable as mts_repeatable,
222 marc_tag_structure.mandatory as mts_mandatory,
223 marc_tag_structure.important as mts_important,
224 marc_tag_structure.authorised_value as mts_authorized_value,
225 marc_tag_structure.ind1_defaultvalue as mts_ind1_defaultvalue,
226 marc_tag_structure.ind1_defaultvalue as mts_ind2_defaultvalue,
227 marc_subfield_structure.*
228 FROM marc_tag_structure
229 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");
230 #could be ordoned by tab
231 $sth->execute($data[0], $frameworkcode);
232 my @results = ();
233 while (my $data=$sth->fetchrow_hashref){
234 push(@results,$data);
235 $cnt++;
238 my @loop_data = ();
239 my $j=1;
240 my $i=$offset;
241 while ( $i < $cnt ) {
242 my %row_data; # get a fresh hash for the row data
243 $row_data{tagfield} = $results[$i]->{'mts_tagfield'};
244 $row_data{liblibrarian} = $results[$i]->{'mts_liblibrarian'};
245 $row_data{repeatable} = $results[$i]->{'mts_repeatable'};
246 $row_data{mandatory} = $results[$i]->{'mts_mandatory'};
247 $row_data{important} = $results[$i]->{'mts_important'};
248 $row_data{authorised_value} = $results[$i]->{'mts_authorised_value'};
249 $row_data{ind1_defaultvalue} = $results[$i]->{'mts_ind1_defaultvalue'};
250 $row_data{ind2_defaultvalue} = $results[$i]->{'mts_ind2_defaultvalue'};
251 $j=$i;
252 my @internal_loop = ();
253 while ( ( $j < $cnt ) and ( $results[$i]->{'tagfield'} == $results[$j]->{'tagfield'} ) ) {
254 my %subfield_data;
255 $subfield_data{tagsubfield} = $results[$j]->{'tagsubfield'};
256 $subfield_data{liblibrarian} = $results[$j]->{'liblibrarian'};
257 $subfield_data{kohafield} = $results[$j]->{'kohafield'};
258 $subfield_data{repeatable} = $results[$j]->{'repeatable'};
259 $subfield_data{mandatory} = $results[$j]->{'mandatory'};
260 $subfield_data{important} = $results[$j]->{'important'};
261 $subfield_data{tab} = $results[$j]->{'tab'};
262 $subfield_data{seealso} = $results[$j]->{'seealso'};
263 $subfield_data{authorised_value} = $results[$j]->{'authorised_value'};
264 $subfield_data{authtypecode} = $results[$j]->{'authtypecode'};
265 $subfield_data{value_builder} = $results[$j]->{'value_builder'};
266 # warn "tagfield : ".$results[$j]->{'tagfield'}." tagsubfield :".$results[$j]->{'tagsubfield'};
267 push @internal_loop,\%subfield_data;
268 $j++;
270 $row_data{'subfields'}=\@internal_loop;
271 push(@loop_data, \%row_data);
272 $i=$j;
274 $template->param(select_display => "True",
275 loop => \@loop_data);
276 } else {
277 # Hidden feature: If search was field$subfield, redirect to the subfield edit form
278 my ( $tagfield, $tagsubfield ) = split /\$/, $searchfield;
279 if ( $tagsubfield ) {
280 print $input->redirect('/cgi-bin/koha/admin/marc_subfields_structure.pl?op=add_form&tagfield='.$tagfield.'&frameworkcode='.$frameworkcode.'#sub'.$tagsubfield.'field');
281 exit;
283 #here, normal old style : display every tags
284 my ($count,$results)=StringSearch($searchfield,$frameworkcode);
285 $cnt = $count;
286 my @loop_data = ();
287 for ( my $i = $offset ; $i < $count ; $i++ ) {
288 my %row_data; # get a fresh hash for the row data
289 $row_data{tagfield} = $results->[$i]{'tagfield'};
290 $row_data{liblibrarian} = $results->[$i]{'liblibrarian'};
291 $row_data{repeatable} = $results->[$i]{'repeatable'};
292 $row_data{mandatory} = $results->[$i]{'mandatory'};
293 $row_data{important} = $results->[$i]{'important'};
294 $row_data{authorised_value} = $results->[$i]{'authorised_value'};
295 $row_data{ind1_defaultvalue} = $results->[$i]{'ind1_defaultvalue'};
296 $row_data{ind2_defaultvalue} = $results->[$i]{'ind2_defaultvalue'};
297 push(@loop_data, \%row_data);
299 $template->param(loop => \@loop_data);
301 if ($offset>0) {
302 $template->param(isprevpage => $offset,
303 prevpage=> $offset-$pagesize,
304 searchfield => $searchfield,
305 script_name => $script_name
308 if ($offset+$pagesize<$cnt) {
309 $template->param(nextpage =>$offset+$pagesize,
310 searchfield => $searchfield,
311 script_name => $script_name
314 } #---- END $OP eq DEFAULT
316 output_html_with_http_headers $input, $cookie, $template->output;
319 # the sub used for searches
321 sub StringSearch {
322 my ($searchstring,$frameworkcode)=@_;
323 my $sth = C4::Context->dbh->prepare("
324 SELECT tagfield,liblibrarian,libopac,repeatable,mandatory,important,authorised_value,ind1_defaultvalue,ind2_defaultvalue
325 FROM marc_tag_structure
326 WHERE (tagfield >= ? and frameworkcode=?)
327 ORDER BY tagfield
329 $sth->execute($searchstring, $frameworkcode);
330 my $results = $sth->fetchall_arrayref({});
331 return (scalar(@$results), $results);
335 # the sub used to duplicate a framework from an existing one in MARC parameters tables.
337 sub duplicate_framework {
338 my ($newframeworkcode,$oldframeworkcode) = @_;
339 my $dbh = C4::Context->dbh;
340 $dbh->do(q|INSERT INTO marc_tag_structure (tagfield, liblibrarian, libopac, repeatable, mandatory, authorised_value, ind1_defaultvalue, ind2_defaultvalue, frameworkcode)
341 SELECT tagfield,liblibrarian,libopac,repeatable,mandatory,authorised_value, ind1_defaultvalue, ind2_defaultvalue, ? from marc_tag_structure where frameworkcode=?|, undef, $newframeworkcode, $oldframeworkcode );
343 $dbh->do(q|INSERT INTO marc_subfield_structure (frameworkcode,tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,seealso,hidden)
344 SELECT ?,tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,authorised_value,authtypecode,value_builder,seealso,hidden from marc_subfield_structure where frameworkcode=?
345 |, undef, $newframeworkcode, $oldframeworkcode );