]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/src/perlmods/lib/OpenILS/WWW/EGCatLoader/Record.pm
LP1849212: display course information in catalog for record-only acmcm entries
[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_GONE HTTP_INTERNAL_SERVER_ERROR REDIRECT HTTP_BAD_REQUEST HTTP_NOT_FOUND);
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 Net::HTTP::NB;
9 use IO::Select;
10 my $U = 'OpenILS::Application::AppUtils';
11
12 our $ac_types = ['toc',  'anotes', 'excerpt', 'summary', 'reviews'];
13
14 # context additions: 
15 #   record : bre object
16 sub load_record {
17     my $self = shift;
18     my %kwargs = @_;
19     my $ctx = $self->ctx;
20     $ctx->{page} = 'record';  
21     $ctx->{readonly} = $self->cgi->param('readonly');
22
23     $self->timelog("load_record() began");
24
25     my $rec_id = $ctx->{page_args}->[0];
26
27     return Apache2::Const::HTTP_BAD_REQUEST 
28         unless $rec_id and $rec_id =~ /^\d+$/;
29
30     $self->added_content_stage1($rec_id);
31     $self->timelog("past added content stage 1");
32
33     my $org = $self->_get_search_lib();
34     my $org_name = $ctx->{get_aou}->($org)->shortname;
35     my $pref_ou = $self->_get_pref_lib();
36     my $depth = $self->cgi->param('depth');
37     $depth = $ctx->{get_aou}->($org)->ou_type->depth 
38         unless defined $depth; # can be 0
39
40     my $copy_depth = $self->cgi->param('copy_depth');
41     $copy_depth = $depth unless defined $copy_depth; # can be 0
42     $self->ctx->{copy_depth} = $copy_depth;
43
44     my $copy_limit = int($self->cgi->param('copy_limit') || 10);
45     my $copy_offset = int($self->cgi->param('copy_offset') || 0);
46
47     $self->get_staff_search_settings;
48     if ($ctx->{staff_saved_search_size}) {
49         $ctx->{saved_searches} = ($self->staff_load_searches)[1];
50     }
51     $self->timelog("past staff saved searches");
52
53     $self->fetch_related_search_info($rec_id) unless $kwargs{no_search};
54     $self->timelog("past related search info");
55
56     # Check for user and load lists and prefs
57     if ($self->ctx->{user}) {
58         $self->_load_lists_and_settings;
59         $self->timelog("load user lists and settings");
60     }
61
62     # run copy retrieval in parallel to bib retrieval
63     # XXX unapi
64     my $cstore = OpenSRF::AppSession->create('open-ils.cstore');
65     my $copy_rec = $cstore->request(
66         'open-ils.cstore.json_query.atomic', 
67         $self->mk_copy_query($rec_id, $org, $copy_depth, $copy_limit, $copy_offset, $pref_ou)
68     );
69
70     if ($self->cgi->param('badges')) {
71         my $badges = $self->cgi->param('badges');
72         $badges = $badges ? [split(',', $badges)] : [];
73         $badges = [grep { /^\d+$/ } @$badges];
74         if (@$badges) {
75             $self->ctx->{badge_scores} = $cstore->request(
76                 'open-ils.cstore.direct.rating.record_badge_score.search.atomic',
77                 { record => $rec_id, badge => $badges },
78                 { flesh => 1, flesh_fields => { rrbs => ['badge'] } }
79             )->gather(1);
80         }
81     } else {
82         $self->ctx->{badge_scores} = [];
83     }
84
85     # find foreign copy data
86     my $peer_rec = $U->simplereq(
87         'open-ils.search',
88         'open-ils.search.peer_bibs', $rec_id );
89
90     $ctx->{foreign_copies} = $peer_rec;
91
92     my (undef, @rec_data) = $self->get_records_and_facets([$rec_id], undef, {
93         flesh => '{holdings_xml,bmp,mra,acp,acnp,acns}',
94         site => $org_name,
95         depth => $depth,
96         pref_lib => $pref_ou
97     });
98
99     $self->timelog("past get_records_and_facets()");
100     $ctx->{bre_id} = $rec_data[0]->{id};
101     $ctx->{marc_xml} = $rec_data[0]->{marc_xml};
102
103     $ctx->{copies} = $copy_rec->gather(1);
104
105     $ctx->{course_module_opt_in} = 0;
106     if ($ctx->{get_org_setting}->($org, "circ.course_materials_opt_in")) {
107         $ctx->{course_module_opt_in} = 1;
108     }
109
110     # Add public copy notes to each copy - and while we're in there, grab peer bib records
111     # and copy tags. Oh and if we're working with course materials, those too.
112     my %cached_bibs = ();
113     foreach my $copy (@{$ctx->{copies}}) {
114         $copy->{notes} = $U->simplereq(
115             'open-ils.circ',
116             'open-ils.circ.copy_note.retrieve.all',
117             {itemid => $copy->{id}, pub => 1 }
118         );
119         if ($ctx->{course_module_opt_in}) {
120             $copy->{course_materials} = $U->simplereq(
121                 'open-ils.courses',
122                 'open-ils.courses.course_materials.retrieve.atomic',
123                 {item => $copy->{id}}
124             );
125             my %course_ids;
126             for my $material (@{$copy->{course_materials}}) {
127                 $course_ids{$material->course} = 1;
128             }
129
130             $copy->{courses} = $U->simplereq(
131                 'open-ils.courses',
132                 'open-ils.courses.courses.retrieve',
133                 keys %course_ids
134             );
135         }
136         $self->timelog("past copy note retrieval call");
137         my $meth = 'open-ils.circ.copy_tags.retrieve';
138         $meth .= ".staff" if $ctx->{is_staff};
139         $copy->{tags} = $U->simplereq(
140             'open-ils.circ',
141             $meth,
142             {
143                 ($ctx->{is_staff} ? (authtoken => $ctx->{authtoken}) : ()),
144                 copy_id  => $copy->{id},
145                 scope    => $org,
146                 depth    => $copy_depth,
147             }
148         );
149         $self->timelog("past copy tag retrieval call");
150         $copy->{peer_bibs} = $U->simplereq(
151             'open-ils.search',
152             'open-ils.search.multi_home.bib_ids.by_barcode',
153             $copy->{barcode}
154         );
155         $self->timelog("past peer bib id retrieval");
156         my @peer_marc;
157         foreach my $bib (@{$copy->{peer_bibs}}) {
158             next if $bib eq $ctx->{bre_id};
159             next if $cached_bibs{$bib};
160             my (undef, @peer_data) = $self->get_records_and_facets(
161                 [$bib], undef, {
162                     flesh => '{}',
163                     site => $org_name,
164                     depth => $depth,
165                     pref_lib => $pref_ou
166             });
167             $cached_bibs{$bib} = 1;
168             #$copy->{peer_bib_marc} = $peer_data[0]->{marc_xml};
169             push @peer_marc, $peer_data[0]->{marc_xml};
170             $self->timelog("fetched peer bib record $bib");
171         }
172         $copy->{peer_bib_marc} = \@peer_marc;
173     }
174
175     $self->timelog("past store copy retrieval call");
176     $ctx->{copy_limit} = $copy_limit;
177     $ctx->{copy_offset} = $copy_offset;
178
179     $ctx->{have_holdings_to_show} = 0;
180     $ctx->{have_mfhd_to_show} = 0;
181
182     $self->get_hold_copy_summary($rec_id, $org);
183
184     $self->timelog("past get_hold_copy_summary()");
185     $self->ctx->{bib_is_dead} = OpenILS::Application::AppUtils->is_true(
186         OpenILS::Utils::CStoreEditor->new->json_query({
187             select => { bre => [ 'deleted' ] },
188             from => 'bre',
189             where => { 'id' => $rec_id }
190         })->[0]->{deleted}
191     );
192
193     $cstore->kill_me;
194
195     # Shortcut and help the machines with a 410 Gone status code
196     if ($self->ctx->{bib_is_dead}) {
197         return Apache2::Const::HTTP_GONE;
198     }
199
200     # Shortcut and help the machines with a 404 Not Found status code
201     if (!$ctx->{bre_id}) {
202         return Apache2::Const::HTTP_NOT_FOUND;
203     }
204
205     $ctx->{mfhd_summaries} =
206         $self->get_mfhd_summaries($rec_id, $org, $copy_depth);
207
208     if (
209         $ctx->{get_org_setting}->
210             ($org, "opac.fully_compressed_serial_holdings")
211     ) {
212         # We're loading this data here? Are we therefore assuming that we
213         # *are* going to display something in the "issues" expandy?
214         $self->load_serial_holding_summaries($rec_id, $org, $copy_depth);
215     } else {
216         if ($ctx->{mfhd_summaries} && scalar(@{$ctx->{mfhd_summaries}})
217         ) {
218             $ctx->{have_mfhd_to_show} = 1;
219         };
220     }
221
222     $self->timelog("past serials holding stuff");
223
224     my %expandies = (
225         marchtml => sub {
226             $ctx->{marchtml} = $self->mk_marc_html($rec_id);
227         },
228         issues => sub {
229             return;
230             # XXX this needed?
231         },
232         cnbrowse => sub {
233             $self->prepare_browse_call_numbers();
234         }
235     );
236
237     my @expand = $self->cgi->param('expand');
238     if (grep {$_ eq 'all'} @expand) {
239         $ctx->{expand_all} = 1;
240         $expandies{$_}->() for keys %expandies;
241
242     } else {
243         for my $exp (@expand) {
244             $ctx->{"expand_$exp"} = 1;
245             $expandies{$exp}->() if exists $expandies{$exp};
246         }
247     }
248
249     $self->timelog("past expandies");
250
251     $self->added_content_stage2($rec_id);
252
253     $self->timelog("past added content stage 2");
254
255     # Gather up metarecord info for display
256     # Let's start by getting the metarecord ID
257     my $mmr_id = OpenILS::Utils::CStoreEditor->new->json_query({
258         select   => { mmrsm => [ 'metarecord' ] },
259         from     => 'mmrsm',
260         where    => { 'source' => $rec_id }
261     })->[0]->{metarecord};
262     # If this record is apart of a meta group, I want to know more
263     if ( $mmr_id ) {
264         my (undef, @metarecord_data) = $self->get_records_and_facets([$mmr_id], undef, {
265             flesh => '{holdings_xml,mra}',
266             metarecord => 1,
267             site => $org_name,
268             depth => $depth,
269             pref_lib => $pref_ou
270         });
271         my ($rec) = grep { $_->{mmr_id} == $mmr_id } @metarecord_data;
272         $ctx->{mmr_id} = $mmr_id;
273         $ctx->{mmr_data} = $rec;
274     }
275     return Apache2::Const::OK;
276 }
277
278 # collect IDs and info on the search that lead to this details page
279 # If no search query, etc is present, we leave ctx.search_result_index == -1
280 sub fetch_related_search_info {
281     my $self = shift;
282     my $rec_id = shift;
283     my $ctx = $self->ctx;
284     $ctx->{search_result_index} = -1;
285
286     $self->load_rresults(internal => 1);
287
288     my @search_ids = @{$ctx->{ids}};
289     return unless @search_ids;
290
291     for my $idx (0..$#search_ids) {
292         if ($search_ids[$idx] == $rec_id) {
293             $ctx->{prev_search_record} = $search_ids[$idx - 1] if $idx > 0;
294             $ctx->{next_search_record} = $search_ids[$idx + 1];
295             $ctx->{search_result_index} = $idx;
296             last;
297         }
298     }
299
300     $ctx->{first_search_record} = $search_ids[0];
301     $ctx->{last_search_record} = $search_ids[-1];
302 }
303
304
305 sub mk_copy_query {
306     my $self = shift;
307     my $rec_id = shift;
308     my $org = shift;
309     my $depth = shift;
310     my $copy_limit = shift;
311     my $copy_offset = shift;
312     my $pref_ou = shift;
313
314     my $query = $U->basic_opac_copy_query(
315         $rec_id, undef, undef, $copy_limit, $copy_offset, $self->ctx->{is_staff}
316     );
317
318     if($org != $self->ctx->{aou_tree}->()->id) { 
319         # no need to add the org join filter if we're not actually filtering
320         $query->{from}->{acp}->[1] = { aou => {
321             fkey => 'circ_lib',
322             field => 'id',
323             filter => {
324                 id => {
325                     in => {
326                         select => {aou => [{
327                             column => 'id', 
328                             transform => 'actor.org_unit_descendants',
329                             result_field => 'id', 
330                             params => [$depth]
331                         }]},
332                         from => 'aou',
333                         where => {id => $org}
334                     }
335                 }
336             }
337         }};
338     };
339
340     # Unsure if we want these in the shared function, leaving here for now
341     unshift(@{$query->{order_by}},
342         { class => "aou", field => 'id',
343           transform => 'evergreen.rank_ou', params => [$org, $pref_ou]
344         }
345     );
346     push(@{$query->{order_by}},
347         { class => "acp", field => 'id',
348           transform => 'evergreen.rank_cp'
349         }
350     );
351
352     return $query;
353 }
354
355 sub mk_marc_html {
356     my($self, $rec_id) = @_;
357
358     # could be optimized considerably by performing the xslt on the already fetched record
359     return $U->simplereq(
360         'open-ils.search', 
361         'open-ils.search.biblio.record.html', $rec_id, 1);
362 }
363
364 sub load_serial_holding_summaries {
365     my ($self, $rec_id, $org, $depth) = @_;
366
367     my $limit = $self->cgi->param("slimit") || 10;
368     my $offset = $self->cgi->param("soffset") || 0;
369
370     my $serial = create OpenSRF::AppSession("open-ils.serial");
371
372     # First, get the tree of /summaries/ of holdings.
373     my $tree = $serial->request(
374         "open-ils.serial.holding_summary_tree.by_bib",
375         $rec_id, $org, $depth, $limit, $offset
376     )->gather(1);
377
378     return if $self->apache_log_if_event(
379         $tree, "getting holding summary tree for record $rec_id"
380     );
381
382     # Next, if requested, get a list of individual holdings under a
383     # particular summary.
384     my $holdings;
385     my $summary_id = int($self->cgi->param("sid") || 0);
386     my $summary_type = $self->cgi->param("stype");
387
388     if ($summary_id and $summary_type) {
389         my $expand_path = [ $self->cgi->param("sepath") ],
390         my $expand_limit = $self->cgi->param("selimit");
391         my $expand_offsets = [ $self->cgi->param("seoffset") ];
392         my $auto_expand_first = 0;
393
394         if (not @$expand_offsets) {
395             $expand_offsets = undef;
396             $auto_expand_first = 1;
397         }
398
399         $holdings = $serial->request(
400             "open-ils.serial.holdings.grouped_by_summary",
401             $summary_type, $summary_id,
402             $expand_path, $expand_limit, $expand_offsets,
403             $auto_expand_first,
404             1 + ($self->ctx->{is_staff} ? 1 : 0)
405         )->gather(1);
406
407         if ($holdings and ref $holdings eq "ARRAY") {
408             $self->place_holdings_with_summary(
409                     $tree, $holdings, $summary_id, $summary_type
410             ) or $self->apache->log->warn(
411                 "could not place holdings within summary tree"
412             );
413         } else {
414             $self->apache_log_if_event(
415                 $holdings, "getting holdings grouped by summary $summary_id"
416             );
417         }
418     }
419
420     $serial->kill_me;
421
422     # The presence of any keys in the tree hash other than 'more' means that we
423     # must have /something/ we could show.
424     $self->ctx->{have_holdings_to_show} = grep { $_ ne 'more' } (keys %$tree);
425
426     $self->ctx->{holding_summary_tree} = $tree;
427 }
428
429 # This helper to load_serial_holding_summaries() recursively searches in
430 # $tree for a holding summary matching $sid and $stype, and places $holdings
431 # within the node for that summary. IOW, this is about showing expanded
432 # holdings under their "parent" summary.
433 sub place_holdings_with_summary {
434     my ($self, $tree, $holdings, $sid, $stype) = @_;
435
436     foreach my $sum (@{$tree->{holding_summaries}}) {
437         if ($sum->{id} == $sid and $sum->{summary_type} eq $stype) {
438             $sum->{holdings} = $holdings;
439             return 1;
440         }
441     }
442
443     foreach my $child (@{$tree->{children}}) {
444         return 1 if $self->place_holdings_with_summary(
445             $child, $holdings, $sid, $stype
446         );
447     }
448
449     return;
450 }
451
452 sub get_mfhd_summaries {
453     my ($self, $rec_id, $org, $depth) = @_;
454
455     my $serial = create OpenSRF::AppSession("open-ils.search");
456     my $result = $serial->request(
457         "open-ils.search.serial.record.bib.retrieve",
458         $rec_id, $org, $depth
459     )->gather(1);
460
461     $serial->kill_me;
462     return $result;
463 }
464
465 sub any_call_number_label {
466     my ($self) = @_;
467
468     if ($self->ctx->{copies} and @{$self->ctx->{copies}}) {
469         return $self->ctx->{copies}->[0]->{call_number_label};
470     } else {
471         return;
472     }
473 }
474
475 sub prepare_browse_call_numbers {
476     my ($self) = @_;
477
478     my $cn = ($self->cgi->param("cn") || $self->any_call_number_label) or
479         return [];
480
481     my $org_unit = $self->ctx->{get_aou}->($self->_get_search_lib()) ||
482         $self->ctx->{aou_tree}->();
483
484     my $supercat = create OpenSRF::AppSession("open-ils.supercat");
485     my $results = $supercat->request(
486         "open-ils.supercat.call_number.browse", 
487         $cn, $org_unit->shortname, 9, $self->cgi->param("cnoffset")
488     )->gather(1) || [];
489
490     $supercat->kill_me;
491
492     $self->ctx->{browsed_call_numbers} = [
493         map {
494             $_->record->marc(
495                 (new XML::LibXML)->parse_string($_->record->marc)
496             );
497             $_;
498         } @$results
499     ];
500     $self->ctx->{browsing_ou} = $org_unit;
501 }
502
503 sub get_hold_copy_summary {
504     my ($self, $rec_id, $org) = @_;
505     my $ctx = $self->ctx;
506     
507     my $search = OpenSRF::AppSession->create('open-ils.search');
508     my $copy_count_meth = 'open-ils.search.biblio.record.copy_count';
509     # We want to include OPAC-invisible copies in a staff context
510     if ($ctx->{is_staff}) {
511         $copy_count_meth .= '.staff';
512     }
513     my $req1 = $search->request($copy_count_meth, $org, $rec_id); 
514
515     # if org unit hiding applies, limit the hold count to holds
516     # whose pickup library is within our depth-scoped tree
517     my $count_args = {};
518     while ($org and $ctx->{org_within_hiding_scope}->($org)) {
519         $count_args->{pickup_lib_descendant} = $org;
520         $org = $ctx->{get_aou}->($org)->parent_ou;
521     }
522
523     $self->ctx->{record_hold_count} = $U->simplereq(
524         'open-ils.circ', 'open-ils.circ.bre.holds.count', 
525         $rec_id, $count_args);
526
527     $self->ctx->{copy_summary} = $req1->recv->content;
528
529     $search->kill_me;
530 }
531
532 sub load_print_or_email_preview {
533     my $self = shift;
534     my $type = shift;
535     my $captcha_pass = shift;
536
537     my $ctx = $self->ctx;
538     my $e = new_editor(xact => 1);
539     my $old_event = $self->cgi->param('old_event');
540     if ($old_event) {
541         $old_event = $e->retrieve_action_trigger_event([
542             $old_event,
543             {flesh => 1, flesh_fields => { atev => ['template_output'] }}
544         ]);
545         $e->delete_action_trigger_event($old_event) if ($old_event);
546         $e->delete_action_trigger_event_output($old_event->template_output) if ($old_event && $old_event->template_output);
547         $e->commit;
548     }
549
550     my $rec_or_list_id = $ctx->{page_args}->[0]
551         or return Apache2::Const::HTTP_BAD_REQUEST;
552
553     $ctx->{bre_id} = $rec_or_list_id;
554
555     my $is_list = $ctx->{is_list} = $self->cgi->param('is_list');
556     my $list;
557     if ($is_list) {
558
559         $list = $U->simplereq(
560             'open-ils.actor',
561             'open-ils.actor.anon_cache.get_value',
562             $rec_or_list_id, (ref $self)->CART_CACHE_MYLIST);
563
564         if(!$list) {
565             $list = [];
566         }
567
568         {   # sanitize
569             no warnings qw/numeric/;
570             $list = [map { int $_ } @$list];
571             $list = [grep { $_ > 0} @$list];
572         };
573     } else {
574         $list = $rec_or_list_id;
575         $ctx->{bre_id} = $rec_or_list_id;
576     }
577
578     $ctx->{sortable} = (ref($list) && @$list > 1);
579
580     my $group = $type eq 'print' ? 1 : 2;
581
582     $ctx->{formats} = $self->editor->search_action_trigger_event_def_group_member([{grp => $group},{order_by => { atevdefgm => 'name'}}]);
583     $ctx->{format} = $self->cgi->param('format') || $ctx->{formats}[0]->id;
584     if ($type eq 'email') {
585         $ctx->{email} = $self->cgi->param('email') || ($ctx->{user} ? $ctx->{user}->email : '');
586         $ctx->{subject} = $self->cgi->param('subject');
587     }
588
589     my $context_org = $self->cgi->param('context_org');
590     if ($context_org) {
591         $context_org = $self->ctx->{get_aou}->($context_org);
592     }
593
594     if (!$context_org) {
595         $context_org = $self->ctx->{get_aou}->($self->_get_search_lib()) ||
596             $self->ctx->{aou_tree}->();
597     }
598
599     $ctx->{context_org} = $context_org->id;
600
601     my ($incoming_sort,$sort_dir) = $self->_get_bookbag_sort_params('sort');
602     $sort_dir = $self->cgi->param('sort_dir') if $self->cgi->param('sort_dir');
603     if (!$incoming_sort) {
604         ($incoming_sort,$sort_dir) = $self->_get_bookbag_sort_params('anonsort');
605     }
606     if (!$incoming_sort) {
607         $incoming_sort = 'author';
608     }
609
610     $incoming_sort =~ s/sort.*$//;
611
612     $incoming_sort = 'author'
613         unless (grep {$_ eq $incoming_sort} qw/title author pubdate/);
614
615     $ctx->{sort} = $incoming_sort;
616     $ctx->{sort_dir} = $sort_dir;
617
618     my $method = "open-ils.search.biblio.record.$type.preview";
619     my @args = (
620         $list,
621         $ctx->{context_org},
622         $ctx->{sort},
623         $ctx->{sort_dir},
624         $ctx->{format},
625         $captcha_pass,
626         $ctx->{email},
627         $ctx->{subject}
628     );
629
630     unshift(@args, $ctx->{authtoken}) if ($type eq 'email');
631
632     $ctx->{preview_record} = $U->simplereq(
633         'open-ils.search', $method, @args);
634
635     $ctx->{'redirect_to'} = $self->cgi->param('redirect_to') || $self->cgi->referer;
636
637     return Apache2::Const::OK;
638 }
639
640 sub load_print_record {
641     my $self = shift;
642
643     my $event_id = $self->ctx->{page_args}->[0]
644         or return Apache2::Const::HTTP_BAD_REQUEST;
645
646     my $event = $self->editor->retrieve_action_trigger_event([
647         $event_id,
648         {flesh => 1, flesh_fields => { atev => ['template_output'] }}
649     ]);
650
651     return Apache2::Const::HTTP_BAD_REQUEST
652         unless ($event and $event->template_output and $event->template_output->data);
653
654     $self->ctx->{bre_id} = $self->cgi->param('bre_id');
655     $self->ctx->{is_list} = $self->cgi->param('is_list');
656     $self->ctx->{print_data} = $event->template_output->data;
657
658     if ($self->cgi->param('clear_cart')) {
659         $self->clear_anon_cache;
660     }
661     $self->ctx->{'redirect_to'} = $self->cgi->param('redirect_to');
662
663     return Apache2::Const::OK;
664 }
665
666 sub load_email_record {
667     my $self = shift;
668     my $captcha_pass = shift;
669
670     my $event_id = $self->ctx->{page_args}->[0]
671         or return Apache2::Const::HTTP_BAD_REQUEST;
672
673     my $e = new_editor(xact => 1, authtoken => $self->ctx->{authtoken});
674     return Apache2::Const::HTTP_BAD_REQUEST
675         unless $captcha_pass || $e->checkauth;
676
677     my $event = $e->retrieve_action_trigger_event([
678         $event_id,
679         {flesh => 1, flesh_fields => { atev => ['template_output'] }}
680     ]);
681
682     return Apache2::Const::HTTP_BAD_REQUEST
683         unless ($event and $event->template_output and $event->template_output->data);
684
685     $self->ctx->{email} = $self->cgi->param('email');
686     $self->ctx->{subject} = $self->cgi->param('subject');
687     $self->ctx->{bre_id} = $self->cgi->param('bre_id');
688     $self->ctx->{is_list} = $self->cgi->param('is_list');
689     $self->ctx->{print_data} = $event->template_output->data;
690
691     $U->simplereq(
692         'open-ils.search',
693         'open-ils.search.biblio.record.email.send_output',
694         $self->ctx->{authtoken}, $event_id,
695         $self->ctx->{cap}->{key}, $self->ctx->{cap_answer});
696
697     # Move the output to async so it can't be used in a resend attack
698     $event->async_output($event->template_output->id);
699     $event->clear_template_output;
700     $e->update_action_trigger_event($event);
701     $e->commit;
702
703     if ($self->cgi->param('clear_cart')) {
704         $self->clear_anon_cache;
705     }
706     $self->ctx->{'redirect_to'} = $self->cgi->param('redirect_to');
707
708     return Apache2::Const::OK;
709 }
710
711 # for each type, fire off the reqeust to see if content is available
712 # ctx.added_content.$type.status:
713 #   1 == available
714 #   2 == not available
715 #   3 == unknown
716 sub added_content_stage1 {
717     my $self = shift;
718     my $rec_id = shift;
719     my $ctx = $self->ctx;
720     my $sel_type = $self->cgi->param('ac') || '';
721
722     # Connect to this machine's IP address, using the same 
723     # Host with which our caller used to connect to us.
724     # This avoids us having to route out of the cluster 
725     # and back in to reach the top-level virtualhost.
726     my $ac_addr = $ENV{SERVER_ADDR};
727     # Internal connections are HTTP-only (no HTTPS) and assume the
728     # connection port is '80' unless otherwise specified in the Apache
729     # configuration (e.g. for proxy setups)
730     my $ac_port = $self->apache->dir_config('OILSWebInternalHTTPPort') || 80;
731     my $ac_host = $self->apache->hostname;
732     my $ac_failed = 0;
733
734     $logger->info("tpac: added content connecting to $ac_addr:$ac_port / $ac_host");
735
736     $ctx->{added_content} = {};
737     for my $type (@$ac_types) {
738         last if $ac_failed;
739         $ctx->{added_content}->{$type} = {content => ''};
740         $ctx->{added_content}->{$type}->{status} = 3;
741
742         $logger->debug("tpac: starting added content request for $rec_id => $type");
743
744         # Net::HTTP::NB is non-blocking /after/ the initial connect()
745         # Passing Timeout=>1 ensures we wait no longer than 1 second to 
746         # connect to the local Evergreen instance (i.e. ourself).  
747         # Connecting to oneself should either be very fast (normal) 
748         # or very slow (routing problems).
749
750         my $req = Net::HTTP::NB->new(
751             Host => $ac_addr, Timeout => 1, PeerPort => $ac_port);
752         if (!$req) {
753             $logger->warn("Unable to connect to $ac_addr:$ac_port / $ac_host".
754                 " for added content lookup for $rec_id: $@");
755             $ac_failed = 1;
756             next;
757         }
758
759         $req->host($self->apache->hostname);
760
761         my $http_type = ($type eq $sel_type) ? 'GET' : 'HEAD';
762         $req->write_request($http_type => "/opac/extras/ac/$type/html/r/" . $rec_id);
763         $ctx->{added_content}->{$type}->{request} = $req;
764     }
765 }
766
767 # check each outstanding request.  If it's ready, read the HTTP 
768 # status and use it to determine if content is available.  Otherwise,
769 # leave the status as unknown.
770 sub added_content_stage2 {
771     my $self = shift;
772     my $ctx = $self->ctx;
773     my $sel_type = $self->cgi->param('ac') || '';
774
775     for my $type (keys %{$ctx->{added_content}}) {
776         my $content = $ctx->{added_content}->{$type};
777
778         if ($content->{status} == 3) {
779             $logger->debug("tpac: finishing added content request for $type");
780
781             my $req = $content->{request};
782             my $sel = IO::Select->new($req);
783
784             # if we are requesting a specific type of content, give the 
785             # backend code a little extra time to retrieve the content.
786             my $wait = $type eq $sel_type ? 3 : 0; # TODO: config?
787
788             if ($sel->can_read($wait)) {
789                 my ($code) = $req->read_response_headers;
790                 $content->{status} = $code eq '200' ? 1 : 2;
791                 $logger->debug("tpac: added content request for $type returned $code");
792
793                 if ($code eq '200' and $type eq $sel_type) {
794                     while (1) {
795                         my $buf;
796                         my $n = $req->read_entity_body($buf, 1024);
797                         last unless $n;
798                         $content->{content} .= $buf;
799                     }
800                 }
801             }
802         }
803         # To avoid a lot of hanging connections.
804         if ($content->{request}) {
805             $content->{request}->shutdown(2);
806             $content->{request}->close();
807         } 
808     }
809 }
810
811 1;