Bug 12788: facets calculation should skip 100 if ind1=z
[koha.git] / C4 / Search.pm
1 package C4::Search;
2
3 # This file is part of Koha.
4 #
5 # Koha is free software; you can redistribute it and/or modify it under the
6 # terms of the GNU General Public License as published by the Free Software
7 # Foundation; either version 2 of the License, or (at your option) any later
8 # version.
9 #
10 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
11 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
12 # A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
13 #
14 # You should have received a copy of the GNU General Public License along with
15 # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
16 # Suite 330, Boston, MA  02111-1307 USA
17
18 use strict;
19 #use warnings; FIXME - Bug 2505
20 require Exporter;
21 use C4::Context;
22 use C4::Biblio;    # GetMarcFromKohaField, GetBiblioData
23 use C4::Koha;      # getFacets
24 use Lingua::Stem;
25 use C4::Search::PazPar2;
26 use XML::Simple;
27 use C4::Dates qw(format_date);
28 use C4::Members qw(GetHideLostItemsPreference);
29 use C4::XSLT;
30 use C4::Branch;
31 use C4::Reserves;    # GetReserveStatus
32 use C4::Debug;
33 use C4::Charset;
34 use YAML;
35 use URI::Escape;
36 use Business::ISBN;
37 use MARC::Record;
38 use MARC::Field;
39 use utf8;
40 use vars qw($VERSION @ISA @EXPORT @EXPORT_OK %EXPORT_TAGS $DEBUG);
41
42 # set the version for version checking
43 BEGIN {
44     $VERSION = 3.07.00.049;
45     $DEBUG = ($ENV{DEBUG}) ? 1 : 0;
46 }
47
48 =head1 NAME
49
50 C4::Search - Functions for searching the Koha catalog.
51
52 =head1 SYNOPSIS
53
54 See opac/opac-search.pl or catalogue/search.pl for example of usage
55
56 =head1 DESCRIPTION
57
58 This module provides searching functions for Koha's bibliographic databases
59
60 =head1 FUNCTIONS
61
62 =cut
63
64 @ISA    = qw(Exporter);
65 @EXPORT = qw(
66   &FindDuplicate
67   &SimpleSearch
68   &searchResults
69   &getRecords
70   &buildQuery
71   &GetDistinctValues
72   &enabled_staff_search_views
73   &PurgeSearchHistory
74 );
75
76 # make all your functions, whether exported or not;
77
78 =head2 FindDuplicate
79
80 ($biblionumber,$biblionumber,$title) = FindDuplicate($record);
81
82 This function attempts to find duplicate records using a hard-coded, fairly simplistic algorithm
83
84 =cut
85
86 sub FindDuplicate {
87     my ($record) = @_;
88     my $dbh = C4::Context->dbh;
89     my $result = TransformMarcToKoha( $dbh, $record, '' );
90     my $sth;
91     my $query;
92     my $search;
93     my $type;
94     my ( $biblionumber, $title );
95
96     # search duplicate on ISBN, easy and fast..
97     # ... normalize first
98     if ( $result->{isbn} ) {
99         $result->{isbn} =~ s/\(.*$//;
100         $result->{isbn} =~ s/\s+$//;
101         $query = "isbn:$result->{isbn}";
102     }
103     else {
104         my $QParser;
105         $QParser = C4::Context->queryparser if (C4::Context->preference('UseQueryParser'));
106         my $titleindex;
107         my $authorindex;
108         my $op;
109
110         if ($QParser) {
111             $titleindex = 'title|exact';
112             $authorindex = 'author|exact';
113             $op = '&&';
114             $QParser->custom_data->{'QueryAutoTruncate'} = C4::Context->preference('QueryAutoTruncate');
115         } else {
116             $titleindex = 'ti,ext';
117             $authorindex = 'au,ext';
118             $op = 'and';
119         }
120
121         $result->{title} =~ s /\\//g;
122         $result->{title} =~ s /\"//g;
123         $result->{title} =~ s /\(//g;
124         $result->{title} =~ s /\)//g;
125
126         # FIXME: instead of removing operators, could just do
127         # quotes around the value
128         $result->{title} =~ s/(and|or|not)//g;
129         $query = "$titleindex:\"$result->{title}\"";
130         if   ( $result->{author} ) {
131             $result->{author} =~ s /\\//g;
132             $result->{author} =~ s /\"//g;
133             $result->{author} =~ s /\(//g;
134             $result->{author} =~ s /\)//g;
135
136             # remove valid operators
137             $result->{author} =~ s/(and|or|not)//g;
138             $query .= " $op $authorindex:\"$result->{author}\"";
139         }
140     }
141
142     my ( $error, $searchresults, undef ) = SimpleSearch($query); # FIXME :: hardcoded !
143     my @results;
144     if (!defined $error) {
145         foreach my $possible_duplicate_record (@{$searchresults}) {
146             my $marcrecord = new_record_from_zebra(
147                 'biblioserver',
148                 $possible_duplicate_record
149             );
150
151             my $result = TransformMarcToKoha( $dbh, $marcrecord, '' );
152
153             # FIXME :: why 2 $biblionumber ?
154             if ($result) {
155                 push @results, $result->{'biblionumber'};
156                 push @results, $result->{'title'};
157             }
158         }
159     }
160     return @results;
161 }
162
163 =head2 SimpleSearch
164
165 ( $error, $results, $total_hits ) = SimpleSearch( $query, $offset, $max_results, [@servers] );
166
167 This function provides a simple search API on the bibliographic catalog
168
169 =over 2
170
171 =item C<input arg:>
172
173     * $query can be a simple keyword or a complete CCL query
174     * @servers is optional. Defaults to biblioserver as found in koha-conf.xml
175     * $offset - If present, represents the number of records at the beggining to omit. Defaults to 0
176     * $max_results - if present, determines the maximum number of records to fetch. undef is All. defaults to undef.
177
178
179 =item C<Return:>
180
181     Returns an array consisting of three elements
182     * $error is undefined unless an error is detected
183     * $results is a reference to an array of records.
184     * $total_hits is the number of hits that would have been returned with no limit
185
186     If an error is returned the two other return elements are undefined. If error itself is undefined
187     the other two elements are always defined
188
189 =item C<usage in the script:>
190
191 =back
192
193 my ( $error, $marcresults, $total_hits ) = SimpleSearch($query);
194
195 if (defined $error) {
196     $template->param(query_error => $error);
197     warn "error: ".$error;
198     output_html_with_http_headers $input, $cookie, $template->output;
199     exit;
200 }
201
202 my $hits = @{$marcresults};
203 my @results;
204
205 for my $r ( @{$marcresults} ) {
206     my $marcrecord = MARC::File::USMARC::decode($r);
207     my $biblio = TransformMarcToKoha(C4::Context->dbh,$marcrecord,q{});
208
209     #build the iarray of hashs for the template.
210     push @results, {
211         title           => $biblio->{'title'},
212         subtitle        => $biblio->{'subtitle'},
213         biblionumber    => $biblio->{'biblionumber'},
214         author          => $biblio->{'author'},
215         publishercode   => $biblio->{'publishercode'},
216         publicationyear => $biblio->{'publicationyear'},
217         };
218
219 }
220
221 $template->param(result=>\@results);
222
223 =cut
224
225 sub SimpleSearch {
226     my ( $query, $offset, $max_results, $servers )  = @_;
227
228     return ( 'No query entered', undef, undef ) unless $query;
229     # FIXME hardcoded value. See catalog/search.pl & opac-search.pl too.
230     my @servers = defined ( $servers ) ? @$servers : ( 'biblioserver' );
231     my @zoom_queries;
232     my @tmpresults;
233     my @zconns;
234     my $results = [];
235     my $total_hits = 0;
236
237     my $QParser;
238     $QParser = C4::Context->queryparser if (C4::Context->preference('UseQueryParser') && ! ($query =~ m/\w,\w|\w=\w/));
239     if ($QParser) {
240         $QParser->custom_data->{'QueryAutoTruncate'} = C4::Context->preference('QueryAutoTruncate');
241     }
242
243     # Initialize & Search Zebra
244     for ( my $i = 0 ; $i < @servers ; $i++ ) {
245         eval {
246             $zconns[$i] = C4::Context->Zconn( $servers[$i], 1 );
247             if ($QParser) {
248                 $query =~ s/=/:/g;
249                 $QParser->parse( $query );
250                 $query = $QParser->target_syntax($servers[$i]);
251                 $zoom_queries[$i] = new ZOOM::Query::PQF( $query, $zconns[$i]);
252             } else {
253                 $query =~ s/:/=/g;
254                 $zoom_queries[$i] = new ZOOM::Query::CCL2RPN( $query, $zconns[$i]);
255             }
256             $tmpresults[$i] = $zconns[$i]->search( $zoom_queries[$i] );
257
258             # error handling
259             my $error =
260                 $zconns[$i]->errmsg() . " ("
261               . $zconns[$i]->errcode() . ") "
262               . $zconns[$i]->addinfo() . " "
263               . $zconns[$i]->diagset();
264
265             return ( $error, undef, undef ) if $zconns[$i]->errcode();
266         };
267         if ($@) {
268
269             # caught a ZOOM::Exception
270             my $error =
271                 $@->message() . " ("
272               . $@->code() . ") "
273               . $@->addinfo() . " "
274               . $@->diagset();
275             warn $error." for query: $query";
276             return ( $error, undef, undef );
277         }
278     }
279
280     _ZOOM_event_loop(
281         \@zconns,
282         \@tmpresults,
283         sub {
284             my ($i, $size) = @_;
285             my $first_record = defined($offset) ? $offset + 1 : 1;
286             my $hits = $tmpresults[ $i - 1 ]->size();
287             $total_hits += $hits;
288             my $last_record = $hits;
289             if ( defined $max_results && $offset + $max_results < $hits ) {
290                 $last_record = $offset + $max_results;
291             }
292
293             for my $j ( $first_record .. $last_record ) {
294                 my $record = eval {
295                   $tmpresults[ $i - 1 ]->record( $j - 1 )->raw()
296                   ;    # 0 indexed
297                 };
298                 push @{$results}, $record if defined $record;
299             }
300         }
301     );
302
303     foreach my $zoom_query (@zoom_queries) {
304         $zoom_query->destroy();
305     }
306
307     return ( undef, $results, $total_hits );
308 }
309
310 =head2 getRecords
311
312 ( undef, $results_hashref, \@facets_loop ) = getRecords (
313
314         $koha_query,       $simple_query, $sort_by_ref,    $servers_ref,
315         $results_per_page, $offset,       $expanded_facet, $branches,$itemtypes,
316         $query_type,       $scan
317     );
318
319 The all singing, all dancing, multi-server, asynchronous, scanning,
320 searching, record nabbing, facet-building
321
322 See verbse embedded documentation.
323
324 =cut
325
326 sub getRecords {
327     my (
328         $koha_query,       $simple_query, $sort_by_ref,    $servers_ref,
329         $results_per_page, $offset,       $expanded_facet, $branches,
330         $itemtypes,        $query_type,   $scan,           $opac
331     ) = @_;
332
333     my @servers = @$servers_ref;
334     my @sort_by = @$sort_by_ref;
335
336     # Initialize variables for the ZOOM connection and results object
337     my $zconn;
338     my @zconns;
339     my @results;
340     my $results_hashref = ();
341
342     # Initialize variables for the faceted results objects
343     my $facets_counter = {};
344     my $facets_info    = {};
345     my $facets         = getFacets();
346     my $facets_maxrecs = C4::Context->preference('maxRecordsForFacets')||20;
347
348     my @facets_loop;    # stores the ref to array of hashes for template facets loop
349
350     ### LOOP THROUGH THE SERVERS
351     for ( my $i = 0 ; $i < @servers ; $i++ ) {
352         $zconns[$i] = C4::Context->Zconn( $servers[$i], 1 );
353
354 # perform the search, create the results objects
355 # if this is a local search, use the $koha-query, if it's a federated one, use the federated-query
356         my $query_to_use = ($servers[$i] =~ /biblioserver/) ? $koha_query : $simple_query;
357
358         #$query_to_use = $simple_query if $scan;
359         warn $simple_query if ( $scan and $DEBUG );
360
361         # Check if we've got a query_type defined, if so, use it
362         eval {
363             if ($query_type) {
364                 if ($query_type =~ /^ccl/) {
365                     $query_to_use =~ s/\:/\=/g;    # change : to = last minute (FIXME)
366                     $results[$i] = $zconns[$i]->search(new ZOOM::Query::CCL2RPN($query_to_use, $zconns[$i]));
367                 } elsif ($query_type =~ /^cql/) {
368                     $results[$i] = $zconns[$i]->search(new ZOOM::Query::CQL($query_to_use, $zconns[$i]));
369                 } elsif ($query_type =~ /^pqf/) {
370                     $results[$i] = $zconns[$i]->search(new ZOOM::Query::PQF($query_to_use, $zconns[$i]));
371                 } else {
372                     warn "Unknown query_type '$query_type'.  Results undetermined.";
373                 }
374             } elsif ($scan) {
375                     $results[$i] = $zconns[$i]->scan(  new ZOOM::Query::CCL2RPN($query_to_use, $zconns[$i]));
376             } else {
377                     $results[$i] = $zconns[$i]->search(new ZOOM::Query::CCL2RPN($query_to_use, $zconns[$i]));
378             }
379         };
380         if ($@) {
381             warn "WARNING: query problem with $query_to_use " . $@;
382         }
383
384         # Concatenate the sort_by limits and pass them to the results object
385         # Note: sort will override rank
386         my $sort_by;
387         foreach my $sort (@sort_by) {
388             if ( $sort eq "author_az" || $sort eq "author_asc" ) {
389                 $sort_by .= "1=1003 <i ";
390             }
391             elsif ( $sort eq "author_za" || $sort eq "author_dsc" ) {
392                 $sort_by .= "1=1003 >i ";
393             }
394             elsif ( $sort eq "popularity_asc" ) {
395                 $sort_by .= "1=9003 <i ";
396             }
397             elsif ( $sort eq "popularity_dsc" ) {
398                 $sort_by .= "1=9003 >i ";
399             }
400             elsif ( $sort eq "call_number_asc" ) {
401                 $sort_by .= "1=8007  <i ";
402             }
403             elsif ( $sort eq "call_number_dsc" ) {
404                 $sort_by .= "1=8007 >i ";
405             }
406             elsif ( $sort eq "pubdate_asc" ) {
407                 $sort_by .= "1=31 <i ";
408             }
409             elsif ( $sort eq "pubdate_dsc" ) {
410                 $sort_by .= "1=31 >i ";
411             }
412             elsif ( $sort eq "acqdate_asc" ) {
413                 $sort_by .= "1=32 <i ";
414             }
415             elsif ( $sort eq "acqdate_dsc" ) {
416                 $sort_by .= "1=32 >i ";
417             }
418             elsif ( $sort eq "title_az" || $sort eq "title_asc" ) {
419                 $sort_by .= "1=4 <i ";
420             }
421             elsif ( $sort eq "title_za" || $sort eq "title_dsc" ) {
422                 $sort_by .= "1=4 >i ";
423             }
424             else {
425                 warn "Ignoring unrecognized sort '$sort' requested" if $sort_by;
426             }
427         }
428         if ( $sort_by && !$scan && $results[$i] ) {
429             if ( $results[$i]->sort( "yaz", $sort_by ) < 0 ) {
430                 warn "WARNING sort $sort_by failed";
431             }
432         }
433     }    # finished looping through servers
434
435     # The big moment: asynchronously retrieve results from all servers
436         _ZOOM_event_loop(
437             \@zconns,
438             \@results,
439             sub {
440                 my ( $i, $size ) = @_;
441                 my $results_hash;
442
443                 # loop through the results
444                 $results_hash->{'hits'} = $size;
445                 my $times;
446                 if ( $offset + $results_per_page <= $size ) {
447                     $times = $offset + $results_per_page;
448                 }
449                 else {
450                     $times = $size;
451                 }
452
453                 for ( my $j = $offset ; $j < $times ; $j++ ) {
454                     my $records_hash;
455                     my $record;
456
457                     ## Check if it's an index scan
458                     if ($scan) {
459                         my ( $term, $occ ) = $results[ $i - 1 ]->display_term($j);
460
461                  # here we create a minimal MARC record and hand it off to the
462                  # template just like a normal result ... perhaps not ideal, but
463                  # it works for now
464                         my $tmprecord = MARC::Record->new();
465                         $tmprecord->encoding('UTF-8');
466                         my $tmptitle;
467                         my $tmpauthor;
468
469                 # the minimal record in author/title (depending on MARC flavour)
470                         if ( C4::Context->preference("marcflavour") eq
471                             "UNIMARC" )
472                         {
473                             $tmptitle = MARC::Field->new(
474                                 '200', ' ', ' ',
475                                 a => $term,
476                                 f => $occ
477                             );
478                             $tmprecord->append_fields($tmptitle);
479                         }
480                         else {
481                             $tmptitle =
482                               MARC::Field->new( '245', ' ', ' ', a => $term, );
483                             $tmpauthor =
484                               MARC::Field->new( '100', ' ', ' ', a => $occ, );
485                             $tmprecord->append_fields($tmptitle);
486                             $tmprecord->append_fields($tmpauthor);
487                         }
488                         $results_hash->{'RECORDS'}[$j] =
489                           $tmprecord->as_usmarc();
490                     }
491
492                     # not an index scan
493                     else {
494                         $record = $results[ $i - 1 ]->record($j)->raw();
495                         # warn "RECORD $j:".$record;
496                         $results_hash->{'RECORDS'}[$j] = $record;
497                     }
498
499                 }
500                 $results_hashref->{ $servers[ $i - 1 ] } = $results_hash;
501
502                 # Fill the facets while we're looping, but only for the
503                 # biblioserver and not for a scan
504                 if ( !$scan && $servers[ $i - 1 ] =~ /biblioserver/ ) {
505
506                     my $jmax = $size > $facets_maxrecs
507                                 ? $facets_maxrecs
508                                 : $size;
509
510                     for ( my $j = 0 ; $j < $jmax ; $j++ ) {
511
512                         my $marc_record = new_record_from_zebra (
513                                 'biblioserver',
514                                 $results[ $i - 1 ]->record($j)->raw()
515                         );
516
517                         if ( ! defined $marc_record ) {
518                             warn "ERROR DECODING RECORD - $@: " .
519                                 $results[ $i - 1 ]->record($j)->raw();
520                             next;
521                         }
522
523                         _get_facets_data_from_record( $marc_record, $facets, $facets_counter, $facets_info );
524                     }
525                 }
526
527                 # warn "connection ", $i-1, ": $size hits";
528                 # warn $results[$i-1]->record(0)->render() if $size > 0;
529
530                 # BUILD FACETS
531                 if ( $servers[ $i - 1 ] =~ /biblioserver/ ) {
532                     for my $link_value (
533                         sort { $facets_counter->{$b} <=> $facets_counter->{$a} }
534                         keys %$facets_counter
535                       )
536                     {
537                         my $expandable;
538                         my $number_of_facets;
539                         my @this_facets_array;
540                         for my $one_facet (
541                             sort {
542                                 $facets_counter->{$link_value}
543                                   ->{$b} <=> $facets_counter->{$link_value}
544                                   ->{$a}
545                             } keys %{ $facets_counter->{$link_value} }
546                           )
547                         {
548                             $number_of_facets++;
549                             if (   ( $number_of_facets <= 5 )
550                                 || ( $expanded_facet eq $link_value )
551                                 || ( $facets_info->{$link_value}->{'expanded'} )
552                               )
553                             {
554
555 # Sanitize the link value : parenthesis, question and exclamation mark will cause errors with CCL
556                                 my $facet_link_value = $one_facet;
557                                 $facet_link_value =~ s/[()!?¡¿؟]/ /g;
558
559                                 # fix the length that will display in the label,
560                                 my $facet_label_value = $one_facet;
561                                 my $facet_max_length  = C4::Context->preference(
562                                     'FacetLabelTruncationLength')
563                                   || 20;
564                                 $facet_label_value =
565                                   substr( $one_facet, 0, $facet_max_length )
566                                   . "..."
567                                   if length($facet_label_value) >
568                                       $facet_max_length;
569
570                             # if it's a branch, label by the name, not the code,
571                                 if ( $link_value =~ /branch/ ) {
572                                     if (   defined $branches
573                                         && ref($branches) eq "HASH"
574                                         && defined $branches->{$one_facet}
575                                         && ref( $branches->{$one_facet} ) eq
576                                         "HASH" )
577                                     {
578                                         $facet_label_value =
579                                           $branches->{$one_facet}
580                                           ->{'branchname'};
581                                     }
582                                     else {
583                                         $facet_label_value = "*";
584                                     }
585                                 }
586
587                           # if it's a itemtype, label by the name, not the code,
588                                 if ( $link_value =~ /itype/ ) {
589                                     if (   defined $itemtypes
590                                         && ref($itemtypes) eq "HASH"
591                                         && defined $itemtypes->{$one_facet}
592                                         && ref( $itemtypes->{$one_facet} ) eq
593                                         "HASH" )
594                                     {
595                                         $facet_label_value =
596                                           $itemtypes->{$one_facet}
597                                           ->{'description'};
598                                     }
599                                 }
600
601                # also, if it's a location code, use the name instead of the code
602                                 if ( $link_value =~ /location/ ) {
603                                     $facet_label_value =
604                                       GetKohaAuthorisedValueLib( 'LOC',
605                                         $one_facet, $opac );
606                                 }
607
608                 # but we're down with the whole label being in the link's title.
609                                 push @this_facets_array,
610                                   {
611                                     facet_count =>
612                                       $facets_counter->{$link_value}
613                                       ->{$one_facet},
614                                     facet_label_value => $facet_label_value,
615                                     facet_title_value => $one_facet,
616                                     facet_link_value  => $facet_link_value,
617                                     type_link_value   => $link_value,
618                                   }
619                                   if ($facet_label_value);
620                             }
621                         }
622
623                         # handle expanded option
624                         unless ( $facets_info->{$link_value}->{'expanded'} ) {
625                             $expandable = 1
626                               if ( ( $number_of_facets > 5 )
627                                 && ( $expanded_facet ne $link_value ) );
628                         }
629                         push @facets_loop,
630                           {
631                             type_link_value => $link_value,
632                             type_id         => $link_value . "_id",
633                             "type_label_"
634                               . $facets_info->{$link_value}->{'label_value'} =>
635                               1,
636                             facets     => \@this_facets_array,
637                             expandable => $expandable,
638                             expand     => $link_value,
639                           }
640                           unless (
641                             (
642                                 $facets_info->{$link_value}->{'label_value'} =~
643                                 /Libraries/
644                             )
645                             and ( C4::Context->preference('singleBranchMode') )
646                           );
647                     }
648                 }
649             }
650         );
651     return ( undef, $results_hashref, \@facets_loop );
652 }
653
654 =head2 _get_facets_data_from_record
655
656     C4::Search::_get_facets_data_from_record( $marc_record, $facets, $facets_counter );
657
658 Internal function that extracts facets information from a MARC::Record object
659 and populates $facets_counter and $facets_info for using in getRecords.
660
661 $facets is expected to be filled with C4::Koha::getFacets output (i.e. the configured
662 facets for Zebra).
663
664 =cut
665
666 sub _get_facets_data_from_record {
667
668     my ( $marc_record, $facets, $facets_counter, $facets_info ) = @_;
669
670     for my $facet (@$facets) {
671
672         my @used_datas = ();
673
674         foreach my $tag ( @{ $facet->{ tags } } ) {
675
676             # tag number is the first three digits
677             my $tag_num          = substr( $tag, 0, 3 );
678             # subfields are the remainder
679             my $subfield_letters = substr( $tag, 3 );
680
681             my @fields = $marc_record->field( $tag_num );
682             foreach my $field (@fields) {
683                 # If $field->indicator(1) eq 'z', it means it is a 'see from'
684                 # field introduced because of IncludeSeeFromInSearches, so skip it
685                 next if $field->indicator(1) eq 'z';
686
687                 my $data = $field->as_string( $subfield_letters, $facet->{ sep } );
688
689                 unless ( grep { /^\Q$data\E$/ } @used_datas ) {
690                     push @used_datas, $data;
691                     $facets_counter->{ $facet->{ idx } }->{ $data }++;
692                 }
693             }
694         }
695         # update $facets_info so we know what facet categories need to be rendered
696         $facets_info->{ $facet->{ idx } }->{ label_value } = $facet->{ label };
697         $facets_info->{ $facet->{ idx } }->{ expanded }    = $facet->{ expanded };
698     }
699 }
700
701 sub pazGetRecords {
702     my (
703         $koha_query,       $simple_query, $sort_by_ref,    $servers_ref,
704         $results_per_page, $offset,       $expanded_facet, $branches,
705         $query_type,       $scan
706     ) = @_;
707
708     my $paz = C4::Search::PazPar2->new(C4::Context->config('pazpar2url'));
709     $paz->init();
710     $paz->search($simple_query);
711     sleep 1;   # FIXME: WHY?
712
713     # do results
714     my $results_hashref = {};
715     my $stats = XMLin($paz->stat);
716     my $results = XMLin($paz->show($offset, $results_per_page, 'work-title:1'), forcearray => 1);
717
718     # for a grouped search result, the number of hits
719     # is the number of groups returned; 'bib_hits' will have
720     # the total number of bibs.
721     $results_hashref->{'biblioserver'}->{'hits'} = $results->{'merged'}->[0];
722     $results_hashref->{'biblioserver'}->{'bib_hits'} = $stats->{'hits'};
723
724     HIT: foreach my $hit (@{ $results->{'hit'} }) {
725         my $recid = $hit->{recid}->[0];
726
727         my $work_title = $hit->{'md-work-title'}->[0];
728         my $work_author;
729         if (exists $hit->{'md-work-author'}) {
730             $work_author = $hit->{'md-work-author'}->[0];
731         }
732         my $group_label = (defined $work_author) ? "$work_title / $work_author" : $work_title;
733
734         my $result_group = {};
735         $result_group->{'group_label'} = $group_label;
736         $result_group->{'group_merge_key'} = $recid;
737
738         my $count = 1;
739         if (exists $hit->{count}) {
740             $count = $hit->{count}->[0];
741         }
742         $result_group->{'group_count'} = $count;
743
744         for (my $i = 0; $i < $count; $i++) {
745             # FIXME -- may need to worry about diacritics here
746             my $rec = $paz->record($recid, $i);
747             push @{ $result_group->{'RECORDS'} }, $rec;
748         }
749
750         push @{ $results_hashref->{'biblioserver'}->{'GROUPS'} }, $result_group;
751     }
752
753     # pass through facets
754     my $termlist_xml = $paz->termlist('author,subject');
755     my $terms = XMLin($termlist_xml, forcearray => 1);
756     my @facets_loop = ();
757     #die Dumper($results);
758 #    foreach my $list (sort keys %{ $terms->{'list'} }) {
759 #        my @facets = ();
760 #        foreach my $facet (sort @{ $terms->{'list'}->{$list}->{'term'} } ) {
761 #            push @facets, {
762 #                facet_label_value => $facet->{'name'}->[0],
763 #            };
764 #        }
765 #        push @facets_loop, ( {
766 #            type_label => $list,
767 #            facets => \@facets,
768 #        } );
769 #    }
770
771     return ( undef, $results_hashref, \@facets_loop );
772 }
773
774 # STOPWORDS
775 sub _remove_stopwords {
776     my ( $operand, $index ) = @_;
777     my @stopwords_removed;
778
779     # phrase and exact-qualified indexes shouldn't have stopwords removed
780     if ( $index !~ m/,(phr|ext)/ ) {
781
782 # remove stopwords from operand : parse all stopwords & remove them (case insensitive)
783 #       we use IsAlpha unicode definition, to deal correctly with diacritics.
784 #       otherwise, a French word like "leçon" woudl be split into "le" "çon", "le"
785 #       is a stopword, we'd get "çon" and wouldn't find anything...
786 #
787                 foreach ( keys %{ C4::Context->stopwords } ) {
788                         next if ( $_ =~ /(and|or|not)/ );    # don't remove operators
789                         if ( my ($matched) = ($operand =~
790                                 /([^\X\p{isAlnum}]\Q$_\E[^\X\p{isAlnum}]|[^\X\p{isAlnum}]\Q$_\E$|^\Q$_\E[^\X\p{isAlnum}])/gi))
791                         {
792                                 $operand =~ s/\Q$matched\E/ /gi;
793                                 push @stopwords_removed, $_;
794                         }
795                 }
796         }
797     return ( $operand, \@stopwords_removed );
798 }
799
800 # TRUNCATION
801 sub _detect_truncation {
802     my ( $operand, $index ) = @_;
803     my ( @nontruncated, @righttruncated, @lefttruncated, @rightlefttruncated,
804         @regexpr );
805     $operand =~ s/^ //g;
806     my @wordlist = split( /\s/, $operand );
807     foreach my $word (@wordlist) {
808         if ( $word =~ s/^\*([^\*]+)\*$/$1/ ) {
809             push @rightlefttruncated, $word;
810         }
811         elsif ( $word =~ s/^\*([^\*]+)$/$1/ ) {
812             push @lefttruncated, $word;
813         }
814         elsif ( $word =~ s/^([^\*]+)\*$/$1/ ) {
815             push @righttruncated, $word;
816         }
817         elsif ( index( $word, "*" ) < 0 ) {
818             push @nontruncated, $word;
819         }
820         else {
821             push @regexpr, $word;
822         }
823     }
824     return (
825         \@nontruncated,       \@righttruncated, \@lefttruncated,
826         \@rightlefttruncated, \@regexpr
827     );
828 }
829
830 # STEMMING
831 sub _build_stemmed_operand {
832     my ($operand,$lang) = @_;
833     require Lingua::Stem::Snowball ;
834     my $stemmed_operand=q{};
835
836     # If operand contains a digit, it is almost certainly an identifier, and should
837     # not be stemmed.  This is particularly relevant for ISBNs and ISSNs, which
838     # can contain the letter "X" - for example, _build_stemmend_operand would reduce
839     # "014100018X" to "x ", which for a MARC21 database would bring up irrelevant
840     # results (e.g., "23 x 29 cm." from the 300$c).  Bug 2098.
841     return $operand if $operand =~ /\d/;
842
843 # FIXME: the locale should be set based on the user's language and/or search choice
844     #warn "$lang";
845     # Make sure we only use the first two letters from the language code
846     $lang = lc(substr($lang, 0, 2));
847     # The language codes for the two variants of Norwegian will now be "nb" and "nn",
848     # none of which Lingua::Stem::Snowball can use, so we need to "translate" them
849     if ($lang eq 'nb' || $lang eq 'nn') {
850       $lang = 'no';
851     }
852     my $stemmer = Lingua::Stem::Snowball->new( lang => $lang,
853                                                encoding => "UTF-8" );
854
855     my @words = split( / /, $operand );
856     my @stems = $stemmer->stem(\@words);
857     for my $stem (@stems) {
858         $stemmed_operand .= "$stem";
859         $stemmed_operand .= "?"
860           unless ( $stem =~ /(and$|or$|not$)/ ) || ( length($stem) < 3 );
861         $stemmed_operand .= " ";
862     }
863     warn "STEMMED OPERAND: $stemmed_operand" if $DEBUG;
864     return $stemmed_operand;
865 }
866
867 # FIELD WEIGHTING
868 sub _build_weighted_query {
869
870 # FIELD WEIGHTING - This is largely experimental stuff. What I'm committing works
871 # pretty well but could work much better if we had a smarter query parser
872     my ( $operand, $stemmed_operand, $index ) = @_;
873     my $stemming      = C4::Context->preference("QueryStemming")     || 0;
874     my $weight_fields = C4::Context->preference("QueryWeightFields") || 0;
875     my $fuzzy_enabled = C4::Context->preference("QueryFuzzy")        || 0;
876     $operand =~ s/"/ /g;    # Bug 7518: searches with quotation marks don't work
877
878     my $weighted_query .= "(rk=(";    # Specifies that we're applying rank
879
880     # Keyword, or, no index specified
881     if ( ( $index eq 'kw' ) || ( !$index ) ) {
882         $weighted_query .=
883           "Title-cover,ext,r1=\"$operand\"";    # exact title-cover
884         $weighted_query .= " or ti,ext,r2=\"$operand\"";    # exact title
885         $weighted_query .= " or Title-cover,phr,r3=\"$operand\"";    # phrase title
886         $weighted_query .= " or ti,wrdl,r4=\"$operand\"";    # words in title
887           #$weighted_query .= " or any,ext,r4=$operand";               # exact any
888           #$weighted_query .=" or kw,wrdl,r5=\"$operand\"";            # word list any
889         $weighted_query .= " or wrdl,fuzzy,r8=\"$operand\""
890           if $fuzzy_enabled;    # add fuzzy, word list
891         $weighted_query .= " or wrdl,right-Truncation,r9=\"$stemmed_operand\""
892           if ( $stemming and $stemmed_operand )
893           ;                     # add stemming, right truncation
894         $weighted_query .= " or wrdl,r9=\"$operand\"";
895
896         # embedded sorting: 0 a-z; 1 z-a
897         # $weighted_query .= ") or (sort1,aut=1";
898     }
899
900     # Barcode searches should skip this process
901     elsif ( $index eq 'bc' ) {
902         $weighted_query .= "bc=\"$operand\"";
903     }
904
905     # Authority-number searches should skip this process
906     elsif ( $index eq 'an' ) {
907         $weighted_query .= "an=\"$operand\"";
908     }
909
910     # If the index already has more than one qualifier, wrap the operand
911     # in quotes and pass it back (assumption is that the user knows what they
912     # are doing and won't appreciate us mucking up their query
913     elsif ( $index =~ ',' ) {
914         $weighted_query .= " $index=\"$operand\"";
915     }
916
917     #TODO: build better cases based on specific search indexes
918     else {
919         $weighted_query .= " $index,ext,r1=\"$operand\"";    # exact index
920           #$weighted_query .= " or (title-sort-az=0 or $index,startswithnt,st-word,r3=$operand #)";
921         $weighted_query .= " or $index,phr,r3=\"$operand\"";    # phrase index
922         $weighted_query .= " or $index,wrdl,r6=\"$operand\"";    # word list index
923         $weighted_query .= " or $index,wrdl,fuzzy,r8=\"$operand\""
924           if $fuzzy_enabled;    # add fuzzy, word list
925         $weighted_query .= " or $index,wrdl,rt,r9=\"$stemmed_operand\""
926           if ( $stemming and $stemmed_operand );    # add stemming, right truncation
927     }
928
929     $weighted_query .= "))";                       # close rank specification
930     return $weighted_query;
931 }
932
933 =head2 getIndexes
934
935 Return an array with available indexes.
936
937 =cut
938
939 sub getIndexes{
940     my @indexes = (
941                     # biblio indexes
942                     'ab',
943                     'Abstract',
944                     'acqdate',
945                     'allrecords',
946                     'an',
947                     'Any',
948                     'at',
949                     'au',
950                     'aub',
951                     'aud',
952                     'audience',
953                     'auo',
954                     'aut',
955                     'Author',
956                     'Author-in-order ',
957                     'Author-personal-bibliography',
958                     'Authority-Number',
959                     'authtype',
960                     'bc',
961                     'Bib-level',
962                     'biblionumber',
963                     'bio',
964                     'biography',
965                     'callnum',
966                     'cfn',
967                     'Chronological-subdivision',
968                     'cn-bib-source',
969                     'cn-bib-sort',
970                     'cn-class',
971                     'cn-item',
972                     'cn-prefix',
973                     'cn-suffix',
974                     'cpn',
975                     'Code-institution',
976                     'Conference-name',
977                     'Conference-name-heading',
978                     'Conference-name-see',
979                     'Conference-name-seealso',
980                     'Content-type',
981                     'Control-number',
982                     'copydate',
983                     'Corporate-name',
984                     'Corporate-name-heading',
985                     'Corporate-name-see',
986                     'Corporate-name-seealso',
987                     'Country-publication',
988                     'ctype',
989                     'curriculum',
990                     'date-entered-on-file',
991                     'Date-of-acquisition',
992                     'Date-of-publication',
993                     'Dewey-classification',
994                     'Dissertation-information',
995                     'EAN',
996                     'extent',
997                     'fic',
998                     'fiction',
999                     'Form-subdivision',
1000                     'format',
1001                     'Geographic-subdivision',
1002                     'he',
1003                     'Heading',
1004                     'Heading-use-main-or-added-entry',
1005                     'Heading-use-series-added-entry ',
1006                     'Heading-use-subject-added-entry',
1007                     'Host-item',
1008                     'id-other',
1009                     'Illustration-code',
1010                     'Index-term-genre',
1011                     'Index-term-uncontrolled',
1012                     'ISBN',
1013                     'isbn',
1014                     'ISSN',
1015                     'issn',
1016                     'itemtype',
1017                     'kw',
1018                     'Koha-Auth-Number',
1019                     'l-format',
1020                     'language',
1021                     'language-original',
1022                     'lc-card',
1023                     'LC-card-number',
1024                     'lcn',
1025                     'lex',
1026                     'llength',
1027                     'ln',
1028                     'ln-audio',
1029                     'ln-subtitle',
1030                     'Local-classification',
1031                     'Local-number',
1032                     'Match-heading',
1033                     'Match-heading-see-from',
1034                     'Material-type',
1035                     'mc-itemtype',
1036                     'mc-rtype',
1037                     'mus',
1038                     'name',
1039                     'Music-number',
1040                     'Name-geographic',
1041                     'Name-geographic-heading',
1042                     'Name-geographic-see',
1043                     'Name-geographic-seealso',
1044                     'nb',
1045                     'Note',
1046                     'notes',
1047                     'ns',
1048                     'nt',
1049                     'pb',
1050                     'Personal-name',
1051                     'Personal-name-heading',
1052                     'Personal-name-see',
1053                     'Personal-name-seealso',
1054                     'pl',
1055                     'Place-publication',
1056                     'pn',
1057                     'popularity',
1058                     'pubdate',
1059                     'Publisher',
1060                     'Record-control-number',
1061                     'rcn',
1062                     'Record-type',
1063                     'rtype',
1064                     'se',
1065                     'See',
1066                     'See-also',
1067                     'sn',
1068                     'Stock-number',
1069                     'su',
1070                     'Subject',
1071                     'Subject-heading-thesaurus',
1072                     'Subject-name-personal',
1073                     'Subject-subdivision',
1074                     'Summary',
1075                     'Suppress',
1076                     'su-geo',
1077                     'su-na',
1078                     'su-to',
1079                     'su-ut',
1080                     'ut',
1081                     'Term-genre-form',
1082                     'Term-genre-form-heading',
1083                     'Term-genre-form-see',
1084                     'Term-genre-form-seealso',
1085                     'ti',
1086                     'Title',
1087                     'Title-cover',
1088                     'Title-series',
1089                     'Title-uniform',
1090                     'Title-uniform-heading',
1091                     'Title-uniform-see',
1092                     'Title-uniform-seealso',
1093                     'totalissues',
1094                     'yr',
1095
1096                     # items indexes
1097                     'acqsource',
1098                     'barcode',
1099                     'bc',
1100                     'branch',
1101                     'ccode',
1102                     'classification-source',
1103                     'cn-sort',
1104                     'coded-location-qualifier',
1105                     'copynumber',
1106                     'damaged',
1107                     'datelastborrowed',
1108                     'datelastseen',
1109                     'holdingbranch',
1110                     'homebranch',
1111                     'issues',
1112                     'item',
1113                     'itemnumber',
1114                     'itype',
1115                     'Local-classification',
1116                     'location',
1117                     'lost',
1118                     'materials-specified',
1119                     'mc-ccode',
1120                     'mc-itype',
1121                     'mc-loc',
1122                     'notforloan',
1123                     'Number-local-acquisition',
1124                     'onloan',
1125                     'price',
1126                     'renewals',
1127                     'replacementprice',
1128                     'replacementpricedate',
1129                     'reserves',
1130                     'restricted',
1131                     'stack',
1132                     'stocknumber',
1133                     'inv',
1134                     'uri',
1135                     'withdrawn',
1136
1137                     # subject related
1138                   );
1139
1140     return \@indexes;
1141 }
1142
1143 =head2 _handle_exploding_index
1144
1145     my $query = _handle_exploding_index($index, $term)
1146
1147 Callback routine to generate the search for "exploding" indexes (i.e.
1148 those indexes which are turned into multiple or-connected searches based
1149 on authority data).
1150
1151 =cut
1152
1153 sub _handle_exploding_index {
1154     my ($QParser, $filter, $params, $negate, $server) = @_;
1155     my $index = $filter;
1156     my $term = join(' ', @$params);
1157
1158     return unless ($index =~ m/(su-br|su-na|su-rl)/ && $term);
1159
1160     my $marcflavour = C4::Context->preference('marcflavour');
1161
1162     my $codesubfield = $marcflavour eq 'UNIMARC' ? '5' : 'w';
1163     my $wantedcodes = '';
1164     my @subqueries = ( "\@attr 1=Subject \@attr 4=1 \"$term\"");
1165     my ($error, $results, $total_hits) = SimpleSearch( "he:$term", undef, undef, [ "authorityserver" ] );
1166     foreach my $auth (@$results) {
1167         my $record = MARC::Record->new_from_usmarc($auth);
1168         my @references = $record->field('5..');
1169         if (@references) {
1170             if ($index eq 'su-br') {
1171                 $wantedcodes = 'g';
1172             } elsif ($index eq 'su-na') {
1173                 $wantedcodes = 'h';
1174             } elsif ($index eq 'su-rl') {
1175                 $wantedcodes = '';
1176             }
1177             foreach my $reference (@references) {
1178                 my $codes = $reference->subfield($codesubfield);
1179                 push @subqueries, '@attr 1=Subject @attr 4=1 "' . $reference->as_string('abcdefghijlmnopqrstuvxyz') . '"' if (($codes && $codes eq $wantedcodes) || !$wantedcodes);
1180             }
1181         }
1182     }
1183     my $query = ' @or ' x (scalar(@subqueries) - 1) . join(' ', @subqueries);
1184     return $query;
1185 }
1186
1187 =head2 parseQuery
1188
1189     ( $operators, $operands, $indexes, $limits,
1190       $sort_by, $scan, $lang ) =
1191             buildQuery ( $operators, $operands, $indexes, $limits, $sort_by, $scan, $lang);
1192
1193 Shim function to ease the transition from buildQuery to a new QueryParser.
1194 This function is called at the beginning of buildQuery, and modifies
1195 buildQuery's input. If it can handle the input, it returns a query that
1196 buildQuery will not try to parse.
1197 =cut
1198
1199 sub parseQuery {
1200     my ( $operators, $operands, $indexes, $limits, $sort_by, $scan, $lang) = @_;
1201
1202     my @operators = $operators ? @$operators : ();
1203     my @indexes   = $indexes   ? @$indexes   : ();
1204     my @operands  = $operands  ? @$operands  : ();
1205     my @limits    = $limits    ? @$limits    : ();
1206     my @sort_by   = $sort_by   ? @$sort_by   : ();
1207
1208     my $query = $operands[0];
1209     my $index;
1210     my $term;
1211     my $query_desc;
1212
1213     my $QParser;
1214     $QParser = C4::Context->queryparser if (C4::Context->preference('UseQueryParser') || $query =~ s/^qp=//);
1215     undef $QParser if ($query =~ m/^(ccl=|pqf=|cql=)/ || grep (/\w,\w|\w=\w/, @operands, @indexes) );
1216     undef $QParser if (scalar @limits > 0);
1217
1218     if ($QParser)
1219     {
1220         $QParser->custom_data->{'QueryAutoTruncate'} = C4::Context->preference('QueryAutoTruncate');
1221         $query = '';
1222         for ( my $ii = 0 ; $ii <= @operands ; $ii++ ) {
1223             next unless $operands[$ii];
1224             $query .= $operators[ $ii - 1 ] eq 'or' ? ' || ' : ' && '
1225               if ($query);
1226             if ( $operands[$ii] =~ /^[^"]\W*[-|_\w]*:\w.*[^"]$/ ) {
1227                 $query .= $operands[$ii];
1228             }
1229             elsif ( $indexes[$ii] =~ m/su-/ ) {
1230                 $query .= $indexes[$ii] . '(' . $operands[$ii] . ')';
1231             }
1232             else {
1233                 $query .=
1234                   ( $indexes[$ii] ? "$indexes[$ii]:" : '' ) . $operands[$ii];
1235             }
1236         }
1237         foreach my $limit (@limits) {
1238         }
1239         if ( scalar(@sort_by) > 0 ) {
1240             my $modifier_re =
1241               '#(' . join( '|', @{ $QParser->modifiers } ) . ')';
1242             $query =~ s/$modifier_re//g;
1243             foreach my $modifier (@sort_by) {
1244                 $query .= " #$modifier";
1245             }
1246         }
1247
1248         $query_desc = $query;
1249         $query_desc =~ s/\s+/ /g;
1250         if ( C4::Context->preference("QueryWeightFields") ) {
1251         }
1252         $QParser->add_bib1_filter_map( 'su-br' => 'biblioserver' =>
1253               { 'target_syntax_callback' => \&_handle_exploding_index } );
1254         $QParser->add_bib1_filter_map( 'su-na' => 'biblioserver' =>
1255               { 'target_syntax_callback' => \&_handle_exploding_index } );
1256         $QParser->add_bib1_filter_map( 'su-rl' => 'biblioserver' =>
1257               { 'target_syntax_callback' => \&_handle_exploding_index } );
1258         $QParser->parse($query);
1259         $operands[0] = "pqf=" . $QParser->target_syntax('biblioserver');
1260     }
1261     else {
1262         require Koha::QueryParser::Driver::PQF;
1263         my $modifier_re = '#(' . join( '|', @{Koha::QueryParser::Driver::PQF->modifiers}) . ')';
1264         s/$modifier_re//g for @operands;
1265     }
1266
1267     return ( $operators, \@operands, $indexes, $limits, $sort_by, $scan, $lang, $query_desc);
1268 }
1269
1270 =head2 buildQuery
1271
1272 ( $error, $query,
1273 $simple_query, $query_cgi,
1274 $query_desc, $limit,
1275 $limit_cgi, $limit_desc,
1276 $stopwords_removed, $query_type ) = buildQuery ( $operators, $operands, $indexes, $limits, $sort_by, $scan, $lang);
1277
1278 Build queries and limits in CCL, CGI, Human,
1279 handle truncation, stemming, field weighting, stopwords, fuzziness, etc.
1280
1281 See verbose embedded documentation.
1282
1283
1284 =cut
1285
1286 sub buildQuery {
1287     my ( $operators, $operands, $indexes, $limits, $sort_by, $scan, $lang) = @_;
1288
1289     warn "---------\nEnter buildQuery\n---------" if $DEBUG;
1290
1291     my $query_desc;
1292     ( $operators, $operands, $indexes, $limits, $sort_by, $scan, $lang, $query_desc) = parseQuery($operators, $operands, $indexes, $limits, $sort_by, $scan, $lang);
1293
1294     # dereference
1295     my @operators = $operators ? @$operators : ();
1296     my @indexes   = $indexes   ? @$indexes   : ();
1297     my @operands  = $operands  ? @$operands  : ();
1298     my @limits    = $limits    ? @$limits    : ();
1299     my @sort_by   = $sort_by   ? @$sort_by   : ();
1300
1301     my $stemming         = C4::Context->preference("QueryStemming")        || 0;
1302     my $auto_truncation  = C4::Context->preference("QueryAutoTruncate")    || 0;
1303     my $weight_fields    = C4::Context->preference("QueryWeightFields")    || 0;
1304     my $fuzzy_enabled    = C4::Context->preference("QueryFuzzy")           || 0;
1305     my $remove_stopwords = C4::Context->preference("QueryRemoveStopwords") || 0;
1306
1307     my $query        = $operands[0];
1308     my $simple_query = $operands[0];
1309
1310     # initialize the variables we're passing back
1311     my $query_cgi;
1312     my $query_type;
1313
1314     my $limit;
1315     my $limit_cgi;
1316     my $limit_desc;
1317
1318     my $stopwords_removed;    # flag to determine if stopwords have been removed
1319
1320     my $cclq       = 0;
1321     my $cclindexes = getIndexes();
1322     if ( $query !~ /\s*(ccl=|pqf=|cql=)/ ) {
1323         while ( !$cclq && $query =~ /(?:^|\W)([\w-]+)(,[\w-]+)*[:=]/g ) {
1324             my $dx = lc($1);
1325             $cclq = grep { lc($_) eq $dx } @$cclindexes;
1326         }
1327         $query = "ccl=$query" if $cclq;
1328     }
1329
1330 # for handling ccl, cql, pqf queries in diagnostic mode, skip the rest of the steps
1331 # DIAGNOSTIC ONLY!!
1332     if ( $query =~ /^ccl=/ ) {
1333         my $q=$';
1334         # This is needed otherwise ccl= and &limit won't work together, and
1335         # this happens when selecting a subject on the opac-detail page
1336         @limits = grep {!/^$/} @limits;
1337         if ( @limits ) {
1338             $q .= ' and '.join(' and ', @limits);
1339         }
1340         return ( undef, $q, $q, "q=ccl=".uri_escape($q), $q, '', '', '', '', 'ccl' );
1341     }
1342     if ( $query =~ /^cql=/ ) {
1343         return ( undef, $', $', "q=cql=".uri_escape($'), $', '', '', '', '', 'cql' );
1344     }
1345     if ( $query =~ /^pqf=/ ) {
1346         if ($query_desc) {
1347             $query_cgi = "q=".uri_escape($query_desc);
1348         } else {
1349             $query_desc = $';
1350             $query_cgi = "q=pqf=".uri_escape($');
1351         }
1352         return ( undef, $', $', $query_cgi, $query_desc, '', '', '', '', 'pqf' );
1353     }
1354
1355     # pass nested queries directly
1356     # FIXME: need better handling of some of these variables in this case
1357     # Nested queries aren't handled well and this implementation is flawed and causes users to be
1358     # unable to search for anything containing () commenting out, will be rewritten for 3.4.0
1359 #    if ( $query =~ /(\(|\))/ ) {
1360 #        return (
1361 #            undef,              $query, $simple_query, $query_cgi,
1362 #            $query,             $limit, $limit_cgi,    $limit_desc,
1363 #            $stopwords_removed, 'ccl'
1364 #        );
1365 #    }
1366
1367 # Form-based queries are non-nested and fixed depth, so we can easily modify the incoming
1368 # query operands and indexes and add stemming, truncation, field weighting, etc.
1369 # Once we do so, we'll end up with a value in $query, just like if we had an
1370 # incoming $query from the user
1371     else {
1372         $query = ""
1373           ; # clear it out so we can populate properly with field-weighted, stemmed, etc. query
1374         my $previous_operand
1375           ;    # a flag used to keep track if there was a previous query
1376                # if there was, we can apply the current operator
1377                # for every operand
1378         for ( my $i = 0 ; $i <= @operands ; $i++ ) {
1379
1380             # COMBINE OPERANDS, INDEXES AND OPERATORS
1381             if ( $operands[$i] ) {
1382                 $operands[$i]=~s/^\s+//;
1383
1384               # A flag to determine whether or not to add the index to the query
1385                 my $indexes_set;
1386
1387 # If the user is sophisticated enough to specify an index, turn off field weighting, stemming, and stopword handling
1388                 if ( $operands[$i] =~ /\w(:|=)/ || $scan ) {
1389                     $weight_fields    = 0;
1390                     $stemming         = 0;
1391                     $remove_stopwords = 0;
1392                 } else {
1393                     $operands[$i] =~ s/\?/{?}/g; # need to escape question marks
1394                 }
1395                 my $operand = $operands[$i];
1396                 my $index   = $indexes[$i];
1397
1398                 # Add index-specific attributes
1399                 # Date of Publication
1400                 if ( $index eq 'yr' ) {
1401                     $index .= ",st-numeric";
1402                     $indexes_set++;
1403                                         $stemming = $auto_truncation = $weight_fields = $fuzzy_enabled = $remove_stopwords = 0;
1404                 }
1405
1406                 # Date of Acquisition
1407                 elsif ( $index eq 'acqdate' ) {
1408                     $index .= ",st-date-normalized";
1409                     $indexes_set++;
1410                                         $stemming = $auto_truncation = $weight_fields = $fuzzy_enabled = $remove_stopwords = 0;
1411                 }
1412                 # ISBN,ISSN,Standard Number, don't need special treatment
1413                 elsif ( $index eq 'nb' || $index eq 'ns' ) {
1414                     (
1415                         $stemming,      $auto_truncation,
1416                         $weight_fields, $fuzzy_enabled,
1417                         $remove_stopwords
1418                     ) = ( 0, 0, 0, 0, 0 );
1419
1420                 }
1421
1422                 if(not $index){
1423                     $index = 'kw';
1424                 }
1425
1426                 # Set default structure attribute (word list)
1427                 my $struct_attr = q{};
1428                 unless ( $indexes_set || !$index || $index =~ /,(st-|phr|ext|wrdl)/ || $index =~ /^(nb|ns)$/ ) {
1429                     $struct_attr = ",wrdl";
1430                 }
1431
1432                 # Some helpful index variants
1433                 my $index_plus       = $index . $struct_attr . ':';
1434                 my $index_plus_comma = $index . $struct_attr . ',';
1435
1436                 # Remove Stopwords
1437                 if ($remove_stopwords) {
1438                     ( $operand, $stopwords_removed ) =
1439                       _remove_stopwords( $operand, $index );
1440                     warn "OPERAND w/out STOPWORDS: >$operand<" if $DEBUG;
1441                     warn "REMOVED STOPWORDS: @$stopwords_removed"
1442                       if ( $stopwords_removed && $DEBUG );
1443                 }
1444
1445                 if ($auto_truncation){
1446                         unless ( $index =~ /,(st-|phr|ext)/ ) {
1447                                                 #FIXME only valid with LTR scripts
1448                                                 $operand=join(" ",map{
1449                                                                                         (index($_,"*")>0?"$_":"$_*")
1450                                                                                          }split (/\s+/,$operand));
1451                                                 warn $operand if $DEBUG;
1452                                         }
1453                                 }
1454
1455                 # Detect Truncation
1456                 my $truncated_operand;
1457                 my( $nontruncated, $righttruncated, $lefttruncated,
1458                     $rightlefttruncated, $regexpr
1459                 ) = _detect_truncation( $operand, $index );
1460                 warn
1461 "TRUNCATION: NON:>@$nontruncated< RIGHT:>@$righttruncated< LEFT:>@$lefttruncated< RIGHTLEFT:>@$rightlefttruncated< REGEX:>@$regexpr<"
1462                   if $DEBUG;
1463
1464                 # Apply Truncation
1465                 if (
1466                     scalar(@$righttruncated) + scalar(@$lefttruncated) +
1467                     scalar(@$rightlefttruncated) > 0 )
1468                 {
1469
1470                # Don't field weight or add the index to the query, we do it here
1471                     $indexes_set = 1;
1472                     undef $weight_fields;
1473                     my $previous_truncation_operand;
1474                     if (scalar @$nontruncated) {
1475                         $truncated_operand .= "$index_plus @$nontruncated ";
1476                         $previous_truncation_operand = 1;
1477                     }
1478                     if (scalar @$righttruncated) {
1479                         $truncated_operand .= "and " if $previous_truncation_operand;
1480                         $truncated_operand .= $index_plus_comma . "rtrn:@$righttruncated ";
1481                         $previous_truncation_operand = 1;
1482                     }
1483                     if (scalar @$lefttruncated) {
1484                         $truncated_operand .= "and " if $previous_truncation_operand;
1485                         $truncated_operand .= $index_plus_comma . "ltrn:@$lefttruncated ";
1486                         $previous_truncation_operand = 1;
1487                     }
1488                     if (scalar @$rightlefttruncated) {
1489                         $truncated_operand .= "and " if $previous_truncation_operand;
1490                         $truncated_operand .= $index_plus_comma . "rltrn:@$rightlefttruncated ";
1491                         $previous_truncation_operand = 1;
1492                     }
1493                 }
1494                 $operand = $truncated_operand if $truncated_operand;
1495                 warn "TRUNCATED OPERAND: >$truncated_operand<" if $DEBUG;
1496
1497                 # Handle Stemming
1498                 my $stemmed_operand;
1499                 $stemmed_operand = _build_stemmed_operand($operand, $lang)
1500                                                                                 if $stemming;
1501
1502                 warn "STEMMED OPERAND: >$stemmed_operand<" if $DEBUG;
1503
1504                 # Handle Field Weighting
1505                 my $weighted_operand;
1506                 if ($weight_fields) {
1507                     $weighted_operand = _build_weighted_query( $operand, $stemmed_operand, $index );
1508                     $operand = $weighted_operand;
1509                     $indexes_set = 1;
1510                 }
1511
1512                 warn "FIELD WEIGHTED OPERAND: >$weighted_operand<" if $DEBUG;
1513
1514                 # If there's a previous operand, we need to add an operator
1515                 if ($previous_operand) {
1516
1517                     # User-specified operator
1518                     if ( $operators[ $i - 1 ] ) {
1519                         $query     .= " $operators[$i-1] ";
1520                         $query     .= " $index_plus " unless $indexes_set;
1521                         $query     .= " $operand";
1522                         $query_cgi .= "&op=".uri_escape($operators[$i-1]);
1523                         $query_cgi .= "&idx=".uri_escape($index) if $index;
1524                         $query_cgi .= "&q=".uri_escape($operands[$i]) if $operands[$i];
1525                         $query_desc .=
1526                           " $operators[$i-1] $index_plus $operands[$i]";
1527                     }
1528
1529                     # Default operator is and
1530                     else {
1531                         $query      .= " and ";
1532                         $query      .= "$index_plus " unless $indexes_set;
1533                         $query      .= "$operand";
1534                         $query_cgi  .= "&op=and&idx=".uri_escape($index) if $index;
1535                         $query_cgi  .= "&q=".uri_escape($operands[$i]) if $operands[$i];
1536                         $query_desc .= " and $index_plus $operands[$i]";
1537                     }
1538                 }
1539
1540                 # There isn't a pervious operand, don't need an operator
1541                 else {
1542
1543                     # Field-weighted queries already have indexes set
1544                     $query .= " $index_plus " unless $indexes_set;
1545                     $query .= $operand;
1546                     $query_desc .= " $index_plus $operands[$i]";
1547                     $query_cgi  .= "&idx=".uri_escape($index) if $index;
1548                     $query_cgi  .= "&q=".uri_escape($operands[$i]) if $operands[$i];
1549                     $previous_operand = 1;
1550                 }
1551             }    #/if $operands
1552         }    # /for
1553     }
1554     warn "QUERY BEFORE LIMITS: >$query<" if $DEBUG;
1555
1556     # add limits
1557     my %group_OR_limits;
1558     my $availability_limit;
1559     foreach my $this_limit (@limits) {
1560         next unless $this_limit;
1561         if ( $this_limit =~ /available/ ) {
1562 #
1563 ## 'available' is defined as (items.onloan is NULL) and (items.itemlost = 0)
1564 ## In English:
1565 ## all records not indexed in the onloan register (zebra) and all records with a value of lost equal to 0
1566             $availability_limit .=
1567 "( ( allrecords,AlwaysMatches='' not onloan,AlwaysMatches='') and (lost,st-numeric=0) )"; #or ( allrecords,AlwaysMatches='' not lost,AlwaysMatches='')) )";
1568             $limit_cgi  .= "&limit=available";
1569             $limit_desc .= "";
1570         }
1571
1572         # group_OR_limits, prefixed by mc-
1573         # OR every member of the group
1574         elsif ( $this_limit =~ /mc/ ) {
1575             my ($k,$v) = split(/:/, $this_limit,2);
1576             if ( $k !~ /mc-i(tem)?type/ ) {
1577                 # in case the mc-ccode value has complicating chars like ()'s inside it we wrap in quotes
1578                 $this_limit =~ tr/"//d;
1579                 $this_limit = $k.":\"".$v."\"";
1580             }
1581
1582             $group_OR_limits{$k} .= " or " if $group_OR_limits{$k};
1583             $limit_desc      .= " or " if $group_OR_limits{$k};
1584             $group_OR_limits{$k} .= "$this_limit";
1585             $limit_cgi       .= "&limit=" . uri_escape($this_limit);
1586             $limit_desc      .= " $this_limit";
1587         }
1588
1589         # Regular old limits
1590         else {
1591             $limit .= " and " if $limit || $query;
1592             $limit      .= "$this_limit";
1593             $limit_cgi  .= "&limit=" . uri_escape($this_limit);
1594             if ($this_limit =~ /^branch:(.+)/) {
1595                 my $branchcode = $1;
1596                 my $branchname = GetBranchName($branchcode);
1597                 if (defined $branchname) {
1598                     $limit_desc .= " branch:$branchname";
1599                 } else {
1600                     $limit_desc .= " $this_limit";
1601                 }
1602             } else {
1603                 $limit_desc .= " $this_limit";
1604             }
1605         }
1606     }
1607     foreach my $k (keys (%group_OR_limits)) {
1608         $limit .= " and " if ( $query || $limit );
1609         $limit .= "($group_OR_limits{$k})";
1610     }
1611     if ($availability_limit) {
1612         $limit .= " and " if ( $query || $limit );
1613         $limit .= "($availability_limit)";
1614     }
1615
1616     # Normalize the query and limit strings
1617     # This is flawed , means we can't search anything with : in it
1618     # if user wants to do ccl or cql, start the query with that
1619 #    $query =~ s/:/=/g;
1620     $query =~ s/(?<=(ti|au|pb|su|an|kw|mc|nb|ns)):/=/g;
1621     $query =~ s/(?<=(wrdl)):/=/g;
1622     $query =~ s/(?<=(trn|phr)):/=/g;
1623     $limit =~ s/:/=/g;
1624     for ( $query, $query_desc, $limit, $limit_desc ) {
1625         s/  +/ /g;    # remove extra spaces
1626         s/^ //g;     # remove any beginning spaces
1627         s/ $//g;     # remove any ending spaces
1628         s/==/=/g;    # remove double == from query
1629     }
1630     $query_cgi =~ s/^&//; # remove unnecessary & from beginning of the query cgi
1631
1632     for ($query_cgi,$simple_query) {
1633         s/"//g;
1634     }
1635     # append the limit to the query
1636     $query .= " " . $limit;
1637
1638     # Warnings if DEBUG
1639     if ($DEBUG) {
1640         warn "QUERY:" . $query;
1641         warn "QUERY CGI:" . $query_cgi;
1642         warn "QUERY DESC:" . $query_desc;
1643         warn "LIMIT:" . $limit;
1644         warn "LIMIT CGI:" . $limit_cgi;
1645         warn "LIMIT DESC:" . $limit_desc;
1646         warn "---------\nLeave buildQuery\n---------";
1647     }
1648     return (
1649         undef,              $query, $simple_query, $query_cgi,
1650         $query_desc,        $limit, $limit_cgi,    $limit_desc,
1651         $stopwords_removed, $query_type
1652     );
1653 }
1654
1655 =head2 searchResults
1656
1657   my @search_results = searchResults($search_context, $searchdesc, $hits, 
1658                                      $results_per_page, $offset, $scan, 
1659                                      @marcresults);
1660
1661 Format results in a form suitable for passing to the template
1662
1663 =cut
1664
1665 # IMO this subroutine is pretty messy still -- it's responsible for
1666 # building the HTML output for the template
1667 sub searchResults {
1668     my ( $search_context, $searchdesc, $hits, $results_per_page, $offset, $scan, $marcresults ) = @_;
1669     my $dbh = C4::Context->dbh;
1670     my @newresults;
1671
1672     require C4::Items;
1673
1674     $search_context = 'opac' if !$search_context || $search_context ne 'intranet';
1675     my ($is_opac, $hidelostitems);
1676     if ($search_context eq 'opac') {
1677         $hidelostitems = C4::Context->preference('hidelostitems');
1678         $is_opac       = 1;
1679     }
1680
1681     #Build branchnames hash
1682     #find branchname
1683     #get branch information.....
1684     my %branches;
1685     my $bsth =$dbh->prepare("SELECT branchcode,branchname FROM branches"); # FIXME : use C4::Branch::GetBranches
1686     $bsth->execute();
1687     while ( my $bdata = $bsth->fetchrow_hashref ) {
1688         $branches{ $bdata->{'branchcode'} } = $bdata->{'branchname'};
1689     }
1690 # FIXME - We build an authorised values hash here, using the default framework
1691 # though it is possible to have different authvals for different fws.
1692
1693     my $shelflocations =GetKohaAuthorisedValues('items.location','');
1694
1695     # get notforloan authorised value list (see $shelflocations  FIXME)
1696     my $notforloan_authorised_value = GetAuthValCode('items.notforloan','');
1697
1698     #Build itemtype hash
1699     #find itemtype & itemtype image
1700     my %itemtypes;
1701     $bsth =
1702       $dbh->prepare(
1703         "SELECT itemtype,description,imageurl,summary,notforloan FROM itemtypes"
1704       );
1705     $bsth->execute();
1706     while ( my $bdata = $bsth->fetchrow_hashref ) {
1707                 foreach (qw(description imageurl summary notforloan)) {
1708                 $itemtypes{ $bdata->{'itemtype'} }->{$_} = $bdata->{$_};
1709                 }
1710     }
1711
1712     #search item field code
1713     my ($itemtag, undef) = &GetMarcFromKohaField( "items.itemnumber", "" );
1714
1715     ## find column names of items related to MARC
1716     my $sth2 = $dbh->prepare("SHOW COLUMNS FROM items");
1717     $sth2->execute;
1718     my %subfieldstosearch;
1719     while ( ( my $column ) = $sth2->fetchrow ) {
1720         my ( $tagfield, $tagsubfield ) =
1721           &GetMarcFromKohaField( "items." . $column, "" );
1722         if ( defined $tagsubfield ) {
1723             $subfieldstosearch{$column} = $tagsubfield;
1724         }
1725     }
1726
1727     # handle which records to actually retrieve
1728     my $times;
1729     if ( $hits && $offset + $results_per_page <= $hits ) {
1730         $times = $offset + $results_per_page;
1731     }
1732     else {
1733         $times = $hits;  # FIXME: if $hits is undefined, why do we want to equal it?
1734     }
1735
1736     my $marcflavour = C4::Context->preference("marcflavour");
1737     # We get the biblionumber position in MARC
1738     my ($bibliotag,$bibliosubf)=GetMarcFromKohaField('biblio.biblionumber','');
1739
1740     # loop through all of the records we've retrieved
1741     for ( my $i = $offset ; $i <= $times - 1 ; $i++ ) {
1742
1743         my $marcrecord;
1744         if ($scan) {
1745             # For Scan searches we built USMARC data
1746             $marcrecord = MARC::Record->new_from_usmarc( $marcresults->[$i]);
1747         } else {
1748             # Normal search, render from Zebra's output
1749             $marcrecord = new_record_from_zebra(
1750                 'biblioserver',
1751                 $marcresults->[$i]
1752             );
1753
1754             if ( ! defined $marcrecord ) {
1755                 warn "ERROR DECODING RECORD - $@: " . $marcresults->[$i];
1756                 next;
1757             }
1758         }
1759
1760         my $fw = $scan
1761              ? undef
1762              : $bibliotag < 10
1763                ? GetFrameworkCode($marcrecord->field($bibliotag)->data)
1764                : GetFrameworkCode($marcrecord->subfield($bibliotag,$bibliosubf));
1765         my $oldbiblio = TransformMarcToKoha( $dbh, $marcrecord, $fw );
1766         $oldbiblio->{subtitle} = GetRecordValue('subtitle', $marcrecord, $fw);
1767         $oldbiblio->{result_number} = $i + 1;
1768
1769         # add imageurl to itemtype if there is one
1770         $oldbiblio->{imageurl} = getitemtypeimagelocation( $search_context, $itemtypes{ $oldbiblio->{itemtype} }->{imageurl} );
1771
1772         $oldbiblio->{'authorised_value_images'}  = ($search_context eq 'opac' && C4::Context->preference('AuthorisedValueImages')) || ($search_context eq 'intranet' && C4::Context->preference('StaffAuthorisedValueImages')) ? C4::Items::get_authorised_value_images( C4::Biblio::get_biblio_authorised_values( $oldbiblio->{'biblionumber'}, $marcrecord ) ) : [];
1773                 $oldbiblio->{normalized_upc}  = GetNormalizedUPC(       $marcrecord,$marcflavour);
1774                 $oldbiblio->{normalized_ean}  = GetNormalizedEAN(       $marcrecord,$marcflavour);
1775                 $oldbiblio->{normalized_oclc} = GetNormalizedOCLCNumber($marcrecord,$marcflavour);
1776                 $oldbiblio->{normalized_isbn} = GetNormalizedISBN(undef,$marcrecord,$marcflavour);
1777                 $oldbiblio->{content_identifier_exists} = 1 if ($oldbiblio->{normalized_isbn} or $oldbiblio->{normalized_oclc} or $oldbiblio->{normalized_ean} or $oldbiblio->{normalized_upc});
1778
1779                 # edition information, if any
1780         $oldbiblio->{edition} = $oldbiblio->{editionstatement};
1781                 $oldbiblio->{description} = $itemtypes{ $oldbiblio->{itemtype} }->{description};
1782  # Build summary if there is one (the summary is defined in the itemtypes table)
1783  # FIXME: is this used anywhere, I think it can be commented out? -- JF
1784         if ( $itemtypes{ $oldbiblio->{itemtype} }->{summary} ) {
1785             my $summary = $itemtypes{ $oldbiblio->{itemtype} }->{summary};
1786             my @fields  = $marcrecord->fields();
1787
1788             my $newsummary;
1789             foreach my $line ( "$summary\n" =~ /(.*)\n/g ){
1790                 my $tags = {};
1791                 foreach my $tag ( $line =~ /\[(\d{3}[\w|\d])\]/ ) {
1792                     $tag =~ /(.{3})(.)/;
1793                     if($marcrecord->field($1)){
1794                         my @abc = $marcrecord->field($1)->subfield($2);
1795                         $tags->{$tag} = $#abc + 1 ;
1796                     }
1797                 }
1798
1799                 # We catch how many times to repeat this line
1800                 my $max = 0;
1801                 foreach my $tag (keys(%$tags)){
1802                     $max = $tags->{$tag} if($tags->{$tag} > $max);
1803                  }
1804
1805                 # we replace, and repeat each line
1806                 for (my $i = 0 ; $i < $max ; $i++){
1807                     my $newline = $line;
1808
1809                     foreach my $tag ( $newline =~ /\[(\d{3}[\w|\d])\]/g ) {
1810                         $tag =~ /(.{3})(.)/;
1811
1812                         if($marcrecord->field($1)){
1813                             my @repl = $marcrecord->field($1)->subfield($2);
1814                             my $subfieldvalue = $repl[$i];
1815
1816                             if (! utf8::is_utf8($subfieldvalue)) {
1817                                 utf8::decode($subfieldvalue);
1818                             }
1819
1820                              $newline =~ s/\[$tag\]/$subfieldvalue/g;
1821                         }
1822                     }
1823                     $newsummary .= "$newline\n";
1824                 }
1825             }
1826
1827             $newsummary =~ s/\[(.*?)]//g;
1828             $newsummary =~ s/\n/<br\/>/g;
1829             $oldbiblio->{summary} = $newsummary;
1830         }
1831
1832         # Pull out the items fields
1833         my @fields = $marcrecord->field($itemtag);
1834         my $marcflavor = C4::Context->preference("marcflavour");
1835         # adding linked items that belong to host records
1836         my $analyticsfield = '773';
1837         if ($marcflavor eq 'MARC21' || $marcflavor eq 'NORMARC') {
1838             $analyticsfield = '773';
1839         } elsif ($marcflavor eq 'UNIMARC') {
1840             $analyticsfield = '461';
1841         }
1842         foreach my $hostfield ( $marcrecord->field($analyticsfield)) {
1843             my $hostbiblionumber = $hostfield->subfield("0");
1844             my $linkeditemnumber = $hostfield->subfield("9");
1845             if(!$hostbiblionumber eq undef){
1846                 my $hostbiblio = GetMarcBiblio($hostbiblionumber, 1);
1847                 my ($itemfield, undef) = GetMarcFromKohaField( 'items.itemnumber', GetFrameworkCode($hostbiblionumber) );
1848                 if(!$hostbiblio eq undef){
1849                     my @hostitems = $hostbiblio->field($itemfield);
1850                     foreach my $hostitem (@hostitems){
1851                         if ($hostitem->subfield("9") eq $linkeditemnumber){
1852                             my $linkeditem =$hostitem;
1853                             # append linked items if they exist
1854                             if (!$linkeditem eq undef){
1855                                 push (@fields, $linkeditem);}
1856                         }
1857                     }
1858                 }
1859             }
1860         }
1861
1862         # Setting item statuses for display
1863         my @available_items_loop;
1864         my @onloan_items_loop;
1865         my @other_items_loop;
1866
1867         my $available_items;
1868         my $onloan_items;
1869         my $other_items;
1870
1871         my $ordered_count         = 0;
1872         my $available_count       = 0;
1873         my $onloan_count          = 0;
1874         my $longoverdue_count     = 0;
1875         my $other_count           = 0;
1876         my $withdrawn_count        = 0;
1877         my $itemlost_count        = 0;
1878         my $hideatopac_count      = 0;
1879         my $itembinding_count     = 0;
1880         my $itemdamaged_count     = 0;
1881         my $item_in_transit_count = 0;
1882         my $can_place_holds       = 0;
1883         my $item_onhold_count     = 0;
1884         my $notforloan_count      = 0;
1885         my $items_count           = scalar(@fields);
1886         my $maxitems_pref = C4::Context->preference('maxItemsinSearchResults');
1887         my $maxitems = $maxitems_pref ? $maxitems_pref - 1 : 1;
1888         my @hiddenitems; # hidden itemnumbers based on OpacHiddenItems syspref
1889
1890         # loop through every item
1891         foreach my $field (@fields) {
1892             my $item;
1893
1894             # populate the items hash
1895             foreach my $code ( keys %subfieldstosearch ) {
1896                 $item->{$code} = $field->subfield( $subfieldstosearch{$code} );
1897             }
1898             $item->{description} = $itemtypes{ $item->{itype} }{description};
1899
1900                 # OPAC hidden items
1901             if ($is_opac) {
1902                 # hidden because lost
1903                 if ($hidelostitems && $item->{itemlost}) {
1904                     $hideatopac_count++;
1905                     next;
1906                 }
1907                 # hidden based on OpacHiddenItems syspref
1908                 my @hi = C4::Items::GetHiddenItemnumbers($item);
1909                 if (scalar @hi) {
1910                     push @hiddenitems, @hi;
1911                     $hideatopac_count++;
1912                     next;
1913                 }
1914             }
1915
1916             my $hbranch     = C4::Context->preference('HomeOrHoldingBranch') eq 'homebranch' ? 'homebranch'    : 'holdingbranch';
1917             my $otherbranch = C4::Context->preference('HomeOrHoldingBranch') eq 'homebranch' ? 'holdingbranch' : 'homebranch';
1918
1919             # set item's branch name, use HomeOrHoldingBranch syspref first, fall back to the other one
1920             if ($item->{$hbranch}) {
1921                 $item->{'branchname'} = $branches{$item->{$hbranch}};
1922             }
1923             elsif ($item->{$otherbranch}) {     # Last resort
1924                 $item->{'branchname'} = $branches{$item->{$otherbranch}};
1925             }
1926
1927                         my $prefix = $item->{$hbranch} . '--' . $item->{location} . $item->{itype} . $item->{itemcallnumber};
1928 # For each grouping of items (onloan, available, unavailable), we build a key to store relevant info about that item
1929             my $userenv = C4::Context->userenv;
1930             if ( $item->{onloan} && !(C4::Members::GetHideLostItemsPreference($userenv->{'number'}) && $item->{itemlost}) ) {
1931                 $onloan_count++;
1932                                 my $key = $prefix . $item->{onloan} . $item->{barcode};
1933                                 $onloan_items->{$key}->{due_date} = format_date($item->{onloan});
1934                                 $onloan_items->{$key}->{count}++ if $item->{$hbranch};
1935                                 $onloan_items->{$key}->{branchname} = $item->{branchname};
1936                                 $onloan_items->{$key}->{location} = $shelflocations->{ $item->{location} };
1937                                 $onloan_items->{$key}->{itemcallnumber} = $item->{itemcallnumber};
1938                                 $onloan_items->{$key}->{description} = $item->{description};
1939                                 $onloan_items->{$key}->{imageurl} = getitemtypeimagelocation( $search_context, $itemtypes{ $item->{itype} }->{imageurl} );
1940                 # if something's checked out and lost, mark it as 'long overdue'
1941                 if ( $item->{itemlost} ) {
1942                     $onloan_items->{$prefix}->{longoverdue}++;
1943                     $longoverdue_count++;
1944                 } else {        # can place holds as long as item isn't lost
1945                     $can_place_holds = 1;
1946                 }
1947             }
1948
1949          # items not on loan, but still unavailable ( lost, withdrawn, damaged )
1950             else {
1951
1952                 # item is on order
1953                 if ( $item->{notforloan} < 0 ) {
1954                     $ordered_count++;
1955                 } elsif ( $item->{notforloan} > 0 ) {
1956                     $notforloan_count++;
1957                 }
1958
1959                 # is item in transit?
1960                 my $transfertwhen = '';
1961                 my ($transfertfrom, $transfertto);
1962
1963                 # is item on the reserve shelf?
1964                 my $reservestatus = '';
1965
1966                 unless ($item->{withdrawn}
1967                         || $item->{itemlost}
1968                         || $item->{damaged}
1969                         || $item->{notforloan}
1970                         || $items_count > 20) {
1971
1972                     # A couple heuristics to limit how many times
1973                     # we query the database for item transfer information, sacrificing
1974                     # accuracy in some cases for speed;
1975                     #
1976                     # 1. don't query if item has one of the other statuses
1977                     # 2. don't check transit status if the bib has
1978                     #    more than 20 items
1979                     #
1980                     # FIXME: to avoid having the query the database like this, and to make
1981                     #        the in transit status count as unavailable for search limiting,
1982                     #        should map transit status to record indexed in Zebra.
1983                     #
1984                     ($transfertwhen, $transfertfrom, $transfertto) = C4::Circulation::GetTransfers($item->{itemnumber});
1985                     $reservestatus = C4::Reserves::GetReserveStatus( $item->{itemnumber}, $oldbiblio->{biblionumber} );
1986                 }
1987
1988                 # item is withdrawn, lost, damaged, not for loan, reserved or in transit
1989                 if (   $item->{withdrawn}
1990                     || $item->{itemlost}
1991                     || $item->{damaged}
1992                     || $item->{notforloan}
1993                     || $reservestatus eq 'Waiting'
1994                     || ($transfertwhen ne ''))
1995                 {
1996                     $withdrawn_count++        if $item->{withdrawn};
1997                     $itemlost_count++        if $item->{itemlost};
1998                     $itemdamaged_count++     if $item->{damaged};
1999                     $item_in_transit_count++ if $transfertwhen ne '';
2000                     $item_onhold_count++     if $reservestatus eq 'Waiting';
2001                     $item->{status} = $item->{withdrawn} . "-" . $item->{itemlost} . "-" . $item->{damaged} . "-" . $item->{notforloan};
2002
2003                     # can place a hold on a item if
2004                     # not lost nor withdrawn
2005                     # not damaged unless AllowHoldsOnDamagedItems is true
2006                     # item is either for loan or on order (notforloan < 0)
2007                     $can_place_holds = 1
2008                       if (
2009                            !$item->{itemlost}
2010                         && !$item->{withdrawn}
2011                         && ( !$item->{damaged} || C4::Context->preference('AllowHoldsOnDamagedItems') )
2012                         && ( !$item->{notforloan} || $item->{notforloan} < 0 )
2013                       );
2014
2015                     $other_count++;
2016
2017                     my $key = $prefix . $item->{status};
2018                     foreach (qw(withdrawn itemlost damaged branchname itemcallnumber)) {
2019                         $other_items->{$key}->{$_} = $item->{$_};
2020                     }
2021                     $other_items->{$key}->{intransit} = ( $transfertwhen ne '' ) ? 1 : 0;
2022                     $other_items->{$key}->{onhold} = ($reservestatus) ? 1 : 0;
2023                     $other_items->{$key}->{notforloan} = GetAuthorisedValueDesc('','',$item->{notforloan},'','',$notforloan_authorised_value) if $notforloan_authorised_value and $item->{notforloan};
2024                                         $other_items->{$key}->{count}++ if $item->{$hbranch};
2025                                         $other_items->{$key}->{location} = $shelflocations->{ $item->{location} };
2026                                         $other_items->{$key}->{description} = $item->{description};
2027                                         $other_items->{$key}->{imageurl} = getitemtypeimagelocation( $search_context, $itemtypes{ $item->{itype} }->{imageurl} );
2028                 }
2029                 # item is available
2030                 else {
2031                     $can_place_holds = 1;
2032                     $available_count++;
2033                                         $available_items->{$prefix}->{count}++ if $item->{$hbranch};
2034                                         foreach (qw(branchname itemcallnumber description)) {
2035                         $available_items->{$prefix}->{$_} = $item->{$_};
2036                                         }
2037                                         $available_items->{$prefix}->{location} = $shelflocations->{ $item->{location} };
2038                                         $available_items->{$prefix}->{imageurl} = getitemtypeimagelocation( $search_context, $itemtypes{ $item->{itype} }->{imageurl} );
2039                 }
2040             }
2041         }    # notforloan, item level and biblioitem level
2042
2043         # if all items are hidden, do not show the record
2044         if ($items_count > 0 && $hideatopac_count == $items_count) {
2045             next;
2046         }
2047
2048         my ( $availableitemscount, $onloanitemscount, $otheritemscount );
2049         for my $key ( sort keys %$onloan_items ) {
2050             (++$onloanitemscount > $maxitems) and last;
2051             push @onloan_items_loop, $onloan_items->{$key};
2052         }
2053         for my $key ( sort keys %$other_items ) {
2054             (++$otheritemscount > $maxitems) and last;
2055             push @other_items_loop, $other_items->{$key};
2056         }
2057         for my $key ( sort keys %$available_items ) {
2058             (++$availableitemscount > $maxitems) and last;
2059             push @available_items_loop, $available_items->{$key}
2060         }
2061
2062         # XSLT processing of some stuff
2063         SetUTF8Flag($marcrecord);
2064         warn $marcrecord->as_formatted if $DEBUG;
2065         my $interface = $search_context eq 'opac' ? 'OPAC' : '';
2066         if (!$scan && C4::Context->preference($interface . "XSLTResultsDisplay")) {
2067             $oldbiblio->{XSLTResultsRecord} = XSLTParse4Display($oldbiblio->{biblionumber}, $marcrecord, $interface."XSLTResultsDisplay", 1, \@hiddenitems);
2068         # the last parameter tells Koha to clean up the problematic ampersand entities that Zebra outputs
2069         }
2070
2071         # if biblio level itypes are used and itemtype is notforloan, it can't be reserved either
2072         if (!C4::Context->preference("item-level_itypes")) {
2073             if ($itemtypes{ $oldbiblio->{itemtype} }->{notforloan}) {
2074                 $can_place_holds = 0;
2075             }
2076         }
2077         $oldbiblio->{norequests} = 1 unless $can_place_holds;
2078         $oldbiblio->{itemsplural}          = 1 if $items_count > 1;
2079         $oldbiblio->{items_count}          = $items_count;
2080         $oldbiblio->{available_items_loop} = \@available_items_loop;
2081         $oldbiblio->{onloan_items_loop}    = \@onloan_items_loop;
2082         $oldbiblio->{other_items_loop}     = \@other_items_loop;
2083         $oldbiblio->{availablecount}       = $available_count;
2084         $oldbiblio->{availableplural}      = 1 if $available_count > 1;
2085         $oldbiblio->{onloancount}          = $onloan_count;
2086         $oldbiblio->{onloanplural}         = 1 if $onloan_count > 1;
2087         $oldbiblio->{othercount}           = $other_count;
2088         $oldbiblio->{otherplural}          = 1 if $other_count > 1;
2089         $oldbiblio->{withdrawncount}        = $withdrawn_count;
2090         $oldbiblio->{itemlostcount}        = $itemlost_count;
2091         $oldbiblio->{damagedcount}         = $itemdamaged_count;
2092         $oldbiblio->{intransitcount}       = $item_in_transit_count;
2093         $oldbiblio->{onholdcount}          = $item_onhold_count;
2094         $oldbiblio->{orderedcount}         = $ordered_count;
2095         $oldbiblio->{notforloancount}      = $notforloan_count;
2096
2097         if (C4::Context->preference("AlternateHoldingsField") && $items_count == 0) {
2098             my $fieldspec = C4::Context->preference("AlternateHoldingsField");
2099             my $subfields = substr $fieldspec, 3;
2100             my $holdingsep = C4::Context->preference("AlternateHoldingsSeparator") || ' ';
2101             my @alternateholdingsinfo = ();
2102             my @holdingsfields = $marcrecord->field(substr $fieldspec, 0, 3);
2103             my $alternateholdingscount = 0;
2104
2105             for my $field (@holdingsfields) {
2106                 my %holding = ( holding => '' );
2107                 my $havesubfield = 0;
2108                 for my $subfield ($field->subfields()) {
2109                     if ((index $subfields, $$subfield[0]) >= 0) {
2110                         $holding{'holding'} .= $holdingsep if (length $holding{'holding'} > 0);
2111                         $holding{'holding'} .= $$subfield[1];
2112                         $havesubfield++;
2113                     }
2114                 }
2115                 if ($havesubfield) {
2116                     push(@alternateholdingsinfo, \%holding);
2117                     $alternateholdingscount++;
2118                 }
2119             }
2120
2121             $oldbiblio->{'ALTERNATEHOLDINGS'} = \@alternateholdingsinfo;
2122             $oldbiblio->{'alternateholdings_count'} = $alternateholdingscount;
2123         }
2124
2125         push( @newresults, $oldbiblio );
2126     }
2127
2128     return @newresults;
2129 }
2130
2131 =head2 SearchAcquisitions
2132     Search for acquisitions
2133 =cut
2134
2135 sub SearchAcquisitions{
2136     my ($datebegin, $dateend, $itemtypes,$criteria, $orderby) = @_;
2137
2138     my $dbh=C4::Context->dbh;
2139     # Variable initialization
2140     my $str=qq|
2141     SELECT marcxml
2142     FROM biblio
2143     LEFT JOIN biblioitems ON biblioitems.biblionumber=biblio.biblionumber
2144     LEFT JOIN items ON items.biblionumber=biblio.biblionumber
2145     WHERE dateaccessioned BETWEEN ? AND ?
2146     |;
2147
2148     my (@params,@loopcriteria);
2149
2150     push @params, $datebegin->output("iso");
2151     push @params, $dateend->output("iso");
2152
2153     if (scalar(@$itemtypes)>0 and $criteria ne "itemtype" ){
2154         if(C4::Context->preference("item-level_itypes")){
2155             $str .= "AND items.itype IN (?".( ',?' x scalar @$itemtypes - 1 ).") ";
2156         }else{
2157             $str .= "AND biblioitems.itemtype IN (?".( ',?' x scalar @$itemtypes - 1 ).") ";
2158         }
2159         push @params, @$itemtypes;
2160     }
2161
2162     if ($criteria =~/itemtype/){
2163         if(C4::Context->preference("item-level_itypes")){
2164             $str .= "AND items.itype=? ";
2165         }else{
2166             $str .= "AND biblioitems.itemtype=? ";
2167         }
2168
2169         if(scalar(@$itemtypes) == 0){
2170             my $itypes = GetItemTypes();
2171             for my $key (keys %$itypes){
2172                 push @$itemtypes, $key;
2173             }
2174         }
2175
2176         @loopcriteria= @$itemtypes;
2177     }elsif ($criteria=~/itemcallnumber/){
2178         $str .= "AND (items.itemcallnumber LIKE CONCAT(?,'%')
2179                  OR items.itemcallnumber is NULL
2180                  OR items.itemcallnumber = '')";
2181
2182         @loopcriteria = ("AA".."ZZ", "") unless (scalar(@loopcriteria)>0);
2183     }else {
2184         $str .= "AND biblio.title LIKE CONCAT(?,'%') ";
2185         @loopcriteria = ("A".."z") unless (scalar(@loopcriteria)>0);
2186     }
2187
2188     if ($orderby =~ /date_desc/){
2189         $str.=" ORDER BY dateaccessioned DESC";
2190     } else {
2191         $str.=" ORDER BY title";
2192     }
2193
2194     my $qdataacquisitions=$dbh->prepare($str);
2195
2196     my @loopacquisitions;
2197     foreach my $value(@loopcriteria){
2198         push @params,$value;
2199         my %cell;
2200         $cell{"title"}=$value;
2201         $cell{"titlecode"}=$value;
2202
2203         eval{$qdataacquisitions->execute(@params);};
2204
2205         if ($@){ warn "recentacquisitions Error :$@";}
2206         else {
2207             my @loopdata;
2208             while (my $data=$qdataacquisitions->fetchrow_hashref){
2209                 push @loopdata, {"summary"=>GetBiblioSummary( $data->{'marcxml'} ) };
2210             }
2211             $cell{"loopdata"}=\@loopdata;
2212         }
2213         push @loopacquisitions,\%cell if (scalar(@{$cell{loopdata}})>0);
2214         pop @params;
2215     }
2216     $qdataacquisitions->finish;
2217     return \@loopacquisitions;
2218 }
2219
2220 =head2 enabled_staff_search_views
2221
2222 %hash = enabled_staff_search_views()
2223
2224 This function returns a hash that contains three flags obtained from the system
2225 preferences, used to determine whether a particular staff search results view
2226 is enabled.
2227
2228 =over 2
2229
2230 =item C<Output arg:>
2231
2232     * $hash{can_view_MARC} is true only if the MARC view is enabled
2233     * $hash{can_view_ISBD} is true only if the ISBD view is enabled
2234     * $hash{can_view_labeledMARC} is true only if the Labeled MARC view is enabled
2235
2236 =item C<usage in the script:>
2237
2238 =back
2239
2240 $template->param ( C4::Search::enabled_staff_search_views );
2241
2242 =cut
2243
2244 sub enabled_staff_search_views
2245 {
2246         return (
2247                 can_view_MARC                   => C4::Context->preference('viewMARC'),                 # 1 if the staff search allows the MARC view
2248                 can_view_ISBD                   => C4::Context->preference('viewISBD'),                 # 1 if the staff search allows the ISBD view
2249                 can_view_labeledMARC    => C4::Context->preference('viewLabeledMARC'),  # 1 if the staff search allows the Labeled MARC view
2250         );
2251 }
2252
2253 sub PurgeSearchHistory{
2254     my ($pSearchhistory)=@_;
2255     my $dbh = C4::Context->dbh;
2256     my $sth = $dbh->prepare("DELETE FROM search_history WHERE time < DATE_SUB( NOW(), INTERVAL ? DAY )");
2257     $sth->execute($pSearchhistory) or die $dbh->errstr;
2258 }
2259
2260 =head2 z3950_search_args
2261
2262 $arrayref = z3950_search_args($matchpoints)
2263
2264 This function returns an array reference that contains the search parameters to be
2265 passed to the Z39.50 search script (z3950_search.pl). The array elements
2266 are hash refs whose keys are name and value, and whose values are the
2267 name of a search parameter, the value of that search parameter and the URL encoded
2268 value of that parameter.
2269
2270 The search parameter names are lccn, isbn, issn, title, author, dewey and subject.
2271
2272 The search parameter values are obtained from the bibliographic record whose
2273 data is in a hash reference in $matchpoints, as returned by Biblio::GetBiblioData().
2274
2275 If $matchpoints is a scalar, it is assumed to be an unnamed query descriptor, e.g.
2276 a general purpose search argument. In this case, the returned array contains only
2277 entry: the key is 'title' and the value is derived from $matchpoints.
2278
2279 If a search parameter value is undefined or empty, it is not included in the returned
2280 array.
2281
2282 The returned array reference may be passed directly to the template parameters.
2283
2284 =over 2
2285
2286 =item C<Output arg:>
2287
2288     * $array containing hash refs as described above
2289
2290 =item C<usage in the script:>
2291
2292 =back
2293
2294 $data = Biblio::GetBiblioData($bibno);
2295 $template->param ( MYLOOP => C4::Search::z3950_search_args($data) )
2296
2297 *OR*
2298
2299 $template->param ( MYLOOP => C4::Search::z3950_search_args($searchscalar) )
2300
2301 =cut
2302
2303 sub z3950_search_args {
2304     my $bibrec = shift;
2305
2306     my $isbn_string = ref( $bibrec ) ? $bibrec->{title} : $bibrec;
2307     my $isbn = Business::ISBN->new( $isbn_string );
2308
2309     if (defined $isbn && $isbn->is_valid)
2310     {
2311         if ( ref($bibrec) ) {
2312             $bibrec->{isbn} = $isbn_string;
2313             $bibrec->{title} = undef;
2314         } else {
2315             $bibrec = { isbn => $isbn_string };
2316         }
2317     }
2318     else {
2319         $bibrec = { title => $bibrec } if !ref $bibrec;
2320     }
2321     my $array = [];
2322     for my $field (qw/ lccn isbn issn title author dewey subject /)
2323     {
2324         push @$array, { name => $field, value => $bibrec->{$field} }
2325           if defined $bibrec->{$field};
2326     }
2327     return $array;
2328 }
2329
2330 =head2 GetDistinctValues($field);
2331
2332 C<$field> is a reference to the fields array
2333
2334 =cut
2335
2336 sub GetDistinctValues {
2337     my ($fieldname,$string)=@_;
2338     # returns a reference to a hash of references to branches...
2339     if ($fieldname=~/\./){
2340                         my ($table,$column)=split /\./, $fieldname;
2341                         my $dbh = C4::Context->dbh;
2342                         warn "select DISTINCT($column) as value, count(*) as cnt from $table group by lib order by $column " if $DEBUG;
2343                         my $sth = $dbh->prepare("select DISTINCT($column) as value, count(*) as cnt from $table ".($string?" where $column like \"$string%\"":"")."group by value order by $column ");
2344                         $sth->execute;
2345                         my $elements=$sth->fetchall_arrayref({});
2346                         return $elements;
2347    }
2348    else {
2349                 $string||= qq("");
2350                 my @servers=qw<biblioserver authorityserver>;
2351                 my (@zconns,@results);
2352         for ( my $i = 0 ; $i < @servers ; $i++ ) {
2353                 $zconns[$i] = C4::Context->Zconn( $servers[$i], 1 );
2354                         $results[$i] =
2355                       $zconns[$i]->scan(
2356                         ZOOM::Query::CCL2RPN->new( qq"$fieldname $string", $zconns[$i])
2357                       );
2358                 }
2359                 # The big moment: asynchronously retrieve results from all servers
2360                 my @elements;
2361         _ZOOM_event_loop(
2362             \@zconns,
2363             \@results,
2364             sub {
2365                 my ( $i, $size ) = @_;
2366                 for ( my $j = 0 ; $j < $size ; $j++ ) {
2367                     my %hashscan;
2368                     @hashscan{qw(value cnt)} =
2369                       $results[ $i - 1 ]->display_term($j);
2370                     push @elements, \%hashscan;
2371                 }
2372             }
2373         );
2374                 return \@elements;
2375    }
2376 }
2377
2378 =head2 _ZOOM_event_loop
2379
2380     _ZOOM_event_loop(\@zconns, \@results, sub {
2381         my ( $i, $size ) = @_;
2382         ....
2383     } );
2384
2385 Processes a ZOOM event loop and passes control to a closure for
2386 processing the results, and destroying the resultsets.
2387
2388 =cut
2389
2390 sub _ZOOM_event_loop {
2391     my ($zconns, $results, $callback) = @_;
2392     while ( ( my $i = ZOOM::event( $zconns ) ) != 0 ) {
2393         my $ev = $zconns->[ $i - 1 ]->last_event();
2394         if ( $ev == ZOOM::Event::ZEND ) {
2395             next unless $results->[ $i - 1 ];
2396             my $size = $results->[ $i - 1 ]->size();
2397             if ( $size > 0 ) {
2398                 $callback->($i, $size);
2399             }
2400         }
2401     }
2402
2403     foreach my $result (@$results) {
2404         $result->destroy();
2405     }
2406 }
2407
2408 =head2 new_record_from_zebra
2409
2410 Given raw data from a Zebra result set, return a MARC::Record object
2411
2412 This helper function is needed to take into account all the involved
2413 system preferences and configuration variables to properly create the
2414 MARC::Record object.
2415
2416 If we are using GRS-1, then the raw data we get from Zebra should be USMARC
2417 data. If we are using DOM, then it has to be MARCXML.
2418
2419 =cut
2420
2421 sub new_record_from_zebra {
2422
2423     my $server   = shift;
2424     my $raw_data = shift;
2425     # Set the default indexing modes
2426     my $index_mode = ( $server eq 'biblioserver' )
2427                         ? C4::Context->config('zebra_bib_index_mode') // 'grs1'
2428                         : C4::Context->config('zebra_auth_index_mode') // 'dom';
2429
2430     my $marc_record =  eval {
2431         if ( $index_mode eq 'dom' ) {
2432             MARC::Record->new_from_xml( $raw_data, 'UTF-8' );
2433         } else {
2434             MARC::Record->new_from_usmarc( $raw_data );
2435         }
2436     };
2437
2438     if ($@) {
2439         return;
2440     } else {
2441         return $marc_record;
2442     }
2443
2444 }
2445
2446 END { }    # module clean-up code here (global destructor)
2447
2448 1;
2449 __END__
2450
2451 =head1 AUTHOR
2452
2453 Koha Development Team <http://koha-community.org/>
2454
2455 =cut