]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/src/perlmods/lib/OpenILS/WWW/EGCatLoader/Record.pm
9deb0bfc8a2b611a86e859204b38a1486987bd1a
[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     my $lasso_orgs = $self->search_lasso_orgs;
319
320     if($lasso_orgs || $org != $self->ctx->{aou_tree}->()->id) { 
321         # no need to add the org join filter if we're not actually filtering
322
323         my $filter_orgs = $lasso_orgs || $org;
324         $query->{from}->{acp}->[1] = { aou => {
325             fkey => 'circ_lib',
326             field => 'id',
327             filter => {
328                 id => {
329                     in => {
330                         select => {aou => [{
331                             column => 'id', 
332                             transform => 'actor.org_unit_descendants',
333                             result_field => 'id', 
334                             ( $lasso_orgs ? () : (params => [$depth]) )
335                         }]},
336                         from => 'aou',
337                         where => {id => $filter_orgs}
338                     }
339                 }
340             }
341         }};
342     };
343
344     # Unsure if we want these in the shared function, leaving here for now
345     unshift(@{$query->{order_by}},
346         { class => "aou", field => 'id',
347           transform => 'evergreen.rank_ou', params => [$org, $pref_ou]
348         }
349     );
350     push(@{$query->{order_by}},
351         { class => "acp", field => 'id',
352           transform => 'evergreen.rank_cp'
353         }
354     );
355
356     return $query;
357 }
358
359 sub mk_marc_html {
360     my($self, $rec_id) = @_;
361
362     # could be optimized considerably by performing the xslt on the already fetched record
363     return $U->simplereq(
364         'open-ils.search', 
365         'open-ils.search.biblio.record.html', $rec_id, 1);
366 }
367
368 sub load_serial_holding_summaries {
369     my ($self, $rec_id, $org, $depth) = @_;
370
371     my $limit = $self->cgi->param("slimit") || 10;
372     my $offset = $self->cgi->param("soffset") || 0;
373
374     my $serial = create OpenSRF::AppSession("open-ils.serial");
375
376     # First, get the tree of /summaries/ of holdings.
377     my $tree = $serial->request(
378         "open-ils.serial.holding_summary_tree.by_bib",
379         $rec_id, $org, $depth, $limit, $offset
380     )->gather(1);
381
382     return if $self->apache_log_if_event(
383         $tree, "getting holding summary tree for record $rec_id"
384     );
385
386     # Next, if requested, get a list of individual holdings under a
387     # particular summary.
388     my $holdings;
389     my $summary_id = int($self->cgi->param("sid") || 0);
390     my $summary_type = $self->cgi->param("stype");
391
392     if ($summary_id and $summary_type) {
393         my $expand_path = [ $self->cgi->param("sepath") ],
394         my $expand_limit = $self->cgi->param("selimit");
395         my $expand_offsets = [ $self->cgi->param("seoffset") ];
396         my $auto_expand_first = 0;
397
398         if (not @$expand_offsets) {
399             $expand_offsets = undef;
400             $auto_expand_first = 1;
401         }
402
403         $holdings = $serial->request(
404             "open-ils.serial.holdings.grouped_by_summary",
405             $summary_type, $summary_id,
406             $expand_path, $expand_limit, $expand_offsets,
407             $auto_expand_first,
408             1 + ($self->ctx->{is_staff} ? 1 : 0)
409         )->gather(1);
410
411         if ($holdings and ref $holdings eq "ARRAY") {
412             $self->place_holdings_with_summary(
413                     $tree, $holdings, $summary_id, $summary_type
414             ) or $self->apache->log->warn(
415                 "could not place holdings within summary tree"
416             );
417         } else {
418             $self->apache_log_if_event(
419                 $holdings, "getting holdings grouped by summary $summary_id"
420             );
421         }
422     }
423
424     $serial->kill_me;
425
426     # The presence of any keys in the tree hash other than 'more' means that we
427     # must have /something/ we could show.
428     $self->ctx->{have_holdings_to_show} = grep { $_ ne 'more' } (keys %$tree);
429
430     $self->ctx->{holding_summary_tree} = $tree;
431 }
432
433 # This helper to load_serial_holding_summaries() recursively searches in
434 # $tree for a holding summary matching $sid and $stype, and places $holdings
435 # within the node for that summary. IOW, this is about showing expanded
436 # holdings under their "parent" summary.
437 sub place_holdings_with_summary {
438     my ($self, $tree, $holdings, $sid, $stype) = @_;
439
440     foreach my $sum (@{$tree->{holding_summaries}}) {
441         if ($sum->{id} == $sid and $sum->{summary_type} eq $stype) {
442             $sum->{holdings} = $holdings;
443             return 1;
444         }
445     }
446
447     foreach my $child (@{$tree->{children}}) {
448         return 1 if $self->place_holdings_with_summary(
449             $child, $holdings, $sid, $stype
450         );
451     }
452
453     return;
454 }
455
456 sub get_mfhd_summaries {
457     my ($self, $rec_id, $org, $depth) = @_;
458
459     my $serial = create OpenSRF::AppSession("open-ils.search");
460     my $result = $serial->request(
461         "open-ils.search.serial.record.bib.retrieve",
462         $rec_id, $org, $depth
463     )->gather(1);
464
465     $serial->kill_me;
466     return $result;
467 }
468
469 sub any_call_number_label {
470     my ($self) = @_;
471
472     if ($self->ctx->{copies} and @{$self->ctx->{copies}}) {
473         return $self->ctx->{copies}->[0]->{call_number_label};
474     } else {
475         return;
476     }
477 }
478
479 sub prepare_browse_call_numbers {
480     my ($self) = @_;
481
482     my $cn = ($self->cgi->param("cn") || $self->any_call_number_label) or
483         return [];
484
485     my $org_unit = $self->ctx->{get_aou}->($self->_get_search_lib()) ||
486         $self->ctx->{aou_tree}->();
487
488     my $supercat = create OpenSRF::AppSession("open-ils.supercat");
489     my $results = $supercat->request(
490         "open-ils.supercat.call_number.browse", 
491         $cn, $org_unit->shortname, 9, $self->cgi->param("cnoffset")
492     )->gather(1) || [];
493
494     $supercat->kill_me;
495
496     $self->ctx->{browsed_call_numbers} = [
497         map {
498             $_->record->marc(
499                 (new XML::LibXML)->parse_string($_->record->marc)
500             );
501             $_;
502         } @$results
503     ];
504     $self->ctx->{browsing_ou} = $org_unit;
505 }
506
507 sub get_hold_copy_summary {
508     my ($self, $rec_id, $org) = @_;
509     my $ctx = $self->ctx;
510     
511     my $search = OpenSRF::AppSession->create('open-ils.search');
512     my $copy_count_meth = 'open-ils.search.biblio.record.copy_count';
513     # We want to include OPAC-invisible copies in a staff context
514     if ($ctx->{is_staff}) {
515         $copy_count_meth .= '.staff';
516     }
517     my $req1 = $search->request($copy_count_meth, $org, $rec_id); 
518
519     # if org unit hiding applies, limit the hold count to holds
520     # whose pickup library is within our depth-scoped tree
521     my $count_args = {};
522     while ($org and $ctx->{org_within_hiding_scope}->($org)) {
523         $count_args->{pickup_lib_descendant} = $org;
524         $org = $ctx->{get_aou}->($org)->parent_ou;
525     }
526
527     $self->ctx->{record_hold_count} = $U->simplereq(
528         'open-ils.circ', 'open-ils.circ.bre.holds.count', 
529         $rec_id, $count_args);
530
531     $self->ctx->{copy_summary} = $req1->recv->content;
532
533     $search->kill_me;
534 }
535
536 sub load_print_or_email_preview {
537     my $self = shift;
538     my $type = shift;
539     my $captcha_pass = shift;
540
541     my $ctx = $self->ctx;
542     my $e = new_editor(xact => 1);
543     my $old_event = $self->cgi->param('old_event');
544     if ($old_event) {
545         $old_event = $e->retrieve_action_trigger_event([
546             $old_event,
547             {flesh => 1, flesh_fields => { atev => ['template_output'] }}
548         ]);
549         $e->delete_action_trigger_event($old_event) if ($old_event);
550         $e->delete_action_trigger_event_output($old_event->template_output) if ($old_event && $old_event->template_output);
551         $e->commit;
552     }
553
554     my $rec_or_list_id = $ctx->{page_args}->[0]
555         or return Apache2::Const::HTTP_BAD_REQUEST;
556
557     $ctx->{bre_id} = $rec_or_list_id;
558
559     my $is_list = $ctx->{is_list} = $self->cgi->param('is_list');
560     my $list;
561     if ($is_list) {
562
563         $list = $U->simplereq(
564             'open-ils.actor',
565             'open-ils.actor.anon_cache.get_value',
566             $rec_or_list_id, (ref $self)->CART_CACHE_MYLIST);
567
568         if(!$list) {
569             $list = [];
570         }
571
572         {   # sanitize
573             no warnings qw/numeric/;
574             $list = [map { int $_ } @$list];
575             $list = [grep { $_ > 0} @$list];
576         };
577     } else {
578         $list = $rec_or_list_id;
579         $ctx->{bre_id} = $rec_or_list_id;
580     }
581
582     $ctx->{sortable} = (ref($list) && @$list > 1);
583
584     my $group = $type eq 'print' ? 1 : 2;
585
586     $ctx->{formats} = $self->editor->search_action_trigger_event_def_group_member([{grp => $group},{order_by => { atevdefgm => 'name'}}]);
587     $ctx->{format} = $self->cgi->param('format') || $ctx->{formats}[0]->id;
588     if ($type eq 'email') {
589         $ctx->{email} = $self->cgi->param('email') || ($ctx->{user} ? $ctx->{user}->email : '');
590         $ctx->{subject} = $self->cgi->param('subject');
591     }
592
593     my $context_org = $self->cgi->param('context_org');
594     if ($context_org) {
595         $context_org = $self->ctx->{get_aou}->($context_org);
596     }
597
598     if (!$context_org) {
599         $context_org = $self->ctx->{get_aou}->($self->_get_search_lib()) ||
600             $self->ctx->{aou_tree}->();
601     }
602
603     $ctx->{context_org} = $context_org->id;
604
605     my ($incoming_sort,$sort_dir) = $self->_get_bookbag_sort_params('sort');
606     $sort_dir = $self->cgi->param('sort_dir') if $self->cgi->param('sort_dir');
607     if (!$incoming_sort) {
608         ($incoming_sort,$sort_dir) = $self->_get_bookbag_sort_params('anonsort');
609     }
610     if (!$incoming_sort) {
611         $incoming_sort = 'author';
612     }
613
614     $incoming_sort =~ s/sort.*$//;
615
616     $incoming_sort = 'author'
617         unless (grep {$_ eq $incoming_sort} qw/title author pubdate/);
618
619     $ctx->{sort} = $incoming_sort;
620     $ctx->{sort_dir} = $sort_dir;
621
622     my $method = "open-ils.search.biblio.record.$type.preview";
623     my @args = (
624         $list,
625         $ctx->{context_org},
626         $ctx->{sort},
627         $ctx->{sort_dir},
628         $ctx->{format},
629         $captcha_pass,
630         $ctx->{email},
631         $ctx->{subject}
632     );
633
634     unshift(@args, $ctx->{authtoken}) if ($type eq 'email');
635
636     $ctx->{preview_record} = $U->simplereq(
637         'open-ils.search', $method, @args);
638
639     $ctx->{'redirect_to'} = $self->cgi->param('redirect_to') || $self->cgi->referer;
640
641     return Apache2::Const::OK;
642 }
643
644 sub load_print_record {
645     my $self = shift;
646
647     my $event_id = $self->ctx->{page_args}->[0]
648         or return Apache2::Const::HTTP_BAD_REQUEST;
649
650     my $event = $self->editor->retrieve_action_trigger_event([
651         $event_id,
652         {flesh => 1, flesh_fields => { atev => ['template_output'] }}
653     ]);
654
655     return Apache2::Const::HTTP_BAD_REQUEST
656         unless ($event and $event->template_output and $event->template_output->data);
657
658     $self->ctx->{bre_id} = $self->cgi->param('bre_id');
659     $self->ctx->{is_list} = $self->cgi->param('is_list');
660     $self->ctx->{print_data} = $event->template_output->data;
661
662     if ($self->cgi->param('clear_cart')) {
663         $self->clear_anon_cache;
664     }
665     $self->ctx->{'redirect_to'} = $self->cgi->param('redirect_to');
666
667     return Apache2::Const::OK;
668 }
669
670 sub load_email_record {
671     my $self = shift;
672     my $captcha_pass = shift;
673
674     my $event_id = $self->ctx->{page_args}->[0]
675         or return Apache2::Const::HTTP_BAD_REQUEST;
676
677     my $e = new_editor(xact => 1, authtoken => $self->ctx->{authtoken});
678     return Apache2::Const::HTTP_BAD_REQUEST
679         unless $captcha_pass || $e->checkauth;
680
681     my $event = $e->retrieve_action_trigger_event([
682         $event_id,
683         {flesh => 1, flesh_fields => { atev => ['template_output'] }}
684     ]);
685
686     return Apache2::Const::HTTP_BAD_REQUEST
687         unless ($event and $event->template_output and $event->template_output->data);
688
689     $self->ctx->{email} = $self->cgi->param('email');
690     $self->ctx->{subject} = $self->cgi->param('subject');
691     $self->ctx->{bre_id} = $self->cgi->param('bre_id');
692     $self->ctx->{is_list} = $self->cgi->param('is_list');
693     $self->ctx->{print_data} = $event->template_output->data;
694
695     $U->simplereq(
696         'open-ils.search',
697         'open-ils.search.biblio.record.email.send_output',
698         $self->ctx->{authtoken}, $event_id,
699         $self->ctx->{cap}->{key}, $self->ctx->{cap_answer});
700
701     # Move the output to async so it can't be used in a resend attack
702     $event->async_output($event->template_output->id);
703     $event->clear_template_output;
704     $e->update_action_trigger_event($event);
705     $e->commit;
706
707     if ($self->cgi->param('clear_cart')) {
708         $self->clear_anon_cache;
709     }
710     $self->ctx->{'redirect_to'} = $self->cgi->param('redirect_to');
711
712     return Apache2::Const::OK;
713 }
714
715 # for each type, fire off the reqeust to see if content is available
716 # ctx.added_content.$type.status:
717 #   1 == available
718 #   2 == not available
719 #   3 == unknown
720 sub added_content_stage1 {
721     my $self = shift;
722     my $rec_id = shift;
723     my $ctx = $self->ctx;
724     my $sel_type = $self->cgi->param('ac') || '';
725
726     # Connect to this machine's IP address, using the same 
727     # Host with which our caller used to connect to us.
728     # This avoids us having to route out of the cluster 
729     # and back in to reach the top-level virtualhost.
730     my $ac_addr = $ENV{SERVER_ADDR};
731     # Internal connections are HTTP-only (no HTTPS) and assume the
732     # connection port is '80' unless otherwise specified in the Apache
733     # configuration (e.g. for proxy setups)
734     my $ac_port = $self->apache->dir_config('OILSWebInternalHTTPPort') || 80;
735     my $ac_host = $self->apache->hostname;
736     my $ac_failed = 0;
737
738     $logger->info("tpac: added content connecting to $ac_addr:$ac_port / $ac_host");
739
740     $ctx->{added_content} = {};
741     for my $type (@$ac_types) {
742         last if $ac_failed;
743         $ctx->{added_content}->{$type} = {content => ''};
744         $ctx->{added_content}->{$type}->{status} = 3;
745
746         $logger->debug("tpac: starting added content request for $rec_id => $type");
747
748         # Net::HTTP::NB is non-blocking /after/ the initial connect()
749         # Passing Timeout=>1 ensures we wait no longer than 1 second to 
750         # connect to the local Evergreen instance (i.e. ourself).  
751         # Connecting to oneself should either be very fast (normal) 
752         # or very slow (routing problems).
753
754         my $req = Net::HTTP::NB->new(
755             Host => $ac_addr, Timeout => 1, PeerPort => $ac_port);
756         if (!$req) {
757             $logger->warn("Unable to connect to $ac_addr:$ac_port / $ac_host".
758                 " for added content lookup for $rec_id: $@");
759             $ac_failed = 1;
760             next;
761         }
762
763         $req->host($self->apache->hostname);
764
765         my $http_type = ($type eq $sel_type) ? 'GET' : 'HEAD';
766         $req->write_request($http_type => "/opac/extras/ac/$type/html/r/" . $rec_id);
767         $ctx->{added_content}->{$type}->{request} = $req;
768     }
769 }
770
771 # check each outstanding request.  If it's ready, read the HTTP 
772 # status and use it to determine if content is available.  Otherwise,
773 # leave the status as unknown.
774 sub added_content_stage2 {
775     my $self = shift;
776     my $ctx = $self->ctx;
777     my $sel_type = $self->cgi->param('ac') || '';
778
779     for my $type (keys %{$ctx->{added_content}}) {
780         my $content = $ctx->{added_content}->{$type};
781
782         if ($content->{status} == 3) {
783             $logger->debug("tpac: finishing added content request for $type");
784
785             my $req = $content->{request};
786             my $sel = IO::Select->new($req);
787
788             # if we are requesting a specific type of content, give the 
789             # backend code a little extra time to retrieve the content.
790             my $wait = $type eq $sel_type ? 3 : 0; # TODO: config?
791
792             if ($sel->can_read($wait)) {
793                 my ($code) = $req->read_response_headers;
794                 $content->{status} = $code eq '200' ? 1 : 2;
795                 $logger->debug("tpac: added content request for $type returned $code");
796
797                 if ($code eq '200' and $type eq $sel_type) {
798                     while (1) {
799                         my $buf;
800                         my $n = $req->read_entity_body($buf, 1024);
801                         last unless $n;
802                         $content->{content} .= $buf;
803                     }
804                 }
805             }
806         }
807         # To avoid a lot of hanging connections.
808         if ($content->{request}) {
809             $content->{request}->shutdown(2);
810             $content->{request}->close();
811         } 
812     }
813 }
814
815 1;