1 package Koha
::SearchEngine
::Zebra
::QueryBuilder
;
3 # This file is part of Koha.
5 # Copyright 2012 BibLibre
7 # Koha is free software; you can redistribute it and/or modify it
8 # under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 3 of the License, or
10 # (at your option) any later version.
12 # Koha is distributed in the hope that it will be useful, but
13 # WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 # GNU General Public License for more details.
17 # You should have received a copy of the GNU General Public License
18 # along with Koha; if not, see <http://www.gnu.org/licenses>.
22 use base
qw(Class::Accessor);
25 use C4
::AuthoritiesMarc
;
29 C4
::Search
::buildQuery
@_;
32 sub build_query_compat
{
34 my ($operators, $operands, $indexes, $limits, $sort_by, $scan, $lang, $params) = @_;
36 my ($error,$query,$simple_query,$query_cgi,$query_desc,$limit,$limit_cgi,$limit_desc,$query_type)
37 = $self->build_query(@_);
39 # add OPAC 'hidelostitems'
40 #if (C4::Context->preference('hidelostitems') == 1) {
41 # # either lost ge 0 or no value in the lost register
42 # $query ="($query) and ( (lost,st-numeric <= 0) or ( allrecords,AlwaysMatches='' not lost,AlwaysMatches='') )";
45 # add OPAC suppression - requires at least one item indexed with Suppress
46 if ($params->{suppress
}) {
47 if ( defined $query_type and $query_type eq 'pqf' ) {
48 #$query = "($query) && -(suppress:1)"; #QP syntax
49 $query = '@not '.$query.' @attr 14=1 @attr 1=9011 1'; #PQF syntax
51 $query = "($query) not Suppress=1";
55 return ($error,$query,$simple_query,$query_cgi,$query_desc,$limit,$limit_cgi,$limit_desc,$query_type);
58 sub build_authorities_query
{
66 authtypecode
=> $_[5],
71 sub build_authorities_query_compat
{
72 # Pass straight through as well
73 build_authorities_query
(@_);