Bug 14910: Redirect to the circulation module after a renew
[koha.git] / admin / koha2marclinks.pl
1 #!/usr/bin/perl
2
3 # Copyright 2000-2002 Katipo Communications
4 #
5 # This file is part of Koha.
6 #
7 # Koha is free software; you can redistribute it and/or modify it
8 # under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 3 of the License, or
10 # (at your option) any later version.
11 #
12 # Koha is distributed in the hope that it will be useful, but
13 # WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 # GNU General Public License for more details.
16 #
17 # You should have received a copy of the GNU General Public License
18 # along with Koha; if not, see <http://www.gnu.org/licenses>.
19
20 use strict;
21 use warnings;
22 use C4::Output;
23 use C4::Auth;
24 use CGI qw ( -utf8 );
25 use C4::Context;
26 use C4::Biblio;
27
28
29 my $input       = new CGI;
30 my $tablename   = $input->param('tablename');
31 $tablename      = "biblio" unless ($tablename);
32 my $kohafield   = $input->param('kohafield');
33 my $op          = $input->param('op');
34 my $script_name = 'koha2marclinks.pl';
35
36 my ( $template, $borrowernumber, $cookie ) = get_template_and_user (
37     {
38         template_name   => "admin/koha2marclinks.tt",
39         query           => $input,
40         type            => "intranet",
41         authnotrequired => 0,
42         flagsrequired   => { parameters => 'parameters_remaining_permissions' },
43         debug           => 1,
44     }
45 );
46
47 if ($op) {
48     $template->param(
49         script_name => $script_name,
50         $op         => 1
51     );    # we show only the TMPL_VAR names $op
52 }
53 else {
54     $template->param(
55         script_name => $script_name,
56         else        => 1
57     );    # we show only the TMPL_VAR names $op
58     $op = q{};
59 }
60
61 my $dbh = C4::Context->dbh;
62 my $cache = Koha::Cache->get_instance();
63
64 ################## ADD_FORM ##################################
65 # called by default. Used to create form to add or  modify a record
66 if ( $op eq 'add_form' ) {
67     my $data;
68     my $sth =
69       $dbh->prepare(
70 "select tagfield,tagsubfield,liblibrarian as lib,tab from marc_subfield_structure where kohafield=? AND frameworkcode=''"
71       );
72     $sth->execute( $tablename . "." . $kohafield );
73     my ( $defaulttagfield, $defaulttagsubfield, $defaultliblibrarian ) =
74       $sth->fetchrow;
75
76     for ( my $i = 0 ; $i <= 9 ; $i++ ) {
77         my $sth2 =
78           $dbh->prepare(
79 "select tagfield,tagsubfield,liblibrarian as lib,tab from marc_subfield_structure where tagfield like ? AND frameworkcode=''"
80           );
81         $sth2->execute("$i%");
82         my @marcarray;
83         push @marcarray, " ";
84         while ( my ( $field, $tagsubfield, $liblibrarian ) =
85             $sth2->fetchrow_array )
86         {
87             push @marcarray, "$field $tagsubfield - $liblibrarian";
88         }
89         my $marclist = {
90             values  => \@marcarray,
91             default => "$defaulttagfield $defaulttagsubfield - $defaultliblibrarian",
92         };
93         $template->param( "marclist$i" => $marclist );
94     }
95     $template->param(
96         tablename => $tablename,
97         kohafield => $kohafield
98     );
99
100     # END $OP eq ADD_FORM
101 ################## ADD_VALIDATE ##################################
102     # called by add_form, used to insert/modify data in DB
103 }
104 elsif ( $op eq 'add_validate' ) {
105
106     #----- empty koha field :
107     $dbh->do(
108 "update marc_subfield_structure set kohafield='' where kohafield='$tablename.$kohafield'"
109     );
110
111     #---- reload if not empty
112     my @temp = split / /, $input->param('marc');
113     $dbh->do(
114 "update marc_subfield_structure set kohafield='$tablename.$kohafield' where tagfield='$temp[0]' and tagsubfield='$temp[1]'"
115     );
116     # We could get a list of all frameworks and do them one-by-one, or zap
117     # everything.
118     $cache->flush_all();
119     print $input->redirect("/cgi-bin/koha/admin/koha2marclinks.pl?tablename=$tablename");
120     exit;
121
122     # END $OP eq ADD_VALIDATE
123 ################## DEFAULT ##################################
124 }
125 else {    # DEFAULT
126     my $sth =
127       $dbh->prepare(
128 q|select tagfield,tagsubfield,liblibrarian,kohafield from marc_subfield_structure where kohafield is not NULL and kohafield != ''|
129       );
130     $sth->execute;
131     my %fields;
132     while ( ( my $tagfield, my $tagsubfield, my $liblibrarian, my $kohafield ) =
133         $sth->fetchrow ) {
134         $fields{$kohafield}->{tagfield}     = $tagfield;
135         $fields{$kohafield}->{tagsubfield}  = $tagsubfield;
136         $fields{$kohafield}->{liblibrarian} = $liblibrarian;
137     }
138
139   #XXX: This might not work. Maybe should use a DBI call instead of SHOW COLUMNS
140     my $sth2 = $dbh->prepare("SHOW COLUMNS from $tablename");
141     $sth2->execute;
142
143     my @loop_data = ();
144     while ( ( my $field ) = $sth2->fetchrow_array ) {
145         my %row_data;    # get a fresh hash for the row data
146         $row_data{tagfield} = $fields{ $tablename . "." . $field }->{tagfield};
147         $row_data{tagsubfield} =
148           $fields{ $tablename . "." . $field }->{tagsubfield};
149         $row_data{liblibrarian} =
150           $fields{ $tablename . "." . $field }->{liblibrarian};
151         $row_data{kohafield} = $field;
152         $row_data{edit} =
153 "$script_name?op=add_form&amp;tablename=$tablename&amp;kohafield=$field";
154         push( @loop_data, \%row_data );
155     }
156     my $tablenames = {
157         values  => [ 'biblio', 'biblioitems', 'items' ],
158         default => $tablename,
159     };
160     $template->param(
161         loop      => \@loop_data,
162         tablename => $tablenames,
163     );
164 }    #---- END $OP eq DEFAULT
165 output_html_with_http_headers $input, $cookie, $template->output;