]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/src/perlmods/lib/OpenILS/Application/Search/Biblio.pm
Revert "Remove dependence on search.query_parser_fts proc"
[Evergreen.git] / Open-ILS / src / perlmods / lib / OpenILS / Application / Search / Biblio.pm
1 package OpenILS::Application::Search::Biblio;
2 use base qw/OpenILS::Application/;
3 use strict; use warnings;
4
5
6 use OpenSRF::Utils::JSON;
7 use OpenILS::Utils::Fieldmapper;
8 use OpenILS::Utils::ModsParser;
9 use OpenSRF::Utils::SettingsClient;
10 use OpenILS::Utils::CStoreEditor q/:funcs/;
11 use OpenSRF::Utils::Cache;
12 use Encode;
13
14 use OpenSRF::Utils::Logger qw/:logger/;
15
16
17 use OpenSRF::Utils::JSON;
18
19 use Time::HiRes qw(time);
20 use OpenSRF::EX qw(:try);
21 use Digest::MD5 qw(md5_hex);
22
23 use XML::LibXML;
24 use XML::LibXSLT;
25
26 use Data::Dumper;
27 $Data::Dumper::Indent = 0;
28
29 use OpenILS::Const qw/:const/;
30
31 use OpenILS::Application::AppUtils;
32 my $apputils = "OpenILS::Application::AppUtils";
33 my $U = $apputils;
34
35 my $pfx = "open-ils.search_";
36
37 my $cache;
38 my $cache_timeout;
39 my $superpage_size;
40 my $max_superpages;
41
42 sub initialize {
43         $cache = OpenSRF::Utils::Cache->new('global');
44         my $sclient = OpenSRF::Utils::SettingsClient->new();
45         $cache_timeout = $sclient->config_value(
46                         "apps", "open-ils.search", "app_settings", "cache_timeout" ) || 300;
47
48         $superpage_size = $sclient->config_value(
49                         "apps", "open-ils.search", "app_settings", "superpage_size" ) || 500;
50
51         $max_superpages = $sclient->config_value(
52                         "apps", "open-ils.search", "app_settings", "max_superpages" ) || 20;
53
54         $logger->info("Search cache timeout is $cache_timeout, ".
55         " superpage_size is $superpage_size, max_superpages is $max_superpages");
56 }
57
58
59
60 # ---------------------------------------------------------------------------
61 # takes a list of record id's and turns the docs into friendly 
62 # mods structures. Creates one MODS structure for each doc id.
63 # ---------------------------------------------------------------------------
64 sub _records_to_mods {
65         my @ids = @_;
66         
67         my @results;
68         my @marcxml_objs;
69
70         my $session = OpenSRF::AppSession->create("open-ils.cstore");
71         my $request = $session->request(
72                         "open-ils.cstore.direct.biblio.record_entry.search", { id => \@ids } );
73
74         while( my $resp = $request->recv ) {
75                 my $content = $resp->content;
76                 next if $content->id == OILS_PRECAT_RECORD;
77                 my $u = OpenILS::Utils::ModsParser->new();  # FIXME: we really need a new parser for each object?
78                 $u->start_mods_batch( $content->marc );
79                 my $mods = $u->finish_mods_batch();
80                 $mods->doc_id($content->id());
81                 $mods->tcn($content->tcn_value);
82                 push @results, $mods;
83         }
84
85         $session->disconnect();
86         return \@results;
87 }
88
89 __PACKAGE__->register_method(
90     method    => "record_id_to_mods",
91     api_name  => "open-ils.search.biblio.record.mods.retrieve",
92     argc      => 1,
93     signature => {
94         desc   => "Provide ID, we provide the MODS object with copy count.  " 
95                 . "Note: this method does NOT take an array of IDs like mods_slim.retrieve",    # FIXME: do it here too
96         params => [
97             { desc => 'Record ID', type => 'number' }
98         ],
99         return => {
100             desc => 'MODS object', type => 'object'
101         }
102     }
103 );
104
105 # converts a record into a mods object with copy counts attached
106 sub record_id_to_mods {
107
108     my( $self, $client, $org_id, $id ) = @_;
109
110     my $mods_list = _records_to_mods( $id );
111     my $mods_obj  = $mods_list->[0];
112     my $cmethod   = $self->method_lookup("open-ils.search.biblio.record.copy_count");
113     my ($count)   = $cmethod->run($org_id, $id);
114     $mods_obj->copy_count($count);
115
116     return $mods_obj;
117 }
118
119
120
121 __PACKAGE__->register_method(
122     method        => "record_id_to_mods_slim",
123     api_name      => "open-ils.search.biblio.record.mods_slim.retrieve",
124     argc          => 1,
125     authoritative => 1,
126     signature     => {
127         desc   => "Provide ID(s), we provide the MODS",
128         params => [
129             { desc => 'Record ID or array of IDs' }
130         ],
131         return => {
132             desc => 'MODS object(s), event on error'
133         }
134     }
135 );
136
137 # converts a record into a mods object with NO copy counts attached
138 sub record_id_to_mods_slim {
139         my( $self, $client, $id ) = @_;
140         return undef unless defined $id;
141
142         if(ref($id) and ref($id) == 'ARRAY') {
143                 return _records_to_mods( @$id );
144         }
145         my $mods_list = _records_to_mods( $id );
146         my $mods_obj  = $mods_list->[0];
147         return OpenILS::Event->new('BIBLIO_RECORD_ENTRY_NOT_FOUND') unless $mods_obj;
148         return $mods_obj;
149 }
150
151
152
153 __PACKAGE__->register_method(
154     method   => "record_id_to_mods_slim_batch",
155     api_name => "open-ils.search.biblio.record.mods_slim.batch.retrieve",
156     stream   => 1
157 );
158 sub record_id_to_mods_slim_batch {
159         my($self, $conn, $id_list) = @_;
160     $conn->respond(_records_to_mods($_)->[0]) for @$id_list;
161     return undef;
162 }
163
164
165 # Returns the number of copies attached to a record based on org location
166 __PACKAGE__->register_method(
167     method   => "record_id_to_copy_count",
168     api_name => "open-ils.search.biblio.record.copy_count",
169     signature => {
170         desc => q/Returns a copy summary for the given record for the context org
171             unit and all ancestor org units/,
172         params => [
173             {desc => 'Context org unit id', type => 'number'},
174             {desc => 'Record ID', type => 'number'}
175         ],
176         return => {
177             desc => q/summary object per org unit in the set, where the set
178                 includes the context org unit and all parent org units.  
179                 Object includes the keys "transcendant", "count", "org_unit", "depth", 
180                 "unshadow", "available".  Each is a count, except "org_unit" which is 
181                 the context org unit and "depth" which is the depth of the context org unit
182             /,
183             type => 'array'
184         }
185     }
186 );
187
188 __PACKAGE__->register_method(
189     method        => "record_id_to_copy_count",
190     api_name      => "open-ils.search.biblio.record.copy_count.staff",
191     authoritative => 1,
192     signature => {
193         desc => q/Returns a copy summary for the given record for the context org
194             unit and all ancestor org units/,
195         params => [
196             {desc => 'Context org unit id', type => 'number'},
197             {desc => 'Record ID', type => 'number'}
198         ],
199         return => {
200             desc => q/summary object per org unit in the set, where the set
201                 includes the context org unit and all parent org units.  
202                 Object includes the keys "transcendant", "count", "org_unit", "depth", 
203                 "unshadow", "available".  Each is a count, except "org_unit" which is 
204                 the context org unit and "depth" which is the depth of the context org unit
205             /,
206             type => 'array'
207         }
208     }
209 );
210
211 __PACKAGE__->register_method(
212     method   => "record_id_to_copy_count",
213     api_name => "open-ils.search.biblio.metarecord.copy_count",
214     signature => {
215         desc => q/Returns a copy summary for the given record for the context org
216             unit and all ancestor org units/,
217         params => [
218             {desc => 'Context org unit id', type => 'number'},
219             {desc => 'Record ID', type => 'number'}
220         ],
221         return => {
222             desc => q/summary object per org unit in the set, where the set
223                 includes the context org unit and all parent org units.  
224                 Object includes the keys "transcendant", "count", "org_unit", "depth", 
225                 "unshadow", "available".  Each is a count, except "org_unit" which is 
226                 the context org unit and "depth" which is the depth of the context org unit
227             /,
228             type => 'array'
229         }
230     }
231 );
232
233 __PACKAGE__->register_method(
234     method   => "record_id_to_copy_count",
235     api_name => "open-ils.search.biblio.metarecord.copy_count.staff",
236     signature => {
237         desc => q/Returns a copy summary for the given record for the context org
238             unit and all ancestor org units/,
239         params => [
240             {desc => 'Context org unit id', type => 'number'},
241             {desc => 'Record ID', type => 'number'}
242         ],
243         return => {
244             desc => q/summary object per org unit in the set, where the set
245                 includes the context org unit and all parent org units.  
246                 Object includes the keys "transcendant", "count", "org_unit", "depth", 
247                 "unshadow", "available".  Each is a count, except "org_unit" which is 
248                 the context org unit and "depth" which is the depth of the context org
249                 unit.  "depth" is always -1 when the count from a lasso search is
250                 performed, since depth doesn't mean anything in a lasso context.
251             /,
252             type => 'array'
253         }
254     }
255 );
256
257 sub record_id_to_copy_count {
258     my( $self, $client, $org_id, $record_id ) = @_;
259
260     return [] unless $record_id;
261
262     my $key = $self->api_name =~ /metarecord/ ? 'metarecord' : 'record';
263     my $staff = $self->api_name =~ /staff/ ? 't' : 'f';
264
265     my $data = $U->cstorereq(
266         "open-ils.cstore.json_query.atomic",
267         { from => ['asset.' . $key  . '_copy_count' => $org_id => $record_id => $staff] }
268     );
269
270     my @count;
271     for my $d ( @$data ) { # fix up the key name change required by stored-proc version
272         $$d{count} = delete $$d{visible};
273         push @count, $d;
274     }
275
276     return [ sort { $a->{depth} <=> $b->{depth} } @count ];
277 }
278
279 __PACKAGE__->register_method(
280     method   => "record_has_holdable_copy",
281     api_name => "open-ils.search.biblio.record.has_holdable_copy",
282     signature => {
283         desc => q/Returns a boolean indicating if a record has any holdable copies./,
284         params => [
285             {desc => 'Record ID', type => 'number'}
286         ],
287         return => {
288             desc => q/bool indicating if the record has any holdable copies/,
289             type => 'bool'
290         }
291     }
292 );
293
294 __PACKAGE__->register_method(
295     method   => "record_has_holdable_copy",
296     api_name => "open-ils.search.biblio.metarecord.has_holdable_copy",
297     signature => {
298         desc => q/Returns a boolean indicating if a record has any holdable copies./,
299         params => [
300             {desc => 'Record ID', type => 'number'}
301         ],
302         return => {
303             desc => q/bool indicating if the record has any holdable copies/,
304             type => 'bool'
305         }
306     }
307 );
308
309 sub record_has_holdable_copy {
310     my($self, $client, $record_id ) = @_;
311
312     return 0 unless $record_id;
313
314     my $key = $self->api_name =~ /metarecord/ ? 'metarecord' : 'record';
315
316     my $data = $U->cstorereq(
317         "open-ils.cstore.json_query.atomic",
318         { from => ['asset.' . $key . '_has_holdable_copy' => $record_id ] }
319     );
320
321     return ${@$data[0]}{'asset.' . $key . '_has_holdable_copy'} eq 't';
322
323 }
324
325 __PACKAGE__->register_method(
326     method   => "biblio_search_tcn",
327     api_name => "open-ils.search.biblio.tcn",
328     argc     => 1,
329     signature => {
330         desc   => "Retrieve related record ID(s) given a TCN",
331         params => [
332             { desc => 'TCN', type => 'string' },
333             { desc => 'Flag indicating to include deleted records', type => 'string' }
334         ],
335         return => {
336             desc => 'Results object like: { "count": $i, "ids": [...] }',
337             type => 'object'
338         }
339     }
340
341 );
342
343 sub biblio_search_tcn {
344
345     my( $self, $client, $tcn, $include_deleted ) = @_;
346
347     $tcn =~ s/^\s+|\s+$//og;
348
349     my $e = new_editor();
350     my $search = {tcn_value => $tcn};
351     $search->{deleted} = 'f' unless $include_deleted;
352     my $recs = $e->search_biblio_record_entry( $search, {idlist =>1} );
353         
354     return { count => scalar(@$recs), ids => $recs };
355 }
356
357
358 # --------------------------------------------------------------------------------
359
360 __PACKAGE__->register_method(
361     method   => "biblio_barcode_to_copy",
362     api_name => "open-ils.search.asset.copy.find_by_barcode",
363 );
364 sub biblio_barcode_to_copy { 
365         my( $self, $client, $barcode ) = @_;
366         my( $copy, $evt ) = $U->fetch_copy_by_barcode($barcode);
367         return $evt if $evt;
368         return $copy;
369 }
370
371 __PACKAGE__->register_method(
372     method   => "biblio_id_to_copy",
373     api_name => "open-ils.search.asset.copy.batch.retrieve",
374 );
375 sub biblio_id_to_copy { 
376         my( $self, $client, $ids ) = @_;
377         $logger->info("Fetching copies @$ids");
378         return $U->cstorereq(
379                 "open-ils.cstore.direct.asset.copy.search.atomic", { id => $ids } );
380 }
381
382
383 __PACKAGE__->register_method(
384         method  => "biblio_id_to_uris",
385         api_name=> "open-ils.search.asset.uri.retrieve_by_bib",
386         argc    => 2, 
387     stream  => 1,
388     signature => q#
389         @param BibID Which bib record contains the URIs
390         @param OrgID Where to look for URIs
391         @param OrgDepth Range adjustment for OrgID
392         @return A stream or list of 'auri' objects
393     #
394
395 );
396 sub biblio_id_to_uris { 
397         my( $self, $client, $bib, $org, $depth ) = @_;
398     die "Org ID required" unless defined($org);
399     die "Bib ID required" unless defined($bib);
400
401     my @params;
402     push @params, $depth if (defined $depth);
403
404         my $ids = $U->cstorereq( "open-ils.cstore.json_query.atomic",
405         {   select  => { auri => [ 'id' ] },
406             from    => {
407                 acn => {
408                     auricnm => {
409                         field   => 'call_number',
410                         fkey    => 'id',
411                         join    => {
412                             auri    => {
413                                 field => 'id',
414                                 fkey => 'uri',
415                                 filter  => { active => 't' }
416                             }
417                         }
418                     }
419                 }
420             },
421             where   => {
422                 '+acn'  => {
423                     record      => $bib,
424                     owning_lib  => {
425                         in  => {
426                             select  => { aou => [ { column => 'id', transform => 'actor.org_unit_descendants', params => \@params, result_field => 'id' } ] },
427                             from    => 'aou',
428                             where   => { id => $org },
429                             distinct=> 1
430                         }
431                     }
432                 }
433             },
434             distinct=> 1,
435         }
436     );
437
438         my $uris = $U->cstorereq(
439                 "open-ils.cstore.direct.asset.uri.search.atomic",
440         { id => [ map { (values %$_) } @$ids ] }
441     );
442
443     $client->respond($_) for (@$uris);
444
445     return undef;
446 }
447
448
449 __PACKAGE__->register_method(
450     method    => "copy_retrieve",
451     api_name  => "open-ils.search.asset.copy.retrieve",
452     argc      => 1,
453     signature => {
454         desc   => 'Retrieve a copy object based on the Copy ID',
455         params => [
456             { desc => 'Copy ID', type => 'number'}
457         ],
458         return => {
459             desc => 'Copy object, event on error'
460         }
461     }
462 );
463
464 sub copy_retrieve {
465         my( $self, $client, $cid ) = @_;
466         my( $copy, $evt ) = $U->fetch_copy($cid);
467         return $evt || $copy;
468 }
469
470 __PACKAGE__->register_method(
471     method   => "volume_retrieve",
472     api_name => "open-ils.search.asset.call_number.retrieve"
473 );
474 sub volume_retrieve {
475         my( $self, $client, $vid ) = @_;
476         my $e = new_editor();
477         my $vol = $e->retrieve_asset_call_number($vid) or return $e->event;
478         return $vol;
479 }
480
481 __PACKAGE__->register_method(
482     method        => "fleshed_copy_retrieve_batch",
483     api_name      => "open-ils.search.asset.copy.fleshed.batch.retrieve",
484     authoritative => 1,
485 );
486
487 sub fleshed_copy_retrieve_batch { 
488         my( $self, $client, $ids ) = @_;
489         $logger->info("Fetching fleshed copies @$ids");
490         return $U->cstorereq(
491                 "open-ils.cstore.direct.asset.copy.search.atomic",
492                 { id => $ids },
493                 { flesh => 1, 
494                   flesh_fields => { acp => [ qw/ circ_lib location status stat_cat_entries parts / ] }
495                 });
496 }
497
498
499 __PACKAGE__->register_method(
500     method   => "fleshed_copy_retrieve",
501     api_name => "open-ils.search.asset.copy.fleshed.retrieve",
502 );
503
504 sub fleshed_copy_retrieve { 
505         my( $self, $client, $id ) = @_;
506         my( $c, $e) = $U->fetch_fleshed_copy($id);
507         return $e || $c;
508 }
509
510
511 __PACKAGE__->register_method(
512     method        => 'fleshed_by_barcode',
513     api_name      => "open-ils.search.asset.copy.fleshed2.find_by_barcode",
514     authoritative => 1,
515 );
516 sub fleshed_by_barcode {
517         my( $self, $conn, $barcode ) = @_;
518         my $e = new_editor();
519         my $copyid = $e->search_asset_copy(
520                 {barcode => $barcode, deleted => 'f'}, {idlist=>1})->[0]
521                 or return $e->event;
522         return fleshed_copy_retrieve2( $self, $conn, $copyid);
523 }
524
525
526 __PACKAGE__->register_method(
527     method        => "fleshed_copy_retrieve2",
528     api_name      => "open-ils.search.asset.copy.fleshed2.retrieve",
529     authoritative => 1,
530 );
531
532 sub fleshed_copy_retrieve2 { 
533         my( $self, $client, $id ) = @_;
534         my $e = new_editor();
535         my $copy = $e->retrieve_asset_copy(
536                 [
537                         $id,
538             {
539                 flesh        => 2,
540                 flesh_fields => {
541                     acp => [
542                         qw/ location status stat_cat_entry_copy_maps notes age_protect parts peer_record_maps /
543                     ],
544                     ascecm => [qw/ stat_cat stat_cat_entry /],
545                 }
546             }
547                 ]
548         ) or return $e->event;
549
550         # For backwards compatibility
551         #$copy->stat_cat_entries($copy->stat_cat_entry_copy_maps);
552
553         if( $copy->status->id == OILS_COPY_STATUS_CHECKED_OUT ) {
554                 $copy->circulations(
555                         $e->search_action_circulation( 
556                                 [       
557                                         { target_copy => $copy->id },
558                                         {
559                                                 order_by => { circ => 'xact_start desc' },
560                                                 limit => 1
561                                         }
562                                 ]
563                         )
564                 );
565         }
566
567         return $copy;
568 }
569
570
571 __PACKAGE__->register_method(
572     method        => 'flesh_copy_custom',
573     api_name      => 'open-ils.search.asset.copy.fleshed.custom',
574     authoritative => 1,
575 );
576
577 sub flesh_copy_custom {
578         my( $self, $conn, $copyid, $fields ) = @_;
579         my $e = new_editor();
580         my $copy = $e->retrieve_asset_copy(
581                 [
582                         $copyid,
583                         { 
584                                 flesh                           => 1,
585                                 flesh_fields    => { 
586                                         acp => $fields,
587                                 }
588                         }
589                 ]
590         ) or return $e->event;
591         return $copy;
592 }
593
594
595 __PACKAGE__->register_method(
596     method   => "biblio_barcode_to_title",
597     api_name => "open-ils.search.biblio.find_by_barcode",
598 );
599
600 sub biblio_barcode_to_title {
601         my( $self, $client, $barcode ) = @_;
602
603         my $title = $apputils->simple_scalar_request(
604                 "open-ils.storage",
605                 "open-ils.storage.biblio.record_entry.retrieve_by_barcode", $barcode );
606
607         return { ids => [ $title->id ], count => 1 } if $title;
608         return { count => 0 };
609 }
610
611 __PACKAGE__->register_method(
612     method        => 'title_id_by_item_barcode',
613     api_name      => 'open-ils.search.bib_id.by_barcode',
614     authoritative => 1,
615     signature => { 
616         desc   => 'Retrieve bib record id associated with the copy identified by the given barcode',
617         params => [
618             { desc => 'Item barcode', type => 'string' }
619         ],
620         return => {
621             desc => 'Bib record id.'
622         }
623     }
624 );
625
626 __PACKAGE__->register_method(
627     method        => 'title_id_by_item_barcode',
628     api_name      => 'open-ils.search.multi_home.bib_ids.by_barcode',
629     authoritative => 1,
630     signature => {
631         desc   => 'Retrieve bib record ids associated with the copy identified by the given barcode.  This includes peer bibs for Multi-Home items.',
632         params => [
633             { desc => 'Item barcode', type => 'string' }
634         ],
635         return => {
636             desc => 'Array of bib record ids.  First element is the native bib for the item.'
637         }
638     }
639 );
640
641
642 sub title_id_by_item_barcode {
643     my( $self, $conn, $barcode ) = @_;
644     my $e = new_editor();
645     my $copies = $e->search_asset_copy(
646         [
647             { deleted => 'f', barcode => $barcode },
648             {
649                 flesh => 2,
650                 flesh_fields => {
651                     acp => [ 'call_number' ],
652                     acn => [ 'record' ]
653                 }
654             }
655         ]
656     );
657
658     return $e->event unless @$copies;
659
660     if( $self->api_name =~ /multi_home/ ) {
661         my $multi_home_list = $e->search_biblio_peer_bib_copy_map(
662             [
663                 { target_copy => $$copies[0]->id }
664             ]
665         );
666         my @temp =  map { $_->peer_record } @{ $multi_home_list };
667         unshift @temp, $$copies[0]->call_number->record->id;
668         return \@temp;
669     } else {
670         return $$copies[0]->call_number->record->id;
671     }
672 }
673
674 __PACKAGE__->register_method(
675     method        => 'find_peer_bibs',
676     api_name      => 'open-ils.search.peer_bibs.test',
677     authoritative => 1,
678     signature => {
679         desc   => 'Tests to see if the specified record is a peer record.',
680         params => [
681             { desc => 'Biblio record entry Id', type => 'number' }
682         ],
683         return => {
684             desc => 'True if specified id can be found in biblio.peer_bib_copy_map.peer_record.',
685             type => 'bool'
686         }
687     }
688 );
689
690 __PACKAGE__->register_method(
691     method        => 'find_peer_bibs',
692     api_name      => 'open-ils.search.peer_bibs',
693     authoritative => 1,
694     signature => {
695         desc   => 'Return acps and mvrs for multi-home items linked to specified peer record.',
696         params => [
697             { desc => 'Biblio record entry Id', type => 'number' }
698         ],
699         return => {
700             desc => '{ records => Array of mvrs, items => array of acps }',
701         }
702     }
703 );
704
705
706 sub find_peer_bibs {
707         my( $self, $client, $doc_id ) = @_;
708     my $e = new_editor();
709
710     my $multi_home_list = $e->search_biblio_peer_bib_copy_map(
711         [
712             { peer_record => $doc_id },
713             {
714                 flesh => 2,
715                 flesh_fields => {
716                     bpbcm => [ 'target_copy', 'peer_type' ],
717                     acp => [ 'call_number', 'location', 'status', 'peer_record_maps' ]
718                 }
719             }
720         ]
721     );
722
723     if ($self->api_name =~ /test/) {
724         return scalar( @{$multi_home_list} ) > 0 ? 1 : 0;
725     }
726
727     if (scalar(@{$multi_home_list})==0) {
728         return [];
729     }
730
731     # create a unique hash of the primary record MVRs for foreign copies
732     # XXX PLEASE let's change to unAPI2 (supports foreign copies) in the TT opac?!?
733     my %rec_hash = map {
734         ($_->target_copy->call_number->record, _records_to_mods( $_->target_copy->call_number->record )->[0])
735     } @$multi_home_list;
736
737     # set the foreign_copy_maps field to an empty array
738     map { $rec_hash{$_}->foreign_copy_maps([]) } keys( %rec_hash );
739
740     # push the maps onto the correct MVRs
741     for (@$multi_home_list) {
742         push(
743             @{$rec_hash{ $_->target_copy->call_number->record }->foreign_copy_maps()},
744             $_
745         );
746     }
747
748     return [sort {$a->title cmp $b->title} values(%rec_hash)];
749 };
750
751 __PACKAGE__->register_method(
752     method   => "biblio_copy_to_mods",
753     api_name => "open-ils.search.biblio.copy.mods.retrieve",
754 );
755
756 # takes a copy object and returns it fleshed mods object
757 sub biblio_copy_to_mods {
758         my( $self, $client, $copy ) = @_;
759
760         my $volume = $U->cstorereq( 
761                 "open-ils.cstore.direct.asset.call_number.retrieve",
762                 $copy->call_number() );
763
764         my $mods = _records_to_mods($volume->record());
765         $mods = shift @$mods;
766         $volume->copies([$copy]);
767         push @{$mods->call_numbers()}, $volume;
768
769         return $mods;
770 }
771
772
773 =head1 NAME
774
775 OpenILS::Application::Search::Biblio
776
777 =head1 DESCRIPTION
778
779 =head2 API METHODS
780
781 =head3 open-ils.search.biblio.multiclass.query (arghash, query, docache)
782
783 For arghash and docache, see B<open-ils.search.biblio.multiclass>.
784
785 The query argument is a string, but built like a hash with key: value pairs.
786 Recognized search keys include: 
787
788  keyword (kw) - search keyword(s) *
789  author  (au) - search author(s)  *
790  name    (au) - same as author    *
791  title   (ti) - search title      *
792  subject (su) - search subject    *
793  series  (se) - search series     *
794  lang - limit by language (specify multiple langs with lang:l1 lang:l2 ...)
795  site - search at specified org unit, corresponds to actor.org_unit.shortname
796  pref_ou - extend search to specified org unit, corresponds to actor.org_unit.shortname
797  sort - sort type (title, author, pubdate)
798  dir  - sort direction (asc, desc)
799  available - if set to anything other than "false" or "0", limits to available items
800
801 * Searching keyword, author, title, subject, and series supports additional search 
802 subclasses, specified with a "|".  For example, C<title|proper:gone with the wind>.
803
804 For more, see B<config.metabib_field>.
805
806 =cut
807
808 foreach (qw/open-ils.search.biblio.multiclass.query
809             open-ils.search.biblio.multiclass.query.staff
810             open-ils.search.metabib.multiclass.query
811             open-ils.search.metabib.multiclass.query.staff/)
812 {
813 __PACKAGE__->register_method(
814     api_name  => $_,
815     method    => 'multiclass_query',
816     signature => {
817         desc   => 'Perform a search query.  The .staff version of the call includes otherwise hidden hits.',
818         params => [
819             {name => 'arghash', desc => 'Arg hash (see open-ils.search.biblio.multiclass)',         type => 'object'},
820             {name => 'query',   desc => 'Raw human-readable query (see perldoc '. __PACKAGE__ .')', type => 'string'},
821             {name => 'docache', desc => 'Flag for caching (see open-ils.search.biblio.multiclass)', type => 'object'},
822         ],
823         return => {
824             desc => 'Search results from query, like: { "count" : $count, "ids" : [ [ $id, $relevancy, $total ], ...] }',
825             type => 'object',       # TODO: update as miker's new elements are included
826         }
827     }
828 );
829 }
830
831 sub multiclass_query {
832     my($self, $conn, $arghash, $query, $docache) = @_;
833
834     $logger->debug("initial search query => $query");
835     my $orig_query = $query;
836
837     $query =~ s/\+/ /go;
838     $query =~ s/^\s+//go;
839
840     # convert convenience classes (e.g. kw for keyword) to the full class name
841     # ensure that the convenience class isn't part of a word (e.g. 'playhouse')
842     $query =~ s/(^|\s)kw(:|\|)/$1keyword$2/go;
843     $query =~ s/(^|\s)ti(:|\|)/$1title$2/go;
844     $query =~ s/(^|\s)au(:|\|)/$1author$2/go;
845     $query =~ s/(^|\s)su(:|\|)/$1subject$2/go;
846     $query =~ s/(^|\s)se(:|\|)/$1series$2/go;
847     $query =~ s/(^|\s)name(:|\|)/$1author$2/og;
848
849     $logger->debug("cleansed query string => $query");
850     my $search = {};
851
852     my $simple_class_re  = qr/((?:\w+(?:\|\w+)?):[^:]+?)$/;
853     my $class_list_re    = qr/(?:keyword|title|author|subject|series)/;
854     my $modifier_list_re = qr/(?:site|dir|sort|lang|available|preflib)/;
855
856     my $tmp_value = '';
857     while ($query =~ s/$simple_class_re//so) {
858
859         my $qpart = $1;
860         my $where = index($qpart,':');
861         my $type  = substr($qpart, 0, $where++);
862         my $value = substr($qpart, $where);
863
864         if ($type !~ /^(?:$class_list_re|$modifier_list_re)/o) {
865             $tmp_value = "$qpart $tmp_value";
866             next;
867         }
868
869         if ($type =~ /$class_list_re/o ) {
870             $value .= $tmp_value;
871             $tmp_value = '';
872         }
873
874         next unless $type and $value;
875
876         $value =~ s/^\s*//og;
877         $value =~ s/\s*$//og;
878         $type = 'sort_dir' if $type eq 'dir';
879
880         if($type eq 'site') {
881             # 'site' is the org shortname.  when using this, we also want 
882             # to search at the requested org's depth
883             my $e = new_editor();
884             if(my $org = $e->search_actor_org_unit({shortname => $value})->[0]) {
885                 $arghash->{org_unit} = $org->id if $org;
886                 $arghash->{depth} = $e->retrieve_actor_org_unit_type($org->ou_type)->depth;
887             } else {
888                 $logger->warn("'site:' query used on invalid org shortname: $value ... ignoring");
889             }
890         } elsif($type eq 'pref_ou') {
891             # 'pref_ou' is the preferred org shortname.
892             my $e = new_editor();
893             if(my $org = $e->search_actor_org_unit({shortname => $value})->[0]) {
894                 $arghash->{pref_ou} = $org->id if $org;
895             } else {
896                 $logger->warn("'pref_ou:' query used on invalid org shortname: $value ... ignoring");
897             }
898
899         } elsif($type eq 'available') {
900             # limit to available
901             $arghash->{available} = 1 unless $value eq 'false' or $value eq '0';
902
903         } elsif($type eq 'lang') {
904             # collect languages into an array of languages
905             $arghash->{language} = [] unless $arghash->{language};
906             push(@{$arghash->{language}}, $value);
907
908         } elsif($type =~ /^sort/o) {
909             # sort and sort_dir modifiers
910             $arghash->{$type} = $value;
911
912         } else {
913             # append the search term to the term under construction
914             $search->{$type} =  {} unless $search->{$type};
915             $search->{$type}->{term} =  
916                 ($search->{$type}->{term}) ? $search->{$type}->{term} . " $value" : $value;
917         }
918     }
919
920     $query .= " $tmp_value";
921     $query =~ s/\s+/ /go;
922     $query =~ s/^\s+//go;
923     $query =~ s/\s+$//go;
924
925     my $type = $arghash->{default_class} || 'keyword';
926     $type = ($type eq '-') ? 'keyword' : $type;
927     $type = ($type !~ /^(title|author|keyword|subject|series)(?:\|\w+)?$/o) ? 'keyword' : $type;
928
929     if($query) {
930         # This is the front part of the string before any special tokens were
931         # parsed OR colon-separated strings that do not denote a class.
932         # Add this data to the default search class
933         $search->{$type} =  {} unless $search->{$type};
934         $search->{$type}->{term} =
935             ($search->{$type}->{term}) ? $search->{$type}->{term} . " $query" : $query;
936     }
937     my $real_search = $arghash->{searches} = { $type => { term => $orig_query } };
938
939     # capture the original limit because the search method alters the limit internally
940     my $ol = $arghash->{limit};
941
942         my $sclient = OpenSRF::Utils::SettingsClient->new;
943
944     (my $method = $self->api_name) =~ s/\.query//o;
945
946     $method =~ s/multiclass/multiclass.staged/
947         if $sclient->config_value(apps => 'open-ils.search',
948             app_settings => 'use_staged_search') =~ /true/i;
949
950     # XXX This stops the session locale from doing the right thing.
951     # XXX Revisit this and have it translate to a lang instead of a locale.
952     #$arghash->{preferred_language} = $U->get_org_locale($arghash->{org_unit})
953     #    unless $arghash->{preferred_language};
954
955         $method = $self->method_lookup($method);
956     my ($data) = $method->run($arghash, $docache);
957
958     $arghash->{searches} = $search if (!$data->{complex_query});
959
960     $arghash->{limit} = $ol if $ol;
961     $data->{compiled_search} = $arghash;
962     $data->{query} = $orig_query;
963
964     $logger->info("compiled search is " . OpenSRF::Utils::JSON->perl2JSON($arghash));
965
966     return $data;
967 }
968
969 __PACKAGE__->register_method(
970     method    => 'cat_search_z_style_wrapper',
971     api_name  => 'open-ils.search.biblio.zstyle',
972     stream    => 1,
973     signature => q/@see open-ils.search.biblio.multiclass/
974 );
975
976 __PACKAGE__->register_method(
977     method    => 'cat_search_z_style_wrapper',
978     api_name  => 'open-ils.search.biblio.zstyle.staff',
979     stream    => 1,
980     signature => q/@see open-ils.search.biblio.multiclass/
981 );
982
983 sub cat_search_z_style_wrapper {
984         my $self = shift;
985         my $client = shift;
986         my $authtoken = shift;
987         my $args = shift;
988
989         my $cstore = OpenSRF::AppSession->connect('open-ils.cstore');
990
991         my $ou = $cstore->request(
992                 'open-ils.cstore.direct.actor.org_unit.search',
993                 { parent_ou => undef }
994         )->gather(1);
995
996         my $result = { service => 'native-evergreen-catalog', records => [] };
997         my $searchhash = { limit => $$args{limit}, offset => $$args{offset}, org_unit => $ou->id };
998
999         $$searchhash{searches}{title}{term}   = $$args{search}{title}   if $$args{search}{title};
1000         $$searchhash{searches}{author}{term}  = $$args{search}{author}  if $$args{search}{author};
1001         $$searchhash{searches}{subject}{term} = $$args{search}{subject} if $$args{search}{subject};
1002         $$searchhash{searches}{keyword}{term} = $$args{search}{keyword} if $$args{search}{keyword};
1003         $$searchhash{searches}{'identifier|isbn'}{term} = $$args{search}{isbn} if $$args{search}{isbn};
1004         $$searchhash{searches}{'identifier|issn'}{term} = $$args{search}{issn} if $$args{search}{issn};
1005
1006         $$searchhash{searches}{keyword}{term} .= join ' ', $$searchhash{searches}{keyword}{term}, $$args{search}{tcn}       if $$args{search}{tcn};
1007         $$searchhash{searches}{keyword}{term} .= join ' ', $$searchhash{searches}{keyword}{term}, $$args{search}{publisher} if $$args{search}{publisher};
1008         $$searchhash{searches}{keyword}{term} .= join ' ', $$searchhash{searches}{keyword}{term}, $$args{search}{pubdate}   if $$args{search}{pubdate};
1009         $$searchhash{searches}{keyword}{term} .= join ' ', $$searchhash{searches}{keyword}{term}, $$args{search}{item_type} if $$args{search}{item_type};
1010
1011         my $list = the_quest_for_knowledge( $self, $client, $searchhash );
1012
1013         if ($list->{count} > 0 and @{$list->{ids}}) {
1014                 $result->{count} = $list->{count};
1015
1016                 my $records = $cstore->request(
1017                         'open-ils.cstore.direct.biblio.record_entry.search.atomic',
1018                         { id => [ map { ( $_->[0] ) } @{$list->{ids}} ] }
1019                 )->gather(1);
1020
1021                 for my $rec ( @$records ) {
1022                         
1023                         my $u = OpenILS::Utils::ModsParser->new();
1024                         $u->start_mods_batch( $rec->marc );
1025                         my $mods = $u->finish_mods_batch();
1026
1027                         push @{ $result->{records} }, { mvr => $mods, marcxml => $rec->marc, bibid => $rec->id };
1028
1029                 }
1030
1031         }
1032
1033     $cstore->disconnect();
1034         return $result;
1035 }
1036
1037 # ----------------------------------------------------------------------------
1038 # These are the main OPAC search methods
1039 # ----------------------------------------------------------------------------
1040
1041 __PACKAGE__->register_method(
1042     method    => 'the_quest_for_knowledge',
1043     api_name  => 'open-ils.search.biblio.multiclass',
1044     signature => {
1045         desc => "Performs a multi class biblio or metabib search",
1046         params => [
1047             {
1048                 desc => "A search hash with keys: "
1049                       . "searches, org_unit, depth, limit, offset, format, sort, sort_dir.  "
1050                       . "See perldoc " . __PACKAGE__ . " for more detail",
1051                 type => 'object',
1052             },
1053             {
1054                 desc => "A flag to enable/disable searching and saving results in cache (default OFF)",
1055                 type => 'string',
1056             }
1057         ],
1058         return => {
1059             desc => 'An object of the form: '
1060                   . '{ "count" : $count, "ids" : [ [ $id, $relevancy, $total ], ...] }',
1061         }
1062     }
1063 );
1064
1065 =head3 open-ils.search.biblio.multiclass (search-hash, docache)
1066
1067 The search-hash argument can have the following elements:
1068
1069     searches: { "$class" : "$value", ...}           [REQUIRED]
1070     org_unit: The org id to focus the search at
1071     depth   : The org depth     
1072     limit   : The search limit      default: 10
1073     offset  : The search offset     default:  0
1074     format  : The MARC format
1075     sort    : What field to sort the results on? [ author | title | pubdate ]
1076     sort_dir: What direction do we sort? [ asc | desc ]
1077     tag_circulated_records : Boolean, if true, records that are in the user's visible checkout history
1078         will be tagged with an additional value ("1") as the last value in the record ID array for
1079         each record.  Requires the 'authtoken'
1080     authtoken : Authentication token string;  When actions are performed that require a user login
1081         (e.g. tagging circulated records), the authentication token is required
1082
1083 The searches element is required, must have a hashref value, and the hashref must contain at least one 
1084 of the following classes as a key:
1085
1086     title
1087     author
1088     subject
1089     series
1090     keyword
1091
1092 The value paired with a key is the associated search string.
1093
1094 The docache argument enables/disables searching and saving results in cache (default OFF).
1095
1096 The return object, if successful, will look like:
1097
1098     { "count" : $count, "ids" : [ [ $id, $relevancy, $total ], ...] }
1099
1100 =cut
1101
1102 __PACKAGE__->register_method(
1103     method    => 'the_quest_for_knowledge',
1104     api_name  => 'open-ils.search.biblio.multiclass.staff',
1105     signature => q/The .staff search includes hidden bibs, hidden items and bibs with no items.  Otherwise, @see open-ils.search.biblio.multiclass/
1106 );
1107 __PACKAGE__->register_method(
1108     method    => 'the_quest_for_knowledge',
1109     api_name  => 'open-ils.search.metabib.multiclass',
1110     signature => q/@see open-ils.search.biblio.multiclass/
1111 );
1112 __PACKAGE__->register_method(
1113     method    => 'the_quest_for_knowledge',
1114     api_name  => 'open-ils.search.metabib.multiclass.staff',
1115     signature => q/The .staff search includes hidden bibs, hidden items and bibs with no items.  Otherwise, @see open-ils.search.biblio.multiclass/
1116 );
1117
1118 sub the_quest_for_knowledge {
1119         my( $self, $conn, $searchhash, $docache ) = @_;
1120
1121         return { count => 0 } unless $searchhash and
1122                 ref $searchhash->{searches} eq 'HASH';
1123
1124         my $method = 'open-ils.storage.biblio.multiclass.search_fts';
1125         my $ismeta = 0;
1126         my @recs;
1127
1128         if($self->api_name =~ /metabib/) {
1129                 $ismeta = 1;
1130                 $method =~ s/biblio/metabib/o;
1131         }
1132
1133         # do some simple sanity checking
1134         if(!$searchhash->{searches} or
1135                 ( !grep { /^(?:title|author|subject|series|keyword|identifier\|is[bs]n)/ } keys %{$searchhash->{searches}} ) ) {
1136                 return { count => 0 };
1137         }
1138
1139     my $offset = $searchhash->{offset} ||  0;   # user value or default in local var now
1140     my $limit  = $searchhash->{limit}  || 10;   # user value or default in local var now
1141     my $end    = $offset + $limit - 1;
1142
1143         my $maxlimit = 5000;
1144     $searchhash->{offset} = 0;                  # possible user value overwritten in hash
1145     $searchhash->{limit}  = $maxlimit;          # possible user value overwritten in hash
1146
1147         return { count => 0 } if $offset > $maxlimit;
1148
1149         my @search;
1150         push( @search, ($_ => $$searchhash{$_})) for (sort keys %$searchhash);
1151         my $s = OpenSRF::Utils::JSON->perl2JSON(\@search);
1152         my $ckey = $pfx . md5_hex($method . $s);
1153
1154         $logger->info("bib search for: $s");
1155
1156         $searchhash->{limit} -= $offset;
1157
1158
1159     my $trim = 0;
1160         my $result = ($docache) ? search_cache($ckey, $offset, $limit) : undef;
1161
1162         if(!$result) {
1163
1164                 $method .= ".staff" if($self->api_name =~ /staff/);
1165                 $method .= ".atomic";
1166         
1167                 for (keys %$searchhash) { 
1168                         delete $$searchhash{$_} 
1169                                 unless defined $$searchhash{$_}; 
1170                 }
1171         
1172                 $result = $U->storagereq( $method, %$searchhash );
1173         $trim = 1;
1174
1175         } else { 
1176                 $docache = 0;   # results came FROM cache, so we don't write back
1177         }
1178
1179         return {count => 0} unless ($result && $$result[0]);
1180
1181         @recs = @$result;
1182
1183         my $count = ($ismeta) ? $result->[0]->[3] : $result->[0]->[2];
1184
1185         if($docache) {
1186                 # If we didn't get this data from the cache, put it into the cache
1187                 # then return the correct offset of records
1188                 $logger->debug("putting search cache $ckey\n");
1189                 put_cache($ckey, $count, \@recs);
1190         }
1191
1192     if($trim) {
1193         # if we have the full set of data, trim out 
1194         # the requested chunk based on limit and offset
1195         my @t;
1196         for ($offset..$end) {
1197             last unless $recs[$_];
1198             push(@t, $recs[$_]);
1199         }
1200         @recs = @t;
1201     }
1202
1203         return { ids => \@recs, count => $count };
1204 }
1205
1206
1207 __PACKAGE__->register_method(
1208     method    => 'staged_search',
1209     api_name  => 'open-ils.search.biblio.multiclass.staged',
1210     signature => {
1211         desc   => 'Staged search filters out unavailable items.  This means that it relies on an estimation strategy for determining ' .
1212                   'how big a "raw" search result chunk (i.e. a "superpage") to obtain prior to filtering.  See "estimation_strategy" in your SRF config.',
1213         params => [
1214             {
1215                 desc => "A search hash with keys: "
1216                       . "searches, limit, offset.  The others are optional, but the 'searches' key/value pair is required, with the value being a hashref.  "
1217                       . "See perldoc " . __PACKAGE__ . " for more detail",
1218                 type => 'object',
1219             },
1220             {
1221                 desc => "A flag to enable/disable searching and saving results in cache, including facets (default OFF)",
1222                 type => 'string',
1223             }
1224         ],
1225         return => {
1226             desc => 'Hash with keys: count, core_limit, superpage_size, superpage_summary, facet_key, ids.  '
1227                   . 'The superpage_summary value is a hashref that includes keys: estimated_hit_count, visible.',
1228             type => 'object',
1229         }
1230     }
1231 );
1232 __PACKAGE__->register_method(
1233     method    => 'staged_search',
1234     api_name  => 'open-ils.search.biblio.multiclass.staged.staff',
1235     signature => q/The .staff search includes hidden bibs, hidden items and bibs with no items.  Otherwise, @see open-ils.search.biblio.multiclass.staged/
1236 );
1237 __PACKAGE__->register_method(
1238     method    => 'staged_search',
1239     api_name  => 'open-ils.search.metabib.multiclass.staged',
1240     signature => q/@see open-ils.search.biblio.multiclass.staged/
1241 );
1242 __PACKAGE__->register_method(
1243     method    => 'staged_search',
1244     api_name  => 'open-ils.search.metabib.multiclass.staged.staff',
1245     signature => q/The .staff search includes hidden bibs, hidden items and bibs with no items.  Otherwise, @see open-ils.search.biblio.multiclass.staged/
1246 );
1247
1248 sub staged_search {
1249         my($self, $conn, $search_hash, $docache) = @_;
1250
1251     my $IAmMetabib = ($self->api_name =~ /metabib/) ? 1 : 0;
1252
1253     my $method = $IAmMetabib?
1254         'open-ils.storage.metabib.multiclass.staged.search_fts':
1255         'open-ils.storage.biblio.multiclass.staged.search_fts';
1256
1257     $method .= '.staff' if $self->api_name =~ /staff$/;
1258     $method .= '.atomic';
1259                 
1260     return {count => 0} unless (
1261         $search_hash and 
1262         $search_hash->{searches} and 
1263         scalar( keys %{$search_hash->{searches}} ));
1264
1265     my $search_duration;
1266     my $user_offset = $search_hash->{offset} ||  0; # user-specified offset
1267     my $user_limit  = $search_hash->{limit}  || 10;
1268     my $ignore_facet_classes  = $search_hash->{ignore_facet_classes};
1269     $user_offset = ($user_offset >= 0) ? $user_offset :  0;
1270     $user_limit  = ($user_limit  >= 0) ? $user_limit  : 10;
1271
1272
1273     # we're grabbing results on a per-superpage basis, which means the 
1274     # limit and offset should coincide with superpage boundaries
1275     $search_hash->{offset} = 0;
1276     $search_hash->{limit} = $superpage_size;
1277
1278     # force a well-known check_limit
1279     $search_hash->{check_limit} = $superpage_size; 
1280     # restrict total tested to superpage size * number of superpages
1281     $search_hash->{core_limit}  = $superpage_size * $max_superpages;
1282
1283     # Set the configured estimation strategy, defaults to 'inclusion'.
1284         my $estimation_strategy = OpenSRF::Utils::SettingsClient
1285         ->new
1286         ->config_value(
1287             apps => 'open-ils.search', app_settings => 'estimation_strategy'
1288         ) || 'inclusion';
1289         $search_hash->{estimation_strategy} = $estimation_strategy;
1290
1291     # pull any existing results from the cache
1292     my $key = search_cache_key($method, $search_hash);
1293     my $facet_key = $key.'_facets';
1294     my $cache_data = $cache->get_cache($key) || {};
1295
1296     # keep retrieving results until we find enough to 
1297     # fulfill the user-specified limit and offset
1298     my $all_results = [];
1299     my $page; # current superpage
1300     my $est_hit_count = 0;
1301     my $current_page_summary = {};
1302     my $global_summary = {checked => 0, visible => 0, excluded => 0, deleted => 0, total => 0};
1303     my $is_real_hit_count = 0;
1304     my $new_ids = [];
1305
1306     for($page = 0; $page < $max_superpages; $page++) {
1307
1308         my $data = $cache_data->{$page};
1309         my $results;
1310         my $summary;
1311
1312         $logger->debug("staged search: analyzing superpage $page");
1313
1314         if($data) {
1315             # this window of results is already cached
1316             $logger->debug("staged search: found cached results");
1317             $summary = $data->{summary};
1318             $results = $data->{results};
1319
1320         } else {
1321             # retrieve the window of results from the database
1322             $logger->debug("staged search: fetching results from the database");
1323             $search_hash->{skip_check} = $page * $superpage_size;
1324             my $start = time;
1325             $results = $U->storagereq($method, %$search_hash);
1326             $search_duration = time - $start;
1327             $summary = shift(@$results) if $results;
1328
1329             unless($summary) {
1330                 $logger->info("search timed out: duration=$search_duration: params=".
1331                     OpenSRF::Utils::JSON->perl2JSON($search_hash));
1332                 return {count => 0};
1333             }
1334
1335             $logger->info("staged search: DB call took $search_duration seconds and returned ".scalar(@$results)." rows, including summary");
1336
1337             my $hc = $summary->{estimated_hit_count} || $summary->{visible};
1338             if($hc == 0) {
1339                 $logger->info("search returned 0 results: duration=$search_duration: params=".
1340                     OpenSRF::Utils::JSON->perl2JSON($search_hash));
1341             }
1342
1343             # Create backwards-compatible result structures
1344             if($IAmMetabib) {
1345                 $results = [map {[$_->{id}, $_->{rel}, $_->{record}]} @$results];
1346             } else {
1347                 $results = [map {[$_->{id}]} @$results];
1348             }
1349
1350             push @$new_ids, grep {defined($_)} map {$_->[0]} @$results;
1351             $results = [grep {defined $_->[0]} @$results];
1352             cache_staged_search_page($key, $page, $summary, $results) if $docache;
1353         }
1354
1355         tag_circulated_records($search_hash->{authtoken}, $results, $IAmMetabib) 
1356             if $search_hash->{tag_circulated_records} and $search_hash->{authtoken};
1357
1358         $current_page_summary = $summary;
1359
1360         # add the new set of results to the set under construction
1361         push(@$all_results, @$results);
1362
1363         my $current_count = scalar(@$all_results);
1364
1365         $est_hit_count = $summary->{estimated_hit_count} || $summary->{visible}
1366             if $page == 0;
1367
1368         $logger->debug("staged search: located $current_count, with estimated hits=".
1369             $summary->{estimated_hit_count}." : visible=".$summary->{visible}.", checked=".$summary->{checked});
1370
1371                 if (defined($summary->{estimated_hit_count})) {
1372             foreach (qw/ checked visible excluded deleted /) {
1373                 $global_summary->{$_} += $summary->{$_};
1374             }
1375                         $global_summary->{total} = $summary->{total};
1376                 }
1377
1378         # we've found all the possible hits
1379         last if $current_count == $summary->{visible}
1380             and not defined $summary->{estimated_hit_count};
1381
1382         # we've found enough results to satisfy the requested limit/offset
1383         last if $current_count >= ($user_limit + $user_offset);
1384
1385         # we've scanned all possible hits
1386         if($summary->{checked} < $superpage_size) {
1387             $est_hit_count = scalar(@$all_results);
1388             # we have all possible results in hand, so we know the final hit count
1389             $is_real_hit_count = 1;
1390             last;
1391         }
1392     }
1393
1394     my @results = grep {defined $_} @$all_results[$user_offset..($user_offset + $user_limit - 1)];
1395
1396         # refine the estimate if we have more than one superpage
1397         if ($page > 0 and not $is_real_hit_count) {
1398                 if ($global_summary->{checked} >= $global_summary->{total}) {
1399                         $est_hit_count = $global_summary->{visible};
1400                 } else {
1401                         my $updated_hit_count = $U->storagereq(
1402                                 'open-ils.storage.fts_paging_estimate',
1403                                 $global_summary->{checked},
1404                                 $global_summary->{visible},
1405                                 $global_summary->{excluded},
1406                                 $global_summary->{deleted},
1407                                 $global_summary->{total}
1408                         );
1409                         $est_hit_count = $updated_hit_count->{$estimation_strategy};
1410                 }
1411         }
1412
1413     $conn->respond_complete(
1414         {
1415             count             => $est_hit_count,
1416             core_limit        => $search_hash->{core_limit},
1417             superpage_size    => $search_hash->{check_limit},
1418             superpage_summary => $current_page_summary,
1419             facet_key         => $facet_key,
1420             ids               => \@results
1421         }
1422     );
1423
1424     cache_facets($facet_key, $new_ids, $IAmMetabib, $ignore_facet_classes) if $docache;
1425
1426     return undef;
1427 }
1428
1429 sub tag_circulated_records {
1430     my ($auth, $results, $metabib) = @_;
1431     my $e = new_editor(authtoken => $auth);
1432     return $results unless $e->checkauth;
1433
1434     my $query = {
1435         select   => { acn => [{ column => 'record', alias => 'tagme' }] }, 
1436         from     => { acp => 'acn' }, 
1437         where    => { id => { in => { from => ['action.usr_visible_circ_copies', $e->requestor->id] } } },
1438         distinct => 1
1439     };
1440
1441     if ($metabib) {
1442         $query = {
1443             select   => { mmsm => [{ column => 'metarecord', alias => 'tagme' }] },
1444             from     => 'mmsm',
1445             where    => { source => { in => $query } },
1446             distinct => 1
1447         };
1448     }
1449
1450     # Give me the distinct set of bib records that exist in the user's visible circulation history
1451     my $circ_recs = $e->json_query( $query );
1452
1453     # if the record appears in the circ history, push a 1 onto 
1454     # the rec array structure to indicate truthiness
1455     for my $rec (@$results) {
1456         push(@$rec, 1) if grep { $_->{tagme} eq $$rec[0] } @$circ_recs;
1457     }
1458
1459     $results
1460 }
1461
1462 # creates a unique token to represent the query in the cache
1463 sub search_cache_key {
1464     my $method = shift;
1465     my $search_hash = shift;
1466         my @sorted;
1467     for my $key (sort keys %$search_hash) {
1468             push(@sorted, ($key => $$search_hash{$key})) 
1469             unless $key eq 'limit'  or 
1470                    $key eq 'offset' or 
1471                    $key eq 'skip_check';
1472     }
1473         my $s = OpenSRF::Utils::JSON->perl2JSON(\@sorted);
1474         return $pfx . md5_hex($method . $s);
1475 }
1476
1477 sub retrieve_cached_facets {
1478     my $self   = shift;
1479     my $client = shift;
1480     my $key    = shift;
1481     my $limit    = shift;
1482
1483     return undef unless ($key and $key =~ /_facets$/);
1484
1485     my $blob = $cache->get_cache($key) || {};
1486
1487     my $facets = {};
1488     if ($limit) {
1489        for my $f ( keys %$blob ) {
1490             my @sorted = map{ { $$_[1] => $$_[0] } } sort {$$b[0] <=> $$a[0] || $$a[1] cmp $$b[1]} map { [$$blob{$f}{$_}, $_] } keys %{ $$blob{$f} };
1491             @sorted = @sorted[0 .. $limit - 1] if (scalar(@sorted) > $limit);
1492             for my $s ( @sorted ) {
1493                 my ($k) = keys(%$s);
1494                 my ($v) = values(%$s);
1495                 $$facets{$f}{$k} = $v;
1496             }
1497         }
1498     } else {
1499         $facets = $blob;
1500     }
1501
1502     return $facets;
1503 }
1504
1505 __PACKAGE__->register_method(
1506     method   => "retrieve_cached_facets",
1507     api_name => "open-ils.search.facet_cache.retrieve",
1508     signature => {
1509         desc   => 'Returns facet data derived from a specific search based on a key '.
1510                   'generated by open-ils.search.biblio.multiclass.staged and friends.',
1511         params => [
1512             {
1513                 desc => "The facet cache key returned with the initial search as the facet_key hash value",
1514                 type => 'string',
1515             }
1516         ],
1517         return => {
1518             desc => 'Two level hash of facet values.  Top level key is the facet id defined on the config.metabib_field table.  '.
1519                     'Second level key is a string facet value.  Datum attached to each facet value is the number of distinct records, '.
1520                     'or metarecords for a metarecord search, which use that facet value and are visible to the search at the time of '.
1521                     'facet retrieval.  These counts are calculated for all superpages that have been checked for visibility.',
1522             type => 'object',
1523         }
1524     }
1525 );
1526
1527
1528 sub cache_facets {
1529     # add facets for this search to the facet cache
1530     my($key, $results, $metabib, $ignore) = @_;
1531     my $data = $cache->get_cache($key);
1532     $data ||= {};
1533
1534     return undef unless (@$results);
1535
1536     # The query we're constructing
1537     #
1538     # select  mfae.field as id,
1539     #         mfae.value,
1540     #         count(distinct mmrsm.appropriate-id-field )
1541     #   from  metabib.facet_entry mfae
1542     #         join metabib.metarecord_sourc_map mmrsm on (mfae.source = mmrsm.source)
1543     #   where mmrsm.appropriate-id-field in IDLIST
1544     #   group by 1,2;
1545
1546     my $count_field = $metabib ? 'metarecord' : 'source';
1547     my $query = {   
1548         select  => {
1549             mfae => [ { column => 'field', alias => 'id'}, 'value' ],
1550             mmrsm => [{
1551                 transform => 'count',
1552                 distinct => 1,
1553                 column => $count_field,
1554                 alias => 'count',
1555                 aggregate => 1
1556             }]
1557         },
1558         from    => {
1559             mfae => {
1560                 mmrsm => { field => 'source', fkey => 'source' },
1561                 cmf   => { field => 'id', fkey => 'field' }
1562             }
1563         },
1564         where   => {
1565             '+mmrsm' => { $count_field => $results },
1566             '+cmf'   => { facet_field => 't' }
1567         }
1568     };
1569
1570     $query->{where}->{'+cmf'}->{field_class} = {'not in' => $ignore}
1571         if ref($ignore) and @$ignore > 0;
1572
1573     my $facets = $U->cstorereq("open-ils.cstore.json_query.atomic", $query);
1574
1575     for my $facet (@$facets) {
1576         next unless ($facet->{value});
1577         $data->{$facet->{id}}->{$facet->{value}} += $facet->{count};
1578     }
1579
1580     $logger->info("facet compilation: cached with key=$key");
1581
1582     $cache->put_cache($key, $data, $cache_timeout);
1583 }
1584
1585 sub cache_staged_search_page {
1586     # puts this set of results into the cache
1587     my($key, $page, $summary, $results) = @_;
1588     my $data = $cache->get_cache($key);
1589     $data ||= {};
1590     $data->{$page} = {
1591         summary => $summary,
1592         results => $results
1593     };
1594
1595     $logger->info("staged search: cached with key=$key, superpage=$page, estimated=".
1596         $summary->{estimated_hit_count}.", visible=".$summary->{visible});
1597
1598     $cache->put_cache($key, $data, $cache_timeout);
1599 }
1600
1601 sub search_cache {
1602
1603         my $key         = shift;
1604         my $offset      = shift;
1605         my $limit       = shift;
1606         my $start       = $offset;
1607         my $end         = $offset + $limit - 1;
1608
1609         $logger->debug("searching cache for $key : $start..$end\n");
1610
1611         return undef unless $cache;
1612         my $data = $cache->get_cache($key);
1613
1614         return undef unless $data;
1615
1616         my $count = $data->[0];
1617         $data = $data->[1];
1618
1619         return undef unless $offset < $count;
1620
1621         my @result;
1622         for( my $i = $offset; $i <= $end; $i++ ) {
1623                 last unless my $d = $$data[$i];
1624                 push( @result, $d );
1625         }
1626
1627         $logger->debug("search_cache found ".scalar(@result)." items for count=$count, start=$start, end=$end");
1628
1629         return \@result;
1630 }
1631
1632
1633 sub put_cache {
1634         my( $key, $count, $data ) = @_;
1635         return undef unless $cache;
1636         $logger->debug("search_cache putting ".
1637                 scalar(@$data)." items at key $key with timeout $cache_timeout");
1638         $cache->put_cache($key, [ $count, $data ], $cache_timeout);
1639 }
1640
1641
1642 __PACKAGE__->register_method(
1643     method   => "biblio_mrid_to_modsbatch_batch",
1644     api_name => "open-ils.search.biblio.metarecord.mods_slim.batch.retrieve"
1645 );
1646
1647 sub biblio_mrid_to_modsbatch_batch {
1648         my( $self, $client, $mrids) = @_;
1649         # warn "Performing mrid_to_modsbatch_batch..."; # unconditional warn
1650         my @mods;
1651         my $method = $self->method_lookup("open-ils.search.biblio.metarecord.mods_slim.retrieve");
1652         for my $id (@$mrids) {
1653                 next unless defined $id;
1654                 my ($m) = $method->run($id);
1655                 push @mods, $m;
1656         }
1657         return \@mods;
1658 }
1659
1660
1661 foreach (qw /open-ils.search.biblio.metarecord.mods_slim.retrieve
1662              open-ils.search.biblio.metarecord.mods_slim.retrieve.staff/)
1663     {
1664     __PACKAGE__->register_method(
1665         method    => "biblio_mrid_to_modsbatch",
1666         api_name  => $_,
1667         signature => {
1668             desc   => "Returns the mvr associated with a given metarecod. If none exists, it is created.  "
1669                     . "As usual, the .staff version of this method will include otherwise hidden records.",
1670             params => [
1671                 { desc => 'Metarecord ID', type => 'number' },
1672                 { desc => '(Optional) Search filters hash with possible keys: format, org, depth', type => 'object' }
1673             ],
1674             return => {
1675                 desc => 'MVR Object, event on error',
1676             }
1677         }
1678     );
1679 }
1680
1681 sub biblio_mrid_to_modsbatch {
1682         my( $self, $client, $mrid, $args) = @_;
1683
1684         # warn "Grabbing mvr for $mrid\n";    # unconditional warn
1685
1686         my ($mr, $evt) = _grab_metarecord($mrid);
1687         return $evt unless $mr;
1688
1689         my $mvr = biblio_mrid_check_mvr($self, $client, $mr) ||
1690               biblio_mrid_make_modsbatch($self, $client, $mr);
1691
1692         return $mvr unless ref($args);  
1693
1694         # Here we find the lead record appropriate for the given filters 
1695         # and use that for the title and author of the metarecord
1696     my $format = $$args{format};
1697     my $org    = $$args{org};
1698     my $depth  = $$args{depth};
1699
1700         return $mvr unless $format or $org or $depth;
1701
1702         my $method = "open-ils.storage.ordered.metabib.metarecord.records";
1703         $method = "$method.staff" if $self->api_name =~ /staff/o; 
1704
1705         my $rec = $U->storagereq($method, $format, $org, $depth, 1);
1706
1707         if( my $mods = $U->record_to_mvr($rec) ) {
1708
1709         $mvr->title( $mods->title );
1710         $mvr->author($mods->author);
1711                 $logger->debug("mods_slim updating title and ".
1712                         "author in mvr with ".$mods->title." : ".$mods->author);
1713         }
1714
1715         return $mvr;
1716 }
1717
1718 # converts a metarecord to an mvr
1719 sub _mr_to_mvr {
1720         my $mr = shift;
1721         my $perl = OpenSRF::Utils::JSON->JSON2perl($mr->mods());
1722         return Fieldmapper::metabib::virtual_record->new($perl);
1723 }
1724
1725 # checks to see if a metarecord has mods, if so returns true;
1726
1727 __PACKAGE__->register_method(
1728     method   => "biblio_mrid_check_mvr",
1729     api_name => "open-ils.search.biblio.metarecord.mods_slim.check",
1730     notes    => "Takes a metarecord ID or a metarecord object and returns true "
1731               . "if the metarecord already has an mvr associated with it."
1732 );
1733
1734 sub biblio_mrid_check_mvr {
1735         my( $self, $client, $mrid ) = @_;
1736         my $mr; 
1737
1738         my $evt;
1739         if(ref($mrid)) { $mr = $mrid; } 
1740         else { ($mr, $evt) = _grab_metarecord($mrid); }
1741         return $evt if $evt;
1742
1743         # warn "Checking mvr for mr " . $mr->id . "\n";   # unconditional warn
1744
1745         return _mr_to_mvr($mr) if $mr->mods();
1746         return undef;
1747 }
1748
1749 sub _grab_metarecord {
1750         my $mrid = shift;
1751         #my $e = OpenILS::Utils::Editor->new;
1752         my $e = new_editor();
1753         my $mr = $e->retrieve_metabib_metarecord($mrid) or return ( undef, $e->event );
1754         return ($mr);
1755 }
1756
1757
1758 __PACKAGE__->register_method(
1759     method   => "biblio_mrid_make_modsbatch",
1760     api_name => "open-ils.search.biblio.metarecord.mods_slim.create",
1761     notes    => "Takes either a metarecord ID or a metarecord object. "
1762               . "Forces the creations of an mvr for the given metarecord. "
1763               . "The created mvr is returned."
1764 );
1765
1766 sub biblio_mrid_make_modsbatch {
1767         my( $self, $client, $mrid ) = @_;
1768
1769         #my $e = OpenILS::Utils::Editor->new;
1770         my $e = new_editor();
1771
1772         my $mr;
1773         if( ref($mrid) ) {
1774                 $mr = $mrid;
1775                 $mrid = $mr->id;
1776         } else {
1777                 $mr = $e->retrieve_metabib_metarecord($mrid) 
1778                         or return $e->event;
1779         }
1780
1781         my $masterid = $mr->master_record;
1782         $logger->info("creating new mods batch for metarecord=$mrid, master record=$masterid");
1783
1784         my $ids = $U->storagereq(
1785                 'open-ils.storage.ordered.metabib.metarecord.records.staff.atomic', $mrid);
1786         return undef unless @$ids;
1787
1788         my $master = $e->retrieve_biblio_record_entry($masterid)
1789                 or return $e->event;
1790
1791         # start the mods batch
1792         my $u = OpenILS::Utils::ModsParser->new();
1793         $u->start_mods_batch( $master->marc );
1794
1795         # grab all of the sub-records and shove them into the batch
1796         my @ids = grep { $_ ne $masterid } @$ids;
1797         #my $subrecs = (@ids) ? $e->batch_retrieve_biblio_record_entry(\@ids) : [];
1798
1799         my $subrecs = [];
1800         if(@$ids) {
1801                 for my $i (@$ids) {
1802                         my $r = $e->retrieve_biblio_record_entry($i);
1803                         push( @$subrecs, $r ) if $r;
1804                 }
1805         }
1806
1807         for(@$subrecs) {
1808                 $logger->debug("adding record ".$_->id." to mods batch for metarecord=$mrid");
1809                 $u->push_mods_batch( $_->marc ) if $_->marc;
1810         }
1811
1812
1813         # finish up and send to the client
1814         my $mods = $u->finish_mods_batch();
1815         $mods->doc_id($mrid);
1816         $client->respond_complete($mods);
1817
1818
1819         # now update the mods string in the db
1820         my $string = OpenSRF::Utils::JSON->perl2JSON($mods->decast);
1821         $mr->mods($string);
1822
1823         #$e = OpenILS::Utils::Editor->new(xact => 1);
1824         $e = new_editor(xact => 1);
1825         $e->update_metabib_metarecord($mr) 
1826                 or $logger->error("Error setting mods text on metarecord $mrid : " . Dumper($e->event));
1827         $e->finish;
1828
1829         return undef;
1830 }
1831
1832
1833 # converts a mr id into a list of record ids
1834
1835 foreach (qw/open-ils.search.biblio.metarecord_to_records
1836             open-ils.search.biblio.metarecord_to_records.staff/)
1837 {
1838     __PACKAGE__->register_method(
1839         method    => "biblio_mrid_to_record_ids",
1840         api_name  => $_,
1841         signature => {
1842             desc   => "Fetch record IDs corresponding to a meta-record ID, with optional search filters. "
1843                     . "As usual, the .staff version of this method will include otherwise hidden records.",
1844             params => [
1845                 { desc => 'Metarecord ID', type => 'number' },
1846                 { desc => '(Optional) Search filters hash with possible keys: format, org, depth', type => 'object' }
1847             ],
1848             return => {
1849                 desc => 'Results object like {count => $i, ids =>[...]}',
1850                 type => 'object'
1851             }
1852             
1853         }
1854     );
1855 }
1856
1857 sub biblio_mrid_to_record_ids {
1858         my( $self, $client, $mrid, $args ) = @_;
1859
1860     my $format = $$args{format};
1861     my $org    = $$args{org};
1862     my $depth  = $$args{depth};
1863
1864         my $method = "open-ils.storage.ordered.metabib.metarecord.records.atomic";
1865         $method =~ s/atomic/staff\.atomic/o if $self->api_name =~ /staff/o; 
1866         my $recs = $U->storagereq($method, $mrid, $format, $org, $depth);
1867
1868         return { count => scalar(@$recs), ids => $recs };
1869 }
1870
1871
1872 __PACKAGE__->register_method(
1873     method   => "biblio_record_to_marc_html",
1874     api_name => "open-ils.search.biblio.record.html"
1875 );
1876
1877 __PACKAGE__->register_method(
1878     method   => "biblio_record_to_marc_html",
1879     api_name => "open-ils.search.authority.to_html"
1880 );
1881
1882 # Persistent parsers and setting objects
1883 my $parser = XML::LibXML->new();
1884 my $xslt   = XML::LibXSLT->new();
1885 my $marc_sheet;
1886 my $slim_marc_sheet;
1887 my $settings_client = OpenSRF::Utils::SettingsClient->new();
1888
1889 sub biblio_record_to_marc_html {
1890         my($self, $client, $recordid, $slim, $marcxml) = @_;
1891
1892     my $sheet;
1893         my $dir = $settings_client->config_value("dirs", "xsl");
1894
1895     if($slim) {
1896         unless($slim_marc_sheet) {
1897                     my $xsl = $settings_client->config_value(
1898                             "apps", "open-ils.search", "app_settings", 'marc_html_xsl_slim');
1899             if($xsl) {
1900                         $xsl = $parser->parse_file("$dir/$xsl");
1901                         $slim_marc_sheet = $xslt->parse_stylesheet($xsl);
1902             }
1903         }
1904         $sheet = $slim_marc_sheet;
1905     }
1906
1907     unless($sheet) {
1908         unless($marc_sheet) {
1909             my $xsl_key = ($slim) ? 'marc_html_xsl_slim' : 'marc_html_xsl';
1910                     my $xsl = $settings_client->config_value(
1911                             "apps", "open-ils.search", "app_settings", 'marc_html_xsl');
1912                     $xsl = $parser->parse_file("$dir/$xsl");
1913                     $marc_sheet = $xslt->parse_stylesheet($xsl);
1914         }
1915         $sheet = $marc_sheet;
1916     }
1917
1918     my $record;
1919     unless($marcxml) {
1920         my $e = new_editor();
1921         if($self->api_name =~ /authority/) {
1922             $record = $e->retrieve_authority_record_entry($recordid)
1923                 or return $e->event;
1924         } else {
1925             $record = $e->retrieve_biblio_record_entry($recordid)
1926                 or return $e->event;
1927         }
1928         $marcxml = $record->marc;
1929     }
1930
1931         my $xmldoc = $parser->parse_string($marcxml);
1932         my $html = $sheet->transform($xmldoc);
1933         return $html->documentElement->toString();
1934 }
1935
1936 __PACKAGE__->register_method(
1937     method    => "format_biblio_record_entry",
1938     api_name  => "open-ils.search.biblio.record.print",
1939     signature => {
1940         desc   => 'Returns a printable version of the specified bib record',
1941         params => [
1942             { desc => 'Biblio record entry ID or array of IDs', type => 'number' },
1943         ],
1944         return => {
1945             desc => q/An action_trigger.event object or error event./,
1946             type => 'object',
1947         }
1948     }
1949 );
1950 __PACKAGE__->register_method(
1951     method    => "format_biblio_record_entry",
1952     api_name  => "open-ils.search.biblio.record.email",
1953     signature => {
1954         desc   => 'Emails an A/T templated version of the specified bib records to the authorized user',
1955         params => [
1956             { desc => 'Authentication token',  type => 'string'},
1957             { desc => 'Biblio record entry ID or array of IDs', type => 'number' },
1958         ],
1959         return => {
1960             desc => q/Undefined on success, otherwise an error event./,
1961             type => 'object',
1962         }
1963     }
1964 );
1965
1966 sub format_biblio_record_entry {
1967     my($self, $conn, $arg1, $arg2) = @_;
1968
1969     my $for_print = ($self->api_name =~ /print/);
1970     my $for_email = ($self->api_name =~ /email/);
1971
1972     my $e; my $auth; my $bib_id; my $context_org;
1973
1974     if ($for_print) {
1975         $bib_id = $arg1;
1976         $context_org = $arg2 || $U->get_org_tree->id;
1977         $e = new_editor(xact => 1);
1978     } elsif ($for_email) {
1979         $auth = $arg1;
1980         $bib_id = $arg2;
1981         $e = new_editor(authtoken => $auth, xact => 1);
1982         return $e->die_event unless $e->checkauth;
1983         $context_org = $e->requestor->home_ou;
1984     }
1985
1986     my $bib_ids;
1987     if (ref $bib_id ne 'ARRAY') {
1988         $bib_ids = [ $bib_id ];
1989     } else {
1990         $bib_ids = $bib_id;
1991     }
1992
1993     my $bucket = Fieldmapper::container::biblio_record_entry_bucket->new;
1994     $bucket->btype('temp');
1995     $bucket->name('format_biblio_record_entry ' . $U->create_uuid_string);
1996     if ($for_email) {
1997         $bucket->owner($e->requestor) 
1998     } else {
1999         $bucket->owner(1);
2000     }
2001     my $bucket_obj = $e->create_container_biblio_record_entry_bucket($bucket);
2002
2003     for my $id (@$bib_ids) {
2004
2005         my $bib = $e->retrieve_biblio_record_entry([$id]) or return $e->die_event;
2006
2007         my $bucket_entry = Fieldmapper::container::biblio_record_entry_bucket_item->new;
2008         $bucket_entry->target_biblio_record_entry($bib);
2009         $bucket_entry->bucket($bucket_obj->id);
2010         $e->create_container_biblio_record_entry_bucket_item($bucket_entry);
2011     }
2012
2013     $e->commit;
2014
2015     if ($for_print) {
2016
2017         return $U->fire_object_event(undef, 'biblio.format.record_entry.print', [ $bucket ], $context_org);
2018
2019     } elsif ($for_email) {
2020
2021         $U->create_events_for_hook('biblio.format.record_entry.email', $bucket, $context_org, undef, undef, 1);
2022     }
2023
2024     return undef;
2025 }
2026
2027
2028 __PACKAGE__->register_method(
2029     method   => "retrieve_all_copy_statuses",
2030     api_name => "open-ils.search.config.copy_status.retrieve.all"
2031 );
2032
2033 sub retrieve_all_copy_statuses {
2034         my( $self, $client ) = @_;
2035         return new_editor()->retrieve_all_config_copy_status();
2036 }
2037
2038
2039 __PACKAGE__->register_method(
2040     method   => "copy_counts_per_org",
2041     api_name => "open-ils.search.biblio.copy_counts.retrieve"
2042 );
2043
2044 __PACKAGE__->register_method(
2045     method   => "copy_counts_per_org",
2046     api_name => "open-ils.search.biblio.copy_counts.retrieve.staff"
2047 );
2048
2049 sub copy_counts_per_org {
2050         my( $self, $client, $record_id ) = @_;
2051
2052         warn "Retreiveing copy copy counts for record $record_id and method " . $self->api_name . "\n";
2053
2054         my $method = "open-ils.storage.biblio.record_entry.global_copy_count.atomic";
2055         if($self->api_name =~ /staff/) { $method =~ s/atomic/staff\.atomic/; }
2056
2057         my $counts = $apputils->simple_scalar_request(
2058                 "open-ils.storage", $method, $record_id );
2059
2060         $counts = [ sort {$a->[0] <=> $b->[0]} @$counts ];
2061         return $counts;
2062 }
2063
2064
2065 __PACKAGE__->register_method(
2066     method   => "copy_count_summary",
2067     api_name => "open-ils.search.biblio.copy_counts.summary.retrieve",
2068     notes    => "returns an array of these: "
2069               . "[ org_id, callnumber_prefix, callnumber_label, callnumber_suffix, <status1_count>, <status2_count>,...] "
2070               . "where statusx is a copy status name.  The statuses are sorted by ID.",
2071 );
2072                 
2073
2074 sub copy_count_summary {
2075         my( $self, $client, $rid, $org, $depth ) = @_;
2076     $org   ||= 1;
2077     $depth ||= 0;
2078     my $data = $U->storagereq(
2079                 'open-ils.storage.biblio.record_entry.status_copy_count.atomic', $rid, $org, $depth );
2080
2081     return [ sort {
2082         (($a->[1] ? $a->[1] . ' ' : '') . $a->[2] . ($a->[3] ? ' ' . $a->[3] : ''))
2083         cmp
2084         (($b->[1] ? $b->[1] . ' ' : '') . $b->[2] . ($b->[3] ? ' ' . $b->[3] : ''))
2085     } @$data ];
2086 }
2087
2088 __PACKAGE__->register_method(
2089     method   => "copy_location_count_summary",
2090     api_name => "open-ils.search.biblio.copy_location_counts.summary.retrieve",
2091     notes    => "returns an array of these: "
2092               . "[ org_id, callnumber_prefix, callnumber_label, callnumber_suffix, copy_location, <status1_count>, <status2_count>,...] "
2093               . "where statusx is a copy status name.  The statuses are sorted by ID.",
2094 );
2095
2096 sub copy_location_count_summary {
2097     my( $self, $client, $rid, $org, $depth ) = @_;
2098     $org   ||= 1;
2099     $depth ||= 0;
2100     my $data = $U->storagereq(
2101                 'open-ils.storage.biblio.record_entry.status_copy_location_count.atomic', $rid, $org, $depth );
2102
2103     return [ sort {
2104         (($a->[1] ? $a->[1] . ' ' : '') . $a->[2] . ($a->[3] ? ' ' . $a->[3] : ''))
2105         cmp
2106         (($b->[1] ? $b->[1] . ' ' : '') . $b->[2] . ($b->[3] ? ' ' . $b->[3] : ''))
2107
2108         || $a->[4] cmp $b->[4]
2109     } @$data ];
2110 }
2111
2112 __PACKAGE__->register_method(
2113     method   => "copy_count_location_summary",
2114     api_name => "open-ils.search.biblio.copy_counts.location.summary.retrieve",
2115     notes    => "returns an array of these: "
2116               . "[ org_id, callnumber_prefix, callnumber_label, callnumber_suffix, <status1_count>, <status2_count>,...] "
2117               . "where statusx is a copy status name.  The statuses are sorted by ID."
2118 );
2119
2120 sub copy_count_location_summary {
2121     my( $self, $client, $rid, $org, $depth ) = @_;
2122     $org   ||= 1;
2123     $depth ||= 0;
2124     my $data = $U->storagereq(
2125         'open-ils.storage.biblio.record_entry.status_copy_location_count.atomic', $rid, $org, $depth );
2126     return [ sort {
2127         (($a->[1] ? $a->[1] . ' ' : '') . $a->[2] . ($a->[3] ? ' ' . $a->[3] : ''))
2128         cmp
2129         (($b->[1] ? $b->[1] . ' ' : '') . $b->[2] . ($b->[3] ? ' ' . $b->[3] : ''))
2130     } @$data ];
2131 }
2132
2133
2134 foreach (qw/open-ils.search.biblio.marc
2135             open-ils.search.biblio.marc.staff/)
2136 {
2137 __PACKAGE__->register_method(
2138     method    => "marc_search",
2139     api_name  => $_,
2140     signature => {
2141         desc   => 'Fetch biblio IDs based on MARC record criteria.  '
2142                 . 'As usual, the .staff version of the search includes otherwise hidden records',
2143         params => [
2144             {
2145                 desc => 'Search hash (required) with possible elements: searches, limit, offset, sort, sort_dir. ' .
2146                         'See perldoc ' . __PACKAGE__ . ' for more detail.',
2147                 type => 'object'
2148             },
2149             {desc => 'limit (optional)',  type => 'number'},
2150             {desc => 'offset (optional)', type => 'number'}
2151         ],
2152         return => {
2153             desc => 'Results object like: { "count": $i, "ids": [...] }',
2154             type => 'object'
2155         }
2156     }
2157 );
2158 }
2159
2160 =head3 open-ils.search.biblio.marc (arghash, limit, offset)
2161
2162 As elsewhere the arghash is the required argument, and must be a hashref.  The keys are:
2163
2164     searches: complex query object  (required)
2165     org_unit: The org ID to focus the search at
2166     depth   : The org depth     
2167     limit   : integer search limit      default: 10
2168     offset  : integer search offset     default:  0
2169     sort    : What field to sort the results on? [ author | title | pubdate ]
2170     sort_dir: In what direction do we sort? [ asc | desc ]
2171
2172 Additional keys to refine search criteria:
2173
2174     audience : Audience
2175     language : Language (code)
2176     lit_form : Literary form
2177     item_form: Item form
2178     item_type: Item type
2179     format   : The MARC format
2180
2181 Please note that the specific strings to be used in the "addtional keys" will be entirely
2182 dependent on your loaded data.  
2183
2184 All keys except "searches" are optional.
2185 The "searches" value must be an arrayref of hashref elements, including keys "term" and "restrict".  
2186
2187 For example, an arg hash might look like:
2188
2189     $arghash = {
2190         searches => [
2191             {
2192                 term     => "harry",
2193                 restrict => [
2194                     {
2195                         tag => 245,
2196                         subfield => "a"
2197                     }
2198                     # ...
2199                 ]
2200             }
2201             # ...
2202         ],
2203         org_unit  => 1,
2204         limit     => 5,
2205         sort      => "author",
2206         item_type => "g"
2207     }
2208
2209 The arghash is eventually passed to the SRF call:
2210 L<open-ils.storage.biblio.full_rec.multi_search[.staff].atomic>
2211
2212 Presently, search uses the cache unconditionally.
2213
2214 =cut
2215
2216 # FIXME: that example above isn't actually tested.
2217 # TODO: docache option?
2218 sub marc_search {
2219         my( $self, $conn, $args, $limit, $offset, $timeout ) = @_;
2220
2221         my $method = 'open-ils.storage.biblio.full_rec.multi_search';
2222         $method .= ".staff" if $self->api_name =~ /staff/;
2223         $method .= ".atomic";
2224
2225     $limit  ||= 10;     # FIXME: what about $args->{limit} ?
2226     $offset ||=  0;     # FIXME: what about $args->{offset} ?
2227
2228     # allow caller to pass in a call timeout since MARC searches
2229     # can take longer than the default 60-second timeout.  
2230     # Default to 2 mins.  Arbitrarily cap at 5 mins.
2231     $timeout = 120 if !$timeout or $timeout > 300;
2232
2233         my @search;
2234         push( @search, ($_ => $$args{$_}) ) for (sort keys %$args);
2235         my $ckey = $pfx . md5_hex($method . OpenSRF::Utils::JSON->perl2JSON(\@search));
2236
2237         my $recs = search_cache($ckey, $offset, $limit);
2238
2239         if(!$recs) {
2240
2241         my $ses = OpenSRF::AppSession->create('open-ils.storage');
2242         my $req = $ses->request($method, %$args);
2243         my $resp = $req->recv($timeout);
2244
2245         if($resp and $recs = $resp->content) {
2246                         put_cache($ckey, scalar(@$recs), $recs);
2247                         $recs = [ @$recs[$offset..($offset + ($limit - 1))] ];
2248                 } else {
2249                         $recs = [];
2250                 }
2251
2252         $ses->kill_me;
2253         }
2254
2255         my $count = 0;
2256         $count = $recs->[0]->[2] if $recs->[0] and $recs->[0]->[2];
2257         my @recs = map { $_->[0] } @$recs;
2258
2259         return { ids => \@recs, count => $count };
2260 }
2261
2262
2263 foreach my $isbn_method (qw/
2264     open-ils.search.biblio.isbn
2265     open-ils.search.biblio.isbn.staff
2266 /) {
2267 __PACKAGE__->register_method(
2268     method    => "biblio_search_isbn",
2269     api_name  => $isbn_method,
2270     signature => {
2271         desc   => 'Retrieve biblio IDs for a given ISBN. The .staff version of the call includes otherwise hidden hits.',
2272         params => [
2273             {desc => 'ISBN', type => 'string'}
2274         ],
2275         return => {
2276             desc => 'Results object like: { "count": $i, "ids": [...] }',
2277             type => 'object'
2278         }
2279     }
2280 );
2281 }
2282
2283 sub biblio_search_isbn { 
2284         my( $self, $client, $isbn ) = @_;
2285         $logger->debug("Searching ISBN $isbn");
2286         # the previous implementation of this method was essentially unlimited,
2287         # so we will set our limit very high and let multiclass.query provide any
2288         # actual limit
2289         # XXX: if making this unlimited is deemed important, we might consider
2290         # reworking 'open-ils.storage.id_list.biblio.record_entry.search.isbn',
2291         # which is functionally deprecated at this point, or a custom call to
2292         # 'open-ils.storage.biblio.multiclass.search_fts'
2293
2294     my $isbn_method = 'open-ils.search.biblio.multiclass.query';
2295     if ($self->api_name =~ m/.staff$/) {
2296         $isbn_method .= '.staff';
2297     }
2298
2299         my $method = $self->method_lookup($isbn_method);
2300         my ($search_result) = $method->run({'limit' => 1000000}, "identifier|isbn:$isbn");
2301         my @recs = map { $_->[0] } @{$search_result->{'ids'}};
2302         return { ids => \@recs, count => $search_result->{'count'} };
2303 }
2304
2305 __PACKAGE__->register_method(
2306     method   => "biblio_search_isbn_batch",
2307     api_name => "open-ils.search.biblio.isbn_list",
2308 );
2309
2310 # XXX: see biblio_search_isbn() for note concerning 'limit'
2311 sub biblio_search_isbn_batch { 
2312         my( $self, $client, $isbn_list ) = @_;
2313         $logger->debug("Searching ISBNs @$isbn_list");
2314         my @recs = (); my %rec_set = ();
2315         my $method = $self->method_lookup('open-ils.search.biblio.multiclass.query');
2316         foreach my $isbn ( @$isbn_list ) {
2317                 my ($search_result) = $method->run({'limit' => 1000000}, "identifier|isbn:$isbn");
2318                 my @recs_subset = map { $_->[0] } @{$search_result->{'ids'}};
2319                 foreach my $rec (@recs_subset) {
2320                         if (! $rec_set{ $rec }) {
2321                                 $rec_set{ $rec } = 1;
2322                                 push @recs, $rec;
2323                         }
2324                 }
2325         }
2326         return { ids => \@recs, count => scalar(@recs) };
2327 }
2328
2329 foreach my $issn_method (qw/
2330     open-ils.search.biblio.issn
2331     open-ils.search.biblio.issn.staff
2332 /) {
2333 __PACKAGE__->register_method(
2334     method   => "biblio_search_issn",
2335     api_name => $issn_method,
2336     signature => {
2337         desc   => 'Retrieve biblio IDs for a given ISSN',
2338         params => [
2339             {desc => 'ISBN', type => 'string'}
2340         ],
2341         return => {
2342             desc => 'Results object like: { "count": $i, "ids": [...] }',
2343             type => 'object'
2344         }
2345     }
2346 );
2347 }
2348
2349 sub biblio_search_issn { 
2350         my( $self, $client, $issn ) = @_;
2351         $logger->debug("Searching ISSN $issn");
2352         # the previous implementation of this method was essentially unlimited,
2353         # so we will set our limit very high and let multiclass.query provide any
2354         # actual limit
2355         # XXX: if making this unlimited is deemed important, we might consider
2356         # reworking 'open-ils.storage.id_list.biblio.record_entry.search.issn',
2357         # which is functionally deprecated at this point, or a custom call to
2358         # 'open-ils.storage.biblio.multiclass.search_fts'
2359
2360     my $issn_method = 'open-ils.search.biblio.multiclass.query';
2361     if ($self->api_name =~ m/.staff$/) {
2362         $issn_method .= '.staff';
2363     }
2364
2365         my $method = $self->method_lookup($issn_method);
2366         my ($search_result) = $method->run({'limit' => 1000000}, "identifier|issn:$issn");
2367         my @recs = map { $_->[0] } @{$search_result->{'ids'}};
2368         return { ids => \@recs, count => $search_result->{'count'} };
2369 }
2370
2371
2372 __PACKAGE__->register_method(
2373     method    => "fetch_mods_by_copy",
2374     api_name  => "open-ils.search.biblio.mods_from_copy",
2375     argc      => 1,
2376     signature => {
2377         desc    => 'Retrieve MODS record given an attached copy ID',
2378         params  => [
2379             { desc => 'Copy ID', type => 'number' }
2380         ],
2381         returns => {
2382             desc => 'MODS record, event on error or uncataloged item'
2383         }
2384     }
2385 );
2386
2387 sub fetch_mods_by_copy {
2388         my( $self, $client, $copyid ) = @_;
2389         my ($record, $evt) = $apputils->fetch_record_by_copy( $copyid );
2390         return $evt if $evt;
2391         return OpenILS::Event->new('ITEM_NOT_CATALOGED') unless $record->marc;
2392         return $apputils->record_to_mvr($record);
2393 }
2394
2395
2396 # -------------------------------------------------------------------------------------
2397
2398 __PACKAGE__->register_method(
2399     method   => "cn_browse",
2400     api_name => "open-ils.search.callnumber.browse.target",
2401     notes    => "Starts a callnumber browse"
2402 );
2403
2404 __PACKAGE__->register_method(
2405     method   => "cn_browse",
2406     api_name => "open-ils.search.callnumber.browse.page_up",
2407     notes    => "Returns the previous page of callnumbers",
2408 );
2409
2410 __PACKAGE__->register_method(
2411     method   => "cn_browse",
2412     api_name => "open-ils.search.callnumber.browse.page_down",
2413     notes    => "Returns the next page of callnumbers",
2414 );
2415
2416
2417 # RETURNS array of arrays like so: label, owning_lib, record, id
2418 sub cn_browse {
2419         my( $self, $client, @params ) = @_;
2420         my $method;
2421
2422         $method = 'open-ils.storage.asset.call_number.browse.target.atomic' 
2423                 if( $self->api_name =~ /target/ );
2424         $method = 'open-ils.storage.asset.call_number.browse.page_up.atomic'
2425                 if( $self->api_name =~ /page_up/ );
2426         $method = 'open-ils.storage.asset.call_number.browse.page_down.atomic'
2427                 if( $self->api_name =~ /page_down/ );
2428
2429         return $apputils->simplereq( 'open-ils.storage', $method, @params );
2430 }
2431 # -------------------------------------------------------------------------------------
2432
2433 __PACKAGE__->register_method(
2434     method        => "fetch_cn",
2435     api_name      => "open-ils.search.callnumber.retrieve",
2436     authoritative => 1,
2437     notes         => "retrieves a callnumber based on ID",
2438 );
2439
2440 sub fetch_cn {
2441         my( $self, $client, $id ) = @_;
2442
2443         my $e = new_editor();
2444         my( $cn, $evt ) = $apputils->fetch_callnumber( $id, 0, $e );
2445         return $evt if $evt;
2446         return $cn;
2447 }
2448
2449 __PACKAGE__->register_method(
2450     method        => "fetch_fleshed_cn",
2451     api_name      => "open-ils.search.callnumber.fleshed.retrieve",
2452     authoritative => 1,
2453     notes         => "retrieves a callnumber based on ID, fleshing prefix, suffix, and label_class",
2454 );
2455
2456 sub fetch_fleshed_cn {
2457         my( $self, $client, $id ) = @_;
2458
2459         my $e = new_editor();
2460         my( $cn, $evt ) = $apputils->fetch_callnumber( $id, 1, $e );
2461         return $evt if $evt;
2462         return $cn;
2463 }
2464
2465
2466 __PACKAGE__->register_method(
2467     method    => "fetch_copy_by_cn",
2468     api_name  => 'open-ils.search.copies_by_call_number.retrieve',
2469     signature => q/
2470                 Returns an array of copy ID's by callnumber ID
2471                 @param cnid The callnumber ID
2472                 @return An array of copy IDs
2473         /
2474 );
2475
2476 sub fetch_copy_by_cn {
2477         my( $self, $conn, $cnid ) = @_;
2478         return $U->cstorereq(
2479                 'open-ils.cstore.direct.asset.copy.id_list.atomic', 
2480                 { call_number => $cnid, deleted => 'f' } );
2481 }
2482
2483 __PACKAGE__->register_method(
2484     method    => 'fetch_cn_by_info',
2485     api_name  => 'open-ils.search.call_number.retrieve_by_info',
2486     signature => q/
2487                 @param label The callnumber label
2488                 @param record The record the cn is attached to
2489                 @param org The owning library of the cn
2490                 @return The callnumber object
2491         /
2492 );
2493
2494
2495 sub fetch_cn_by_info {
2496         my( $self, $conn, $label, $record, $org ) = @_;
2497         return $U->cstorereq(
2498                 'open-ils.cstore.direct.asset.call_number.search',
2499                 { label => $label, record => $record, owning_lib => $org, deleted => 'f' });
2500 }
2501
2502
2503
2504 __PACKAGE__->register_method(
2505     method   => 'bib_extras',
2506     api_name => 'open-ils.search.biblio.lit_form_map.retrieve.all',
2507     ctype => 'lit_form'
2508 );
2509 __PACKAGE__->register_method(
2510     method   => 'bib_extras',
2511     api_name => 'open-ils.search.biblio.item_form_map.retrieve.all',
2512     ctype => 'item_form'
2513 );
2514 __PACKAGE__->register_method(
2515     method   => 'bib_extras',
2516     api_name => 'open-ils.search.biblio.item_type_map.retrieve.all',
2517     ctype => 'item_type',
2518 );
2519 __PACKAGE__->register_method(
2520     method   => 'bib_extras',
2521     api_name => 'open-ils.search.biblio.bib_level_map.retrieve.all',
2522     ctype => 'bib_level'
2523 );
2524 __PACKAGE__->register_method(
2525     method   => 'bib_extras',
2526     api_name => 'open-ils.search.biblio.audience_map.retrieve.all',
2527     ctype => 'audience'
2528 );
2529
2530 sub bib_extras {
2531         my $self = shift;
2532     $logger->warn("deprecation warning: " .$self->api_name);
2533
2534         my $e = new_editor();
2535
2536     my $ctype = $self->{ctype};
2537     my $ccvms = $e->search_config_coded_value_map({ctype => $ctype});
2538
2539     my @objs;
2540     for my $ccvm (@$ccvms) {
2541         my $obj = "Fieldmapper::config::${ctype}_map"->new;
2542         $obj->value($ccvm->value);
2543         $obj->code($ccvm->code);
2544         $obj->description($ccvm->description) if $obj->can('description');
2545         push(@objs, $obj);
2546     }
2547
2548     return \@objs;
2549 }
2550
2551
2552
2553 __PACKAGE__->register_method(
2554     method    => 'fetch_slim_record',
2555     api_name  => 'open-ils.search.biblio.record_entry.slim.retrieve',
2556     signature => {
2557         desc   => "Retrieves one or more biblio.record_entry without the attached marcxml",
2558         params => [
2559             { desc => 'Array of Record IDs', type => 'array' }
2560         ],
2561         return => { 
2562             desc => 'Array of biblio records, event on error'
2563         }
2564     }
2565 );
2566
2567 sub fetch_slim_record {
2568     my( $self, $conn, $ids ) = @_;
2569
2570 #my $editor = OpenILS::Utils::Editor->new;
2571     my $editor = new_editor();
2572         my @res;
2573     for( @$ids ) {
2574         return $editor->event unless
2575             my $r = $editor->retrieve_biblio_record_entry($_);
2576         $r->clear_marc;
2577         push(@res, $r);
2578     }
2579     return \@res;
2580 }
2581
2582 __PACKAGE__->register_method(
2583     method    => 'rec_hold_parts',
2584     api_name  => 'open-ils.search.biblio.record_hold_parts',
2585     signature => q/
2586        Returns a list of {label :foo, id : bar} objects for viable monograph parts for a given record
2587         /
2588 );
2589
2590 sub rec_hold_parts {
2591         my( $self, $conn, $args ) = @_;
2592
2593     my $rec        = $$args{record};
2594     my $mrec       = $$args{metarecord};
2595     my $pickup_lib = $$args{pickup_lib};
2596     my $e = new_editor();
2597
2598     my $query = {
2599         select => {bmp => ['id', 'label']},
2600         from => 'bmp',
2601         where => {
2602             id => {
2603                 in => {
2604                     select => {'acpm' => ['part']},
2605                     from => {acpm => {acp => {join => {acn => {join => 'bre'}}}}},
2606                     where => {
2607                         '+acp' => {'deleted' => 'f'},
2608                         '+bre' => {id => $rec}
2609                     },
2610                     distinct => 1,
2611                 }
2612             }
2613         },
2614         order_by =>[{class=>'bmp', field=>'label_sortkey'}]
2615     };
2616
2617     if(defined $pickup_lib) {
2618         my $hard_boundary = $U->ou_ancestor_setting_value($pickup_lib, OILS_SETTING_HOLD_HARD_BOUNDARY);
2619         if($hard_boundary) {
2620             my $orgs = $e->json_query({from => ['actor.org_unit_descendants' => $pickup_lib, $hard_boundary]});
2621             $query->{where}->{'+acp'}->{circ_lib} = [ map { $_->{id} } @$orgs ];
2622         }
2623     }
2624
2625     return $e->json_query($query);
2626 }
2627
2628
2629
2630
2631 __PACKAGE__->register_method(
2632     method    => 'rec_to_mr_rec_descriptors',
2633     api_name  => 'open-ils.search.metabib.record_to_descriptors',
2634     signature => q/
2635                 specialized method...
2636                 Given a biblio record id or a metarecord id, 
2637                 this returns a list of metabib.record_descriptor
2638                 objects that live within the same metarecord
2639                 @param args Object of args including:
2640         /
2641 );
2642
2643 sub rec_to_mr_rec_descriptors {
2644         my( $self, $conn, $args ) = @_;
2645
2646     my $rec        = $$args{record};
2647     my $mrec       = $$args{metarecord};
2648     my $item_forms = $$args{item_forms};
2649     my $item_types = $$args{item_types};
2650     my $item_lang  = $$args{item_lang};
2651     my $pickup_lib = $$args{pickup_lib};
2652
2653     my $hard_boundary = $U->ou_ancestor_setting_value($pickup_lib, OILS_SETTING_HOLD_HARD_BOUNDARY) if (defined $pickup_lib);
2654
2655         my $e = new_editor();
2656         my $recs;
2657
2658         if( !$mrec ) {
2659                 my $map = $e->search_metabib_metarecord_source_map({source => $rec});
2660                 return $e->event unless @$map;
2661                 $mrec = $$map[0]->metarecord;
2662         }
2663
2664         $recs = $e->search_metabib_metarecord_source_map({metarecord => $mrec});
2665         return $e->event unless @$recs;
2666
2667         my @recs = map { $_->source } @$recs;
2668         my $search = { record => \@recs };
2669         $search->{item_form} = $item_forms if $item_forms and @$item_forms;
2670         $search->{item_type} = $item_types if $item_types and @$item_types;
2671         $search->{item_lang} = $item_lang  if $item_lang;
2672
2673         my $desc = $e->search_metabib_record_descriptor($search);
2674
2675         my $query = {
2676                 distinct => 1,
2677                 select   => { 'bre' => ['id'] },
2678                 from     => {
2679                         'bre' => {
2680                                 'acn' => {
2681                                         'join' => {
2682                                                 'acp' => {"join" => {"acpl" => {}, "ccs" => {}}}
2683                                           }
2684                                   }
2685                          }
2686                 },
2687                 where => {
2688                         '+bre' => { id => \@recs },
2689                         '+acp' => {
2690                                 holdable => 't',
2691                                 deleted  => 'f'
2692                         },
2693                         "+ccs" => { holdable => 't' },
2694                         "+acpl" => { holdable => 't' }
2695                 }
2696         };
2697
2698         if ($hard_boundary) { # 0 (or "top") is the same as no setting
2699                 my $orgs = $e->json_query(
2700                         { from => [ 'actor.org_unit_descendants' => $pickup_lib, $hard_boundary ] }
2701                 ) or return $e->die_event;
2702
2703                 $query->{where}->{"+acp"}->{circ_lib} = [ map { $_->{id} } @$orgs ];
2704         }
2705
2706         my $good_records = $e->json_query($query) or return $e->die_event;
2707
2708         my @keep;
2709         for my $d (@$desc) {
2710                 if ( grep { $d->record == $_->{id} } @$good_records ) {
2711                         push @keep, $d;
2712                 }
2713         }
2714
2715         $desc = \@keep;
2716
2717         return { metarecord => $mrec, descriptors => $desc };
2718 }
2719
2720
2721 __PACKAGE__->register_method(
2722     method   => 'fetch_age_protect',
2723     api_name => 'open-ils.search.copy.age_protect.retrieve.all',
2724 );
2725
2726 sub fetch_age_protect {
2727         return new_editor()->retrieve_all_config_rule_age_hold_protect();
2728 }
2729
2730
2731 __PACKAGE__->register_method(
2732     method   => 'copies_by_cn_label',
2733     api_name => 'open-ils.search.asset.copy.retrieve_by_cn_label',
2734 );
2735
2736 __PACKAGE__->register_method(
2737     method   => 'copies_by_cn_label',
2738     api_name => 'open-ils.search.asset.copy.retrieve_by_cn_label.staff',
2739 );
2740
2741 sub copies_by_cn_label {
2742         my( $self, $conn, $record, $cn_parts, $circ_lib ) = @_;
2743         my $e = new_editor();
2744     my $cnp_id = $cn_parts->[0] eq '' ? -1 : $e->search_asset_call_number_prefix({label => $cn_parts->[0]}, {idlist=>1})->[0];
2745     my $cns_id = $cn_parts->[2] eq '' ? -1 : $e->search_asset_call_number_suffix({label => $cn_parts->[2]}, {idlist=>1})->[0];
2746         my $cns = $e->search_asset_call_number({record => $record, prefix => $cnp_id, label => $cn_parts->[1], suffix => $cns_id, deleted => 'f'}, {idlist=>1});
2747         return [] unless @$cns;
2748
2749         # show all non-deleted copies in the staff client ...
2750         if ($self->api_name =~ /staff$/o) {
2751                 return $e->search_asset_copy({call_number => $cns, circ_lib => $circ_lib, deleted => 'f'}, {idlist=>1});
2752         }
2753
2754         # ... otherwise, grab the copies ...
2755         my $copies = $e->search_asset_copy(
2756                 [ {call_number => $cns, circ_lib => $circ_lib, deleted => 'f', opac_visible => 't'},
2757                   {flesh => 1, flesh_fields => { acp => [ qw/location status/] } }
2758                 ]
2759         );
2760
2761         # ... and test for location and status visibility
2762         return [ map { ($U->is_true($_->location->opac_visible) && $U->is_true($_->status->opac_visible)) ? ($_->id) : () } @$copies ];
2763 }
2764
2765
2766 1;
2767