]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/src/perlmods/lib/OpenILS/WWW/EGCatLoader/Search.pm
smarter search term propagation, should avoid ARRAY(0xdeadbeef) type ...
[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 my $U = 'OpenILS::Application::AppUtils';
9
10
11 sub _prepare_biblio_search_basics {
12     my ($cgi) = @_;
13
14     return $cgi->param('query') unless $cgi->param('qtype');
15
16     my %parts;
17     my @part_names = qw/qtype contains query/;
18     $parts{$_} = [ $cgi->param($_) ] for (@part_names);
19
20     my @chunks = ();
21     for (my $i = 0; $i < scalar @{$parts{'qtype'}}; $i++) {
22         my ($qtype, $contains, $query) = map { $parts{$_}->[$i] } @part_names;
23
24         next unless $query =~ /\S/;
25         push(@chunks, $qtype . ':') unless $qtype eq 'keyword' and $i == 0;
26
27         # This stuff probably will need refined or rethought to better handle
28         # the weird things Real Users will surely type in.
29         $contains = "" unless defined $contains; # silence warning
30         if ($contains eq 'nocontains') {
31             $query =~ s/"//g;
32             $query = ('"' . $query . '"') if index $query, ' ';
33             $query = '-' . $query;
34         } elsif ($contains eq 'phrase') {
35             $query =~ s/"//g;
36             $query = ('"' . $query . '"') if index $query, ' ';
37         } elsif ($contains eq 'exact') {
38             $query =~ s/[\^\$]//g;
39             $query = '^' . $query . '$';
40         }
41         push @chunks, $query;
42     }
43
44     return join(' ', @chunks);
45 }
46
47 sub _prepare_biblio_search {
48     my ($cgi, $ctx) = @_;
49
50     my $query = _prepare_biblio_search_basics($cgi);
51
52     $query = ('#' . $_ . ' ' . $query) foreach ($cgi->param('modifier'));
53
54     foreach (grep /^fi:/, $cgi->param) {
55         /:(\w+)$/ or next;
56         my $term = join(",", $cgi->param($_));
57         $query .= " $1($term)" if length $term;
58     }
59
60     if ($cgi->param('sort')) {
61         my ($axis, $desc) = split /\./, $cgi->param('sort');
62         $query .= " sort($axis)";
63         $query .= '#descending' if $desc;
64     }
65
66     if ($cgi->param('pubdate') && $cgi->param('date1')) {
67         if ($cgi->param('pubdate') eq 'between') {
68             $query .= ' between(' . $cgi->param('date1');
69             $query .= ',' .  $cgi->param('date2') if $cgi->param('date2');
70             $query .= ')';
71         } elsif ($cgi->param('pubdate') eq 'is') {
72             $query .= ' between(' . $cgi->param('date1') .
73                 ',' .  $cgi->param('date1') . ')';  # sic, date1 twice
74         } else {
75             $query .= ' ' . $cgi->param('pubdate') .
76                 '(' . $cgi->param('date1') . ')';
77         }
78     }
79
80     my $site = $cgi->param('loc');
81     if (defined($site) and ($site ne $ctx->{aou_tree}->()->id) and not $query =~ /site\(\d+\)/) {
82         $query .= " site($site)";
83     }
84     if (defined($cgi->param('depth')) and not $query =~ /depth\(\d+\)/) {
85         my $depth = defined $cgi->param('depth') ?
86             $cgi->param('depth') : $ctx->{find_aou}->($site)->ou_type->depth;
87         $query .= " depth($depth)";
88     }
89
90     return $query;
91 }
92
93 # context additions: 
94 #   page_size
95 #   hit_count
96 #   records : list of bre's and copy-count objects
97 sub load_rresults {
98     my $self = shift;
99     my $cgi = $self->cgi;
100     my $ctx = $self->ctx;
101     my $e = $self->editor;
102
103     $ctx->{page} = 'rresult';
104     my $page = $cgi->param('page') || 0;
105     my $facet = $cgi->param('facet');
106     my $limit = $cgi->param('limit') || 10; # TODO user settings
107     my $offset = $page * $limit;
108
109     my $query = _prepare_biblio_search($cgi, $ctx);
110     # Limit and offset will stay here. Everything else should be part of
111     # the query string, not special args.
112     my $args = {'limit' => $limit, 'offset' => $offset};
113
114     # Stuff these into the TT context so that templates can use them in redrawing forms
115     $ctx->{processed_search_query} = $query;
116
117     $query = "$query $facet" if $facet; # TODO
118
119     my $results;
120
121     try {
122
123         my $method = 'open-ils.search.biblio.multiclass.query';
124         $method .= '.staff' if $ctx->{is_staff};
125         $results = $U->simplereq('open-ils.search', $method, $args, $query, 1);
126
127     } catch Error with {
128         my $err = shift;
129         $logger->error("multiclass search error: $err");
130         $results = {count => 0, ids => []};
131     };
132
133     my $rec_ids = [map { $_->[0] } @{$results->{ids}}];
134
135     $ctx->{records} = [];
136     $ctx->{search_facets} = {};
137     $ctx->{page_size} = $limit;
138     $ctx->{hit_count} = $results->{count};
139
140     return Apache2::Const::OK if @$rec_ids == 0;
141
142     my ($facets, @data) = $self->get_records_and_facets($rec_ids, $results->{facet_key});
143
144     # shove recs into context in search results order
145     for my $rec_id (@$rec_ids) {
146         push(
147             @{$ctx->{records}},
148             grep { $_->{bre}->id == $rec_id } @data
149         );
150     }
151
152     $ctx->{search_facets} = $facets;
153
154     return Apache2::Const::OK;
155 }
156
157 1;