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