admin/printers - basic cleanup
[koha.git] / admin / stopwords.pl
1 #!/usr/bin/perl
2
3 #script to administer the stopwords table
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 # ALGO :
8 # this script use an $op to know what to do.
9 # if $op is empty or none of the above values,
10 #       - the default screen is build (with all records, or filtered datas).
11 #       - the   user can clic on add, modify or delete record.
12 # if $op=add_form
13 #       - if primkey exists, this is a modification,so we read the $primkey record
14 #       - builds the add/modify form
15 # if $op=add_validate
16 #       - the user has just send datas, so we create/modify the record
17 # if $op=delete_form
18 #       - we show the record having primkey=$primkey and ask for deletion validation form
19 # if $op=delete_confirm
20 #       - we delete the record having primkey=$primkey
21
22
23 # Copyright 2000-2002 Katipo Communications
24 #
25 # This file is part of Koha.
26 #
27 # Koha is free software; you can redistribute it and/or modify it under the
28 # terms of the GNU General Public License as published by the Free Software
29 # Foundation; either version 2 of the License, or (at your option) any later
30 # version.
31 #
32 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
33 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
34 # A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
35 #
36 # You should have received a copy of the GNU General Public License along with
37 # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
38 # Suite 330, Boston, MA  02111-1307 USA
39
40 use strict;
41 use CGI;
42 use C4::Context;
43 use C4::Output;
44 use C4::Search;
45 use C4::Auth;
46
47 sub StringSearch  {
48         my ($env,$searchstring,$type)=@_;
49         my $dbh = C4::Context->dbh;
50         $searchstring=~ s/\'/\\\'/g;
51         my @data=split(' ',$searchstring);
52         my $count=@data;
53         my $query="";
54         my $sth=$dbh->prepare("Select word from stopwords where (word like ?) order by word");
55         $sth->execute("$data[0]%");
56         my @results;
57         my $cnt=0;
58         while (my $data=$sth->fetchrow_hashref){
59         push(@results,$data);
60         $cnt ++;
61         }
62         #  $sth->execute;
63         $sth->finish;
64         return ($cnt,\@results);
65 }
66
67 my $input = new CGI;
68 my $searchfield=$input->param('searchfield');
69 my $offset=$input->param('offset');
70 my $script_name="/cgi-bin/koha/admin/stopwords.pl";
71
72 my $pagesize=20;
73 my $op = $input->param('op');
74 $searchfield=~ s/\,//g;
75
76 my ($template, $loggedinuser, $cookie) 
77     = get_template_and_user({template_name => "admin/stopwords.tmpl",
78     query => $input,
79     type => "intranet",
80     flagsrequired => {parameters => 1, management => 1},
81     authnotrequired => 0,
82     debug => 1,
83     });
84
85 $template->param(script_name => $script_name,
86                  searchfield => $searchfield);
87
88
89 ################## ADD_FORM ##################################
90 # called by default. Used to create form to add or  modify a record
91 if ($op eq 'add_form') {
92         $template->param(add_form => 1);
93         #---- if primkey exists, it's a modify action, so read values to modify...
94         my $data;
95         if ($searchfield) {
96                 my $dbh = C4::Context->dbh;
97                 my $sth=$dbh->prepare("select word from stopwords where word=?");
98                 $sth->execute($searchfield);
99                 $data=$sth->fetchrow_hashref;
100                 $sth->finish;
101         }
102
103                                                                                                         # END $OP eq ADD_FORM
104 ################## ADD_VALIDATE ##################################
105 # called by add_form, used to insert/modify data in DB
106 } elsif ($op eq 'add_validate') {
107         $template->param(add_validate => 1);
108         my $dbh = C4::Context->dbh;
109         my @tab = split / |,/, $input->param('word');
110         my $sth=$dbh->prepare("replace stopwords (word) values (?)");
111         foreach my $insert_value (@tab) {
112                 $sth->execute($insert_value);
113         }
114         $sth->finish;
115                                                                                                         # END $OP eq ADD_VALIDATE
116 ################## DELETE_CONFIRM ##################################
117 # called by default form, used to confirm deletion of data in DB
118 } elsif ($op eq 'delete_confirm') {
119         $template->param(delete_confirm => 1);
120         my $dbh = C4::Context->dbh;
121         my $sth=$dbh->prepare("select word from stopwords where word=?");
122         $sth->execute($searchfield);
123         my $data=$sth->fetchrow_hashref;
124         $sth->finish;
125                                                                                                         # END $OP eq DELETE_CONFIRM
126 ################## DELETE_CONFIRMED ##################################
127 # called by delete_confirm, used to effectively confirm deletion of data in DB
128 } elsif ($op eq 'delete_confirmed') {
129         $template->param(delete_confirmed => 1);
130         my $dbh = C4::Context->dbh;
131         my $sth=$dbh->prepare("delete from stopwords where word=?");
132         $sth->execute($searchfield);
133         $sth->finish;
134                                                                                                         # END $OP eq DELETE_CONFIRMED
135 ################## DEFAULT ##################################
136 } else { # DEFAULT
137         $template->param(else => 1);
138
139         my $env;
140         my ($count,$results)=StringSearch($env,$searchfield,'web');
141         my @loop;
142         my $toggle = 'white';
143         for (my $i=$offset; $i < ($offset+$pagesize<$count?$offset+$pagesize:$count); $i++){
144                 my %row = (word => $results->[$i]{'word'},
145                            toggle => $toggle);
146                 push @loop, \%row;
147
148                 if ( $toggle eq 'white' )
149                 {
150                         $toggle = '#ffffcc';
151                 }
152                 else
153                 {
154                         $toggle = 'white';
155                 }
156         }
157         $template->param(loop => \@loop);
158
159         if ($offset>0) {
160                 $template->param(offsetgtzero => 1,
161                                  prevpage => $offset-$pagesize);
162         }
163         if ($offset+$pagesize<$count) {
164                 $template->param(ltcount => 1,
165                                  nextpage => $offset+$pagesize);
166         }
167 }
168 $template->param(intranetcolorstylesheet => C4::Context->preference("intranetcolorstylesheet"),
169                 intranetstylesheet => C4::Context->preference("intranetstylesheet"),
170                 IntranetNav => C4::Context->preference("IntranetNav"),
171                 );
172 output_html_with_http_headers $input, $cookie, $template->output;
173