X-Git-Url: http://koha-dev.rot13.org:8081/gitweb/?a=blobdiff_plain;f=opac%2Fopac-authorities-home.pl;h=5a674ce697d922bc8aab0263961222aebdddedc2;hb=5d6c092921919526ade501facb1220f8a108a08f;hp=f06965d0aa70f8a52ac8c7bdd63ea5cc94ab6b10;hpb=350e8e959fa633b1e7b704281fa4393c350b2c31;p=koha_fer diff --git a/opac/opac-authorities-home.pl b/opac/opac-authorities-home.pl index f06965d0aa..5a674ce697 100755 --- a/opac/opac-authorities-home.pl +++ b/opac/opac-authorities-home.pl @@ -14,14 +14,15 @@ # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR # A PARTICULAR PURPOSE. See the GNU General Public License for more details. # -# You should have received a copy of the GNU General Public License along with -# Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, -# Suite 330, Boston, MA 02111-1307 USA +# You should have received a copy of the GNU General Public License along +# with Koha; if not, write to the Free Software Foundation, Inc., +# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. use strict; use warnings; use CGI; + use C4::Auth; use C4::Context; @@ -29,6 +30,7 @@ use C4::Auth; use C4::Output; use C4::AuthoritiesMarc; use C4::Koha; # XXX subfield_is_koha_internal_p +use C4::Search::History; my $query = new CGI; my $op = $query->param('op') || ''; @@ -41,27 +43,29 @@ $startfrom = 0 if ( !defined $startfrom ); my ( $template, $loggedinuser, $cookie ); my $resultsperpage; -my $authtypes = getauthtypes; -my @authtypesloop; -foreach my $thisauthtype ( sort { $authtypes->{$a}{'authtypetext'} cmp $authtypes->{$b}{'authtypetext'} } - keys %$authtypes ) -{ - my $selected = 1 if $thisauthtype eq $authtypecode; - my %row = ( - value => $thisauthtype, - selected => $selected, - authtypetext => $authtypes->{$thisauthtype}{'authtypetext'}, - ); - push @authtypesloop, \%row; +my $authtypes = getauthtypes(); +my @authtypesloop = (); +foreach my $thisauthtype ( + sort { + $authtypes->{$a}->{'authtypetext'} + cmp $authtypes->{$b}->{'authtypetext'} + } + keys %{$authtypes} + ) { + push @authtypesloop, + { value => $thisauthtype, + selected => $thisauthtype eq $authtypecode, + authtypetext => $authtypes->{$thisauthtype}->{'authtypetext'}, + }; } if ( $op eq "do_search" ) { - my @marclist = ($query->param('marclista'),$query->param('marclistb'),$query->param('marclistc')); - my @and_or = ($query->param('and_ora'),$query->param('and_orb'),$query->param('and_orc')); - my @excluding = ($query->param('excludinga'),$query->param('excludingb'),$query->param('excludingc'),); - my @operator = ($query->param('operatora'),$query->param('operatorb'),$query->param('operatorc')); + my @marclist = ($query->param('marclist')); + my @and_or = ($query->param('and_or')); + my @excluding = ($query->param('excluding'),); + my @operator = ($query->param('operator')); my $orderby = $query->param('orderby'); - my @value = ($query->param('valuea'),$query->param('valueb'),$query->param('valuec'),); + my @value = ($query->param('value') || "",); $resultsperpage = $query->param('resultsperpage'); $resultsperpage = 20 if ( !defined $resultsperpage ); @@ -88,15 +92,13 @@ if ( $op eq "do_search" ) { $displaynext = 1; } - my @field_data = (); - - foreach my $letter (qw/a b c/){ - push @field_data, { term => "marclist$letter" , val => $query->param("marclist$letter") || ''}; - push @field_data, { term => "and_or$letter" , val => $query->param("and_or$letter") || ''}; - push @field_data, { term => "excluding$letter" , val => $query->param("excluding$letter") || ''}; - push @field_data, { term => "operator$letter" , val => $query->param("operator$letter") || ''}; - push @field_data, { term => "value$letter" , val => $query->param("value$letter") || ''}; - } + my @field_data = ( + { term => "marclist", val => $marclist[0] }, + { term => "and_or", val => $and_or[0] }, + { term => "excluding", val => $excluding[0] }, + { term => "operator", val => $operator[0] }, + { term => "value", val => $value[0] }, + ); my @numbers = (); @@ -125,6 +127,41 @@ if ( $op eq "do_search" ) { else { $to = ( ( $startfrom + 1 ) * $resultsperpage ); } + unless (C4::Context->preference('OPACShowUnusedAuthorities')) { + my @usedauths = grep { $_->{used} > 0 } @$results; + $results = \@usedauths; + } + + # Opac search history + if (C4::Context->preference('EnableOpacSearchHistory')) { + unless ( $startfrom ) { + my $path_info = $query->url(-path_info=>1); + my $query_cgi_history = $query->url(-query=>1); + $query_cgi_history =~ s/^$path_info\?//; + $query_cgi_history =~ s/;/&/g; + + unless ( $loggedinuser ) { + my $new_search = C4::Search::History::add_to_session({ + cgi => $query, + query_desc => $value[0], + query_cgi => $query_cgi_history, + total => $total, + type => "authority", + }); + } else { + # To the session (the user is logged in) + C4::Search::History::add({ + userid => $loggedinuser, + sessionid => $query->cookie("CGISESSID"), + query_desc => $value[0], + query_cgi => $query_cgi_history, + total => $total, + type => "authority", + }); + } + } + } + $template->param( result => $results ) if $results; $template->param( FIELDS => \@fields ); $template->param( orderby => $orderby ); @@ -136,11 +173,14 @@ if ( $op eq "do_search" ) { startfromnext => $startfrom + 1, startfromprev => $startfrom - 1, searchdata => \@field_data, + countfuzzy => !(C4::Context->preference('OPACShowUnusedAuthorities')), total => $total, from => $from, to => $to, + resultcount => scalar @$results, numbers => \@numbers, authtypecode => $authtypecode, + authtypetext => $authtypes->{$authtypecode}{'authtypetext'}, isEDITORS => $authtypecode eq 'EDITORS', ); @@ -151,7 +191,7 @@ else { template_name => "opac-authorities-home.tmpl", query => $query, type => 'opac', - authnotrequired => 1, + authnotrequired => ( C4::Context->preference("OpacPublic") ? 1 : 0 ), debug => 1, } );