Merge remote-tracking branch 'origin/new/bug_6875'
[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
18 # with Koha; if not, write to the Free Software Foundation, Inc.,
19 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
20
21 use strict;
22 use warnings;
23
24 use CGI;
25 use C4::Output;
26 use C4::Auth;
27 use C4::Context;
28 use C4::AuthoritiesMarc;
29 use C4::Acquisition;
30 use C4::Koha;    # XXX subfield_is_koha_internal_p
31
32 my $query        = new CGI;
33 my $op           = $query->param('op');
34 my $authtypecode = $query->param('authtypecode');
35 my $index        = $query->param('index');
36 my $tagid        = $query->param('tagid');
37 my $resultstring = $query->param('result');
38 my $dbh          = C4::Context->dbh;
39
40 my $startfrom = $query->param('startfrom');
41 $startfrom = 0 if ( !defined $startfrom );
42 my ( $template, $loggedinuser, $cookie );
43 my $resultsperpage;
44
45 my $authtypes = getauthtypes;
46 my @authtypesloop;
47 foreach my $thisauthtype ( keys %$authtypes ) {
48     my %row = (
49         value        => $thisauthtype,
50         selected     => ($thisauthtype eq $authtypecode),
51         authtypetext => $authtypes->{$thisauthtype}{'authtypetext'},
52         index        => $index,
53     );
54     push @authtypesloop, \%row;
55 }
56
57 $op ||= q{};
58 if ( $op eq "do_search" ) {
59     my @marclist  = $query->param('marclist');
60     my @and_or    = $query->param('and_or');
61     my @excluding = $query->param('excluding');
62     my @operator  = $query->param('operator');
63     my @value     = ($query->param('value_mainstr')||undef, $query->param('value_main')||undef, $query->param('value_any')||undef, $query->param('value_match')||undef);
64     my $orderby   = $query->param('orderby');
65
66     $resultsperpage = $query->param('resultsperpage');
67     $resultsperpage = 20 if ( !defined $resultsperpage );
68
69     my ( $results, $total ) =
70       SearchAuthorities( \@marclist, \@and_or, \@excluding, \@operator, \@value,
71         $startfrom * $resultsperpage,
72         $resultsperpage, $authtypecode, $orderby);
73
74     # If an authority heading is repeated, add an arrayref to those repetions
75     # First heading -- Second heading
76     for my $heading ( @$results ) {
77         my @repets = split / -- /, $heading->{summary};
78         if ( @repets > 1 ) {
79             my @repets_loop;
80             for (my $i = 0; $i < @repets; $i++) {
81                 push @repets_loop,
82                     { index => $index, repet => $i+1, value => $repets[$i] };
83             }
84             $heading->{repets} = \@repets_loop;
85         }
86     }
87     # multi page display gestion
88     my $displaynext = 0;
89     my $displayprev = $startfrom;
90     if ( ( $total - ( ( $startfrom + 1 ) * ($resultsperpage) ) ) > 0 ) {
91         $displaynext = 1;
92     }
93
94     my @field_data = ();
95
96     my @marclist_ini =
97       $query->param('marclist')
98       ; # get marclist again, as the previous one has been modified by catalogsearch (mainentry replaced by field name
99     for ( my $i = 0 ; $i <= $#marclist ; $i++ ) {
100         push @field_data, { term => "marclist",  val => $marclist_ini[$i] };
101         push @field_data, { term => "and_or",    val => $and_or[$i] };
102         push @field_data, { term => "excluding", val => $excluding[$i] };
103         push @field_data, { term => "operator",  val => $operator[$i] };
104     }
105
106     push @field_data, { term => "value_mainstr", val => $query->param('value_mainstr') || "" };
107     push @field_data, { term => "value_main",    val => $query->param('value_main')    || "" };
108     push @field_data, { term => "value_any",     val => $query->param('value_any')     || ""};
109     push @field_data, { term => "value_match",   val => $query->param('value_match')   || ""};
110
111     my @numbers = ();
112
113     if ( $total > $resultsperpage ) {
114         for ( my $i = 1 ; $i < $total / $resultsperpage + 1 ; $i++ ) {
115             if ( $i < 16 ) {
116                 my $highlight = 0;
117                 ( $startfrom == ( $i - 1 ) ) && ( $highlight = 1 );
118                 push @numbers,
119                   {
120                     number     => $i,
121                     highlight  => $highlight,
122                     searchdata => \@field_data,
123                     startfrom  => ( $i - 1 )
124                   };
125             }
126         }
127     }
128
129     my $from = $startfrom * $resultsperpage + 1;
130     my $to;
131
132     if ( $total < ( ( $startfrom + 1 ) * $resultsperpage ) ) {
133         $to = $total;
134     }
135     else {
136         $to = ( ( $startfrom + 1 ) * $resultsperpage );
137     }
138     ( $template, $loggedinuser, $cookie ) = get_template_and_user(
139         {
140             template_name   => "authorities/searchresultlist-auth.tmpl",
141             query           => $query,
142             type            => 'intranet',
143             authnotrequired => 0,
144             flagsrequired   => { catalogue => 1 },
145         }
146     );
147
148     $template->param( result => $results ) if $results;
149     $template->param(
150         orderby      => $orderby,
151         startfrom      => $startfrom,
152     displaynext    => $displaynext,
153     displayprev    => $displayprev,
154     resultsperpage => $resultsperpage,
155     startfromnext  => $startfrom + 1,
156     startfromprev  => $startfrom - 1,
157         searchdata     => \@field_data,
158         total          => $total,
159         from           => $from,
160         to             => $to,
161         numbers        => \@numbers,
162         authtypecode   => $authtypecode,
163         value_mainstr  => $query->param('value_mainstr') || "", 
164         value_main     => $query->param('value_main') || "",
165         value_any      => $query->param('value_any') || "",
166         value_match    => $query->param('value_match') || "",
167     );
168 } else {
169     ( $template, $loggedinuser, $cookie ) = get_template_and_user(
170         {
171             template_name   => "authorities/auth_finder.tmpl",
172             query           => $query,
173             type            => 'intranet',
174             authnotrequired => 0,
175             flagsrequired   => { catalogue => 1 },
176         }
177     );
178
179     $template->param(
180         resultstring => $resultstring,
181     );
182 }
183
184 $template->param(
185     value_mainstr => $query->param('value_mainstr') || "", 
186     value_main    => $query->param('value_main') || "",
187     value_any     => $query->param('value_any') || "",
188     value_match   => $query->param('value_match') || "",
189     tagid         => $tagid,
190     index         => $index,
191     authtypesloop => \@authtypesloop,
192     authtypecode  => $authtypecode,
193 );
194
195 # Print the page
196 output_html_with_http_headers $query, $cookie, $template->output;
197
198 # Local Variables:
199 # tab-width: 4
200 # End: