MARC authorities management (1st draft)
[koha.git] / admin / authtypes.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::Output;
28 use C4::Search;
29 use C4::Auth;
30 use C4::Interface::CGI::Output;
31 use HTML::Template;
32
33 sub StringSearch  {
34         my ($env,$searchstring,$type)=@_;
35         my $dbh = C4::Context->dbh;
36         $searchstring=~ s/\'/\\\'/g;
37         my @data=split(' ',$searchstring);
38         my $count=@data;
39         my $sth=$dbh->prepare("Select * from auth_types where (authtypecode like ?) order by authtypecode");
40         $sth->execute("$data[0]%");
41         my @results;
42         while (my $data=$sth->fetchrow_hashref){
43         push(@results,$data);
44         }
45         #  $sth->execute;
46         $sth->finish;
47         return (scalar(@results),\@results);
48 }
49
50 my $input = new CGI;
51 my $searchfield=$input->param('authtypecode');
52 my $offset=$input->param('offset');
53 my $script_name="/cgi-bin/koha/admin/authtypes.pl";
54 my $authtypecode=$input->param('authtypecode');
55 my $pagesize=20;
56 my $op = $input->param('op');
57 $searchfield=~ s/\,//g;
58 my ($template, $borrowernumber, $cookie)
59     = get_template_and_user({template_name => "parameters/authtypes.tmpl",
60                              query => $input,
61                              type => "intranet",
62                              authnotrequired => 0,
63                              flagsrequired => {parameters => 1},
64                              debug => 1,
65                              });
66
67 if ($op) {
68 $template->param(script_name => $script_name,
69                                                 $op              => 1); # we show only the TMPL_VAR names $op
70 } else {
71 $template->param(script_name => $script_name,
72                                                 else              => 1); # we show only the TMPL_VAR names $op
73 }
74 ################## ADD_FORM ##################################
75 # called by default. Used to create form to add or  modify a record
76 if ($op eq 'add_form') {
77         #start the page and read in includes
78         #---- if primkey exists, it's a modify action, so read values to modify...
79         my $data;
80         if ($authtypecode) {
81                 my $dbh = C4::Context->dbh;
82                 my $sth=$dbh->prepare("select authtypecode,authtypetext,auth_tag_to_report from auth_types where authtypecode=?");
83                 $sth->execute($authtypecode);
84                 $data=$sth->fetchrow_hashref;
85                 $sth->finish;
86         }
87         $template->param(authtypecode => $authtypecode,
88                                                         authtypetext => $data->{'authtypetext'},
89                                                         auth_tag_to_report => $data->{'auth_tag_to_report'},
90                                                         );
91 ;
92                                                                                                         # END $OP eq ADD_FORM
93 ################## ADD_VALIDATE ##################################
94 # called by add_form, used to insert/modify data in DB
95 } elsif ($op eq 'add_validate') {
96         my $dbh = C4::Context->dbh;
97         my $sth=$dbh->prepare("replace auth_types (authtypecode,authtypetext,auth_tag_to_report) values (?,?,?)");
98         $sth->execute($input->param('authtypecode'),$input->param('authtypetext'),$input->param('auth_tag_to_report'));
99         $sth->finish;
100         print "Content-Type: text/html\n\n<META HTTP-EQUIV=Refresh CONTENT=\"0; URL=authtypes.pl\"></html>";
101         exit;
102                                                                                                         # END $OP eq ADD_VALIDATE
103 ################## DELETE_CONFIRM ##################################
104 # called by default form, used to confirm deletion of data in DB
105 } elsif ($op eq 'delete_confirm') {
106         #start the page and read in includes
107         my $dbh = C4::Context->dbh;
108
109         # Check both categoryitem and biblioitems, see Bug 199
110         my $total = 0;
111         for my $table ('auth_tag_structure') {
112            my $sth=$dbh->prepare("select count(*) as total from $table where authtypecode=?");
113            $sth->execute($authtypecode);
114            $total += $sth->fetchrow_hashref->{total};
115            $sth->finish;
116         }
117
118         my $sth=$dbh->prepare("select authtypecode,authtypetext from authtypes where authtypecode=?");
119         $sth->execute($authtypecode);
120         my $data=$sth->fetchrow_hashref;
121         $sth->finish;
122
123         $template->param(authtypecode => $authtypecode,
124                                                         authtypetext => $data->{'authtypetext'},
125                                                         total => $total);
126                                                                                                         # END $OP eq DELETE_CONFIRM
127 ################## DELETE_CONFIRMED ##################################
128 # called by delete_confirm, used to effectively confirm deletion of data in DB
129 } elsif ($op eq 'delete_confirmed') {
130         #start the page and read in includes
131         my $dbh = C4::Context->dbh;
132         my $authtypecode=uc($input->param('authtypecode'));
133         my $sth=$dbh->prepare("delete from auth_types where authtypecode=?");
134         $sth->execute($authtypecode);
135         $sth->finish;
136         print "Content-Type: text/html\n\n<META HTTP-EQUIV=Refresh CONTENT=\"0; URL=authtypes.pl\"></html>";
137         exit;
138                                                                                                         # END $OP eq DELETE_CONFIRMED
139 ################## DEFAULT ##################################
140 } else { # DEFAULT
141         my $env;
142         my ($count,$results)=StringSearch($env,$searchfield,'web');
143         my $toggle="white";
144         my @loop_data;
145         for (my $i=$offset; $i < ($offset+$pagesize<$count?$offset+$pagesize:$count); $i++){
146                 my %row_data;
147                 if ($toggle eq 'white'){
148                         $row_data{toggle}="#ffffcc";
149                 } else {
150                         $row_data{toggle}="white";
151                 }
152                 $row_data{authtypecode} = $results->[$i]{'authtypecode'};
153                 $row_data{authtypetext} = $results->[$i]{'authtypetext'};
154                 $row_data{auth_tag_to_report} = $results->[$i]{'auth_tag_to_report'};
155                 push(@loop_data, \%row_data);
156         }
157         $template->param(loop => \@loop_data);
158         if ($offset>0) {
159                 my $prevpage = $offset-$pagesize;
160                 $template->param(previous => "$script_name?offset=".$prevpage);
161         }
162         if ($offset+$pagesize<$count) {
163                 my $nextpage =$offset+$pagesize;
164                 $template->param(next => "$script_name?offset=".$nextpage);
165         }
166 } #---- END $OP eq DEFAULT
167 output_html_with_http_headers $input, $cookie, $template->output;
168
169 # Local Variables:
170 # tab-width: 4
171 # End: