MARC authority management (continued)
[koha-ffzg.git] / authorities / authorities-home.pl
1 #!/usr/bin/perl
2 # WARNING: 4-character tab stops here
3
4 # Copyright 2000-2002 Katipo Communications
5 #
6 # This file is part of Koha.
7 #
8 # Koha is free software; you can redistribute it and/or modify it under the
9 # terms of the GNU General Public License as published by the Free Software
10 # Foundation; either version 2 of the License, or (at your option) any later
11 # version.
12 #
13 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
14 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
15 # A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
16 #
17 # You should have received a copy of the GNU General Public License along with
18 # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
19 # Suite 330, Boston, MA  02111-1307 USA
20
21 use strict;
22 require Exporter;
23 use CGI;
24 use C4::Auth;
25 use HTML::Template;
26 use C4::Context;
27 use C4::Search;
28 use C4::Auth;
29 use C4::Output;
30 use C4::Interface::CGI::Output;
31 use C4::AuthoritiesMarc;
32 use C4::SearchMarc;
33 use C4::Catalogue;
34 use C4::Koha; # XXX subfield_is_koha_internal_p
35
36 my $query=new CGI;
37 my $op = $query->param('op');
38 my $authtypecode = $query->param('authtypecode');
39 my $dbh = C4::Context->dbh;
40
41 my $startfrom=$query->param('startfrom');
42 $startfrom=0 if(!defined $startfrom);
43 my ($template, $loggedinuser, $cookie);
44 my $resultsperpage;
45
46 my $authtypes = getauthtypes;
47 my @authtypesloop;
48 foreach my $thisauthtype (keys %$authtypes) {
49         my $selected = 1 if $thisauthtype eq $authtypecode;
50         my %row =(value => $thisauthtype,
51                                 selected => $selected,
52                                 authtypetext => $authtypes->{$thisauthtype}{'authtypetext'},
53                         );
54         push @authtypesloop, \%row;
55 }
56
57 if ($op eq "do_search") {
58         my @marclist = $query->param('marclist');
59         my @and_or = $query->param('and_or');
60         my @excluding = $query->param('excluding');
61         my @operator = $query->param('operator');
62         my @value = $query->param('value');
63
64         $resultsperpage= $query->param('resultsperpage');
65         $resultsperpage = 19 if(!defined $resultsperpage);
66         my @tags;
67
68         my ($results,$total) = authoritysearch($dbh, \@tags,\@and_or,
69                                                                                 \@excluding, \@operator, \@value,
70                                                                                 $startfrom*$resultsperpage, $resultsperpage,$authtypecode);
71         warn "R : $results";
72         ($template, $loggedinuser, $cookie)
73                 = get_template_and_user({template_name => "authorities/searchresultlist.tmpl",
74                                 query => $query,
75                                 type => 'intranet',
76                                 authnotrequired => 0,
77                                 flagsrequired => {borrowers => 1},
78                                 flagsrequired => {catalogue => 1},
79                                 debug => 1,
80                                 });
81
82         # multi page display gestion
83         my $displaynext=0;
84         my $displayprev=$startfrom;
85         if(($total - (($startfrom+1)*($resultsperpage))) > 0 ){
86                 $displaynext = 1;
87         }
88
89         my @field_data = ();
90
91
92         for(my $i = 0 ; $i <= $#marclist ; $i++)
93         {
94                 push @field_data, { term => "marclist", val=>$marclist[$i] };
95                 push @field_data, { term => "and_or", val=>$and_or[$i] };
96                 push @field_data, { term => "excluding", val=>$excluding[$i] };
97                 push @field_data, { term => "operator", val=>$operator[$i] };
98                 push @field_data, { term => "value", val=>$value[$i] };
99         }
100
101         my @numbers = ();
102
103         if ($total>$resultsperpage)
104         {
105                 for (my $i=1; $i<$total/$resultsperpage+1; $i++)
106                 {
107                         if ($i<16)
108                         {
109                         my $highlight=0;
110                         ($startfrom==($i-1)) && ($highlight=1);
111                         push @numbers, { number => $i,
112                                         highlight => $highlight ,
113                                         searchdata=> \@field_data,
114                                         startfrom => ($i-1)};
115                         }
116         }
117         }
118
119         my $from = $startfrom*$resultsperpage+1;
120         my $to;
121
122         if($total < (($startfrom+1)*$resultsperpage))
123         {
124                 $to = $total;
125         } else {
126                 $to = (($startfrom+1)*$resultsperpage);
127         }
128         $template->param(result => $results) if $results;
129         $template->param(
130                                                         startfrom=> $startfrom,
131                                                         displaynext=> $displaynext,
132                                                         displayprev=> $displayprev,
133                                                         resultsperpage => $resultsperpage,
134                                                         startfromnext => $startfrom+1,
135                                                         startfromprev => $startfrom-1,
136                                                         searchdata=>\@field_data,
137                                                         total=>$total,
138                                                         from=>$from,
139                                                         to=>$to,
140                                                         numbers=>\@numbers,
141                                                         );
142
143 } elsif ($op eq "AddStatement") {
144
145         ($template, $loggedinuser, $cookie)
146                 = get_template_and_user({template_name => "authorities/authorities-home.tmpl",
147                                 query => $query,
148                                 type => 'intranet',
149                                 authnotrequired => 0,
150                                 flagsrequired => {catalogue => 1},
151                                 debug => 1,
152                                 });
153
154         # Gets the entered information
155         my @marcfields = $query->param('marclist');
156         my @and_or = $query->param('and_or');
157         my @excluding = $query->param('excluding');
158         my @operator = $query->param('operator');
159         my @value = $query->param('value');
160
161         my @statements = ();
162
163         # List of the marc tags to display
164         my $marcarray = create_marclist();
165
166         my $nbstatements = $query->param('nbstatements');
167         $nbstatements = 1 if(!defined $nbstatements);
168
169         for(my $i = 0 ; $i < $nbstatements ; $i++)
170         {
171                 my %fields = ();
172
173                 # Recreates the old scrolling lists with the previously selected values
174                 my $marclist = create_scrolling_list({name=>"marclist",
175                                         values=> $marcarray,
176                                         size=> 1,
177                                         default=>$marcfields[$i],
178                                         onChange => "sql_update()"}
179                                         );
180
181                 $fields{'marclist'} = $marclist;
182                 $fields{'first'} = 1 if($i == 0);
183
184                 # Restores the and/or parameters (no need to test the 'and' for activation because it's the default value)
185                 $fields{'or'} = 1 if($and_or[$i] eq "or");
186
187                 #Restores the "not" parameters
188                 $fields{'not'} = 1 if($excluding[$i]);
189
190                 #Restores the operators (most common operators first);
191                 if($operator[$i] eq "=") { $fields{'eq'} = 1; }
192                 elsif($operator[$i] eq "contains") { $fields{'contains'} = 1; }
193                 elsif($operator[$i] eq "start") { $fields{'start'} = 1; }
194                 elsif($operator[$i] eq ">") { $fields{'gt'} = 1; }      #greater than
195                 elsif($operator[$i] eq ">=") { $fields{'ge'} = 1; } #greater or equal
196                 elsif($operator[$i] eq "<") { $fields{'lt'} = 1; } #lower than
197                 elsif($operator[$i] eq "<=") { $fields{'le'} = 1; } #lower or equal
198
199                 #Restores the value
200                 $fields{'value'} = $value[$i];
201
202                 push @statements, \%fields;
203         }
204         $nbstatements++;
205
206         # The new scrolling list
207         my $marclist = create_scrolling_list({name=>"marclist",
208                                 values=> $marcarray,
209                                 size=>1,
210                                 onChange => "sql_update()"});
211         push @statements, {"marclist" => $marclist };
212
213         $template->param("statements" => \@statements,
214                                                 "nbstatements" => $nbstatements);
215
216 }
217 else {
218         ($template, $loggedinuser, $cookie)
219                 = get_template_and_user({template_name => "authorities/authorities-home.tmpl",
220                                 query => $query,
221                                 type => 'intranet',
222                                 authnotrequired => 0,
223                                 flagsrequired => {catalogue => 1},
224                                 debug => 1,
225                                 });
226
227 }
228
229 $template->param(authtypesloop => \@authtypesloop);
230
231 # Print the page
232 output_html_with_http_headers $query, $cookie, $template->output;
233
234 # Local Variables:
235 # tab-width: 4
236 # End: