C4::SearchMarc is deprecated now.
[koha.git] / authorities / auth_finder.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::Acquisition;
33 use C4::Koha; # XXX subfield_is_koha_internal_p
34
35 my $query=new CGI;
36 my $op = $query->param('op');
37 my $authtypecode = $query->param('authtypecode');
38 my $index = $query->param('index');
39 my $tagid=$query->param('tagid');
40 my $resultstring = $query->param('result');
41 my $dbh = C4::Context->dbh;
42
43 my $startfrom=$query->param('startfrom');
44 $startfrom=0 if(!defined $startfrom);
45 my ($template, $loggedinuser, $cookie);
46 my $resultsperpage;
47
48 my $authtypes = getauthtypes;
49 my @authtypesloop;
50 foreach my $thisauthtype (keys %$authtypes) {
51         my $selected = 1 if $thisauthtype eq $authtypecode;
52         my %row =(value => $thisauthtype,
53                                 selected => $selected,
54                                 authtypetext => $authtypes->{$thisauthtype}{'authtypetext'},
55                           index => $index,
56                         );
57         push @authtypesloop, \%row;
58 }
59
60 if ($op eq "do_search") {
61         my @marclist = $query->param('marclist');
62         my @and_or = $query->param('and_or');
63         my @excluding = $query->param('excluding');
64         my @operator = $query->param('operator');
65         my @value = $query->param('value');
66
67         $resultsperpage= $query->param('resultsperpage');
68         $resultsperpage = 19 if(!defined $resultsperpage);
69
70         my ($results,$total) = authoritysearch($dbh, \@marclist,\@and_or,
71                                                                                 \@excluding, \@operator, \@value,
72                                                                                 $startfrom*$resultsperpage, $resultsperpage,$authtypecode);# $orderby);
73
74         ($template, $loggedinuser, $cookie)
75                 = get_template_and_user({template_name => "authorities/searchresultlist-auth.tmpl",
76                                 query => $query,
77                                 type => 'intranet',
78                                 authnotrequired => 0,
79                                 flagsrequired => {borrowers => 1},
80                                 flagsrequired => {catalogue => 1},
81                                 debug => 1,
82                                 });
83
84         # multi page display gestion
85         my $displaynext=0;
86         my $displayprev=$startfrom;
87         if(($total - (($startfrom+1)*($resultsperpage))) > 0 ) {
88                 $displaynext = 1;
89         }
90
91         my @field_data = ();
92
93
94         my @marclist_ini = $query->param('marclist'); # get marclist again, as the previous one has been modified by catalogsearch (mainentry replaced by field name
95         for(my $i = 0 ; $i <= $#marclist ; $i++) {
96                 push @field_data, { term => "marclist", val=>$marclist_ini[$i] };
97                 push @field_data, { term => "and_or", val=>$and_or[$i] };
98                 push @field_data, { term => "excluding", val=>$excluding[$i] };
99                 push @field_data, { term => "operator", val=>$operator[$i] };
100                 push @field_data, { term => "value", val=>$value[$i] };
101         }
102
103         my @numbers = ();
104
105         if ($total>$resultsperpage) {
106                 for (my $i=1; $i<$total/$resultsperpage+1; $i++) {
107                         if ($i<16) {
108                         my $highlight=0;
109                         ($startfrom==($i-1)) && ($highlight=1);
110                         push @numbers, { number => $i,
111                                         highlight => $highlight ,
112                                         searchdata=> \@field_data,
113                                         startfrom => ($i-1)};
114                         }
115         }
116         }
117
118         my $from = $startfrom*$resultsperpage+1;
119         my $to;
120
121         if($total < (($startfrom+1)*$resultsperpage)) {
122                 $to = $total;
123         } else {
124                 $to = (($startfrom+1)*$resultsperpage);
125         }
126         $template->param(result => $results) if $results;
127         $template->param(index => $query->param('index')."");
128         $template->param(startfrom=> $startfrom,
129                                                         displaynext=> $displaynext,
130                                                         displayprev=> $displayprev,
131                                                         resultsperpage => $resultsperpage,
132                                                         startfromnext => $startfrom+1,
133                                                         startfromprev => $startfrom-1,
134                                                 index => $index,
135                                                 tagid => $tagid,
136                                                         searchdata=>\@field_data,
137                                                         total=>$total,
138                                                         from=>$from,
139                                                         to=>$to,
140                                                         numbers=>\@numbers,
141                                                         authtypecode =>$authtypecode,
142                                                         resultstring =>$value[0],
143                                                         );
144 } else {
145         ($template, $loggedinuser, $cookie)
146                 = get_template_and_user({template_name => "authorities/auth_finder.tmpl",
147                                 query => $query,
148                                 type => 'intranet',
149                                 authnotrequired => 0,
150                                 flagsrequired => {catalogue => 1},
151                                 debug => 1,
152                                 });
153
154         $template->param(index=>$query->param('index')."",
155                                         tagid => $tagid,
156                                         resultstring => $resultstring,
157                                         );
158 }
159
160 $template->param(authtypesloop => \@authtypesloop,
161                 authtypecode => $authtypecode,
162                 intranetcolorstylesheet => C4::Context->preference("intranetcolorstylesheet"),
163                 intranetstylesheet => C4::Context->preference("intranetstylesheet"),
164                 IntranetNav => C4::Context->preference("IntranetNav"),
165                 );
166
167 # Print the page
168 output_html_with_http_headers $query, $cookie, $template->output;
169
170 # Local Variables:
171 # tab-width: 4
172 # End: