]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/src/perlmods/lib/OpenILS/WWW/EGCatLoader/Record.pm
Merge branch 'master' of git.evergreen-ils.org:Evergreen into template-toolkit-opac
[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     # Filter hidden items if this is the public catalog
145     unless($self->ctx->{is_staff}) { 
146         $query->{where}->{'+acp'}->{opac_visible} = 't';
147         $query->{where}->{'+acpl'}->{opac_visible} = 't';
148         $query->{where}->{'+ccs'}->{opac_visible} = 't';
149     }
150
151     return $query;
152     #return $self->editor->json_query($query);
153 }
154
155 sub mk_marc_html {
156     my($self, $rec_id) = @_;
157
158     # could be optimized considerably by performing the xslt on the already fetched record
159     return $U->simplereq(
160         'open-ils.search', 
161         'open-ils.search.biblio.record.html', $rec_id, 1);
162 }
163
164 sub get_holding_summaries {
165     my ($self, $rec_id, $org, $depth) = @_;
166
167     return (
168         create OpenSRF::AppSession("open-ils.serial")->request(
169             "open-ils.serial.bib.summary_statements",
170             $rec_id, {"org_id" => $org, "depth" => $depth}
171         )->gather(1)
172     );
173 }
174
175 sub get_expanded_holdings {
176     my ($self, $rec_id, $org, $depth) = @_;
177
178     my $holding_limit = int($self->cgi->param("holding_limit") || 10);
179     my $holding_offset = int($self->cgi->param("holding_offset") || 0);
180     my $type = $self->cgi->param("expand_holding_type");
181
182     return create OpenSRF::AppSession("open-ils.serial")->request(
183         "open-ils.serial.received_siss.retrieve.by_bib.atomic",
184         $rec_id, {
185             "ou" => $org, "depth" => $depth,
186             "limit" => $holding_limit, "offset" => $holding_offset,
187             "type" => $type
188         }
189     )->gather(1);
190 }
191
192 sub any_call_number_label {
193     my ($self) = @_;
194
195     if ($self->ctx->{copies} and @{$self->ctx->{copies}}) {
196         return $self->ctx->{copies}->[0]->{call_number_label};
197     } else {
198         return;
199     }
200 }
201
202 sub browse_call_numbers {
203     my ($self) = @_;
204
205     my $cn = $self->any_call_number_label or
206         return [];
207
208     my $org_unit = $self->ctx->{get_aou}->($self->cgi->param('loc')) ||
209         $self->ctx->{aou_tree}->();
210
211     my $supercat = create OpenSRF::AppSession("open-ils.supercat");
212     my $results = $supercat->request(
213         "open-ils.supercat.call_number.browse", 
214         $cn, $org_unit->shortname, 9, $self->cgi->param("cnoffset")
215     )->gather(1) || [];
216
217     return [
218         map {
219             $_->record->marc(
220                 (new XML::LibXML)->parse_string($_->record->marc)
221             );
222             $_;
223         } @$results
224     ];
225 }
226
227 sub get_hold_copy_summary {
228     my ($self, $rec_id, $org) = @_;
229     
230     my $req1 = OpenSRF::AppSession->create('open-ils.search')->request(
231         'open-ils.search.biblio.record.copy_count', $org, $rec_id); 
232
233     $self->ctx->{record_hold_count} = $U->simplereq(
234         'open-ils.circ', 'open-ils.circ.bre.holds.count', $rec_id);
235
236     $self->ctx->{copy_summary} = $req1->recv->content;
237 }
238
239 1;