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