Continuing on my tests mission
[koha.git] / admin / biblio_framework.pl
1 #!/usr/bin/perl
2 # NOTE: 4-character tabs
3
4 #written 20/02/2002 by paul.poulain@free.fr
5 # This software is placed under the gnu General Public License, v2 (http://www.gnu.org/licenses/gpl.html)
6
7 # Copyright 2000-2002 Katipo Communications
8 #
9 # This file is part of Koha.
10 #
11 # Koha is free software; you can redistribute it and/or modify it under the
12 # terms of the GNU General Public License as published by the Free Software
13 # Foundation; either version 2 of the License, or (at your option) any later
14 # version.
15 #
16 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
17 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
18 # A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
19 #
20 # You should have received a copy of the GNU General Public License along with
21 # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
22 # Suite 330, Boston, MA  02111-1307 USA
23
24 use strict;
25 use CGI;
26 use C4::Context;
27 use C4::Auth;
28 use C4::Output;
29
30
31 sub StringSearch  {
32         my ($searchstring,$type)=@_;
33         my $dbh = C4::Context->dbh;
34         $searchstring=~ s/\'/\\\'/g;
35         my @data=split(' ',$searchstring);
36         my $count=@data;
37         my $sth=$dbh->prepare("Select * from biblio_framework where (frameworkcode like ?) order by frameworktext");
38         $sth->execute("$data[0]%");
39         my @results;
40         while (my $data=$sth->fetchrow_hashref){
41         push(@results,$data);
42         }
43         #  $sth->execute;
44         $sth->finish;
45         return (scalar(@results),\@results);
46 }
47
48 my $input = new CGI;
49 my $searchfield=$input->param('frameworkcode');
50 my $offset=$input->param('offset');
51 my $script_name="/cgi-bin/koha/admin/biblio_framework.pl";
52 my $frameworkcode=$input->param('frameworkcode');
53 my $pagesize=20;
54 my $op = $input->param('op');
55 $searchfield=~ s/\,//g;
56 my ($template, $borrowernumber, $cookie)
57     = get_template_and_user({template_name => "admin/biblio_framework.tmpl",
58                              query => $input,
59                              type => "intranet",
60                              authnotrequired => 0,
61                              flagsrequired => {parameters => 1},
62                              debug => 1,
63                              });
64
65 if ($op) {
66 $template->param(script_name => $script_name,
67                                                 $op              => 1); # we show only the TMPL_VAR names $op
68 } else {
69 $template->param(script_name => $script_name,
70                                                 else              => 1); # we show only the TMPL_VAR names $op
71 }
72
73
74
75
76 ################## ADD_FORM ##################################
77 # called by default. Used to create form to add or  modify a record
78 if ($op eq 'add_form') {
79         #start the page and read in includes
80         #---- if primkey exists, it's a modify action, so read values to modify...
81         my $data;
82         if ($frameworkcode) {
83                 my $dbh = C4::Context->dbh;
84                 my $sth=$dbh->prepare("select * from biblio_framework where frameworkcode=?");
85                 $sth->execute($frameworkcode);
86                 $data=$sth->fetchrow_hashref;
87                 $sth->finish;
88         }
89         $template->param(frameworkcode => $frameworkcode,
90                                                         frameworktext => $data->{'frameworktext'},
91                                                         );
92 ;
93                                                                                                         # END $OP eq ADD_FORM
94 ################## ADD_VALIDATE ##################################
95 # called by add_form, used to insert/modify data in DB
96 } elsif ($op eq 'add_validate') {
97         my $dbh = C4::Context->dbh;
98         my $sth=$dbh->prepare("replace biblio_framework (frameworkcode,frameworktext) values (?,?)");
99         $sth->execute($input->param('frameworkcode'),$input->param('frameworktext'));
100         $sth->finish;
101         print "Content-Type: text/html\n\n<META HTTP-EQUIV=Refresh CONTENT=\"0; URL=biblio_framework.pl\"></html>";
102         exit;
103                                                                                                         # END $OP eq ADD_VALIDATE
104 ################## DELETE_CONFIRM ##################################
105 # called by default form, used to confirm deletion of data in DB
106 } elsif ($op eq 'delete_confirm') {
107         #start the page and read in includes
108         my $dbh = C4::Context->dbh;
109
110         # Check both categoryitem and biblioitems, see Bug 199
111         my $total = 0;
112         for my $table ('marc_tag_structure') {
113            my $sth=$dbh->prepare("select count(*) as total from $table where frameworkcode=?");
114            $sth->execute($frameworkcode);
115            $total += $sth->fetchrow_hashref->{total};
116            $sth->finish;
117         }
118
119         my $sth=$dbh->prepare("select * from biblio_framework where frameworkcode=?");
120         $sth->execute($frameworkcode);
121         my $data=$sth->fetchrow_hashref;
122         $sth->finish;
123
124         $template->param(frameworkcode => $frameworkcode,
125                                                         frameworktext => $data->{'frameworktext'},
126                                                         total => $total);
127                                                                                                         # END $OP eq DELETE_CONFIRM
128 ################## DELETE_CONFIRMED ##################################
129 # called by delete_confirm, used to effectively confirm deletion of data in DB
130 } elsif ($op eq 'delete_confirmed') {
131         #start the page and read in includes
132         my $dbh = C4::Context->dbh;
133         my $frameworkcode=uc($input->param('frameworkcode'));
134         my $sth=$dbh->prepare("delete from marc_tag_structure where frameworkcode=?");
135         $sth->execute($frameworkcode);
136         $sth=$dbh->prepare("delete from marc_subfield_structure where frameworkcode=?");
137         $sth->execute($frameworkcode);
138         $sth=$dbh->prepare("delete from biblio_framework where frameworkcode=?");
139         $sth->execute($frameworkcode);
140         $sth->finish;
141         print "Content-Type: text/html\n\n<META HTTP-EQUIV=Refresh CONTENT=\"0; URL=biblio_framework.pl\"></html>";
142         exit;
143                                                                                                         # END $OP eq DELETE_CONFIRMED
144 ################## DEFAULT ##################################
145 } else { # DEFAULT
146         my ($count,$results)=StringSearch($searchfield,'web');
147         my $toggle="white";
148         my @loop_data;
149         for (my $i=$offset; $i < ($offset+$pagesize<$count?$offset+$pagesize:$count); $i++){
150                 my %row_data;
151                 if ($toggle eq 'white'){
152                         $row_data{toggle}="#ffffcc";
153                 } else {
154                         $row_data{toggle}="white";
155                 }
156                 $row_data{frameworkcode} = $results->[$i]{'frameworkcode'};
157                 $row_data{frameworktext} = $results->[$i]{'frameworktext'};
158                 push(@loop_data, \%row_data);
159         }
160         $template->param(loop => \@loop_data);
161         if ($offset>0) {
162                 my $prevpage = $offset-$pagesize;
163                 $template->param(previous => "$script_name?offset=".$prevpage);
164         }
165         if ($offset+$pagesize<$count) {
166                 my $nextpage =$offset+$pagesize;
167                 $template->param(next => "$script_name?offset=".$nextpage);
168         }
169 } #---- END $OP eq DEFAULT
170 $template->param(intranetcolorstylesheet => C4::Context->preference("intranetcolorstylesheet"),
171                 intranetstylesheet => C4::Context->preference("intranetstylesheet"),
172                 IntranetNav => C4::Context->preference("IntranetNav"),
173                 );
174 output_html_with_http_headers $input, $cookie, $template->output;
175
176 # Local Variables:
177 # tab-width: 4
178 # End: