]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/src/perlmods/lib/OpenILS/WWW/EGCatLoader/Search.pm
LP#1268636 Add helpful empty search term message
[Evergreen.git] / Open-ILS / src / perlmods / lib / OpenILS / WWW / EGCatLoader / Search.pm
1 package OpenILS::WWW::EGCatLoader;
2 use strict; use warnings;
3 use Apache2::Const -compile => qw(OK DECLINED FORBIDDEN HTTP_INTERNAL_SERVER_ERROR REDIRECT HTTP_BAD_REQUEST);
4 use OpenSRF::Utils::Logger qw/$logger/;
5 use OpenILS::Utils::CStoreEditor qw/:funcs/;
6 use OpenILS::Utils::Fieldmapper;
7 use OpenILS::Application::AppUtils;
8 use OpenSRF::Utils::JSON;
9 use Data::Dumper;
10 $Data::Dumper::Indent = 0;
11 my $U = 'OpenILS::Application::AppUtils';
12
13 sub _prepare_biblio_search_basics {
14     my ($cgi) = @_;
15
16     return $cgi->param('query') unless $cgi->param('qtype');
17
18     my %parts;
19     my @part_names = qw/qtype contains query bool/;
20     $parts{$_} = [ $cgi->param($_) ] for (@part_names);
21
22     my $full_query = '';
23     for (my $i = 0; $i < scalar @{$parts{'qtype'}}; $i++) {
24         my ($qtype, $contains, $query, $bool) = map { $parts{$_}->[$i] } @part_names;
25
26         next unless $query =~ /\S/;
27
28         # Hack for journal title
29         if ($qtype eq 'jtitle') {
30             $qtype = 'title';
31         }
32
33         # This stuff probably will need refined or rethought to better handle
34         # the weird things Real Users will surely type in.
35         $contains = "" unless defined $contains; # silence warning
36         if ($contains eq 'nocontains') {
37             $query =~ s/"//g;
38             $query = ('"' . $query . '"') if index $query, ' ';
39             $query = '-' . $query;
40         } elsif ($contains eq 'phrase') {
41             $query =~ s/"//g;
42             $query = ('"' . $query . '"') if index $query, ' ';
43         } elsif ($contains eq 'exact') {
44             $query =~ s/[\^\$]//g;
45             $query = '^' . $query . '$';
46         } elsif ($contains eq 'starts') {
47             $query =~ s/"//g;
48             $query =~ s/[\^\$]//g;
49             $query = '^' . $query;
50             $query = ('"' . $query . '"') if index $query, ' ';
51         }
52         $query = "$qtype:$query" unless $qtype eq 'keyword' and $i == 0;
53
54         $bool = ($bool and $bool eq 'or') ? '||' : '&&';
55         $full_query = $full_query ? "($full_query $bool $query)" : $query;
56     }
57
58     return $full_query;
59 }
60
61 sub _prepare_biblio_search {
62     my ($cgi, $ctx) = @_;
63
64     my $query = _prepare_biblio_search_basics($cgi) || '';
65
66     $query .= ' ' . $ctx->{global_search_filter} if $ctx->{global_search_filter};
67
68     foreach ($cgi->param('modifier')) {
69         # The unless bit is to avoid stacking modifiers.
70         $query = ('#' . $_ . ' ' . $query) unless $query =~ qr/\#\Q$_/;
71     }
72
73     # filters
74     foreach (grep /^fi:/, $cgi->param) {
75         /:(-?\w+)$/ or next;
76         my $term = join(",", $cgi->param($_));
77         $query .= " $1($term)" if length $term;
78     }
79
80     # filter group entries.  Entries from like filters are grouped into a single 
81     # filter_group_entry() filter (ORed).  Each collection is ANDed together.
82     # fg:foo_group=foo_entry_id
83     foreach (grep /^fg:/, $cgi->param) {
84         /:(-?\w+)$/ or next;
85         my $term = join(",", $cgi->param($_));
86         $query = "filter_group_entry($term) $query" if length $term;
87     }
88
89     if ($cgi->param("bookbag")) {
90         $query = "container(bre,bookbag," . int($cgi->param("bookbag")) . ") $query";
91     }
92
93     # Journal title hackery complete
94     if ($cgi->param("qtype") && $cgi->param("qtype") eq "jtitle") {
95         $query = "bib_level(s) $query";
96     }
97
98     if ($cgi->param('pubdate') && $cgi->param('date1')) {
99         if ($cgi->param('pubdate') eq 'between') {
100             my $btw = 'between(' . $cgi->param('date1');
101             $btw .= ',' .  $cgi->param('date2') if $cgi->param('date2');
102             $btw .= ')';
103             $query = "$btw $query";
104         } elsif ($cgi->param('pubdate') eq 'is') {
105             $query = 'between(' . $cgi->param('date1') .
106                 ',' .  $cgi->param('date1') . ") $query";  # sic, date1 twice
107         } else {
108             $query = $cgi->param('pubdate') .
109                 '(' . $cgi->param('date1') . ") $query";
110         }
111     }
112
113     # ---------------------------------------------------------------------
114     # Nothing below here constitutes a query by itself.  If the query value 
115     # is still empty up to this point, there is no query.  abandon ship.
116     return () unless $query;
117
118     # sort is treated specially, even though it's actually a filter
119     if ($cgi->param('sort')) {
120         $query =~ s/sort\([^\)]*\)//g;  # override existing sort(). no stacking.
121         my ($axis, $desc) = split /\./, $cgi->param('sort');
122         $query = "sort($axis) $query";
123         if ($desc and not $query =~ /\#descending/) {
124             $query = "#descending $query";
125         } elsif (not $desc) {
126             $query =~ s/\#descending//;
127         }
128     }
129
130     my (@naive_query_re, $site);
131
132     my $org = $ctx->{search_ou};
133     if (defined($org) and $org ne '' and ($org ne $ctx->{aou_tree}->()->id) and not $query =~ /site\(\S+\)/) {
134         my $thing = " site(" . $ctx->{get_aou}->($org)->shortname . ")";
135
136         $query .= $thing;
137         push @naive_query_re, $thing;
138     }
139
140     my $pref_ou = $ctx->{pref_ou};
141     if (defined($pref_ou) and $pref_ou ne '' and $pref_ou != $org and ($pref_ou ne $ctx->{aou_tree}->()->id) and not $query =~ / pref_ou\(\S+\)/) {
142         my $plib = $ctx->{get_aou}->($pref_ou)->shortname;
143         $query = "pref_ou($plib) $query";
144     }
145
146     if (my $grp = $ctx->{copy_location_group}) {
147         $query = "location_groups($grp) $query";
148     }
149
150     if(!$site) {
151         ($site) = ($query =~ /site\(([^\)]+)\)/);
152         $site ||= $ctx->{aou_tree}->()->shortname;
153     }
154
155     my $depth;
156     if ($query =~ /depth\(\d+\)/) {
157
158         # depth is encoded in the search query
159         ($depth) = ($query =~ /depth\((\d+)\)/);
160
161     } else {
162
163         if (defined $cgi->param('depth')) {
164             $depth = $cgi->param('depth');
165         } else {
166             # no depth specified.  match the depth to the search org
167             my ($org) = grep { $_->shortname eq $site } @{$ctx->{aou_list}->()};
168             $depth = $org->ou_type->depth;
169         }
170         my $thing = " depth($depth)";
171
172         $query .= $thing;
173         push @naive_query_re, $thing;
174     }
175
176     # This gives templates a way to take site() and depth() back out of
177     # query strings when they shouldn't be there (because they're controllable
178     # with other widgets).
179     $ctx->{naive_query_scrub} = sub {
180         my ($query) = @_;
181         $query =~ s/\Q$_\E// foreach (@naive_query_re);
182         return $query;
183     };
184
185     $logger->info("tpac: site=$site, depth=$depth, query=$query");
186
187     return ($query, $site, $depth);
188 }
189
190 sub _get_search_limit {
191     my $self = shift;
192
193     # param takes precedence
194     my $limit = $self->cgi->param('limit');
195     return $limit if $limit;
196
197     if($self->editor->requestor) {
198         $self->timelog("Checking for opac.hits_per_page preference");
199         # See if the user has a hit count preference
200         my $lset = $self->editor->search_actor_user_setting({
201             usr => $self->editor->requestor->id, 
202             name => 'opac.hits_per_page'
203         })->[0];
204         $self->timelog("Got opac.hits_per_page preference");
205         return OpenSRF::Utils::JSON->JSON2perl($lset->value) if $lset;
206     }
207
208     return 10; # default
209 }
210
211 sub tag_circed_items {
212     my $self = shift;
213     my $e = $self->editor;
214
215     $self->timelog("Tag circed items?");
216     return 0 unless $e->requestor;
217     $self->timelog("Checking for opac.search.tag_circulated_items");
218     return 0 unless $self->ctx->{get_org_setting}->(
219         $e->requestor->home_ou, 
220         'opac.search.tag_circulated_items');
221
222     # user has to be opted-in to circ history in some capacity
223     $self->timelog("Checking for history.circ.retention_*");
224     my $sets = $e->search_actor_user_setting({
225         usr => $e->requestor->id, 
226         name => [
227             'history.circ.retention_age', 
228             'history.circ.retention_start'
229         ]
230     });
231
232     $self->timelog("Return from checking for history.circ.retention_*");
233
234     return 0 unless @$sets;
235     return 1;
236
237 }
238
239 # This only loads the bookbag itself (in support of a record results page)
240 # if a "bookbag" CGI parameter is specified and if the bookbag is public
241 # or owned by the logged-in user (if any).  Bookbag notes are fetched
242 # later if applicable.
243 sub load_rresults_bookbag {
244     my ($self) = @_;
245
246     my $bookbag_id = int($self->cgi->param("bookbag") || 0);
247     return if $bookbag_id < 1;
248
249     my %authz = $self->ctx->{"user"} ?
250         ("-or" => {"pub" => "t", "owner" => $self->ctx->{"user"}->id}) :
251         ("pub" => "t");
252
253     $self->timelog("Load results bookbag");
254     my $bbag = $self->editor->search_container_biblio_record_entry_bucket(
255         {"id" => $bookbag_id, "btype" => "bookbag", %authz}
256     );
257     $self->timelog("Got results bookbag");
258
259     if (!$bbag) {
260         $self->apache->log->warn(
261             "error from cstore retrieving bookbag $bookbag_id!"
262         );
263         return Apache2::Const::HTTP_INTERNAL_SERVER_ERROR;
264     } elsif (@$bbag) {
265         $self->ctx->{"bookbag"} = shift @$bbag;
266     }
267
268     return;
269 }
270
271 # assumes context has a bookbag we're already authorized to look at, and
272 # a list of rec_ids, reasonably sized (from paged search).
273 sub load_rresults_bookbag_item_notes {
274     my ($self, $rec_ids) = @_;
275
276     $self->timelog("Load results bookbag item notes");
277     my $items_with_notes =
278         $self->editor->search_container_biblio_record_entry_bucket_item([
279             {"target_biblio_record_entry" => $rec_ids,
280                 "bucket" => $self->ctx->{"bookbag"}->id},
281             {"flesh" => 1, "flesh_fields" => {"cbrebi" => ["notes"]},
282                 "order_by" => {"cbrebi" => ["id"]}}
283         ]);
284     $self->timelog("Got results bookbag item notes");
285
286     if (!$items_with_notes) {
287         $self->apache->log->warn("error from cstore retrieving cbrebi objects");
288         return Apache2::Const::HTTP_INTERNAL_SERVER_ERROR;
289     }
290
291     $self->ctx->{"bookbag_items_by_bre_id"} = +{
292         map { $_->target_biblio_record_entry => $_ } @$items_with_notes
293     };
294
295     return;
296 }
297
298 # context additions: 
299 #   page_size
300 #   hit_count
301 #   records : list of bre's and copy-count objects
302 sub load_rresults {
303     my $self = shift;
304     my %args = @_;
305     my $internal = $args{internal};
306     my $cgi = $self->cgi;
307     my $ctx = $self->ctx;
308     my $e = $self->editor;
309
310     # find the last record in the set, then redirect
311     my $find_last = $cgi->param('find_last');
312
313     $self->timelog("Loading results");
314     # load bookbag metadata, if requested.
315     if (my $bbag_err = $self->load_rresults_bookbag) {
316         return $bbag_err;
317     }
318
319     $ctx->{page} = 'rresult' unless $internal;
320     $ctx->{ids} = [];
321     $ctx->{records} = [];
322     $ctx->{search_facets} = {};
323     $ctx->{hit_count} = 0;
324
325     # Special alternative searches here.  This could all stand to be cleaner.
326     if ($cgi->param("_special")) {
327         $self->timelog("Calling MARC expert search");
328         return $self->marc_expert_search(%args) if scalar($cgi->param("tag"));
329         $self->timelog("Calling item barcode search");
330         return $self->item_barcode_shortcut if (
331             $cgi->param("qtype") and ($cgi->param("qtype") eq "item_barcode") and not $internal
332         );
333         $self->timelog("Calling call number browse");
334         return $self->call_number_browse_standalone if (
335             $cgi->param("qtype") and ($cgi->param("qtype") eq "cnbrowse")
336         );
337     }
338
339     $self->timelog("Getting search parameters");
340     my $page = $cgi->param('page') || 0;
341     my @facets = $cgi->param('facet');
342     my $limit = $self->_get_search_limit;
343     $ctx->{search_ou} = $self->_get_search_lib();
344     $ctx->{pref_ou} = $self->_get_pref_lib() || $ctx->{search_ou};
345     my $offset = $page * $limit;
346     my $metarecord = $cgi->param('metarecord');
347     my $results; 
348     my $tag_circs = $self->tag_circed_items;
349     $self->timelog("Got search parameters");
350
351     $ctx->{page_size} = $limit;
352     $ctx->{search_page} = $page;
353
354     # fetch this page plus the first hit from the next page
355     if ($internal) {
356         $limit = $offset + $limit + 1;
357         $offset = 0;
358     }
359
360     my ($query, $site, $depth) = _prepare_biblio_search($cgi, $ctx);
361
362     $self->get_staff_search_settings;
363
364     if (!$find_last and $ctx->{staff_saved_search_size}) {
365         my ($key, $list) = $self->staff_save_search($query);
366         if ($key) {
367             $self->apache->headers_out->add(
368                 "Set-Cookie" => $self->cgi->cookie(
369                     -name => (ref $self)->COOKIE_ANON_CACHE,
370                     -path => "/",
371                     -value => ($key || ''),
372                     -expires => ($key ? undef : "-1h")
373                 )
374             );
375             $ctx->{saved_searches} = $list;
376         }
377     }
378
379     if ($metarecord and !$internal) {
380
381         # TODO: other limits, like SVF/format, etc.
382         $self->timelog("Getting metarecords to records");
383         $results = $U->simplereq(
384             'open-ils.search', 
385             'open-ils.search.biblio.metarecord_to_records',
386             $metarecord, {org => $ctx->{search_ou}, depth => $depth}
387         );
388         $self->timelog("Got metarecords to records");
389
390         # force the metarecord result blob to match the format of regular search results
391         $results->{ids} = [map { [$_] } @{$results->{ids}}]; 
392
393     } else {
394
395         return Apache2::Const::OK unless $query;
396
397         # Limit and offset will stay here. Everything else should be part of
398         # the query string, not special args.
399         my $args = {'limit' => $limit, 'offset' => $offset};
400
401         if ($tag_circs) {
402             $args->{tag_circulated_records} = 1;
403             $args->{authtoken} = $self->editor->authtoken;
404         }
405
406         # Stuff these into the TT context so that templates can use them in redrawing forms
407         $ctx->{processed_search_query} = $query;
408
409         $query = "$_ $query" for @facets;
410
411         $logger->activity("EGWeb: [search] $query");
412
413         try {
414
415             my $method = 'open-ils.search.biblio.multiclass.query';
416             $method .= '.staff' if $ctx->{is_staff};
417
418             my $ses = OpenSRF::AppSession->create('open-ils.search');
419
420             $self->timelog("Firing off the multiclass query");
421             my $req = $ses->request($method, $args, $query, 1);
422             $results = $req->gather(1);
423             $self->timelog("Returned from the multiclass query");
424
425         } catch Error with {
426             my $err = shift;
427             $logger->error("multiclass search error: $err");
428             $results = {count => 0, ids => []};
429         };
430     }
431
432     my $rec_ids = [map { $_->[0] } @{$results->{ids}}];
433
434     $ctx->{ids} = $rec_ids;
435     $ctx->{hit_count} = $results->{count};
436     $ctx->{parsed_query} = $results->{parsed_query};
437
438     if ($find_last) {
439         # redirect to the record detail page for the last record in the results
440         my $rec_id = pop @$rec_ids;
441         $cgi->delete('find_last');
442         my $url = $cgi->url(-full => 1, -path => 1, -query => 1);
443         $url =~ s|/results|/record/$rec_id|;
444         return $self->generic_redirect($url);
445     }
446
447     return Apache2::Const::OK if @$rec_ids == 0 or $internal;
448
449     $self->load_rresults_bookbag_item_notes($rec_ids) if $ctx->{bookbag};
450
451     $self->timelog("Calling get_records_and_facets()");
452     my ($facets, @data) = $self->get_records_and_facets(
453         $rec_ids, $results->{facet_key}, 
454         {
455             flesh => '{holdings_xml,mra,acp,acnp,acns,bmp}',
456             site => $site,
457             depth => $depth,
458             pref_lib => $ctx->{pref_ou},
459         }
460     );
461     $self->timelog("Returned from get_records_and_facets()");
462
463     if ($page == 0) {
464         my $stat = $self->check_1hit_redirect($rec_ids);
465         return $stat if $stat;
466     }
467
468     # load temporary_list settings for user and ou:
469     $self->_load_lists_and_settings if ($ctx->{user});
470
471     # shove recs into context in search results order
472     for my $rec_id (@$rec_ids) {
473         push(
474             @{$ctx->{records}},
475             grep { $_->{id} == $rec_id } @data
476         );
477     }
478
479     if ($tag_circs) {
480         for my $rec (@{$ctx->{records}}) {
481             my ($res_rec) = grep { $_->[0] == $rec->{id} } @{$results->{ids}};
482             # index 1 in the per-record result array is a boolean which
483             # indicates whether the record in question is in the users
484             # accessible circ history list
485             $rec->{user_circulated} = 1 if $res_rec->[1];
486         }
487     }
488
489     $ctx->{search_facets} = $facets;
490
491     return Apache2::Const::OK;
492 }
493
494 # If the calling search results in 1 record and the client
495 # is configured to do so, redirect the search results to 
496 # the record details page.
497 sub check_1hit_redirect {
498     my ($self, $rec_ids) = @_;
499     my $ctx = $self->ctx;
500
501     return undef unless $rec_ids and @$rec_ids == 1;
502
503     my ($sname, $org);
504
505     $self->timelog("Checking whether to jump to details on a single hit");
506     if ($ctx->{is_staff}) {
507         $sname = 'opac.staff.jump_to_details_on_single_hit';
508         $org = $ctx->{user}->ws_ou;
509
510     } else {
511         $sname = 'opac.patron.jump_to_details_on_single_hit';
512         $org = $self->_get_search_lib();
513     }
514
515     $self->timelog("Return from checking whether to jump to details on a single hit");
516
517     return undef unless 
518         $self->ctx->{get_org_setting}->($org, $sname);
519
520     my $base_url = sprintf(
521         '%s://%s%s/record/%s',
522         $self->ctx->{proto},
523         $self->ctx->{hostname},
524         $self->ctx->{opac_root},
525         $$rec_ids[0],
526     );
527     
528     # If we get here from the same record detail page to which we
529     # now wish to redirect, do not perform the redirect.  This
530     # approach seems to work well, with the rare exception of 
531     # performing a new search directly from the detail page that 
532     # happens to result in the same single hit.  In this case, the 
533     # user will be left on the search results page.  This could be 
534     # overcome w/ additional CGI, etc., but I'm not sure it's necessary.
535     if (my $referer = $ctx->{referer}) {
536         $referer =~ s/([^?]*).*/$1/g;
537         return undef if $base_url eq $referer;
538     }
539
540     return $self->generic_redirect($base_url . '?' . $self->cgi->query_string);
541 }
542
543 # Searching by barcode is a special search that does /not/ respect any other
544 # of the usual search parameters, not even the ones for sorting and paging!
545 sub item_barcode_shortcut {
546     my ($self) = @_;
547
548     $self->timelog("Searching for item_barcode");
549     my $method = "open-ils.search.multi_home.bib_ids.by_barcode";
550     if (my $search = create OpenSRF::AppSession("open-ils.search")) {
551         my $rec_ids = $search->request(
552             $method, $self->cgi->param("query")
553         )->gather(1);
554         $search->kill_me;
555         $self->timelog("Finished searching for item_barcode");
556
557         if (ref $rec_ids ne 'ARRAY') {
558
559             if($U->event_equals($rec_ids, 'ASSET_COPY_NOT_FOUND')) {
560                 $rec_ids = [];
561
562             } else {
563                 if (defined $U->event_code($rec_ids)) {
564                     $self->apache->log->warn(
565                         "$method returned event: " . $U->event_code($rec_ids)
566                     );
567                 } else {
568                     $self->apache->log->warn(
569                         "$method returned something unexpected: $rec_ids"
570                     );
571                 }
572                 return Apache2::Const::HTTP_INTERNAL_SERVER_ERROR;
573             }
574         }
575
576         $self->timelog("Calling get_records_and_facets() for item_barcode");
577         my ($facets, @data) = $self->get_records_and_facets(
578             $rec_ids, undef, {flesh => "{holdings_xml,mra,acnp,acns,bmp}"}
579         );
580         $self->timelog("Returned from calling get_records_and_facets() for item_barcode");
581
582         my $stat = $self->check_1hit_redirect($rec_ids);
583         return $stat if $stat;
584
585         $self->ctx->{records} = [@data];
586         $self->ctx->{search_facets} = {};
587         $self->ctx->{hit_count} = scalar @data;
588         $self->ctx->{page_size} = $self->ctx->{hit_count};
589         # load temporary_list settings for user and ou:
590         $self->_load_lists_and_settings if ($self->ctx->{user});
591
592         return Apache2::Const::OK;
593     } {
594         $self->apache->log->warn("couldn't connect to open-ils.search");
595         return Apache2::Const::HTTP_INTERNAL_SERVER_ERROR;
596     }
597 }
598
599 # like item_barcode_search, this can't take all the usual search params, but
600 # this one will at least do site, limit and page
601 sub marc_expert_search {
602     my ($self, %args) = @_;
603
604     my @tags = $self->cgi->param("tag");
605     my @subfields = $self->cgi->param("subfield");
606     my @terms = $self->cgi->param("term");
607
608     my $query = [];
609     for (my $i = 0; $i < scalar @tags; $i++) {
610         next if ($tags[$i] eq "" || $terms[$i] eq "");
611         $subfields[$i] = '_' unless $subfields[$i];
612         push @$query, {
613             "term" => $terms[$i],
614             "restrict" => [{"tag" => $tags[$i], "subfield" => $subfields[$i]}]
615         };
616     }
617
618     $logger->info("query for expert search: " . Dumper($query));
619
620     $self->timelog("Getting search parameters");
621     # loc, limit and offset
622     my $page = $self->cgi->param("page") || 0;
623     my $limit = $self->_get_search_limit;
624     $self->ctx->{search_ou} = $self->_get_search_lib();
625     $self->ctx->{pref_ou} = $self->_get_pref_lib();
626     my $offset = $page * $limit;
627     $self->timelog("Got search parameters");
628
629     $self->ctx->{records} = [];
630     $self->ctx->{search_facets} = {};
631     $self->ctx->{page_size} = $limit;
632     $self->ctx->{hit_count} = 0;
633     $self->ctx->{ids} = [];
634     $self->ctx->{search_page} = $page;
635         
636     # nothing to do
637     return Apache2::Const::OK if @$query == 0;
638
639     if ($args{internal}) {
640         $limit = $offset + $limit + 1;
641         $offset = 0;
642     }
643
644     $self->timelog("Searching for MARC expert");
645     my $method = 'open-ils.search.biblio.marc';
646     $method .= '.staff' if $self->ctx->{is_staff};
647     my $timeout = 120;
648     my $ses = OpenSRF::AppSession->create('open-ils.search');
649     my $req = $ses->request(
650         $method,
651         {searches => $query, org_unit => $self->ctx->{search_ou}}, 
652         $limit, $offset, $timeout);
653
654     my $resp = $req->recv($timeout);
655     my $results = $resp ? $resp->content : undef;
656     $ses->kill_me;
657     $self->timelog("Got our MARC expert results");
658
659     if (defined $U->event_code($results)) {
660         $self->apache->log->warn(
661             "open-ils.search.biblio.marc returned event: " .
662             $U->event_code($results)
663         );
664         return Apache2::Const::HTTP_INTERNAL_SERVER_ERROR;
665     }
666
667     $self->ctx->{ids} = [ grep { $_ } @{$results->{ids}} ];
668     $self->ctx->{hit_count} = $results->{count};
669
670     return Apache2::Const::OK if @{$self->ctx->{ids}} == 0 or $args{internal};
671
672     if ($page == 0) {
673         my $stat = $self->check_1hit_redirect($self->ctx->{ids});
674         return $stat if $stat;
675     }
676
677     $self->timelog("Calling get_records_and_facets() for MARC expert");
678     my ($facets, @data) = $self->get_records_and_facets(
679         $self->ctx->{ids}, undef, {
680             flesh => "{holdings_xml,mra,acnp,acns}",
681             pref_lib => $self->ctx->{pref_ou},
682         }
683     );
684     $self->timelog("Returned from calling get_records_and_facets() for MARC expert");
685
686     # load temporary_list settings for user and ou:
687     $self->_load_lists_and_settings if ($self->ctx->{user});
688
689     $self->ctx->{records} = [@data];
690
691     return Apache2::Const::OK;
692 }
693
694 sub call_number_browse_standalone {
695     my ($self) = @_;
696
697     if (my $cnfrag = $self->cgi->param("query")) {
698         my $url = sprintf(
699             '%s://%s%s/cnbrowse?cn=%s',
700             $self->ctx->{proto},
701             $self->ctx->{hostname},
702             $self->ctx->{opac_root},
703             $cnfrag # XXX some kind of escaping needed here?
704         );
705         $url .= '&locg=' . $self->_get_search_lib() if ($self->_get_search_lib());
706         return $self->generic_redirect($url);
707     } else {
708         return $self->generic_redirect; # return to search page
709     }
710 }
711
712 sub load_cnbrowse {
713     my ($self) = @_;
714
715     $self->prepare_browse_call_numbers();
716
717     return Apache2::Const::OK;
718 }
719
720 sub get_staff_search_settings {
721     my ($self) = @_;
722
723     unless ($self->ctx->{is_staff}) {
724         $self->ctx->{staff_saved_search_size} = 0;
725         return;
726     }
727
728     $self->timelog("Getting staff search size");
729     my $sss_size = $self->ctx->{get_org_setting}->(
730         $self->ctx->{physical_loc} || $self->ctx->{aou_tree}->()->id,
731         "opac.staff_saved_search.size",
732     );
733     $self->timelog("Got staff search size");
734
735     # Sic: 0 is 0 (off), but undefined is 10.
736     $sss_size = 10 unless defined $sss_size;
737
738     $self->ctx->{staff_saved_search_size} = $sss_size;
739 }
740
741 sub staff_load_searches {
742     my ($self) = @_;
743
744     my $cache_key = $self->cgi->cookie((ref $self)->COOKIE_ANON_CACHE);
745
746     my $list = [];
747     if ($cache_key) {
748         $self->timelog("Getting anon_cache value");
749         $list = $U->simplereq(
750             "open-ils.actor",
751             "open-ils.actor.anon_cache.get_value",
752             $cache_key, (ref $self)->ANON_CACHE_STAFF_SEARCH
753         );
754         $self->timelog("Got anon_cache value");
755
756         unless ($list) {
757             undef $cache_key;
758             $list = [];
759         }
760     }
761
762     return ($cache_key, $list);
763 }
764
765 sub staff_save_search {
766     my ($self, $query) = @_;
767
768     my $sss_size = $self->ctx->{staff_saved_search_size}; 
769     return unless $sss_size > 0;
770
771     my ($cache_key, $list) = $self->staff_load_searches;
772     my %already = ( map { $_ => 1 } @$list );
773
774     unshift @$list, $query unless $already{$query};
775
776     splice @$list, $sss_size if scalar @$list > $sss_size;
777
778     $self->timelog("Setting anon_cache value");
779     $cache_key = $U->simplereq(
780         "open-ils.actor",
781         "open-ils.actor.anon_cache.set_value",
782         $cache_key, (ref $self)->ANON_CACHE_STAFF_SEARCH, $list
783     );
784     $self->timelog("Set anon_cache value");
785
786     return ($cache_key, $list);
787 }
788
789 1;