Bug 21395: Make perlcritic happy
[koha.git] / opac / opac-authorities-home.pl
blob059cbb44c5a5fa451b51330105be10462c2c22da
1 #!/usr/bin/perl
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>.
21 use Modern::Perl;
23 use CGI qw ( -utf8 );
24 use URI::Escape;
25 use C4::Auth;
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;
34 use Koha::Authority::Types;
35 use Koha::SearchEngine::Search;
36 use Koha::SearchEngine::QueryBuilder;
38 my $query = new CGI;
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');
57 $value[0] ||= q||;
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",
71 query => $query,
72 type => 'opac',
73 authnotrequired => 1,
74 debug => 1,
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 ."&amp;and_or=$and_or[0]"
84 ."&amp;excluding=$excluding[0]"
85 ."&amp;operator=$operator[0]"
86 ."&amp;value=$value_url"
87 ."&amp;resultsperpage=$resultsperpage"
88 ."&amp;type=opac"
89 ."&amp;op=do_search"
90 ."&amp;authtypecode=$authtypecode"
91 ."&amp;orderby=$orderby";
93 my $from = ( $startfrom - 1 ) * $resultsperpage + 1;
94 my $to;
95 if ( !defined $total ) {
96 $total = 0;
99 if ( $total < $startfrom * $resultsperpage ) {
100 $to = $total;
102 else {
103 $to = $startfrom * $resultsperpage;
106 $template->param( result => $results ) if $results;
108 $template->param(
109 pagination_bar => pagination_bar(
110 $base_url, int( $total / $resultsperpage ) + 1,
111 $startfrom, 'startfrom'
113 total => $total,
114 from => $from,
115 to => $to,
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({
134 cgi => $query,
135 query_desc => $value[0],
136 query_cgi => $query_cgi_history,
137 total => $total,
138 type => "authority",
140 } else {
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,
147 total => $total,
148 type => "authority",
154 $template->param( orderby => $orderby );
155 $template->param(
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',
166 else {
167 ( $template, $loggedinuser, $cookie ) = get_template_and_user(
169 template_name => "opac-authorities-home.tt",
170 query => $query,
171 type => 'opac',
172 authnotrequired => ( C4::Context->preference("OpacPublic") ? 1 : 0 ),
173 debug => 1,
179 $template->param(
180 authority_types => $authority_types,
181 authtypecode => $authtypecode,
184 # Print the page
185 output_html_with_http_headers $query, $cookie, $template->output;
187 # Local Variables:
188 # tab-width: 4
189 # End: