3 # This file is part of Koha.
5 # Koha is free software; you can redistribute it and/or modify it under the
6 # terms of the GNU General Public License as published by the Free Software
7 # Foundation; either version 2 of the License, or (at your option) any later
10 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
11 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
12 # A PARTICULAR PURPOSE. See the GNU General Public License for more details.
14 # You should have received a copy of the GNU General Public License along with
15 # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
16 # Suite 330, Boston, MA 02111-1307 USA
19 # use warnings; # FIXME
22 use C4
::Biblio
; # GetMarcFromKohaField
23 use C4
::Koha
; # getFacets
25 use C4
::Search
::PazPar2
;
27 use C4
::Dates
qw(format_date);
30 use vars
qw($VERSION @ISA @EXPORT @EXPORT_OK %EXPORT_TAGS $DEBUG);
32 # set the version for version checking
35 $DEBUG = ($ENV{DEBUG}) ? 1 : 0;
40 C4::Search - Functions for searching the Koha catalog.
44 See opac/opac-search.pl or catalogue/search.pl for example of usage
48 This module provides searching functions for Koha's bibliographic databases
66 # make all your functions, whether exported or not;
68 =head2 findseealso($dbh,$fields);
70 C<$dbh> is a link to the DB handler.
73 my $dbh =C4::Context->dbh;
75 C<$fields> is a reference to the fields array
77 This function modifies the @$fields array and adds related fields to search on.
79 FIXME: this function is probably deprecated in Koha 3
84 my ( $dbh, $fields ) = @_;
85 my $tagslib = GetMarcStructure
(1);
86 for ( my $i = 0 ; $i <= $#{$fields} ; $i++ ) {
87 my ($tag) = substr( @
$fields[$i], 1, 3 );
88 my ($subfield) = substr( @
$fields[$i], 4, 1 );
89 @
$fields[$i] .= ',' . $tagslib->{$tag}->{$subfield}->{seealso
}
90 if ( $tagslib->{$tag}->{$subfield}->{seealso
} );
96 ($biblionumber,$biblionumber,$title) = FindDuplicate($record);
98 This function attempts to find duplicate records using a hard-coded, fairly simplistic algorithm
104 my $dbh = C4
::Context
->dbh;
105 my $result = TransformMarcToKoha
( $dbh, $record, '' );
110 my ( $biblionumber, $title );
112 # search duplicate on ISBN, easy and fast..
113 # ... normalize first
114 if ( $result->{isbn
} ) {
115 $result->{isbn
} =~ s/\(.*$//;
116 $result->{isbn
} =~ s/\s+$//;
117 $query = "isbn=$result->{isbn}";
120 $result->{title
} =~ s
/\\//g
;
121 $result->{title
} =~ s
/\"//g
;
122 $result->{title
} =~ s
/\(//g
;
123 $result->{title
} =~ s
/\)//g
;
125 # FIXME: instead of removing operators, could just do
126 # quotes around the value
127 $result->{title
} =~ s/(and|or|not)//g;
128 $query = "ti,ext=$result->{title}";
129 $query .= " and itemtype=$result->{itemtype}"
130 if ( $result->{itemtype
} );
131 if ( $result->{author
} ) {
132 $result->{author
} =~ s
/\\//g
;
133 $result->{author
} =~ s
/\"//g
;
134 $result->{author
} =~ s
/\(//g
;
135 $result->{author
} =~ s
/\)//g
;
137 # remove valid operators
138 $result->{author
} =~ s/(and|or|not)//g;
139 $query .= " and au,ext=$result->{author}";
143 # FIXME: add error handling
144 my ( $error, $searchresults ) = SimpleSearch
($query); # FIXME :: hardcoded !
146 foreach my $possible_duplicate_record (@
$searchresults) {
148 MARC
::Record
->new_from_usmarc($possible_duplicate_record);
149 my $result = TransformMarcToKoha
( $dbh, $marcrecord, '' );
151 # FIXME :: why 2 $biblionumber ?
153 push @results, $result->{'biblionumber'};
154 push @results, $result->{'title'};
162 ( $error, $results, $total_hits ) = SimpleSearch( $query, $offset, $max_results, [@servers] );
164 This function provides a simple search API on the bibliographic catalog
170 * $query can be a simple keyword or a complete CCL query
171 * @servers is optional. Defaults to biblioserver as found in koha-conf.xml
172 * $offset - If present, represents the number of records at the beggining to omit. Defaults to 0
173 * $max_results - if present, determines the maximum number of records to fetch. undef is All. defaults to undef.
178 * $error is a empty unless an error is detected
179 * \@results is an array of records.
180 * $total_hits is the number of hits that would have been returned with no limit
182 =item C<usage in the script:>
186 my ( $error, $marcresults, $total_hits ) = SimpleSearch($query);
188 if (defined $error) {
189 $template->param(query_error => $error);
190 warn "error: ".$error;
191 output_html_with_http_headers $input, $cookie, $template->output;
195 my $hits = scalar @$marcresults;
198 for my $i (0..$hits) {
200 my $marcrecord = MARC::File::USMARC::decode($marcresults->[$i]);
201 my $biblio = TransformMarcToKoha(C4::Context->dbh,$marcrecord,'');
203 #build the hash for the template.
204 $resultsloop{highlight} = ($i % 2)?(1):(0);
205 $resultsloop{title} = $biblio->{'title'};
206 $resultsloop{subtitle} = $biblio->{'subtitle'};
207 $resultsloop{biblionumber} = $biblio->{'biblionumber'};
208 $resultsloop{author} = $biblio->{'author'};
209 $resultsloop{publishercode} = $biblio->{'publishercode'};
210 $resultsloop{publicationyear} = $biblio->{'publicationyear'};
212 push @results, \%resultsloop;
215 $template->param(result=>\@results);
220 my ( $query, $offset, $max_results, $servers ) = @_;
222 if ( C4
::Context
->preference('NoZebra') ) {
223 my $result = NZorder
( NZanalyse
($query) )->{'biblioserver'};
226 && $result->{hits
} > 0 ?
$result->{'RECORDS'} : [] );
227 return ( undef, $search_result, scalar($search_result) );
230 # FIXME hardcoded value. See catalog/search.pl & opac-search.pl too.
231 my @servers = defined ( $servers ) ? @
$servers : ( "biblioserver" );
237 return ( "No query entered", undef, undef ) unless $query;
239 # Initialize & Search Zebra
240 for ( my $i = 0 ; $i < @servers ; $i++ ) {
242 $zconns[$i] = C4
::Context
->Zconn( $servers[$i], 1 );
243 $zoom_queries[$i] = new ZOOM
::Query
::CCL2RPN
( $query, $zconns[$i]);
244 $tmpresults[$i] = $zconns[$i]->search( $zoom_queries[$i] );
248 $zconns[$i]->errmsg() . " ("
249 . $zconns[$i]->errcode() . ") "
250 . $zconns[$i]->addinfo() . " "
251 . $zconns[$i]->diagset();
253 return ( $error, undef, undef ) if $zconns[$i]->errcode();
257 # caught a ZOOM::Exception
261 . $@
->addinfo() . " "
264 return ( $error, undef, undef );
267 while ( ( my $i = ZOOM
::event
( \
@zconns ) ) != 0 ) {
268 my $event = $zconns[ $i - 1 ]->last_event();
269 if ( $event == ZOOM
::Event
::ZEND
) {
271 my $first_record = defined( $offset ) ?
$offset+1 : 1;
272 my $hits = $tmpresults[ $i - 1 ]->size();
273 $total_hits += $hits;
274 my $last_record = $hits;
275 if ( defined $max_results && $offset + $max_results < $hits ) {
276 $last_record = $offset + $max_results;
279 for my $j ( $first_record..$last_record ) {
280 my $record = $tmpresults[ $i - 1 ]->record( $j-1 )->raw(); # 0 indexed
281 push @results, $record;
286 foreach my $result (@tmpresults) {
289 foreach my $zoom_query (@zoom_queries) {
290 $zoom_query->destroy();
293 return ( undef, \
@results, $total_hits );
299 ( undef, $results_hashref, \@facets_loop ) = getRecords (
301 $koha_query, $simple_query, $sort_by_ref, $servers_ref,
302 $results_per_page, $offset, $expanded_facet, $branches,
306 The all singing, all dancing, multi-server, asynchronous, scanning,
307 searching, record nabbing, facet-building
309 See verbse embedded documentation.
315 $koha_query, $simple_query, $sort_by_ref, $servers_ref,
316 $results_per_page, $offset, $expanded_facet, $branches,
320 my @servers = @
$servers_ref;
321 my @sort_by = @
$sort_by_ref;
323 # Initialize variables for the ZOOM connection and results object
327 my $results_hashref = ();
329 # Initialize variables for the faceted results objects
330 my $facets_counter = ();
331 my $facets_info = ();
332 my $facets = getFacets
();
335 ; # stores the ref to array of hashes for template facets loop
337 ### LOOP THROUGH THE SERVERS
338 for ( my $i = 0 ; $i < @servers ; $i++ ) {
339 $zconns[$i] = C4
::Context
->Zconn( $servers[$i], 1 );
341 # perform the search, create the results objects
342 # if this is a local search, use the $koha-query, if it's a federated one, use the federated-query
343 my $query_to_use = ($servers[$i] =~ /biblioserver/) ?
$koha_query : $simple_query;
345 #$query_to_use = $simple_query if $scan;
346 warn $simple_query if ( $scan and $DEBUG );
348 # Check if we've got a query_type defined, if so, use it
352 if ( $query_type =~ /^ccl/ ) {
354 s/\:/\=/g; # change : to = last minute (FIXME)
357 new ZOOM
::Query
::CCL2RPN
( $query_to_use, $zconns[$i] )
360 elsif ( $query_type =~ /^cql/ ) {
363 new ZOOM
::Query
::CQL
( $query_to_use, $zconns[$i] ) );
365 elsif ( $query_type =~ /^pqf/ ) {
368 new ZOOM
::Query
::PQF
( $query_to_use, $zconns[$i] ) );
375 new ZOOM
::Query
::CCL2RPN
( $query_to_use, $zconns[$i] )
381 new ZOOM
::Query
::CCL2RPN
( $query_to_use, $zconns[$i] )
387 warn "WARNING: query problem with $query_to_use " . $@
;
390 # Concatenate the sort_by limits and pass them to the results object
391 # Note: sort will override rank
393 foreach my $sort (@sort_by) {
394 if ( $sort eq "author_az" ) {
395 $sort_by .= "1=1003 <i ";
397 elsif ( $sort eq "author_za" ) {
398 $sort_by .= "1=1003 >i ";
400 elsif ( $sort eq "popularity_asc" ) {
401 $sort_by .= "1=9003 <i ";
403 elsif ( $sort eq "popularity_dsc" ) {
404 $sort_by .= "1=9003 >i ";
406 elsif ( $sort eq "call_number_asc" ) {
407 $sort_by .= "1=20 <i ";
409 elsif ( $sort eq "call_number_dsc" ) {
410 $sort_by .= "1=20 >i ";
412 elsif ( $sort eq "pubdate_asc" ) {
413 $sort_by .= "1=31 <i ";
415 elsif ( $sort eq "pubdate_dsc" ) {
416 $sort_by .= "1=31 >i ";
418 elsif ( $sort eq "acqdate_asc" ) {
419 $sort_by .= "1=32 <i ";
421 elsif ( $sort eq "acqdate_dsc" ) {
422 $sort_by .= "1=32 >i ";
424 elsif ( $sort eq "title_az" ) {
425 $sort_by .= "1=4 <i ";
427 elsif ( $sort eq "title_za" ) {
428 $sort_by .= "1=4 >i ";
432 if ( $results[$i]->sort( "yaz", $sort_by ) < 0 ) {
433 warn "WARNING sort $sort_by failed";
436 } # finished looping through servers
438 # The big moment: asynchronously retrieve results from all servers
439 while ( ( my $i = ZOOM
::event
( \
@zconns ) ) != 0 ) {
440 my $ev = $zconns[ $i - 1 ]->last_event();
441 if ( $ev == ZOOM
::Event
::ZEND
) {
442 next unless $results[ $i - 1 ];
443 my $size = $results[ $i - 1 ]->size();
447 # loop through the results
448 $results_hash->{'hits'} = $size;
450 if ( $offset + $results_per_page <= $size ) {
451 $times = $offset + $results_per_page;
456 for ( my $j = $offset ; $j < $times ; $j++ ) {
461 ## Check if it's an index scan
463 my ( $term, $occ ) = $results[ $i - 1 ]->term($j);
465 # here we create a minimal MARC record and hand it off to the
466 # template just like a normal result ... perhaps not ideal, but
468 my $tmprecord = MARC
::Record
->new();
469 $tmprecord->encoding('UTF-8');
473 # the minimal record in author/title (depending on MARC flavour)
474 if (C4
::Context
->preference("marcflavour") eq "UNIMARC") {
475 $tmptitle = MARC
::Field
->new('200',' ',' ', a
=> $term, f
=> $occ);
476 $tmprecord->append_fields($tmptitle);
478 $tmptitle = MARC
::Field
->new('245',' ',' ', a
=> $term,);
479 $tmpauthor = MARC
::Field
->new('100',' ',' ', a
=> $occ,);
480 $tmprecord->append_fields($tmptitle);
481 $tmprecord->append_fields($tmpauthor);
483 $results_hash->{'RECORDS'}[$j] = $tmprecord->as_usmarc();
488 $record = $results[ $i - 1 ]->record($j)->raw();
490 # warn "RECORD $j:".$record;
491 $results_hash->{'RECORDS'}[$j] = $record;
493 # Fill the facets while we're looping, but only for the biblioserver
494 $facet_record = MARC
::Record
->new_from_usmarc($record)
495 if $servers[ $i - 1 ] =~ /biblioserver/;
497 #warn $servers[$i-1]."\n".$record; #.$facet_record->title();
499 for ( my $k = 0 ; $k <= @
$facets ; $k++ ) {
501 if ( $facets->[$k] ) {
503 for my $tag ( @
{ $facets->[$k]->{'tags'} } )
506 $facet_record->field($tag);
508 for my $field (@fields) {
509 my @subfields = $field->subfields();
510 for my $subfield (@subfields) {
511 my ( $code, $data ) = @
$subfield;
513 $facets->[$k]->{'subfield'} )
515 $facets_counter->{ $facets->[$k]
521 $facets_info->{ $facets->[$k]
522 ->{'link_value'} }->{'label_value'} =
523 $facets->[$k]->{'label_value'};
524 $facets_info->{ $facets->[$k]
525 ->{'link_value'} }->{'expanded'} =
526 $facets->[$k]->{'expanded'};
532 $results_hashref->{ $servers[ $i - 1 ] } = $results_hash;
535 # warn "connection ", $i-1, ": $size hits";
536 # warn $results[$i-1]->record(0)->render() if $size > 0;
539 if ( $servers[ $i - 1 ] =~ /biblioserver/ ) {
541 sort { $facets_counter->{$b} <=> $facets_counter->{$a} }
542 keys %$facets_counter )
545 my $number_of_facets;
546 my @this_facets_array;
549 $facets_counter->{$link_value}
550 ->{$b} <=> $facets_counter->{$link_value}->{$a}
551 } keys %{ $facets_counter->{$link_value} }
555 if ( ( $number_of_facets < 6 )
556 || ( $expanded_facet eq $link_value )
557 || ( $facets_info->{$link_value}->{'expanded'} ) )
560 # Sanitize the link value ), ( will cause errors with CCL,
561 my $facet_link_value = $one_facet;
562 $facet_link_value =~ s/(\(|\))/ /g;
564 # fix the length that will display in the label,
565 my $facet_label_value = $one_facet;
567 substr( $one_facet, 0, 20 ) . "..."
568 unless length($facet_label_value) <= 20;
570 # if it's a branch, label by the name, not the code,
571 if ( $link_value =~ /branch/ ) {
573 $branches->{$one_facet}->{'branchname'};
576 # but we're down with the whole label being in the link's title.
577 my $facet_title_value = $one_facet;
579 push @this_facets_array,
583 $facets_counter->{$link_value}
585 facet_label_value
=> $facet_label_value,
586 facet_title_value
=> $facet_title_value,
587 facet_link_value
=> $facet_link_value,
588 type_link_value
=> $link_value,
594 # handle expanded option
595 unless ( $facets_info->{$link_value}->{'expanded'} ) {
597 if ( ( $number_of_facets > 6 )
598 && ( $expanded_facet ne $link_value ) );
603 type_link_value
=> $link_value,
604 type_id
=> $link_value . "_id",
605 "type_label_" . $facets_info->{$link_value}->{'label_value'} => 1,
606 facets
=> \
@this_facets_array,
607 expandable
=> $expandable,
608 expand
=> $link_value,
610 ) unless ( ($facets_info->{$link_value}->{'label_value'} =~ /Libraries/) and (C4
::Context
->preference('singleBranchMode')) );
615 return ( undef, $results_hashref, \
@facets_loop );
620 $koha_query, $simple_query, $sort_by_ref, $servers_ref,
621 $results_per_page, $offset, $expanded_facet, $branches,
625 my $paz = C4
::Search
::PazPar2
->new(C4
::Context
->config('pazpar2url'));
627 $paz->search($simple_query);
631 my $results_hashref = {};
632 my $stats = XMLin
($paz->stat);
633 my $results = XMLin
($paz->show($offset, $results_per_page, 'work-title:1'), forcearray
=> 1);
635 # for a grouped search result, the number of hits
636 # is the number of groups returned; 'bib_hits' will have
637 # the total number of bibs.
638 $results_hashref->{'biblioserver'}->{'hits'} = $results->{'merged'}->[0];
639 $results_hashref->{'biblioserver'}->{'bib_hits'} = $stats->{'hits'};
641 HIT
: foreach my $hit (@
{ $results->{'hit'} }) {
642 my $recid = $hit->{recid
}->[0];
644 my $work_title = $hit->{'md-work-title'}->[0];
646 if (exists $hit->{'md-work-author'}) {
647 $work_author = $hit->{'md-work-author'}->[0];
649 my $group_label = (defined $work_author) ?
"$work_title / $work_author" : $work_title;
651 my $result_group = {};
652 $result_group->{'group_label'} = $group_label;
653 $result_group->{'group_merge_key'} = $recid;
656 if (exists $hit->{count
}) {
657 $count = $hit->{count
}->[0];
659 $result_group->{'group_count'} = $count;
661 for (my $i = 0; $i < $count; $i++) {
662 # FIXME -- may need to worry about diacritics here
663 my $rec = $paz->record($recid, $i);
664 push @
{ $result_group->{'RECORDS'} }, $rec;
667 push @
{ $results_hashref->{'biblioserver'}->{'GROUPS'} }, $result_group;
670 # pass through facets
671 my $termlist_xml = $paz->termlist('author,subject');
672 my $terms = XMLin
($termlist_xml, forcearray
=> 1);
673 my @facets_loop = ();
674 #die Dumper($results);
675 # foreach my $list (sort keys %{ $terms->{'list'} }) {
677 # foreach my $facet (sort @{ $terms->{'list'}->{$list}->{'term'} } ) {
679 # facet_label_value => $facet->{'name'}->[0],
682 # push @facets_loop, ( {
683 # type_label => $list,
684 # facets => \@facets,
688 return ( undef, $results_hashref, \
@facets_loop );
692 sub _remove_stopwords
{
693 my ( $operand, $index ) = @_;
694 my @stopwords_removed;
696 # phrase and exact-qualified indexes shouldn't have stopwords removed
697 if ( $index !~ m/phr|ext/ ) {
699 # remove stopwords from operand : parse all stopwords & remove them (case insensitive)
700 # we use IsAlpha unicode definition, to deal correctly with diacritics.
701 # otherwise, a French word like "leçon" woudl be split into "le" "çon", "le"
702 # is a stopword, we'd get "çon" and wouldn't find anything...
703 foreach ( keys %{ C4
::Context
->stopwords } ) {
704 next if ( $_ =~ /(and|or|not)/ ); # don't remove operators
706 /(\P{IsAlpha}$_\P{IsAlpha}|^$_\P{IsAlpha}|\P{IsAlpha}$_$|^$_$)/ )
708 $operand =~ s/\P{IsAlpha}$_\P{IsAlpha}/ /gi;
709 $operand =~ s/^$_\P{IsAlpha}/ /gi;
710 $operand =~ s/\P{IsAlpha}$_$/ /gi;
711 $operand =~ s/$1//gi;
712 push @stopwords_removed, $_;
716 return ( $operand, \
@stopwords_removed );
720 sub _detect_truncation
{
721 my ( $operand, $index ) = @_;
722 my ( @nontruncated, @righttruncated, @lefttruncated, @rightlefttruncated,
725 my @wordlist = split( /\s/, $operand );
726 foreach my $word (@wordlist) {
727 if ( $word =~ s/^\*([^\*]+)\*$/$1/ ) {
728 push @rightlefttruncated, $word;
730 elsif ( $word =~ s/^\*([^\*]+)$/$1/ ) {
731 push @lefttruncated, $word;
733 elsif ( $word =~ s/^([^\*]+)\*$/$1/ ) {
734 push @righttruncated, $word;
736 elsif ( index( $word, "*" ) < 0 ) {
737 push @nontruncated, $word;
740 push @regexpr, $word;
744 \
@nontruncated, \
@righttruncated, \
@lefttruncated,
745 \
@rightlefttruncated, \
@regexpr
750 sub _build_stemmed_operand
{
754 # If operand contains a digit, it is almost certainly an identifier, and should
755 # not be stemmed. This is particularly relevant for ISBNs and ISSNs, which
756 # can contain the letter "X" - for example, _build_stemmend_operand would reduce
757 # "014100018X" to "x ", which for a MARC21 database would bring up irrelevant
758 # results (e.g., "23 x 29 cm." from the 300$c). Bug 2098.
759 return $operand if $operand =~ /\d/;
761 # FIXME: the locale should be set based on the user's language and/or search choice
762 my $stemmer = Lingua
::Stem
->new( -locale
=> 'EN-US' );
764 # FIXME: these should be stored in the db so the librarian can modify the behavior
765 $stemmer->add_exceptions(
772 my @words = split( / /, $operand );
773 my $stems = $stemmer->stem(@words);
774 for my $stem (@
$stems) {
775 $stemmed_operand .= "$stem";
776 $stemmed_operand .= "?"
777 unless ( $stem =~ /(and$|or$|not$)/ ) || ( length($stem) < 3 );
778 $stemmed_operand .= " ";
780 warn "STEMMED OPERAND: $stemmed_operand" if $DEBUG;
781 return $stemmed_operand;
785 sub _build_weighted_query
{
787 # FIELD WEIGHTING - This is largely experimental stuff. What I'm committing works
788 # pretty well but could work much better if we had a smarter query parser
789 my ( $operand, $stemmed_operand, $index ) = @_;
790 my $stemming = C4
::Context
->preference("QueryStemming") || 0;
791 my $weight_fields = C4
::Context
->preference("QueryWeightFields") || 0;
792 my $fuzzy_enabled = C4
::Context
->preference("QueryFuzzy") || 0;
794 my $weighted_query .= "(rk=("; # Specifies that we're applying rank
796 # Keyword, or, no index specified
797 if ( ( $index eq 'kw' ) || ( !$index ) ) {
799 "Title-cover,ext,r1=\"$operand\""; # exact title-cover
800 $weighted_query .= " or ti,ext,r2=\"$operand\""; # exact title
801 $weighted_query .= " or ti,phr,r3=\"$operand\""; # phrase title
802 #$weighted_query .= " or any,ext,r4=$operand"; # exact any
803 #$weighted_query .=" or kw,wrdl,r5=\"$operand\""; # word list any
804 $weighted_query .= " or wrdl,fuzzy,r8=\"$operand\""
805 if $fuzzy_enabled; # add fuzzy, word list
806 $weighted_query .= " or wrdl,right-Truncation,r9=\"$stemmed_operand\""
807 if ( $stemming and $stemmed_operand )
808 ; # add stemming, right truncation
809 $weighted_query .= " or wrdl,r9=\"$operand\"";
811 # embedded sorting: 0 a-z; 1 z-a
812 # $weighted_query .= ") or (sort1,aut=1";
815 # Barcode searches should skip this process
816 elsif ( $index eq 'bc' ) {
817 $weighted_query .= "bc=\"$operand\"";
820 # Authority-number searches should skip this process
821 elsif ( $index eq 'an' ) {
822 $weighted_query .= "an=\"$operand\"";
825 # If the index already has more than one qualifier, wrap the operand
826 # in quotes and pass it back (assumption is that the user knows what they
827 # are doing and won't appreciate us mucking up their query
828 elsif ( $index =~ ',' ) {
829 $weighted_query .= " $index=\"$operand\"";
832 #TODO: build better cases based on specific search indexes
834 $weighted_query .= " $index,ext,r1=\"$operand\""; # exact index
835 #$weighted_query .= " or (title-sort-az=0 or $index,startswithnt,st-word,r3=$operand #)";
836 $weighted_query .= " or $index,phr,r3=\"$operand\""; # phrase index
838 " or $index,rt,wrdl,r3=\"$operand\""; # word list index
841 $weighted_query .= "))"; # close rank specification
842 return $weighted_query;
848 $simple_query, $query_cgi,
850 $limit_cgi, $limit_desc,
851 $stopwords_removed, $query_type ) = getRecords ( $operators, $operands, $indexes, $limits, $sort_by, $scan);
853 Build queries and limits in CCL, CGI, Human,
854 handle truncation, stemming, field weighting, stopwords, fuzziness, etc.
856 See verbose embedded documentation.
862 my ( $operators, $operands, $indexes, $limits, $sort_by, $scan ) = @_;
864 warn "---------\nEnter buildQuery\n---------" if $DEBUG;
867 my @operators = @
$operators if $operators;
868 my @indexes = @
$indexes if $indexes;
869 my @operands = @
$operands if $operands;
870 my @limits = @
$limits if $limits;
871 my @sort_by = @
$sort_by if $sort_by;
873 my $stemming = C4
::Context
->preference("QueryStemming") || 0;
874 my $auto_truncation = C4
::Context
->preference("QueryAutoTruncate") || 0;
875 my $weight_fields = C4
::Context
->preference("QueryWeightFields") || 0;
876 my $fuzzy_enabled = C4
::Context
->preference("QueryFuzzy") || 0;
877 my $remove_stopwords = C4
::Context
->preference("QueryRemoveStopwords") || 0;
879 # no stemming/weight/fuzzy in NoZebra
880 if ( C4
::Context
->preference("NoZebra") ) {
886 my $query = $operands[0];
887 my $simple_query = $operands[0];
889 # initialize the variables we're passing back
898 my $stopwords_removed; # flag to determine if stopwords have been removed
900 # for handling ccl, cql, pqf queries in diagnostic mode, skip the rest of the steps
902 if ( $query =~ /^ccl=/ ) {
903 return ( undef, $', $', $', $', '', '', '', '', 'ccl' );
905 if ( $query =~ /^cql=/ ) {
906 return ( undef, $', $', $', $', '', '', '', '', 'cql' );
908 if ( $query =~ /^pqf=/ ) {
909 return ( undef, $', $', $', $', '', '', '', '', 'pqf' );
912 # pass nested queries directly
913 # FIXME: need better handling of some of these variables in this case
914 if ( $query =~ /(\(|\))/ ) {
916 undef, $query, $simple_query, $query_cgi,
917 $query, $limit, $limit_cgi, $limit_desc,
918 $stopwords_removed, 'ccl'
922 # Form-based queries are non-nested and fixed depth, so we can easily modify the incoming
923 # query operands and indexes and add stemming, truncation, field weighting, etc.
924 # Once we do so, we'll end up with a value in $query, just like if we had an
925 # incoming $query from the user
928 ; # clear it out so we can populate properly with field-weighted, stemmed, etc. query
930 ; # a flag used to keep track if there was a previous query
931 # if there was, we can apply the current operator
933 for ( my $i = 0 ; $i <= @operands ; $i++ ) {
935 # COMBINE OPERANDS, INDEXES AND OPERATORS
936 if ( $operands[$i] ) {
938 # A flag to determine whether or not to add the index to the query
941 # If the user is sophisticated enough to specify an index, turn off field weighting, stemming, and stopword handling
942 if ( $operands[$i] =~ /(:|=)/ || $scan ) {
945 $remove_stopwords = 0;
947 my $operand = $operands[$i];
948 my $index = $indexes[$i];
950 # Add index-specific attributes
951 # Date of Publication
952 if ( $index eq 'yr' ) {
953 $index .= ",st-numeric";
955 $stemming = $auto_truncation = $weight_fields = $fuzzy_enabled = $remove_stopwords = 0;
958 # Date of Acquisition
959 elsif ( $index eq 'acqdate' ) {
960 $index .= ",st-date-normalized";
962 $stemming = $auto_truncation = $weight_fields = $fuzzy_enabled = $remove_stopwords = 0;
964 # ISBN,ISSN,Standard Number, don't need special treatment
965 elsif ( $index eq 'nb' || $index eq 'ns' ) {
968 $stemming, $auto_truncation,
969 $weight_fields, $fuzzy_enabled,
971 ) = ( 0, 0, 0, 0, 0 );
974 # Set default structure attribute (word list)
976 unless ( $indexes_set || !$index || $index =~ /(st-|phr|ext|wrdl)/ ) {
977 $struct_attr = ",wrdl";
980 # Some helpful index variants
981 my $index_plus = $index . $struct_attr . ":" if $index;
982 my $index_plus_comma = $index . $struct_attr . "," if $index;
985 if ($remove_stopwords) {
986 ( $operand, $stopwords_removed ) =
987 _remove_stopwords
( $operand, $index );
988 warn "OPERAND w/out STOPWORDS: >$operand<" if $DEBUG;
989 warn "REMOVED STOPWORDS: @$stopwords_removed"
990 if ( $stopwords_removed && $DEBUG );
994 my $truncated_operand;
995 my( $nontruncated, $righttruncated, $lefttruncated,
996 $rightlefttruncated, $regexpr
997 ) = _detect_truncation
( $operand, $index );
999 "TRUNCATION: NON:>@$nontruncated< RIGHT:>@$righttruncated< LEFT:>@$lefttruncated< RIGHTLEFT:>@$rightlefttruncated< REGEX:>@$regexpr<"
1004 scalar(@
$righttruncated) + scalar(@
$lefttruncated) +
1005 scalar(@
$rightlefttruncated) > 0 )
1008 # Don't field weight or add the index to the query, we do it here
1010 undef $weight_fields;
1011 my $previous_truncation_operand;
1012 if ( scalar(@
$nontruncated) > 0 ) {
1013 $truncated_operand .= "$index_plus @$nontruncated ";
1014 $previous_truncation_operand = 1;
1016 if ( scalar(@
$righttruncated) > 0 ) {
1017 $truncated_operand .= "and "
1018 if $previous_truncation_operand;
1019 $truncated_operand .=
1020 "$index_plus_comma" . "rtrn:@$righttruncated ";
1021 $previous_truncation_operand = 1;
1023 if ( scalar(@
$lefttruncated) > 0 ) {
1024 $truncated_operand .= "and "
1025 if $previous_truncation_operand;
1026 $truncated_operand .=
1027 "$index_plus_comma" . "ltrn:@$lefttruncated ";
1028 $previous_truncation_operand = 1;
1030 if ( scalar(@
$rightlefttruncated) > 0 ) {
1031 $truncated_operand .= "and "
1032 if $previous_truncation_operand;
1033 $truncated_operand .=
1034 "$index_plus_comma" . "rltrn:@$rightlefttruncated ";
1035 $previous_truncation_operand = 1;
1038 $operand = $truncated_operand if $truncated_operand;
1039 warn "TRUNCATED OPERAND: >$truncated_operand<" if $DEBUG;
1042 my $stemmed_operand;
1043 $stemmed_operand = _build_stemmed_operand
($operand)
1045 warn "STEMMED OPERAND: >$stemmed_operand<" if $DEBUG;
1047 # Handle Field Weighting
1048 my $weighted_operand;
1050 _build_weighted_query
( $operand, $stemmed_operand, $index )
1052 warn "FIELD WEIGHTED OPERAND: >$weighted_operand<" if $DEBUG;
1053 $operand = $weighted_operand if $weight_fields;
1054 $indexes_set = 1 if $weight_fields;
1056 # If there's a previous operand, we need to add an operator
1057 if ($previous_operand) {
1059 # User-specified operator
1060 if ( $operators[ $i - 1 ] ) {
1061 $query .= " $operators[$i-1] ";
1062 $query .= " $index_plus " unless $indexes_set;
1063 $query .= " $operand";
1064 $query_cgi .= "&op=$operators[$i-1]";
1065 $query_cgi .= "&idx=$index" if $index;
1066 $query_cgi .= "&q=$operands[$i]" if $operands[$i];
1068 " $operators[$i-1] $index_plus $operands[$i]";
1071 # Default operator is and
1074 $query .= "$index_plus " unless $indexes_set;
1075 $query .= "$operand";
1076 $query_cgi .= "&op=and&idx=$index" if $index;
1077 $query_cgi .= "&q=$operands[$i]" if $operands[$i];
1078 $query_desc .= " and $index_plus $operands[$i]";
1082 # There isn't a pervious operand, don't need an operator
1085 # Field-weighted queries already have indexes set
1086 $query .= " $index_plus " unless $indexes_set;
1088 $query_desc .= " $index_plus $operands[$i]";
1089 $query_cgi .= "&idx=$index" if $index;
1090 $query_cgi .= "&q=$operands[$i]" if $operands[$i];
1091 $previous_operand = 1;
1096 warn "QUERY BEFORE LIMITS: >$query<" if $DEBUG;
1099 my $group_OR_limits;
1100 my $availability_limit;
1101 foreach my $this_limit (@limits) {
1102 if ( $this_limit =~ /available/ ) {
1104 # 'available' is defined as (items.onloan is NULL) and (items.itemlost = 0)
1106 # all records not indexed in the onloan register (zebra) and all records with a value of lost equal to 0
1107 $availability_limit .=
1108 "( ( allrecords,AlwaysMatches='' not onloan,AlwaysMatches='') and (lost,st-numeric=0) )"; #or ( allrecords,AlwaysMatches='' not lost,AlwaysMatches='')) )";
1109 $limit_cgi .= "&limit=available";
1113 # group_OR_limits, prefixed by mc-
1114 # OR every member of the group
1115 elsif ( $this_limit =~ /mc/ ) {
1116 $group_OR_limits .= " or " if $group_OR_limits;
1117 $limit_desc .= " or " if $group_OR_limits;
1118 $group_OR_limits .= "$this_limit";
1119 $limit_cgi .= "&limit=$this_limit";
1120 $limit_desc .= " $this_limit";
1123 # Regular old limits
1125 $limit .= " and " if $limit || $query;
1126 $limit .= "$this_limit";
1127 $limit_cgi .= "&limit=$this_limit";
1128 $limit_desc .= " $this_limit";
1131 if ($group_OR_limits) {
1132 $limit .= " and " if ( $query || $limit );
1133 $limit .= "($group_OR_limits)";
1135 if ($availability_limit) {
1136 $limit .= " and " if ( $query || $limit );
1137 $limit .= "($availability_limit)";
1140 # Normalize the query and limit strings
1143 for ( $query, $query_desc, $limit, $limit_desc ) {
1144 $_ =~ s/ / /g; # remove extra spaces
1145 $_ =~ s/^ //g; # remove any beginning spaces
1146 $_ =~ s/ $//g; # remove any ending spaces
1147 $_ =~ s/==/=/g; # remove double == from query
1149 $query_cgi =~ s/^&//; # remove unnecessary & from beginning of the query cgi
1151 for ($query_cgi,$simple_query) {
1154 # append the limit to the query
1155 $query .= " " . $limit;
1159 warn "QUERY:" . $query;
1160 warn "QUERY CGI:" . $query_cgi;
1161 warn "QUERY DESC:" . $query_desc;
1162 warn "LIMIT:" . $limit;
1163 warn "LIMIT CGI:" . $limit_cgi;
1164 warn "LIMIT DESC:" . $limit_desc;
1165 warn "---------\nLeave buildQuery\n---------";
1168 undef, $query, $simple_query, $query_cgi,
1169 $query_desc, $limit, $limit_cgi, $limit_desc,
1170 $stopwords_removed, $query_type
1174 =head2 searchResults
1176 Format results in a form suitable for passing to the template
1180 # IMO this subroutine is pretty messy still -- it's responsible for
1181 # building the HTML output for the template
1183 my ( $searchdesc, $hits, $results_per_page, $offset, $scan, @marcresults ) = @_;
1184 my $dbh = C4
::Context
->dbh;
1188 # add search-term highlighting via <span>s on the search terms
1189 my $span_terms_hashref;
1190 for my $span_term ( split( / /, $searchdesc ) ) {
1191 $span_term =~ s/(.*=|\)|\(|\+|\.|\*)//g;
1192 $span_terms_hashref->{$span_term}++;
1195 #Build branchnames hash
1197 #get branch information.....
1200 $dbh->prepare("SELECT branchcode,branchname FROM branches")
1201 ; # FIXME : use C4::Koha::GetBranches
1203 while ( my $bdata = $bsth->fetchrow_hashref ) {
1204 $branches{ $bdata->{'branchcode'} } = $bdata->{'branchname'};
1206 # FIXME - We build an authorised values hash here, using the default framework
1207 # though it is possible to have different authvals for different fws.
1209 my $shelflocations =GetKohaAuthorisedValues
('items.location','');
1211 # get notforloan authorised value list (see $shelflocations FIXME)
1212 my $notforloan_authorised_value = GetAuthValCode
('items.notforloan','');
1214 #Build itemtype hash
1215 #find itemtype & itemtype image
1219 "SELECT itemtype,description,imageurl,summary,notforloan FROM itemtypes"
1222 while ( my $bdata = $bsth->fetchrow_hashref ) {
1223 foreach (qw(description imageurl summary notforloan)) {
1224 $itemtypes{ $bdata->{'itemtype'} }->{$_} = $bdata->{$_};
1228 #search item field code
1231 "SELECT tagfield FROM marc_subfield_structure WHERE kohafield LIKE 'items.itemnumber'"
1234 my ($itemtag) = $sth->fetchrow;
1236 ## find column names of items related to MARC
1237 my $sth2 = $dbh->prepare("SHOW COLUMNS FROM items");
1239 my %subfieldstosearch;
1240 while ( ( my $column ) = $sth2->fetchrow ) {
1241 my ( $tagfield, $tagsubfield ) =
1242 &GetMarcFromKohaField
( "items." . $column, "" );
1243 $subfieldstosearch{$column} = $tagsubfield;
1246 # handle which records to actually retrieve
1248 if ( $hits && $offset + $results_per_page <= $hits ) {
1249 $times = $offset + $results_per_page;
1252 $times = $hits; # FIXME: if $hits is undefined, why do we want to equal it?
1255 # loop through all of the records we've retrieved
1256 for ( my $i = $offset ; $i <= $times - 1 ; $i++ ) {
1257 my $marcrecord = MARC
::File
::USMARC
::decode
( $marcresults[$i] );
1258 my $oldbiblio = TransformMarcToKoha
( $dbh, $marcrecord, '' );
1259 $oldbiblio->{subtitle
} = C4
::Biblio
::get_koha_field_from_marc
('bibliosubtitle', 'subtitle', $marcrecord, '');
1260 $oldbiblio->{result_number
} = $i + 1;
1262 # add imageurl to itemtype if there is one
1263 $oldbiblio->{imageurl
} = getitemtypeimagelocation
( 'opac', $itemtypes{ $oldbiblio->{itemtype
} }->{imageurl
} );
1265 $oldbiblio->{'authorised_value_images'} = C4
::Items
::get_authorised_value_images
( C4
::Biblio
::get_biblio_authorised_values
( $oldbiblio->{'biblionumber'} ) );
1266 (my $aisbn) = $oldbiblio->{isbn
} =~ /([\d-]*[X]*)/;
1268 $oldbiblio->{amazonisbn
} = $aisbn;
1269 $oldbiblio->{description
} = $itemtypes{ $oldbiblio->{itemtype
} }->{description
};
1270 # Build summary if there is one (the summary is defined in the itemtypes table)
1271 # FIXME: is this used anywhere, I think it can be commented out? -- JF
1272 if ( $itemtypes{ $oldbiblio->{itemtype
} }->{summary
} ) {
1273 my $summary = $itemtypes{ $oldbiblio->{itemtype
} }->{summary
};
1274 my @fields = $marcrecord->fields();
1275 foreach my $field (@fields) {
1276 my $tag = $field->tag();
1277 my $tagvalue = $field->as_string();
1279 s/\[(.?.?.?.?)$tag\*(.*?)]/$1$tagvalue$2\[$1$tag$2]/g;
1280 unless ( $tag < 10 ) {
1281 my @subf = $field->subfields;
1282 for my $i ( 0 .. $#subf ) {
1283 my $subfieldcode = $subf[$i][0];
1284 my $subfieldvalue = $subf[$i][1];
1285 my $tagsubf = $tag . $subfieldcode;
1287 s/\[(.?.?.?.?)$tagsubf(.*?)]/$1$subfieldvalue$2\[$1$tagsubf$2]/g;
1292 $summary =~ s/\[(.*?)]//g;
1293 $summary =~ s/\n/<br\/>/g
;
1294 $oldbiblio->{summary
} = $summary;
1297 # save an author with no <span> tag, for the <a href=search.pl?q=<!--tmpl_var name="author"-->> link
1298 $oldbiblio->{'author_nospan'} = $oldbiblio->{'author'};
1299 $oldbiblio->{'title_nospan'} = $oldbiblio->{'title'};
1300 # Add search-term highlighting to the whole record where they match using <span>s
1301 if (C4
::Context
->preference("OpacHighlightedWords")){
1302 my $searchhighlightblob;
1303 for my $highlight_field ( $marcrecord->fields ) {
1305 # FIXME: need to skip title, subtitle, author, etc., as they are handled below
1306 next if $highlight_field->tag() =~ /(^00)/; # skip fixed fields
1307 for my $subfield ($highlight_field->subfields()) {
1309 next if $subfield->[0] eq '9';
1310 my $field = $subfield->[1];
1311 for my $term ( keys %$span_terms_hashref ) {
1312 if ( ( $field =~ /$term/i ) && (( length($term) > 3 ) || ($field =~ / $term /i)) ) {
1313 $field =~ s/$term/<span class=\"term\">$&<\/span
>/gi
;
1317 $searchhighlightblob .= $field . " ... " if $match;
1321 $searchhighlightblob = ' ... '.$searchhighlightblob if $searchhighlightblob;
1322 $oldbiblio->{'searchhighlightblob'} = $searchhighlightblob;
1325 # Add search-term highlighting to the title, subtitle, etc. fields
1326 for my $term ( keys %$span_terms_hashref ) {
1327 my $old_term = $term;
1328 if ( length($term) > 3 ) {
1329 $term =~ s/(.*=|\)|\(|\+|\.|\?|\[|\]|\\|\*)//g;
1330 foreach(qw(title subtitle author publishercode place pages notes size)) {
1331 $oldbiblio->{$_} =~ s/$term/<span class=\"term\">$&<\/span
>/gi
;
1336 ($i % 2) and $oldbiblio->{'toggle'} = 1;
1338 # Pull out the items fields
1339 my @fields = $marcrecord->field($itemtag);
1341 # Setting item statuses for display
1342 my @available_items_loop;
1343 my @onloan_items_loop;
1344 my @other_items_loop;
1346 my $available_items;
1350 my $ordered_count = 0;
1351 my $available_count = 0;
1352 my $onloan_count = 0;
1353 my $longoverdue_count = 0;
1354 my $other_count = 0;
1355 my $wthdrawn_count = 0;
1356 my $itemlost_count = 0;
1357 my $itembinding_count = 0;
1358 my $itemdamaged_count = 0;
1359 my $item_in_transit_count = 0;
1360 my $can_place_holds = 0;
1361 my $items_count = scalar(@fields);
1363 ( C4
::Context
->preference('maxItemsinSearchResults') )
1364 ? C4
::Context
->preference('maxItemsinSearchResults') - 1
1367 # loop through every item
1368 foreach my $field (@fields) {
1371 # populate the items hash
1372 foreach my $code ( keys %subfieldstosearch ) {
1373 $item->{$code} = $field->subfield( $subfieldstosearch{$code} );
1375 my $hbranch = C4
::Context
->preference('HomeOrHoldingBranch') eq 'homebranch' ?
'homebranch' : 'holdingbranch';
1376 my $otherbranch = C4
::Context
->preference('HomeOrHoldingBranch') eq 'homebranch' ?
'holdingbranch' : 'homebranch';
1377 # set item's branch name, use HomeOrHoldingBranch syspref first, fall back to the other one
1378 if ($item->{$hbranch}) {
1379 $item->{'branchname'} = $branches{$item->{$hbranch}};
1381 elsif ($item->{$otherbranch}) { # Last resort
1382 $item->{'branchname'} = $branches{$item->{$otherbranch}};
1385 my $prefix = $item->{$hbranch} . '--' . $item->{location
} . $item->{itype
} . $item->{itemcallnumber
};
1386 # For each grouping of items (onloan, available, unavailable), we build a key to store relevant info about that item
1387 if ( $item->{onloan
} ) {
1389 my $key = $prefix . $item->{due_date
};
1390 $onloan_items->{$key}->{due_date
} = format_date
($item->{onloan
});
1391 $onloan_items->{$key}->{count
}++ if $item->{$hbranch};
1392 $onloan_items->{$key}->{branchname
} = $item->{branchname
};
1393 $onloan_items->{$key}->{location
} = $shelflocations->{ $item->{location
} };
1394 $onloan_items->{$key}->{itemcallnumber
} = $item->{itemcallnumber
};
1395 $onloan_items->{$key}->{imageurl
} = getitemtypeimagelocation
( 'opac', $itemtypes{ $item->{itype
} }->{imageurl
} );
1396 # if something's checked out and lost, mark it as 'long overdue'
1397 if ( $item->{itemlost
} ) {
1398 $onloan_items->{$prefix}->{longoverdue
}++;
1399 $longoverdue_count++;
1400 } else { # can place holds as long as item isn't lost
1401 $can_place_holds = 1;
1405 # items not on loan, but still unavailable ( lost, withdrawn, damaged )
1409 if ( $item->{notforloan
} == -1 ) {
1413 # is item in transit?
1414 my $transfertwhen = '';
1415 my ($transfertfrom, $transfertto);
1417 unless ($item->{wthdrawn
}
1418 || $item->{itemlost
}
1420 || $item->{notforloan
}
1421 || $items_count > 20) {
1423 # A couple heuristics to limit how many times
1424 # we query the database for item transfer information, sacrificing
1425 # accuracy in some cases for speed;
1427 # 1. don't query if item has one of the other statuses
1428 # 2. don't check transit status if the bib has
1429 # more than 20 items
1431 # FIXME: to avoid having the query the database like this, and to make
1432 # the in transit status count as unavailable for search limiting,
1433 # should map transit status to record indexed in Zebra.
1435 ($transfertwhen, $transfertfrom, $transfertto) = C4
::Circulation
::GetTransfers
($item->{itemnumber
});
1438 # item is withdrawn, lost or damaged
1439 if ( $item->{wthdrawn
}
1440 || $item->{itemlost
}
1442 || $item->{notforloan
}
1443 || ($transfertwhen ne ''))
1445 $wthdrawn_count++ if $item->{wthdrawn
};
1446 $itemlost_count++ if $item->{itemlost
};
1447 $itemdamaged_count++ if $item->{damaged
};
1448 $item_in_transit_count++ if $transfertwhen ne '';
1449 $item->{status
} = $item->{wthdrawn
} . "-" . $item->{itemlost
} . "-" . $item->{damaged
} . "-" . $item->{notforloan
};
1452 my $key = $prefix . $item->{status
};
1453 foreach (qw(wthdrawn itemlost damaged branchname itemcallnumber)) {
1454 $other_items->{$key}->{$_} = $item->{$_};
1456 $other_items->{$key}->{intransit
} = ($transfertwhen ne '') ?
1 : 0;
1457 $other_items->{$key}->{notforloan
} = GetAuthorisedValueDesc
('','',$item->{notforloan
},'','',$notforloan_authorised_value) if $notforloan_authorised_value;
1458 $other_items->{$key}->{count
}++ if $item->{$hbranch};
1459 $other_items->{$key}->{location
} = $shelflocations->{ $item->{location
} };
1460 $other_items->{$key}->{imageurl
} = getitemtypeimagelocation
( 'opac', $itemtypes{ $item->{itype
} }->{imageurl
} );
1464 $can_place_holds = 1;
1466 $available_items->{$prefix}->{count
}++ if $item->{$hbranch};
1467 foreach (qw(branchname itemcallnumber)) {
1468 $available_items->{$prefix}->{$_} = $item->{$_};
1470 $available_items->{$prefix}->{location
} = $shelflocations->{ $item->{location
} };
1471 $available_items->{$prefix}->{imageurl
} = getitemtypeimagelocation
( 'opac', $itemtypes{ $item->{itype
} }->{imageurl
} );
1474 } # notforloan, item level and biblioitem level
1475 my ( $availableitemscount, $onloanitemscount, $otheritemscount );
1477 ( C4
::Context
->preference('maxItemsinSearchResults') )
1478 ? C4
::Context
->preference('maxItemsinSearchResults') - 1
1480 for my $key ( sort keys %$onloan_items ) {
1481 (++$onloanitemscount > $maxitems) and last;
1482 push @onloan_items_loop, $onloan_items->{$key};
1484 for my $key ( sort keys %$other_items ) {
1485 (++$otheritemscount > $maxitems) and last;
1486 push @other_items_loop, $other_items->{$key};
1488 for my $key ( sort keys %$available_items ) {
1489 (++$availableitemscount > $maxitems) and last;
1490 push @available_items_loop, $available_items->{$key}
1493 # XSLT processing of some stuff
1494 if (C4
::Context
->preference("XSLTResultsDisplay") && !$scan) {
1495 my $newxmlrecord = XSLTParse4Display
($oldbiblio->{biblionumber
},C4
::Context
->config('opachtdocs')."/prog/en/xslt/MARC21slim2OPACResults.xsl");
1496 $oldbiblio->{XSLTResultsRecord
} = $newxmlrecord;
1499 # last check for norequest : if itemtype is notforloan, it can't be reserved either, whatever the items
1500 $can_place_holds = 0
1501 if $itemtypes{ $oldbiblio->{itemtype
} }->{notforloan
};
1502 $oldbiblio->{norequests
} = 1 unless $can_place_holds;
1503 $oldbiblio->{itemsplural
} = 1 if $items_count > 1;
1504 $oldbiblio->{items_count
} = $items_count;
1505 $oldbiblio->{available_items_loop
} = \
@available_items_loop;
1506 $oldbiblio->{onloan_items_loop
} = \
@onloan_items_loop;
1507 $oldbiblio->{other_items_loop
} = \
@other_items_loop;
1508 $oldbiblio->{availablecount
} = $available_count;
1509 $oldbiblio->{availableplural
} = 1 if $available_count > 1;
1510 $oldbiblio->{onloancount
} = $onloan_count;
1511 $oldbiblio->{onloanplural
} = 1 if $onloan_count > 1;
1512 $oldbiblio->{othercount
} = $other_count;
1513 $oldbiblio->{otherplural
} = 1 if $other_count > 1;
1514 $oldbiblio->{wthdrawncount
} = $wthdrawn_count;
1515 $oldbiblio->{itemlostcount
} = $itemlost_count;
1516 $oldbiblio->{damagedcount
} = $itemdamaged_count;
1517 $oldbiblio->{intransitcount
} = $item_in_transit_count;
1518 $oldbiblio->{orderedcount
} = $ordered_count;
1519 $oldbiblio->{isbn
} =~
1520 s/-//g; # deleting - in isbn to enable amazon content
1521 push( @newresults, $oldbiblio );
1526 #----------------------------------------------------------------------
1528 # Non-Zebra GetRecords#
1529 #----------------------------------------------------------------------
1533 NZgetRecords has the same API as zera getRecords, even if some parameters are not managed
1539 $query, $simple_query, $sort_by_ref, $servers_ref,
1540 $results_per_page, $offset, $expanded_facet, $branches,
1543 warn "query =$query" if $DEBUG;
1544 my $result = NZanalyse
($query);
1545 warn "results =$result" if $DEBUG;
1547 NZorder
( $result, @
$sort_by_ref[0], $results_per_page, $offset ),
1553 NZanalyse : get a CQL string as parameter, and returns a list of biblionumber;title,biblionumber;title,...
1554 the list is built from an inverted index in the nozebra SQL table
1555 note that title is here only for convenience : the sorting will be very fast when requested on title
1556 if the sorting is requested on something else, we will have to reread all results, and that may be longer.
1561 my ( $string, $server ) = @_;
1562 # warn "---------" if $DEBUG;
1563 warn " NZanalyse" if $DEBUG;
1564 # warn "---------" if $DEBUG;
1566 # $server contains biblioserver or authorities, depending on what we search on.
1567 #warn "querying : $string on $server";
1568 $server = 'biblioserver' unless $server;
1570 # if we have a ", replace the content to discard temporarily any and/or/not inside
1572 if ( $string =~ /"/ ) {
1573 $string =~ s/"(.*?)"/__X__/;
1575 warn "commacontent : $commacontent" if $DEBUG;
1578 # split the query string in 3 parts : X AND Y means : $left="X", $operand="AND" and $right="Y"
1579 # then, call again NZanalyse with $left and $right
1580 # (recursive until we find a leaf (=> something without and/or/not)
1581 # delete repeated operator... Would then go in infinite loop
1582 while ( $string =~ s/( and| or| not| AND| OR| NOT)\1/$1/g ) {
1585 #process parenthesis before.
1586 if ( $string =~ /^\s*\((.*)\)(( and | or | not | AND | OR | NOT )(.*))?/ ) {
1589 my $operator = lc($3); # FIXME: and/or/not are operators, not operands
1591 "dealing w/parenthesis before recursive sub call. left :$left operator:$operator right:$right"
1593 my $leftresult = NZanalyse
( $left, $server );
1595 my $rightresult = NZanalyse
( $right, $server );
1597 # OK, we have the results for right and left part of the query
1598 # depending of operand, intersect, union or exclude both lists
1599 # to get a result list
1600 if ( $operator eq ' and ' ) {
1601 return NZoperatorAND
($leftresult,$rightresult);
1603 elsif ( $operator eq ' or ' ) {
1605 # just merge the 2 strings
1606 return $leftresult . $rightresult;
1608 elsif ( $operator eq ' not ' ) {
1609 return NZoperatorNOT
($leftresult,$rightresult);
1613 # this error is impossible, because of the regexp that isolate the operand, but just in case...
1617 warn "string :" . $string if $DEBUG;
1621 if ($string =~ /(.*?)( and | or | not | AND | OR | NOT )(.*)/) {
1624 $operator = lc($2); # FIXME: and/or/not are operators, not operands
1626 warn "no parenthesis. left : $left operator: $operator right: $right"
1629 # it's not a leaf, we have a and/or/not
1632 # reintroduce comma content if needed
1633 $right =~ s/__X__/"$commacontent"/ if $commacontent;
1634 $left =~ s/__X__/"$commacontent"/ if $commacontent;
1635 warn "node : $left / $operator / $right\n" if $DEBUG;
1636 my $leftresult = NZanalyse
( $left, $server );
1637 my $rightresult = NZanalyse
( $right, $server );
1638 warn " leftresult : $leftresult" if $DEBUG;
1639 warn " rightresult : $rightresult" if $DEBUG;
1640 # OK, we have the results for right and left part of the query
1641 # depending of operand, intersect, union or exclude both lists
1642 # to get a result list
1643 if ( $operator eq ' and ' ) {
1645 return NZoperatorAND
($leftresult,$rightresult);
1647 elsif ( $operator eq ' or ' ) {
1649 # just merge the 2 strings
1650 return $leftresult . $rightresult;
1652 elsif ( $operator eq ' not ' ) {
1653 return NZoperatorNOT
($leftresult,$rightresult);
1657 # this error is impossible, because of the regexp that isolate the operand, but just in case...
1658 die "error : operand unknown : $operator for $string";
1661 # it's a leaf, do the real SQL query and return the result
1664 $string =~ s/__X__/"$commacontent"/ if $commacontent;
1665 $string =~ s/-|\.|\?|,|;|!|'|\(|\)|\[|\]|{|}|"|&|\+|\*|\// /g
;
1666 #remove trailing blank at the beginning
1668 warn "leaf:$string" if $DEBUG;
1670 # parse the string in in operator/operand/value again
1674 if ($string =~ /(.*)(>=|<=)(.*)/) {
1681 # warn "handling leaf... left:$left operator:$operator right:$right"
1683 unless ($operator) {
1684 if ($string =~ /(.*)(>|<|=)(.*)/) {
1689 "handling unless (operator)... left:$left operator:$operator right:$right"
1697 # strip adv, zebra keywords, currently not handled in nozebra: wrdl, ext, phr...
1700 # automatic replace for short operators
1701 $left = 'title' if $left =~ '^ti$';
1702 $left = 'author' if $left =~ '^au$';
1703 $left = 'publisher' if $left =~ '^pb$';
1704 $left = 'subject' if $left =~ '^su$';
1705 $left = 'koha-Auth-Number' if $left =~ '^an$';
1706 $left = 'keyword' if $left =~ '^kw$';
1707 warn "handling leaf... left:$left operator:$operator right:$right" if $DEBUG;
1708 if ( $operator && $left ne 'keyword' ) {
1710 #do a specific search
1711 my $dbh = C4
::Context
->dbh;
1712 $operator = 'LIKE' if $operator eq '=' and $right =~ /%/;
1715 "SELECT biblionumbers,value FROM nozebra WHERE server=? AND indexname=? AND value $operator ?"
1717 warn "$left / $operator / $right\n" if $DEBUG;
1719 # split each word, query the DB and build the biblionumbers result
1720 #sanitizing leftpart
1721 $left =~ s/^\s+|\s+$//;
1722 foreach ( split / /, $right ) {
1724 $_ =~ s/^\s+|\s+$//;
1726 warn "EXECUTE : $server, $left, $_" if $DEBUG;
1727 $sth->execute( $server, $left, $_ )
1728 or warn "execute failed: $!";
1729 while ( my ( $line, $value ) = $sth->fetchrow ) {
1731 # if we are dealing with a numeric value, use only numeric results (in case of >=, <=, > or <)
1732 # otherwise, fill the result
1733 $biblionumbers .= $line
1734 unless ( $right =~ /^\d+$/ && $value =~ /\D/ );
1735 warn "result : $value "
1736 . ( $right =~ /\d/ ) . "=="
1737 . ( $value =~ /\D/?
$line:"" ) if $DEBUG; #= $line";
1740 # do a AND with existing list if there is one, otherwise, use the biblionumbers list as 1st result list
1742 warn "NZAND" if $DEBUG;
1743 $results = NZoperatorAND
($biblionumbers,$results);
1746 $results = $biblionumbers;
1752 #do a complete search (all indexes), if index='kw' do complete search too.
1753 my $dbh = C4
::Context
->dbh;
1756 "SELECT biblionumbers FROM nozebra WHERE server=? AND value LIKE ?"
1759 # split each word, query the DB and build the biblionumbers result
1760 foreach ( split / /, $string ) {
1761 next if C4
::Context
->stopwords->{ uc($_) }; # skip if stopword
1762 warn "search on all indexes on $_" if $DEBUG;
1765 $sth->execute( $server, $_ );
1766 while ( my $line = $sth->fetchrow ) {
1767 $biblionumbers .= $line;
1770 # do a AND with existing list if there is one, otherwise, use the biblionumbers list as 1st result list
1772 $results = NZoperatorAND
($biblionumbers,$results);
1775 warn "NEW RES for $_ = $biblionumbers" if $DEBUG;
1776 $results = $biblionumbers;
1780 warn "return : $results for LEAF : $string" if $DEBUG;
1783 warn "---------\nLeave NZanalyse\n---------" if $DEBUG;
1787 my ($rightresult, $leftresult)=@_;
1789 my @leftresult = split /;/, $leftresult;
1790 warn " @leftresult / $rightresult \n" if $DEBUG;
1792 # my @rightresult = split /;/,$leftresult;
1795 # parse the left results, and if the biblionumber exist in the right result, save it in finalresult
1796 # the result is stored twice, to have the same weight for AND than OR.
1797 # example : TWO : 61,61,64,121 (two is twice in the biblio #61) / TOWER : 61,64,130
1798 # result : 61,61,61,61,64,64 for two AND tower : 61 has more weight than 64
1799 foreach (@leftresult) {
1802 ( $value, $countvalue ) = ( $1, $2 ) if ($value=~/(.*)-(\d+)$/);
1803 if ( $rightresult =~ /\Q$value\E-(\d+);/ ) {
1804 $countvalue = ( $1 > $countvalue ?
$countvalue : $1 );
1806 "$value-$countvalue;$value-$countvalue;";
1809 warn "NZAND DONE : $finalresult \n" if $DEBUG;
1810 return $finalresult;
1814 my ($rightresult, $leftresult)=@_;
1815 return $rightresult.$leftresult;
1819 my ($leftresult, $rightresult)=@_;
1821 my @leftresult = split /;/, $leftresult;
1823 # my @rightresult = split /;/,$leftresult;
1825 foreach (@leftresult) {
1827 $value=$1 if $value=~m/(.*)-\d+$/;
1828 unless ($rightresult =~ "$value-") {
1829 $finalresult .= "$_;";
1832 return $finalresult;
1837 $finalresult = NZorder($biblionumbers, $ordering,$results_per_page,$offset);
1844 my ( $biblionumbers, $ordering, $results_per_page, $offset ) = @_;
1845 warn "biblionumbers = $biblionumbers and ordering = $ordering\n" if $DEBUG;
1847 # order title asc by default
1848 # $ordering = '1=36 <i' unless $ordering;
1849 $results_per_page = 20 unless $results_per_page;
1850 $offset = 0 unless $offset;
1851 my $dbh = C4
::Context
->dbh;
1854 # order by POPULARITY
1856 if ( $ordering =~ /popularity/ ) {
1860 # popularity is not in MARC record, it's builded from a specific query
1862 $dbh->prepare("select sum(issues) from items where biblionumber=?");
1863 foreach ( split /;/, $biblionumbers ) {
1864 my ( $biblionumber, $title ) = split /,/, $_;
1865 $result{$biblionumber} = GetMarcBiblio
($biblionumber);
1866 $sth->execute($biblionumber);
1867 my $popularity = $sth->fetchrow || 0;
1869 # hint : the key is popularity.title because we can have
1870 # many results with the same popularity. In this cas, sub-ordering is done by title
1871 # we also have biblionumber to avoid bug for 2 biblios with the same title & popularity
1872 # (un-frequent, I agree, but we won't forget anything that way ;-)
1873 $popularity{ sprintf( "%10d", $popularity ) . $title
1874 . $biblionumber } = $biblionumber;
1877 # sort the hash and return the same structure as GetRecords (Zebra querying)
1880 if ( $ordering eq 'popularity_dsc' ) { # sort popularity DESC
1881 foreach my $key ( sort { $b cmp $a } ( keys %popularity ) ) {
1882 $result_hash->{'RECORDS'}[ $numbers++ ] =
1883 $result{ $popularity{$key} }->as_usmarc();
1886 else { # sort popularity ASC
1887 foreach my $key ( sort ( keys %popularity ) ) {
1888 $result_hash->{'RECORDS'}[ $numbers++ ] =
1889 $result{ $popularity{$key} }->as_usmarc();
1892 my $finalresult = ();
1893 $result_hash->{'hits'} = $numbers;
1894 $finalresult->{'biblioserver'} = $result_hash;
1895 return $finalresult;
1901 elsif ( $ordering =~ /author/ ) {
1903 foreach ( split /;/, $biblionumbers ) {
1904 my ( $biblionumber, $title ) = split /,/, $_;
1905 my $record = GetMarcBiblio
($biblionumber);
1907 if ( C4
::Context
->preference('marcflavour') eq 'UNIMARC' ) {
1908 $author = $record->subfield( '200', 'f' );
1909 $author = $record->subfield( '700', 'a' ) unless $author;
1912 $author = $record->subfield( '100', 'a' );
1915 # hint : the result is sorted by title.biblionumber because we can have X biblios with the same title
1916 # and we don't want to get only 1 result for each of them !!!
1917 $result{ $author . $biblionumber } = $record;
1920 # sort the hash and return the same structure as GetRecords (Zebra querying)
1923 if ( $ordering eq 'author_za' ) { # sort by author desc
1924 foreach my $key ( sort { $b cmp $a } ( keys %result ) ) {
1925 $result_hash->{'RECORDS'}[ $numbers++ ] =
1926 $result{$key}->as_usmarc();
1929 else { # sort by author ASC
1930 foreach my $key ( sort ( keys %result ) ) {
1931 $result_hash->{'RECORDS'}[ $numbers++ ] =
1932 $result{$key}->as_usmarc();
1935 my $finalresult = ();
1936 $result_hash->{'hits'} = $numbers;
1937 $finalresult->{'biblioserver'} = $result_hash;
1938 return $finalresult;
1941 # ORDER BY callnumber
1944 elsif ( $ordering =~ /callnumber/ ) {
1946 foreach ( split /;/, $biblionumbers ) {
1947 my ( $biblionumber, $title ) = split /,/, $_;
1948 my $record = GetMarcBiblio
($biblionumber);
1950 my ( $callnumber_tag, $callnumber_subfield ) =
1951 GetMarcFromKohaField
( $dbh, 'items.itemcallnumber' );
1952 ( $callnumber_tag, $callnumber_subfield ) =
1953 GetMarcFromKohaField
('biblioitems.callnumber')
1954 unless $callnumber_tag;
1955 if ( C4
::Context
->preference('marcflavour') eq 'UNIMARC' ) {
1956 $callnumber = $record->subfield( '200', 'f' );
1959 $callnumber = $record->subfield( '100', 'a' );
1962 # hint : the result is sorted by title.biblionumber because we can have X biblios with the same title
1963 # and we don't want to get only 1 result for each of them !!!
1964 $result{ $callnumber . $biblionumber } = $record;
1967 # sort the hash and return the same structure as GetRecords (Zebra querying)
1970 if ( $ordering eq 'call_number_dsc' ) { # sort by title desc
1971 foreach my $key ( sort { $b cmp $a } ( keys %result ) ) {
1972 $result_hash->{'RECORDS'}[ $numbers++ ] =
1973 $result{$key}->as_usmarc();
1976 else { # sort by title ASC
1977 foreach my $key ( sort { $a cmp $b } ( keys %result ) ) {
1978 $result_hash->{'RECORDS'}[ $numbers++ ] =
1979 $result{$key}->as_usmarc();
1982 my $finalresult = ();
1983 $result_hash->{'hits'} = $numbers;
1984 $finalresult->{'biblioserver'} = $result_hash;
1985 return $finalresult;
1987 elsif ( $ordering =~ /pubdate/ ) { #pub year
1989 foreach ( split /;/, $biblionumbers ) {
1990 my ( $biblionumber, $title ) = split /,/, $_;
1991 my $record = GetMarcBiblio
($biblionumber);
1992 my ( $publicationyear_tag, $publicationyear_subfield ) =
1993 GetMarcFromKohaField
( 'biblioitems.publicationyear', '' );
1994 my $publicationyear =
1995 $record->subfield( $publicationyear_tag,
1996 $publicationyear_subfield );
1998 # hint : the result is sorted by title.biblionumber because we can have X biblios with the same title
1999 # and we don't want to get only 1 result for each of them !!!
2000 $result{ $publicationyear . $biblionumber } = $record;
2003 # sort the hash and return the same structure as GetRecords (Zebra querying)
2006 if ( $ordering eq 'pubdate_dsc' ) { # sort by pubyear desc
2007 foreach my $key ( sort { $b cmp $a } ( keys %result ) ) {
2008 $result_hash->{'RECORDS'}[ $numbers++ ] =
2009 $result{$key}->as_usmarc();
2012 else { # sort by pub year ASC
2013 foreach my $key ( sort ( keys %result ) ) {
2014 $result_hash->{'RECORDS'}[ $numbers++ ] =
2015 $result{$key}->as_usmarc();
2018 my $finalresult = ();
2019 $result_hash->{'hits'} = $numbers;
2020 $finalresult->{'biblioserver'} = $result_hash;
2021 return $finalresult;
2027 elsif ( $ordering =~ /title/ ) {
2029 # the title is in the biblionumbers string, so we just need to build a hash, sort it and return
2031 foreach ( split /;/, $biblionumbers ) {
2032 my ( $biblionumber, $title ) = split /,/, $_;
2034 # hint : the result is sorted by title.biblionumber because we can have X biblios with the same title
2035 # and we don't want to get only 1 result for each of them !!!
2036 # hint & speed improvement : we can order without reading the record
2037 # so order, and read records only for the requested page !
2038 $result{ $title . $biblionumber } = $biblionumber;
2041 # sort the hash and return the same structure as GetRecords (Zebra querying)
2044 if ( $ordering eq 'title_az' ) { # sort by title desc
2045 foreach my $key ( sort ( keys %result ) ) {
2046 $result_hash->{'RECORDS'}[ $numbers++ ] = $result{$key};
2049 else { # sort by title ASC
2050 foreach my $key ( sort { $b cmp $a } ( keys %result ) ) {
2051 $result_hash->{'RECORDS'}[ $numbers++ ] = $result{$key};
2055 # limit the $results_per_page to result size if it's more
2056 $results_per_page = $numbers - 1 if $numbers < $results_per_page;
2058 # for the requested page, replace biblionumber by the complete record
2059 # speed improvement : avoid reading too much things
2061 my $counter = $offset ;
2062 $counter <= $offset + $results_per_page ;
2066 $result_hash->{'RECORDS'}[$counter] =
2067 GetMarcBiblio
( $result_hash->{'RECORDS'}[$counter] )->as_usmarc;
2069 my $finalresult = ();
2070 $result_hash->{'hits'} = $numbers;
2071 $finalresult->{'biblioserver'} = $result_hash;
2072 return $finalresult;
2079 # we need 2 hashes to order by ranking : the 1st one to count the ranking, the 2nd to order by ranking
2082 foreach ( split /;/, $biblionumbers ) {
2083 my ( $biblionumber, $title ) = split /,/, $_;
2084 $title =~ /(.*)-(\d)/;
2089 # note that we + the ranking because ranking is calculated on weight of EACH term requested.
2090 # if we ask for "two towers", and "two" has weight 2 in biblio N, and "towers" has weight 4 in biblio N
2091 # biblio N has ranking = 6
2092 $count_ranking{$biblionumber} += $ranking;
2095 # build the result by "inverting" the count_ranking hash
2096 # hing : as usual, we don't order by ranking only, to avoid having only 1 result for each rank. We build an hash on concat(ranking,biblionumber) instead
2098 foreach ( keys %count_ranking ) {
2099 $result{ sprintf( "%10d", $count_ranking{$_} ) . '-' . $_ } = $_;
2102 # sort the hash and return the same structure as GetRecords (Zebra querying)
2105 foreach my $key ( sort { $b cmp $a } ( keys %result ) ) {
2106 $result_hash->{'RECORDS'}[ $numbers++ ] = $result{$key};
2109 # limit the $results_per_page to result size if it's more
2110 $results_per_page = $numbers - 1 if $numbers < $results_per_page;
2112 # for the requested page, replace biblionumber by the complete record
2113 # speed improvement : avoid reading too much things
2115 my $counter = $offset ;
2116 $counter <= $offset + $results_per_page ;
2120 $result_hash->{'RECORDS'}[$counter] =
2121 GetMarcBiblio
( $result_hash->{'RECORDS'}[$counter] )->as_usmarc
2122 if $result_hash->{'RECORDS'}[$counter];
2124 my $finalresult = ();
2125 $result_hash->{'hits'} = $numbers;
2126 $finalresult->{'biblioserver'} = $result_hash;
2127 return $finalresult;
2133 ($countchanged,$listunchanged) = ModBiblios($listbiblios, $tagsubfield,$initvalue,$targetvalue,$test);
2135 this function changes all the values $initvalue in subfield $tag$subfield in any record in $listbiblios
2136 test parameter if set donot perform change to records in database.
2142 * $listbiblios is an array ref to marcrecords to be changed
2143 * $tagsubfield is the reference of the subfield to change.
2144 * $initvalue is the value to search the record for
2145 * $targetvalue is the value to set the subfield to
2146 * $test is to be set only not to perform changes in database.
2148 =item C<Output arg:>
2149 * $countchanged counts all the changes performed.
2150 * $listunchanged contains the list of all the biblionumbers of records unchanged.
2152 =item C<usage in the script:>
2156 my ($countchanged, $listunchanged) = EditBiblios($results->{RECORD}, $tagsubfield,$initvalue,$targetvalue);;
2157 #If one wants to display unchanged records, you should get biblios foreach @$listunchanged
2158 $template->param(countchanged => $countchanged, loopunchanged=>$listunchanged);
2163 my ( $listbiblios, $tagsubfield, $initvalue, $targetvalue, $test ) = @_;
2166 my ( $tag, $subfield ) = ( $1, $2 )
2167 if ( $tagsubfield =~ /^(\d{1,3})([a-z0-9A-Z@])?$/ );
2168 if ( ( length($tag) < 3 ) && $subfield =~ /0-9/ ) {
2169 $tag = $tag . $subfield;
2172 my ( $bntag, $bnsubf ) = GetMarcFromKohaField
('biblio.biblionumber');
2173 my ( $itemtag, $itemsubf ) = GetMarcFromKohaField
('items.itemnumber');
2174 if ($tag eq $itemtag) {
2175 # do not allow the embedded item tag to be
2177 warn "Attempting to edit item tag via C4::Search::ModBiblios -- not allowed";
2180 foreach my $usmarc (@
$listbiblios) {
2182 $record = eval { MARC
::Record
->new_from_usmarc($usmarc) };
2186 # usmarc is not a valid usmarc May be a biblionumber
2187 # FIXME - sorry, please let's figure out whether
2188 # this function is to be passed a list of
2189 # record numbers or a list of MARC::Record
2190 # objects. The former is probably better
2191 # because the MARC records supplied by Zebra
2192 # may be not current.
2193 $record = GetMarcBiblio
($usmarc);
2194 $biblionumber = $usmarc;
2197 if ( $bntag >= 010 ) {
2198 $biblionumber = $record->subfield( $bntag, $bnsubf );
2201 $biblionumber = $record->field($bntag)->data;
2205 #GetBiblionumber is to be written.
2206 #Could be replaced by TransformMarcToKoha (But Would be longer)
2207 if ( $record->field($tag) ) {
2209 foreach my $field ( $record->field($tag) ) {
2212 $field->delete_subfield(
2213 'code' => $subfield,
2214 'match' => qr
($initvalue)
2220 $field->update( $subfield, $targetvalue )
2225 if ( $tag >= 010 ) {
2226 if ( $field->delete_field($field) ) {
2232 $field->data = $targetvalue
2233 if ( $field->data =~ qr
($initvalue) );
2238 # warn $record->as_formatted;
2240 ModBiblio
( $record, $biblionumber,
2241 GetFrameworkCode
($biblionumber) )
2245 push @unmatched, $biblionumber;
2249 push @unmatched, $biblionumber;
2252 return ( $countmatched, \
@unmatched );
2255 END { } # module clean-up code here (global destructor)
2262 Koha Developement team <info@koha.org>