2 # WARNING: 4-character tab stops here
4 # Copyright 2000-2002 Katipo Communications
6 # This file is part of Koha.
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.
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.
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>.
30 use C4
::AuthoritiesMarc
;
32 use C4
::Search
::History
;
34 use Koha
::Authority
::Types
;
35 use Koha
::SearchEngine
::Search
;
36 use Koha
::SearchEngine
::QueryBuilder
;
39 my $op = $query->param('op') || '';
40 my $authtypecode = $query->param('authtypecode') || '';
41 my $dbh = C4
::Context
->dbh;
43 my $startfrom = $query->param('startfrom') || 1;
44 my $resultsperpage = $query->param('resultsperpage') || 20;
45 my $authid = $query->param('authid');
46 my ( $template, $loggedinuser, $cookie );
48 my $authority_types = Koha
::Authority
::Types
->search({}, { order_by
=> ['authtypetext']});
50 if ( $op eq "do_search" ) {
51 my @marclist = $query->multi_param('marclist');
52 my @and_or = $query->multi_param('and_or');
53 my @excluding = $query->multi_param('excluding');
54 my @operator = $query->multi_param('operator');
55 my $orderby = $query->param('orderby');
56 my @value = $query->multi_param('value');
59 my $builder = Koha
::SearchEngine
::QueryBuilder
->new(
60 { index => $Koha::SearchEngine
::AUTHORITIES_INDEX
} );
61 my $searcher = Koha
::SearchEngine
::Search
->new(
62 { index => $Koha::SearchEngine
::AUTHORITIES_INDEX
} );
63 my $search_query = $builder->build_authorities_query_compat( \
@marclist, \
@and_or,
64 \
@excluding, \
@operator, \
@value, $authtypecode, $orderby );
65 my $offset = ( $startfrom - 1 ) * $resultsperpage + 1;
66 my ( $results, $total ) =
67 $searcher->search_auth_compat( $search_query, $offset, $resultsperpage );
68 ( $template, $loggedinuser, $cookie ) = get_template_and_user
(
70 template_name
=> "opac-authoritiessearchresultlist.tt",
77 $template->param( search_query
=> $search_query ) if C4
::Context
->preference('DumpSearchQueryTemplate');
79 # multi page display gestion
80 my $value_url = uri_escape_utf8
($value[0]);
81 my $base_url = "opac-authorities-home.pl?"
82 ."marclist=$marclist[0]"
83 ."&and_or=$and_or[0]"
84 ."&excluding=$excluding[0]"
85 ."&operator=$operator[0]"
86 ."&value=$value_url"
87 ."&resultsperpage=$resultsperpage"
90 ."&authtypecode=$authtypecode"
91 ."&orderby=$orderby";
93 my $from = ( $startfrom - 1 ) * $resultsperpage + 1;
95 if ( !defined $total ) {
99 if ( $total < $startfrom * $resultsperpage ) {
103 $to = $startfrom * $resultsperpage;
106 $template->param( result
=> $results ) if $results;
109 pagination_bar
=> pagination_bar
(
110 $base_url, int( $total / $resultsperpage ) + 1,
111 $startfrom, 'startfrom'
118 unless (C4
::Context
->preference('OPACShowUnusedAuthorities')) {
119 # TODO implement usage counts
120 # my @usedauths = grep { $_->{used} > 0 } @$results;
121 # $results = \@usedauths;
124 # Opac search history
125 if (C4
::Context
->preference('EnableOpacSearchHistory')) {
126 if ( $startfrom == 1) {
127 my $path_info = $query->url(-path_info
=>1);
128 my $query_cgi_history = $query->url(-query
=>1);
129 $query_cgi_history =~ s/^$path_info\?//;
130 $query_cgi_history =~ s/;/&/g;
132 unless ( $loggedinuser ) {
133 my $new_search = C4
::Search
::History
::add_to_session
({
135 query_desc
=> $value[0],
136 query_cgi
=> $query_cgi_history,
141 # To the session (the user is logged in)
142 C4
::Search
::History
::add
({
143 userid
=> $loggedinuser,
144 sessionid
=> $query->cookie("CGISESSID"),
145 query_desc
=> $value[0],
146 query_cgi
=> $query_cgi_history,
154 $template->param( orderby
=> $orderby );
156 startfrom
=> $startfrom,
157 resultsperpage
=> $resultsperpage,
158 countfuzzy
=> !(C4
::Context
->preference('OPACShowUnusedAuthorities')),
159 resultcount
=> scalar @
$results,
160 authtypecode
=> $authtypecode,
161 authtypetext
=> $authority_types->find($authtypecode)->authtypetext,
162 isEDITORS
=> $authtypecode eq 'EDITORS',
167 ( $template, $loggedinuser, $cookie ) = get_template_and_user
(
169 template_name
=> "opac-authorities-home.tt",
172 authnotrequired
=> ( C4
::Context
->preference("OpacPublic") ?
1 : 0 ),
180 authority_types
=> $authority_types,
181 authtypecode
=> $authtypecode,
185 output_html_with_http_headers
$query, $cookie, $template->output;