]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/src/perlmods/lib/OpenILS/WWW/EGCatLoader/Record.pm
If there's no sort org unit, just fall back to the usual sorting
[working/Evergreen.git] / Open-ILS / src / perlmods / lib / OpenILS / WWW / EGCatLoader / Record.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 # context additions: 
11 #   record : bre object
12 sub load_record {
13     my $self = shift;
14     my $ctx = $self->ctx;
15     $ctx->{page} = 'record';
16
17     my $org = $self->cgi->param('loc') || $ctx->{aou_tree}->()->id;
18     my $depth = $self->cgi->param('depth') || 0;
19     my $copy_limit = int($self->cgi->param('copy_limit') || 10);
20     my $copy_offset = int($self->cgi->param('copy_offset') || 0);
21
22     my $rec_id = $ctx->{page_args}->[0]
23         or return Apache2::Const::HTTP_BAD_REQUEST;
24
25     # run copy retrieval in parallel to bib retrieval
26     # XXX unapi
27     my $copy_rec = OpenSRF::AppSession->create('open-ils.cstore')->request(
28         'open-ils.cstore.json_query.atomic', 
29         $self->mk_copy_query($rec_id, $org, $depth, $copy_limit, $copy_offset));
30
31     my (undef, @rec_data) = $self->get_records_and_facets([$rec_id], undef, {flesh => '{holdings_xml,mra}'});
32     $ctx->{bre_id} = $rec_data[0]->{id};
33     $ctx->{marc_xml} = $rec_data[0]->{marc_xml};
34
35     $ctx->{copies} = $copy_rec->gather(1);
36     $ctx->{copy_limit} = $copy_limit;
37     $ctx->{copy_offset} = $copy_offset;
38
39     $ctx->{have_holdings_to_show} = 0;
40     $self->get_hold_copy_summary($rec_id, $org);
41
42     # XXX TODO we'll also need conditional logic to show MFHD-based holdings
43     if (
44         $ctx->{get_org_setting}->
45             ($org, "opac.fully_compressed_serial_holdings")
46     ) {
47         $ctx->{holding_summaries} =
48             $self->get_holding_summaries($rec_id, $org, $depth);
49
50         $ctx->{have_holdings_to_show} =
51             scalar(@{$ctx->{holding_summaries}->{basic}}) ||
52             scalar(@{$ctx->{holding_summaries}->{index}}) ||
53             scalar(@{$ctx->{holding_summaries}->{supplement}});
54     }
55
56     # XXX probably should replace the following with a dispatch table
57     for my $expand ($self->cgi->param('expand')) {
58         $ctx->{"expand_$expand"} = 1;
59         if ($expand eq 'marchtml') {
60             $ctx->{marchtml} = $self->mk_marc_html($rec_id);
61         } elsif ($expand eq 'issues' and $ctx->{have_holdings_to_show}) {
62             $ctx->{expanded_holdings} =
63                 $self->get_expanded_holdings($rec_id, $org, $depth);
64         } elsif ($expand eq 'cnbrowse') {
65             $ctx->{browsed_call_numbers} = $self->browse_call_numbers();
66         }
67
68     }
69
70     return Apache2::Const::OK;
71 }
72
73 sub mk_copy_query {
74     my $self = shift;
75     my $rec_id = shift;
76     my $org = shift;
77     my $depth = shift;
78     my $copy_limit = shift;
79     my $copy_offset = shift;
80
81     my $query = {
82         select => {
83             acp => ['id', 'barcode', 'circ_lib', 'create_date', 'age_protect', 'holdable'],
84             acpl => [
85                 {column => 'name', alias => 'copy_location'},
86                 {column => 'holdable', alias => 'location_holdable'}
87             ],
88             ccs => [
89                 {column => 'name', alias => 'copy_status'},
90                 {column => 'holdable', alias => 'status_holdable'}
91             ],
92             acn => [
93                 {column => 'label', alias => 'call_number_label'},
94                 {column => 'id', alias => 'call_number'}
95             ],
96             circ => ['due_date'],
97         },
98         from => {
99             acp => {
100                 acn => {},
101                 acpl => {},
102                 ccs => {},
103                 circ => {type => 'left'},
104                 aou => {}
105             }
106         },
107         where => {
108             '+acp' => {
109                 deleted => 'f',
110                 call_number => {
111                     in => {
112                         select => {acn => ['id']},
113                         from => 'acn',
114                         where => {record => $rec_id}
115                     }
116                 },
117                 circ_lib => {
118                     in => {
119                         select => {aou => [{
120                             column => 'id', 
121                             transform => 'actor.org_unit_descendants', 
122                             result_field => 'id', 
123                             params => [$depth]
124                         }]},
125                         from => 'aou',
126                         where => {id => $org}
127                     }
128                 }
129             },
130             '+acn' => {deleted => 'f'},
131             '+circ' => {checkin_time => undef}
132         },
133
134         # Order is: copies with circ_lib=org, followed by circ_lib name, followed by call_number label
135         order_by => [
136             {class => 'aou', field => 'name'}, 
137             {class => 'acn', field => 'label'}
138         ],
139
140         limit => $copy_limit,
141         offset => $copy_offset
142     };
143
144     # XXX In the future, $sort_org should be understood to be an abstration
145     # that refers to something configurable, not necessariyl orig_loc.
146
147     if (my $sort_org = $self->ctx->{orig_loc}) {
148         unshift @{$query->{order_by}}, {
149             class => 'acp', field => 'circ_lib', transform => 'numeric_eq',
150             params => [$sort_org], direction => 'desc'
151         };
152     }
153
154     # Filter hidden items if this is the public catalog
155     unless($self->ctx->{is_staff}) { 
156         $query->{where}->{'+acp'}->{opac_visible} = 't';
157         $query->{where}->{'+acpl'}->{opac_visible} = 't';
158         $query->{where}->{'+ccs'}->{opac_visible} = 't';
159     }
160
161     return $query;
162     #return $self->editor->json_query($query);
163 }
164
165 sub mk_marc_html {
166     my($self, $rec_id) = @_;
167
168     # could be optimized considerably by performing the xslt on the already fetched record
169     return $U->simplereq(
170         'open-ils.search', 
171         'open-ils.search.biblio.record.html', $rec_id, 1);
172 }
173
174 sub get_holding_summaries {
175     my ($self, $rec_id, $org, $depth) = @_;
176
177     return (
178         create OpenSRF::AppSession("open-ils.serial")->request(
179             "open-ils.serial.bib.summary_statements",
180             $rec_id, {"org_id" => $org, "depth" => $depth}
181         )->gather(1)
182     );
183 }
184
185 sub get_expanded_holdings {
186     my ($self, $rec_id, $org, $depth) = @_;
187
188     my $holding_limit = int($self->cgi->param("holding_limit") || 10);
189     my $holding_offset = int($self->cgi->param("holding_offset") || 0);
190     my $type = $self->cgi->param("expand_holding_type");
191
192     return create OpenSRF::AppSession("open-ils.serial")->request(
193         "open-ils.serial.received_siss.retrieve.by_bib.atomic",
194         $rec_id, {
195             "ou" => $org, "depth" => $depth,
196             "limit" => $holding_limit, "offset" => $holding_offset,
197             "type" => $type
198         }
199     )->gather(1);
200 }
201
202 sub any_call_number_label {
203     my ($self) = @_;
204
205     if ($self->ctx->{copies} and @{$self->ctx->{copies}}) {
206         return $self->ctx->{copies}->[0]->{call_number_label};
207     } else {
208         return;
209     }
210 }
211
212 sub browse_call_numbers {
213     my ($self) = @_;
214
215     my $cn = $self->any_call_number_label or
216         return [];
217
218     my $org_unit = $self->ctx->{get_aou}->($self->cgi->param('loc')) ||
219         $self->ctx->{aou_tree}->();
220
221     my $supercat = create OpenSRF::AppSession("open-ils.supercat");
222     my $results = $supercat->request(
223         "open-ils.supercat.call_number.browse", 
224         $cn, $org_unit->shortname, 9, $self->cgi->param("cnoffset")
225     )->gather(1) || [];
226
227     return [
228         map {
229             $_->record->marc(
230                 (new XML::LibXML)->parse_string($_->record->marc)
231             );
232             $_;
233         } @$results
234     ];
235 }
236
237 sub get_hold_copy_summary {
238     my ($self, $rec_id, $org) = @_;
239     
240     my $req1 = OpenSRF::AppSession->create('open-ils.search')->request(
241         'open-ils.search.biblio.record.copy_count', $org, $rec_id); 
242
243     $self->ctx->{record_hold_count} = $U->simplereq(
244         'open-ils.circ', 'open-ils.circ.bre.holds.count', $rec_id);
245
246     $self->ctx->{copy_summary} = $req1->recv->content;
247 }
248
249 1;