Bug 12478: auth search works in the staff client
[koha.git] / opac / opac-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
9 # under the terms of the GNU General Public License as published by
10 # the Free Software Foundation; either version 3 of the License, or
11 # (at your option) any later version.
12 #
13 # Koha is distributed in the hope that it will be useful, but
14 # WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 # GNU General Public License for more details.
17 #
18 # You should have received a copy of the GNU General Public License
19 # along with Koha; if not, see <http://www.gnu.org/licenses>.
20
21 use strict;
22 use warnings;
23
24 use CGI qw ( -utf8 );
25 use C4::Auth;
26
27 use C4::Context;
28 use C4::Auth;
29 use C4::Output;
30 use C4::AuthoritiesMarc;
31 use C4::Koha;
32 use C4::Search::History;
33
34 use Koha::Authority::Types;
35 use Koha::SearchEngine::Search;
36 use Koha::SearchEngine::QueryBuilder;
37
38 my $query        = new CGI;
39 my $op           = $query->param('op') || '';
40 my $authtypecode = $query->param('authtypecode') || '';
41 my $dbh          = C4::Context->dbh;
42
43 my $startfrom = $query->param('startfrom');
44 my $authid    = $query->param('authid');
45 $startfrom = 0 if ( !defined $startfrom );
46 my ( $template, $loggedinuser, $cookie );
47 my $resultsperpage;
48
49 my $authority_types = Koha::Authority::Types->search({}, { order_by => ['authtypetext']});
50
51 if ( $op eq "do_search" ) {
52     my @marclist = $query->multi_param('marclist');
53     my @and_or = $query->multi_param('and_or');
54     my @excluding = $query->multi_param('excluding');
55     my @operator = $query->multi_param('operator');
56     my $orderby = $query->param('orderby');
57     my @value = $query->multi_param('value');
58     $value[0] ||= q||;
59
60     $resultsperpage = $query->param('resultsperpage');
61     $resultsperpage = 20 if ( !defined $resultsperpage );
62     my @tags;
63     my $builder  = Koha::SearchEngine::QueryBuilder->new();
64     my $searcher = Koha::SearchEngine::Search->new({index => 'authorities'});
65     my $search_query = $builder->build_authorities_query_compat( \@marclist, \@and_or,
66         \@excluding, \@operator, \@value, $authtypecode, $orderby );
67 #    use Data::Dumper;
68 #    die Dumper(\@marclist, \@and_or,
69 #        \@excluding, \@operator, \@value, $authtypecode, $orderby, $query);
70     # The searchengine API expects pages to start at page 1
71     $startfrom = $startfrom // 0;
72     my ( $results, $total ) =
73       $searcher->search_auth_compat( $search_query, $startfrom+1, $resultsperpage );
74     ( $template, $loggedinuser, $cookie ) = get_template_and_user(
75         {
76             template_name   => "opac-authoritiessearchresultlist.tt",
77             query           => $query,
78             type            => 'opac',
79             authnotrequired => 1,
80             debug           => 1,
81         }
82     );
83
84     # multi page display gestion
85     my $displaynext = 0;
86     my $displayprev = $startfrom;
87     $total ||= 0;
88     if ( ( $total - ( ( $startfrom + 1 ) * ($resultsperpage) ) ) > 0 ) {
89         $displaynext = 1;
90     }
91
92     my @field_data = (
93         { term => "marclist",  val => $marclist[0] },
94         { term => "and_or",    val => $and_or[0] },
95         { term => "excluding", val => $excluding[0] },
96         { term => "operator",  val => $operator[0] },
97         { term => "value",     val => $value[0] },
98     );
99
100     my @numbers = ();
101
102     if ( $total > $resultsperpage ) {
103         for ( my $i = 1 ; $i < $total / $resultsperpage + 1 ; $i++ ) {
104             if ( $i < 16 ) {
105                 my $highlight = 0;
106                 ( $startfrom == ( $i - 1 ) ) && ( $highlight = 1 );
107                 push @numbers,
108                   {
109                     number     => $i,
110                     highlight  => $highlight,
111                     searchdata => \@field_data,
112                     startfrom  => ( $i - 1 )
113                   };
114             }
115         }
116     }
117
118     my $from = $startfrom * $resultsperpage + 1;
119     my $to;
120
121     if ( $total < ( ( $startfrom + 1 ) * $resultsperpage ) ) {
122         $to = $total;
123     }
124     else {
125         $to = ( ( $startfrom + 1 ) * $resultsperpage );
126     }
127     unless (C4::Context->preference('OPACShowUnusedAuthorities')) {
128 #        TODO implement usage counts
129 #        my @usedauths = grep { $_->{used} > 0 } @$results;
130 #        $results = \@usedauths;
131     }
132
133     # Opac search history
134     if (C4::Context->preference('EnableOpacSearchHistory')) {
135         unless ( $startfrom ) {
136             my $path_info = $query->url(-path_info=>1);
137             my $query_cgi_history = $query->url(-query=>1);
138             $query_cgi_history =~ s/^$path_info\?//;
139             $query_cgi_history =~ s/;/&/g;
140
141             unless ( $loggedinuser ) {
142                 my $new_search = C4::Search::History::add_to_session({
143                         cgi => $query,
144                         query_desc => $value[0],
145                         query_cgi => $query_cgi_history,
146                         total => $total,
147                         type => "authority",
148                 });
149             } else {
150                 # To the session (the user is logged in)
151                 C4::Search::History::add({
152                     userid => $loggedinuser,
153                     sessionid => $query->cookie("CGISESSID"),
154                     query_desc => $value[0],
155                     query_cgi => $query_cgi_history,
156                     total => $total,
157                     type => "authority",
158                 });
159             }
160         }
161     }
162
163     $template->param( result => $results ) if $results;
164     $template->param( orderby => $orderby );
165     $template->param(
166         startfrom      => $startfrom,
167         displaynext    => $displaynext,
168         displayprev    => $displayprev,
169         resultsperpage => $resultsperpage,
170         startfromnext  => $startfrom + 1,
171         startfromprev  => $startfrom - 1,
172         searchdata     => \@field_data,
173         countfuzzy     => !(C4::Context->preference('OPACShowUnusedAuthorities')),
174         total          => $total,
175         from           => $from,
176         to             => $to,
177         resultcount    => scalar @$results,
178         numbers        => \@numbers,
179         authtypecode   => $authtypecode,
180         authtypetext   => $authority_types->find($authtypecode)->authtypetext,
181         isEDITORS      => $authtypecode eq 'EDITORS',
182     );
183
184 }
185 else {
186     ( $template, $loggedinuser, $cookie ) = get_template_and_user(
187         {
188             template_name   => "opac-authorities-home.tt",
189             query           => $query,
190             type            => 'opac',
191             authnotrequired => ( C4::Context->preference("OpacPublic") ? 1 : 0 ),
192             debug           => 1,
193         }
194     );
195
196 }
197
198 $template->param(
199     authority_types => $authority_types,
200     authtypecode    => $authtypecode,
201 );
202
203 # Print the page
204 output_html_with_http_headers $query, $cookie, $template->output;
205
206 # Local Variables:
207 # tab-width: 4
208 # End: