]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/src/perlmods/lib/OpenILS/WWW/EGCatLoader/Account.pm
Tweaks to 'my lists' paging code
[working/Evergreen.git] / Open-ILS / src / perlmods / lib / OpenILS / WWW / EGCatLoader / Account.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 use OpenILS::Event;
9 use OpenSRF::Utils::JSON;
10 use OpenSRF::Utils::Cache;
11 use Digest::MD5 qw(md5_hex);
12 use Data::Dumper;
13 $Data::Dumper::Indent = 0;
14 use DateTime;
15 my $U = 'OpenILS::Application::AppUtils';
16
17 sub prepare_extended_user_info {
18     my $self = shift;
19     my @extra_flesh = @_;
20     my $e = $self->editor;
21
22     # are we already in a transaction?
23     my $local_xact = !$e->{xact_id}; 
24     $e->xact_begin if $local_xact;
25
26     # keep the original user object so we can restore
27     # login-specific data (e.g. workstation)
28     my $usr = $self->ctx->{user};
29
30     $self->ctx->{user} = $self->editor->retrieve_actor_user([
31         $self->ctx->{user}->id,
32         {
33             flesh => 1,
34             flesh_fields => {
35                 au => [qw/card home_ou addresses ident_type billing_address/, @extra_flesh]
36                 # ...
37             }
38         }
39     ]);
40
41     $e->rollback if $local_xact;
42
43     $self->ctx->{user}->wsid($usr->wsid);
44     $self->ctx->{user}->ws_ou($usr->ws_ou);
45
46     # discard replaced (negative-id) addresses.
47     $self->ctx->{user}->addresses([
48         grep {$_->id > 0} @{$self->ctx->{user}->addresses} ]);
49
50     return Apache2::Const::HTTP_INTERNAL_SERVER_ERROR 
51         unless $self->ctx->{user};
52
53     return;
54 }
55
56 # Given an event returned by a failed attempt to create a hold, do we have
57 # permission to override?  XXX Should the permission check be scoped to a
58 # given org_unit context?
59 sub test_could_override {
60     my ($self, $event) = @_;
61
62     return 0 unless $event;
63     return 1 if $self->editor->allowed($event->{textcode} . ".override");
64     return 1 if $event->{"fail_part"} and
65         $self->editor->allowed($event->{"fail_part"} . ".override");
66     return 0;
67 }
68
69 # Find out whether we care that local copies are available
70 sub local_avail_concern {
71     my ($self, $hold_target, $hold_type, $pickup_lib) = @_;
72
73     my $would_block = $self->ctx->{get_org_setting}->
74         ($pickup_lib, "circ.holds.hold_has_copy_at.block");
75     my $would_alert = (
76         $self->ctx->{get_org_setting}->
77             ($pickup_lib, "circ.holds.hold_has_copy_at.alert") and
78                 not $self->cgi->param("override")
79     ) unless $would_block;
80
81     if ($would_block or $would_alert) {
82         my $args = {
83             "hold_target" => $hold_target,
84             "hold_type" => $hold_type,
85             "org_unit" => $pickup_lib
86         };
87         my $local_avail = $U->simplereq(
88             "open-ils.circ",
89             "open-ils.circ.hold.has_copy_at", $self->editor->authtoken, $args
90         );
91         $logger->info(
92             "copy availability information for " . Dumper($args) .
93             " is " . Dumper($local_avail)
94         );
95         if (%$local_avail) { # if hash not empty
96             $self->ctx->{hold_copy_available} = $local_avail;
97             return ($would_block, $would_alert);
98         }
99     }
100
101     return (0, 0);
102 }
103
104 # context additions: 
105 #   user : au object, fleshed
106 sub load_myopac_prefs {
107     my $self = shift;
108     my $cgi = $self->cgi;
109     my $e = $self->editor;
110     my $pending_addr = $cgi->param('pending_addr');
111     my $replace_addr = $cgi->param('replace_addr');
112     my $delete_pending = $cgi->param('delete_pending');
113
114     $self->prepare_extended_user_info;
115     my $user = $self->ctx->{user};
116
117     my $lock_usernames = $self->ctx->{get_org_setting}->($e->requestor->home_ou, 'opac.lock_usernames');
118     if(defined($lock_usernames) and $lock_usernames == 1) {
119         # Policy says no username changes
120         $self->ctx->{username_change_disallowed} = 1;
121     } else {
122         my $username_unlimit = $self->ctx->{get_org_setting}->($e->requestor->home_ou, 'opac.unlimit_usernames');
123         if(!$username_unlimit) {
124             my $regex_check = $self->ctx->{get_org_setting}->($e->requestor->home_ou, 'opac.barcode_regex');
125             if(!$regex_check) {
126                 # Default is "starts with a number"
127                 $regex_check = '^\d+';
128             }
129             # You already have a username?
130             if($regex_check and $self->ctx->{user}->usrname !~ /$regex_check/) {
131                 $self->ctx->{username_change_disallowed} = 1;
132             }
133         }
134     }
135
136     return Apache2::Const::OK unless 
137         $pending_addr or $replace_addr or $delete_pending;
138
139     my @form_fields = qw/address_type street1 street2 city county state country post_code/;
140
141     my $paddr;
142     if( $pending_addr ) { # update an existing pending address
143
144         ($paddr) = grep { $_->id == $pending_addr } @{$user->addresses};
145         return Apache2::Const::HTTP_BAD_REQUEST unless $paddr;
146         $paddr->$_( $cgi->param($_) ) for @form_fields;
147
148     } elsif( $replace_addr ) { # create a new pending address for 'replace_addr'
149
150         $paddr = Fieldmapper::actor::user_address->new;
151         $paddr->isnew(1);
152         $paddr->usr($user->id);
153         $paddr->pending('t');
154         $paddr->replaces($replace_addr);
155         $paddr->$_( $cgi->param($_) ) for @form_fields;
156
157     } elsif( $delete_pending ) {
158         $paddr = $e->retrieve_actor_user_address($delete_pending);
159         return Apache2::Const::HTTP_BAD_REQUEST unless 
160             $paddr and $paddr->usr == $user->id and $U->is_true($paddr->pending);
161         $paddr->isdeleted(1);
162     }
163
164     my $resp = $U->simplereq(
165         'open-ils.actor', 
166         'open-ils.actor.user.address.pending.cud',
167         $e->authtoken, $paddr);
168
169     if( $U->event_code($resp) ) {
170         $logger->error("Error updating pending address: $resp");
171         return Apache2::Const::HTTP_INTERNAL_SERVER_ERROR;
172     }
173
174     # in light of these changes, re-fetch latest data
175     $e->xact_begin; 
176     $self->prepare_extended_user_info;
177     $e->rollback;
178
179     return Apache2::Const::OK;
180 }
181
182 sub load_myopac_prefs_notify {
183     my $self = shift;
184     my $e = $self->editor;
185
186
187     my $stat = $self->_load_user_with_prefs;
188     return $stat if $stat;
189
190     my $user_prefs = $self->fetch_optin_prefs;
191     $user_prefs = $self->update_optin_prefs($user_prefs)
192         if $self->cgi->request_method eq 'POST';
193
194     $self->ctx->{opt_in_settings} = $user_prefs;
195
196     return Apache2::Const::OK
197         unless $self->cgi->request_method eq 'POST';
198
199     my %settings;
200     my $set_map = $self->ctx->{user_setting_map};
201  
202     foreach my $key (qw/
203         opac.default_phone
204         opac.default_sms_notify
205     /) {
206         my $val = $self->cgi->param($key);
207         $settings{$key}= $val unless $$set_map{$key} eq $val;
208     }
209
210     my $key = 'opac.default_sms_carrier';
211     my $val = $self->cgi->param('sms_carrier');
212     $settings{$key}= $val unless $$set_map{$key} eq $val;
213
214     $key = 'opac.hold_notify';
215     my @notify_methods = ();
216     if ($self->cgi->param($key . ".email") eq 'on') {
217         push @notify_methods, "email";
218     }
219     if ($self->cgi->param($key . ".phone") eq 'on') {
220         push @notify_methods, "phone";
221     }
222     if ($self->cgi->param($key . ".sms") eq 'on') {
223         push @notify_methods, "sms";
224     }
225     $val = join("|",@notify_methods);
226     $settings{$key}= $val unless $$set_map{$key} eq $val;
227
228     # Send the modified settings off to be saved
229     $U->simplereq(
230         'open-ils.actor', 
231         'open-ils.actor.patron.settings.update',
232         $self->editor->authtoken, undef, \%settings);
233
234     # re-fetch user prefs 
235     $self->ctx->{updated_user_settings} = \%settings;
236     return $self->_load_user_with_prefs || Apache2::Const::OK;
237 }
238
239 sub fetch_optin_prefs {
240     my $self = shift;
241     my $e = $self->editor;
242
243     # fetch all of the opt-in settings the user has access to
244     # XXX: user's should in theory have options to opt-in to notices
245     # for remote locations, but that opens the door for a large
246     # set of generally un-used opt-ins.. needs discussion
247     my $opt_ins =  $U->simplereq(
248         'open-ils.actor',
249         'open-ils.actor.event_def.opt_in.settings.atomic',
250         $e->authtoken, $e->requestor->home_ou);
251
252     # some opt-ins are staff-only
253     $opt_ins = [ grep { $U->is_true($_->opac_visible) } @$opt_ins ];
254
255     # fetch user setting values for each of the opt-in settings
256     my $user_set = $U->simplereq(
257         'open-ils.actor',
258         'open-ils.actor.patron.settings.retrieve',
259         $e->authtoken, 
260         $e->requestor->id, 
261         [map {$_->name} @$opt_ins]
262     );
263
264     return [map { {cust => $_, value => $user_set->{$_->name} } } @$opt_ins];
265 }
266
267 sub _load_lists_and_settings {
268     my $self = shift;
269     my $e = $self->editor;
270     my $stat = $self->_load_user_with_prefs;
271     unless ($stat) {
272         my $exclude = 0;
273         my $setting_map = $self->ctx->{user_setting_map};
274         $exclude = $$setting_map{'opac.default_list'} if ($$setting_map{'opac.default_list'});
275         $self->ctx->{bookbags} = $e->search_container_biblio_record_entry_bucket(
276             [
277                 {owner => $self->ctx->{user}->id, btype => 'bookbag', id => {'<>' => $exclude}}, {
278                     order_by => {cbreb => 'name'},
279                     limit => $self->cgi->param('limit') || 10,
280                     offset => $self->cgi->param('offset') || 0
281                 }
282             ]
283         );
284         # We also want a total count of the user's bookbags.
285         my $q = {
286             'select' => { 'cbreb' => [ { 'column' => 'id', 'transform' => 'count', 'aggregate' => 'true', 'alias' => 'count' } ] },
287             'from' => 'cbreb',
288             'where' => { 'btype' => 'bookbag', 'owner' => $self->ctx->{user}->id }
289         };
290         my $r = $e->json_query($q);
291         $self->ctx->{bookbag_count} = $r->[0]->{'count'};
292         # Someone has requested that we use the default list's name
293         # rather than "Default List."
294         if ($exclude) {
295             $q = {
296                 'select' => {'cbreb' => ['name']},
297                 'from' => 'cbreb',
298                 'where' => {'id' => $exclude}
299             };
300             $r = $e->json_query($q);
301             $self->ctx->{default_bookbag} = $r->[0]->{'name'};
302         }
303     } else {
304         return $stat;
305     }
306     return undef;
307 }
308
309 sub update_optin_prefs {
310     my $self = shift;
311     my $user_prefs = shift;
312     my $e = $self->editor;
313     my @settings = $self->cgi->param('setting');
314     my %newsets;
315
316     # apply now-true settings
317     for my $applied (@settings) {
318         # see if setting is already applied to this user
319         next if grep { $_->{cust}->name eq $applied and $_->{value} } @$user_prefs;
320         $newsets{$applied} = OpenSRF::Utils::JSON->true;
321     }
322
323     # remove now-false settings
324     for my $pref (grep { $_->{value} } @$user_prefs) {
325         $newsets{$pref->{cust}->name} = undef 
326             unless grep { $_ eq $pref->{cust}->name } @settings;
327     }
328
329     $U->simplereq(
330         'open-ils.actor',
331         'open-ils.actor.patron.settings.update',
332         $e->authtoken, $e->requestor->id, \%newsets);
333
334     # update the local prefs to match reality
335     for my $pref (@$user_prefs) {
336         $pref->{value} = $newsets{$pref->{cust}->name} 
337             if exists $newsets{$pref->{cust}->name};
338     }
339
340     return $user_prefs;
341 }
342
343 sub _load_user_with_prefs {
344     my $self = shift;
345     my $stat = $self->prepare_extended_user_info('settings');
346     return $stat if $stat; # not-OK
347
348     $self->ctx->{user_setting_map} = {
349         map { $_->name => OpenSRF::Utils::JSON->JSON2perl($_->value) } 
350             @{$self->ctx->{user}->settings}
351     };
352
353     return undef;
354 }
355
356 sub _get_bookbag_sort_params {
357     my ($self, $param_name) = @_;
358
359     # The interface that feeds this cgi parameter will provide a single
360     # argument for a QP sort filter, and potentially a modifier after a period.
361     # In practice this means the "sort" parameter will be something like
362     # "titlesort" or "authorsort.descending".
363     my $sorter = $self->cgi->param($param_name) || "";
364     my $modifier;
365     if ($sorter) {
366         $sorter =~ s/^(.*?)\.(.*)/$1/;
367         $modifier = $2 || undef;
368     }
369
370     return ($sorter, $modifier);
371 }
372
373 sub _prepare_bookbag_container_query {
374     my ($self, $container_id, $sorter, $modifier) = @_;
375
376     return sprintf(
377         "container(bre,bookbag,%d,%s)%s%s",
378         $container_id, $self->editor->authtoken,
379         ($sorter ? " sort($sorter)" : ""),
380         ($modifier ? "#$modifier" : "")
381     );
382 }
383
384 sub _prepare_anonlist_sorting_query {
385     my ($self, $list, $sorter, $modifier) = @_;
386
387     return sprintf(
388         "record_list(%s)%s%s",
389         join(",", @$list),
390         ($sorter ? " sort($sorter)" : ""),
391         ($modifier ? "#$modifier" : "")
392     );
393 }
394
395
396 sub load_myopac_prefs_settings {
397     my $self = shift;
398
399     my @user_prefs = qw/
400         opac.hits_per_page
401         opac.default_search_location
402         opac.default_pickup_location
403         opac.temporary_list_no_warn
404     /;
405
406     my $stat = $self->_load_user_with_prefs;
407     return $stat if $stat;
408
409     # if behind-desk holds are supported and the user
410     # setting which controls the value is opac-visible,
411     # add the setting to the list of settings to manage.
412     # note: this logic may need to be changed later to
413     # check whether behind-the-desk holds are supported
414     # anywhere the patron may select as a pickup lib.
415     my $e = $self->editor;
416     my $bdous = $self->ctx->{get_org_setting}->(
417         $e->requestor->home_ou,
418         'circ.holds.behind_desk_pickup_supported');
419
420     if ($bdous) {
421         my $setting = 
422             $e->retrieve_config_usr_setting_type(
423                 'circ.holds_behind_desk');
424
425         if ($U->is_true($setting->opac_visible)) {
426             push(@user_prefs, 'circ.holds_behind_desk');
427             $self->ctx->{behind_desk_supported} = 1;
428         }
429     }
430
431     return Apache2::Const::OK
432         unless $self->cgi->request_method eq 'POST';
433
434     # some setting values from the form don't match the 
435     # required value/format for the db, so they have to be 
436     # individually translated.
437
438     my %settings;
439     my $set_map = $self->ctx->{user_setting_map};
440
441     foreach my $key (@user_prefs) {
442         my $val = $self->cgi->param($key);
443         $settings{$key}= $val unless $$set_map{$key} eq $val;
444     }
445
446     my $now = DateTime->now->strftime('%F');
447     foreach my $key (qw/history.circ.retention_start history.hold.retention_start/) {
448         my $val = $self->cgi->param($key);
449         if($val and $val eq 'on') {
450             # Set the start time to 'now' unless a start time already exists for the user
451             $settings{$key} = $now unless $$set_map{$key};
452         } else {
453             # clear the start time if one previously existed for the user
454             $settings{$key} = undef if $$set_map{$key};
455         }
456     }
457
458     # Send the modified settings off to be saved
459     $U->simplereq(
460         'open-ils.actor', 
461         'open-ils.actor.patron.settings.update',
462         $self->editor->authtoken, undef, \%settings);
463
464     # re-fetch user prefs 
465     $self->ctx->{updated_user_settings} = \%settings;
466     return $self->_load_user_with_prefs || Apache2::Const::OK;
467 }
468
469 sub load_myopac_prefs_my_lists {
470     my $self = shift;
471
472     my @user_prefs = qw/
473         opac.lists_per_page
474         opac.list_items_per_page
475     /;
476
477     my $stat = $self->_load_user_with_prefs;
478     return $stat if $stat;
479
480     return Apache2::Const::OK
481         unless $self->cgi->request_method eq 'POST';
482
483     my %settings;
484     my $set_map = $self->ctx->{user_setting_map};
485
486     foreach my $key (@user_prefs) {
487         my $val = $self->cgi->param($key);
488         $settings{$key}= $val unless $$set_map{$key} eq $val;
489     }
490
491     if (keys %settings) { # we found a different setting value
492         # Send the modified settings off to be saved
493         $U->simplereq(
494             'open-ils.actor',
495             'open-ils.actor.patron.settings.update',
496             $self->editor->authtoken, undef, \%settings);
497
498         # re-fetch user prefs
499         $self->ctx->{updated_user_settings} = \%settings;
500         $stat = $self->_load_user_with_prefs;
501     }
502
503     return $stat || Apache2::Const::OK;
504 }
505
506 sub fetch_user_holds {
507     my $self = shift;
508     my $hold_ids = shift;
509     my $ids_only = shift;
510     my $flesh = shift;
511     my $available = shift;
512     my $limit = shift;
513     my $offset = shift;
514
515     my $e = $self->editor;
516     my $all_ids; # to be used below.
517
518     if(!$hold_ids) {
519         my $circ = OpenSRF::AppSession->create('open-ils.circ');
520
521         $hold_ids = $circ->request(
522             'open-ils.circ.holds.id_list.retrieve.authoritative', 
523             $e->authtoken, 
524             $e->requestor->id,
525             $available
526         )->gather(1);
527         $circ->kill_me;
528
529         $all_ids = $hold_ids;
530         $hold_ids = [ grep { defined $_ } @$hold_ids[$offset..($offset + $limit - 1)] ] if $limit or $offset;
531
532     } else {
533         $all_ids = $hold_ids;
534     }
535
536     return { ids => $hold_ids, all_ids => $all_ids } if $ids_only or @$hold_ids == 0;
537
538     my $args = {
539         suppress_notices => 1,
540         suppress_transits => 1,
541         suppress_mvr => 1,
542         suppress_patron_details => 1
543     };
544
545     # ----------------------------------------------------------------
546     # Collect holds in batches of $batch_size for faster retrieval
547
548     my $batch_size = 8;
549     my $batch_idx = 0;
550     my $mk_req_batch = sub {
551         my @ses;
552         my $top_idx = $batch_idx + $batch_size;
553         while($batch_idx < $top_idx) {
554             my $hold_id = $hold_ids->[$batch_idx++];
555             last unless $hold_id;
556             my $ses = OpenSRF::AppSession->create('open-ils.circ');
557             my $req = $ses->request(
558                 'open-ils.circ.hold.details.retrieve', 
559                 $e->authtoken, $hold_id, $args);
560             push(@ses, {ses => $ses, req => $req});
561         }
562         return @ses;
563     };
564
565     my $first = 1;
566     my(@collected, @holds, @ses);
567
568     while(1) {
569         @ses = $mk_req_batch->() if $first;
570         last if $first and not @ses;
571
572         if(@collected) {
573             while(my $blob = pop(@collected)) {
574                 my (undef, @data) = $self->get_records_and_facets(
575                     [$blob->{hold}->{bre_id}], undef, {flesh => '{mra}'}
576                 );
577                 $blob->{marc_xml} = $data[0]->{marc_xml};
578                 push(@holds, $blob);
579             }
580         }
581
582         for my $req_data (@ses) {
583             push(@collected, {hold => $req_data->{req}->gather(1)});
584             $req_data->{ses}->kill_me;
585         }
586
587         @ses = $mk_req_batch->();
588         last unless @collected or @ses;
589         $first = 0;
590     }
591
592     # put the holds back into the original server sort order
593     my @sorted;
594     for my $id (@$hold_ids) {
595         push @sorted, grep { $_->{hold}->{hold}->id == $id } @holds;
596     }
597
598     return { holds => \@sorted, ids => $hold_ids, all_ids => $all_ids };
599 }
600
601 sub handle_hold_update {
602     my $self = shift;
603     my $action = shift;
604     my $hold_ids = shift;
605     my $e = $self->editor;
606     my $url;
607
608     my @hold_ids = ($hold_ids) ? @$hold_ids : $self->cgi->param('hold_id'); # for non-_all actions
609     @hold_ids = @{$self->fetch_user_holds(undef, 1)->{ids}} if $action =~ /_all/;
610
611     my $circ = OpenSRF::AppSession->create('open-ils.circ');
612
613     if($action =~ /cancel/) {
614
615         for my $hold_id (@hold_ids) {
616             my $resp = $circ->request(
617                 'open-ils.circ.hold.cancel', $e->authtoken, $hold_id, 6 )->gather(1); # 6 == patron-cancelled-via-opac
618         }
619
620     } elsif ($action =~ /activate|suspend/) {
621         
622         my $vlist = [];
623         for my $hold_id (@hold_ids) {
624             my $vals = {id => $hold_id};
625
626             if($action =~ /activate/) {
627                 $vals->{frozen} = 'f';
628                 $vals->{thaw_date} = undef;
629
630             } elsif($action =~ /suspend/) {
631                 $vals->{frozen} = 't';
632                 # $vals->{thaw_date} = TODO;
633             }
634             push(@$vlist, $vals);
635         }
636
637         my $resp = $circ->request('open-ils.circ.hold.update.batch.atomic', $e->authtoken, undef, $vlist)->gather(1);
638         $self->ctx->{hold_suspend_post_capture} = 1 if 
639             grep {$U->event_equals($_, 'HOLD_SUSPEND_AFTER_CAPTURE')} @$resp;
640
641     } elsif ($action eq 'edit') {
642
643         my @vals = map {
644             my $val = {"id" => $_};
645             $val->{"frozen"} = $self->cgi->param("frozen");
646             $val->{"pickup_lib"} = $self->cgi->param("pickup_lib");
647
648             for my $field (qw/expire_time thaw_date/) {
649                 # XXX TODO make this support other date formats, not just
650                 # MM/DD/YYYY.
651                 next unless $self->cgi->param($field) =~
652                     m:^(\d{2})/(\d{2})/(\d{4})$:;
653                 $val->{$field} = "$3-$1-$2";
654             }
655             $val;
656         } @hold_ids;
657
658         $circ->request(
659             'open-ils.circ.hold.update.batch.atomic',
660             $e->authtoken, undef, \@vals
661         )->gather(1);   # LFW XXX test for failure
662         $url = $self->ctx->{proto} . '://' . $self->ctx->{hostname} . $self->ctx->{opac_root} . '/myopac/holds';
663         foreach my $param (('loc', 'qtype', 'query')) {
664             if ($self->cgi->param($param)) {
665                 $url .= ";$param=" . uri_escape_utf8($self->cgi->param($param));
666             }
667         }
668     }
669
670     $circ->kill_me;
671     return defined($url) ? $self->generic_redirect($url) : undef;
672 }
673
674 sub load_myopac_holds {
675     my $self = shift;
676     my $e = $self->editor;
677     my $ctx = $self->ctx;
678     
679     my $limit = $self->cgi->param('limit') || 15;
680     my $offset = $self->cgi->param('offset') || 0;
681     my $action = $self->cgi->param('action') || '';
682     my $hold_id = $self->cgi->param('id');
683     my $available = int($self->cgi->param('available') || 0);
684
685     my $hold_handle_result;
686     $hold_handle_result = $self->handle_hold_update($action) if $action;
687
688     my $holds_object = $self->fetch_user_holds($hold_id ? [$hold_id] : undef, 0, 1, $available, $limit, $offset);
689     if($holds_object->{holds}) {
690         $ctx->{holds} = $holds_object->{holds};
691     }
692     $ctx->{holds_ids} = $holds_object->{all_ids};
693     $ctx->{holds_limit} = $limit;
694     $ctx->{holds_offset} = $offset;
695
696     return defined($hold_handle_result) ? $hold_handle_result : Apache2::Const::OK;
697 }
698
699 my $data_filler;
700
701 sub load_place_hold {
702     my $self = shift;
703     my $ctx = $self->ctx;
704     my $gos = $ctx->{get_org_setting};
705     my $e = $self->editor;
706     my $cgi = $self->cgi;
707
708     $self->ctx->{page} = 'place_hold';
709     my @targets = $cgi->param('hold_target');
710     my @parts = $cgi->param('part');
711
712     $ctx->{hold_type} = $cgi->param('hold_type');
713     $ctx->{default_pickup_lib} = $e->requestor->home_ou; # unless changed below
714     $ctx->{email_notify} = $cgi->param('email_notify');
715     if ($cgi->param('phone_notify_checkbox')) {
716         $ctx->{phone_notify} = $cgi->param('phone_notify');
717     }
718     if ($cgi->param('sms_notify_checkbox')) {
719         $ctx->{sms_notify} = $cgi->param('sms_notify');
720         $ctx->{sms_carrier} = $cgi->param('sms_carrier');
721     }
722
723     return $self->generic_redirect unless @targets;
724
725     $logger->info("Looking at hold_type: " . $ctx->{hold_type} . " and targets: @targets");
726
727     $ctx->{staff_recipient} = $self->editor->retrieve_actor_user([
728         $e->requestor->id,
729         {
730             flesh => 1,
731             flesh_fields => {
732                 au => ['settings', 'card']
733             }
734         }
735     ]) or return Apache2::Const::HTTP_INTERNAL_SERVER_ERROR;
736     my $user_setting_map = {
737         map { $_->name => OpenSRF::Utils::JSON->JSON2perl($_->value) }
738             @{
739                 $ctx->{staff_recipient}->settings
740             }
741     };
742     $ctx->{user_setting_map} = $user_setting_map;
743
744     my $default_notify = (defined $$user_setting_map{'opac.hold_notify'} ? $$user_setting_map{'opac.hold_notify'} : 'email:phone');
745     if ($default_notify =~ /email/) {
746         $ctx->{default_email_notify} = 'checked';
747     } else {
748         $ctx->{default_email_notify} = '';
749     }
750     if ($default_notify =~ /phone/) {
751         $ctx->{default_phone_notify} = 'checked';
752     } else {
753         $ctx->{default_phone_notify} = '';
754     }
755     if ($default_notify =~ /sms/) {
756         $ctx->{default_sms_notify} = 'checked';
757     } else {
758         $ctx->{default_sms_notify} = '';
759     }
760
761     # If we have a default pickup location, grab it
762     if ($$user_setting_map{'opac.default_pickup_location'}) {
763         $ctx->{default_pickup_lib} = $$user_setting_map{'opac.default_pickup_location'};
764     }
765
766     my $request_lib = $e->requestor->ws_ou;
767     my @hold_data;
768     $ctx->{hold_data} = \@hold_data;
769
770     $data_filler = sub {
771         my $hdata = shift;
772         if ($ctx->{email_notify}) { $hdata->{email_notify} = $ctx->{email_notify}; }
773         if ($ctx->{phone_notify}) { $hdata->{phone_notify} = $ctx->{phone_notify}; }
774         if ($ctx->{sms_notify}) { $hdata->{sms_notify} = $ctx->{sms_notify}; }
775         if ($ctx->{sms_carrier}) { $hdata->{sms_carrier} = $ctx->{sms_carrier}; }
776         return $hdata;
777     };
778
779     my $type_dispatch = {
780         T => sub {
781             my $recs = $e->batch_retrieve_biblio_record_entry(\@targets, {substream => 1});
782
783             for my $id (@targets) { # force back into the correct order
784                 my ($rec) = grep {$_->id eq $id} @$recs;
785
786                 # NOTE: if tpac ever supports locked-down pickup libs,
787                 # we'll need to pass a pickup_lib param along with the 
788                 # record to filter the set of monographic parts.
789                 my $parts = $U->simplereq(
790                     'open-ils.search',
791                     'open-ils.search.biblio.record_hold_parts', 
792                     {record => $rec->id}
793                 );
794
795                 # T holds on records that have parts are OK, but if the record has 
796                 # no non-part copies, the hold will ultimately fail.  When that 
797                 # happens, require the user to select a part.
798                 my $part_required = 0;
799                 if (@$parts) {
800                     my $np_copies = $e->json_query({
801                         select => { acp => [{column => 'id', transform => 'count', alias => 'count'}]}, 
802                         from => {acp => {acn => {}, acpm => {type => 'left'}}}, 
803                         where => {
804                             '+acp' => {deleted => 'f'},
805                             '+acn' => {deleted => 'f', record => $rec->id}, 
806                             '+acpm' => {id => undef}
807                         }
808                     });
809                     $part_required = 1 if $np_copies->[0]->{count} == 0;
810                 }
811
812                 push(@hold_data, $data_filler->({
813                     target => $rec,
814                     record => $rec,
815                     parts => $parts,
816                     part_required => $part_required
817                 }));
818             }
819         },
820         V => sub {
821             my $vols = $e->batch_retrieve_asset_call_number([
822                 \@targets, {
823                     "flesh" => 1,
824                     "flesh_fields" => {"acn" => ["record"]}
825                 }
826             ], {substream => 1});
827
828             for my $id (@targets) { 
829                 my ($vol) = grep {$_->id eq $id} @$vols;
830                 push(@hold_data, $data_filler->({target => $vol, record => $vol->record}));
831             }
832         },
833         C => sub {
834             my $copies = $e->batch_retrieve_asset_copy([
835                 \@targets, {
836                     "flesh" => 2,
837                     "flesh_fields" => {
838                         "acn" => ["record"],
839                         "acp" => ["call_number"]
840                     }
841                 }
842             ], {substream => 1});
843
844             for my $id (@targets) { 
845                 my ($copy) = grep {$_->id eq $id} @$copies;
846                 push(@hold_data, $data_filler->({target => $copy, record => $copy->call_number->record}));
847             }
848         },
849         I => sub {
850             my $isses = $e->batch_retrieve_serial_issuance([
851                 \@targets, {
852                     "flesh" => 2,
853                     "flesh_fields" => {
854                         "siss" => ["subscription"], "ssub" => ["record_entry"]
855                     }
856                 }
857             ], {substream => 1});
858
859             for my $id (@targets) { 
860                 my ($iss) = grep {$_->id eq $id} @$isses;
861                 push(@hold_data, $data_filler->({target => $iss, record => $iss->subscription->record_entry}));
862             }
863         }
864         # ...
865
866     }->{$ctx->{hold_type}}->();
867
868     # caller sent bad target IDs or the wrong hold type
869     return Apache2::Const::HTTP_BAD_REQUEST unless @hold_data;
870
871     # generate the MARC xml for each record
872     $_->{marc_xml} = XML::LibXML->new->parse_string($_->{record}->marc) for @hold_data;
873
874     my $pickup_lib = $cgi->param('pickup_lib');
875     # no pickup lib means no holds placement
876     return Apache2::Const::OK unless $pickup_lib;
877
878     $ctx->{hold_attempt_made} = 1;
879
880     # Give the original CGI params back to the user in case they
881     # want to try to override something.
882     $ctx->{orig_params} = $cgi->Vars;
883     delete $ctx->{orig_params}{submit};
884     delete $ctx->{orig_params}{hold_target};
885     delete $ctx->{orig_params}{part};
886
887     my $usr = $e->requestor->id;
888
889     if ($ctx->{is_staff} and !$cgi->param("hold_usr_is_requestor")) {
890         # find the real hold target
891
892         $usr = $U->simplereq(
893             'open-ils.actor', 
894             "open-ils.actor.user.retrieve_id_by_barcode_or_username",
895             $e->authtoken, $cgi->param("hold_usr"));
896
897         if (defined $U->event_code($usr)) {
898             $ctx->{hold_failed} = 1;
899             $ctx->{hold_failed_event} = $usr;
900         }
901     }
902
903     # target_id is the true target_id for holds placement.  
904     # needed for attempt_hold_placement()
905     # With the exception of P-type holds, target_id == target->id.
906     $_->{target_id} = $_->{target}->id for @hold_data;
907
908     if ($ctx->{hold_type} eq 'T') {
909
910         # Much like quantum wave-particles, P-type holds pop into 
911         # and out of existence at the user's whim.  For our purposes,
912         # we treat such holds as T(itle) holds with a selected_part 
913         # designation.  When the time comes to pass the hold information 
914         # off for holds possibility testing and placement, make it look 
915         # like a real P-type hold.
916         my (@p_holds, @t_holds);
917         
918         for my $idx (0..$#parts) {
919             my $hdata = $hold_data[$idx];
920             if (my $part = $parts[$idx]) {
921                 $hdata->{target_id} = $part;
922                 $hdata->{selected_part} = $part;
923                 push(@p_holds, $hdata);
924             } else {
925                 push(@t_holds, $hdata);
926             }
927         }
928
929         $self->apache->log->warn("$#parts : @t_holds");
930
931         $self->attempt_hold_placement($usr, $pickup_lib, 'P', @p_holds) if @p_holds;
932         $self->attempt_hold_placement($usr, $pickup_lib, 'T', @t_holds) if @t_holds;
933
934     } else {
935         $self->attempt_hold_placement($usr, $pickup_lib, $ctx->{hold_type}, @hold_data);
936     }
937
938     # NOTE: we are leaving the staff-placed patron barcode cookie 
939     # in place.  Otherwise, it's not possible to place more than 
940     # one hold for the patron within a staff/patron session.  This 
941     # does leave the barcode to linger longer than is ideal, but 
942     # normal staff work flow will cause the cookie to be replaced 
943     # with each new patron anyway.
944     # TODO: See about getting the staff client to clear the cookie
945
946     # return to the place_hold page so the results of the hold
947     # placement attempt can be reported to the user
948     return Apache2::Const::OK;
949 }
950
951 sub attempt_hold_placement {
952     my ($self, $usr, $pickup_lib, $hold_type, @hold_data) = @_;
953     my $cgi = $self->cgi;
954     my $ctx = $self->ctx;
955     my $e = $self->editor;
956
957     # First see if we should warn/block for any holds that 
958     # might have locally available items.
959     for my $hdata (@hold_data) {
960         my ($local_block, $local_alert) = $self->local_avail_concern(
961             $hdata->{target_id}, $hold_type, $pickup_lib);
962     
963         if ($local_block) {
964             $hdata->{hold_failed} = 1;
965             $hdata->{hold_local_block} = 1;
966         } elsif ($local_alert) {
967             $hdata->{hold_failed} = 1;
968             $hdata->{hold_local_alert} = 1;
969         }
970     }
971
972     my $method = 'open-ils.circ.holds.test_and_create.batch';
973
974     if ($cgi->param('override')) {
975         $method .= '.override';
976
977     } elsif (!$ctx->{is_staff})  {
978
979         $method .= '.override' if $self->ctx->{get_org_setting}->(
980             $e->requestor->home_ou, "opac.patron.auto_overide_hold_events");
981     }
982
983     my @create_targets = map {$_->{target_id}} (grep { !$_->{hold_failed} } @hold_data);
984
985     if(@create_targets) {
986
987         my $bses = OpenSRF::AppSession->create('open-ils.circ');
988         my $breq = $bses->request( 
989             $method, 
990             $e->authtoken, 
991             $data_filler->({   patronid => $usr,
992                 pickup_lib => $pickup_lib, 
993                 hold_type => $hold_type
994             }),
995             \@create_targets
996         );
997
998         while (my $resp = $breq->recv) {
999
1000             $resp = $resp->content;
1001             $logger->info('batch hold placement result: ' . OpenSRF::Utils::JSON->perl2JSON($resp));
1002
1003             if ($U->event_code($resp)) {
1004                 $ctx->{general_hold_error} = $resp;
1005                 last;
1006             }
1007
1008             my ($hdata) = grep {$_->{target_id} eq $resp->{target}} @hold_data;
1009             my $result = $resp->{result};
1010
1011             if ($U->event_code($result)) {
1012                 # e.g. permission denied
1013                 $hdata->{hold_failed} = 1;
1014                 $hdata->{hold_failed_event} = $result;
1015
1016             } else {
1017                 
1018                 if(not ref $result and $result > 0) {
1019                     # successul hold returns the hold ID
1020
1021                     $hdata->{hold_success} = $result; 
1022     
1023                 } else {
1024                     # hold-specific failure event 
1025                     $hdata->{hold_failed} = 1;
1026
1027                     if (ref $result eq 'HASH') {
1028                         $hdata->{hold_failed_event} = $result->{last_event};
1029
1030                         if ($result->{age_protected_copy}) {
1031                             $hdata->{could_override} = 1;
1032                             $hdata->{age_protect} = 1;
1033                         } else {
1034                             $hdata->{could_override} = $result->{place_unfillable} || 
1035                                 $self->test_could_override($hdata->{hold_failed_event});
1036                         }
1037                     } elsif (ref $result eq 'ARRAY') {
1038                         $hdata->{hold_failed_event} = $result->[0];
1039
1040                         if ($result->[3]) { # age_protect_only
1041                             $hdata->{could_override} = 1;
1042                             $hdata->{age_protect} = 1;
1043                         } else {
1044                             $hdata->{could_override} = $result->[4] || # place_unfillable
1045                                 $self->test_could_override($hdata->{hold_failed_event});
1046                         }
1047                     }
1048                 }
1049             }
1050         }
1051
1052         $bses->kill_me;
1053     }
1054 }
1055
1056 sub fetch_user_circs {
1057     my $self = shift;
1058     my $flesh = shift; # flesh bib data, etc.
1059     my $circ_ids = shift;
1060     my $limit = shift;
1061     my $offset = shift;
1062
1063     my $e = $self->editor;
1064
1065     my @circ_ids;
1066
1067     if($circ_ids) {
1068         @circ_ids = @$circ_ids;
1069
1070     } else {
1071
1072         my $query = {
1073             select => {circ => ['id']},
1074             from => 'circ',
1075             where => {
1076                 '+circ' => {
1077                     usr => $e->requestor->id,
1078                     checkin_time => undef,
1079                     '-or' => [
1080                         {stop_fines => undef},
1081                         {stop_fines => {'not in' => ['LOST','CLAIMSRETURNED','LONGOVERDUE']}}
1082                     ],
1083                 }
1084             },
1085             order_by => {circ => ['due_date']}
1086         };
1087
1088         $query->{limit} = $limit if $limit;
1089         $query->{offset} = $offset if $offset;
1090
1091         my $ids = $e->json_query($query);
1092         @circ_ids = map {$_->{id}} @$ids;
1093     }
1094
1095     return [] unless @circ_ids;
1096
1097     my $qflesh = {
1098         flesh => 3,
1099         flesh_fields => {
1100             circ => ['target_copy'],
1101             acp => ['call_number'],
1102             acn => ['record']
1103         }
1104     };
1105
1106     $e->xact_begin;
1107     my $circs = $e->search_action_circulation(
1108         [{id => \@circ_ids}, ($flesh) ? $qflesh : {}], {substream => 1});
1109
1110     my @circs;
1111     for my $circ (@$circs) {
1112         push(@circs, {
1113             circ => $circ, 
1114             marc_xml => ($flesh and $circ->target_copy->call_number->id != -1) ? 
1115                 XML::LibXML->new->parse_string($circ->target_copy->call_number->record->marc) : 
1116                 undef  # pre-cat copy, use the dummy title/author instead
1117         });
1118     }
1119     $e->xact_rollback;
1120
1121     # make sure the final list is in the correct order
1122     my @sorted_circs;
1123     for my $id (@circ_ids) {
1124         push(
1125             @sorted_circs,
1126             (grep { $_->{circ}->id == $id } @circs)
1127         );
1128     }
1129
1130     return \@sorted_circs;
1131 }
1132
1133
1134 sub handle_circ_renew {
1135     my $self = shift;
1136     my $action = shift;
1137     my $ctx = $self->ctx;
1138
1139     my @renew_ids = $self->cgi->param('circ');
1140
1141     my $circs = $self->fetch_user_circs(0, ($action eq 'renew') ? [@renew_ids] : undef);
1142
1143     # TODO: fire off renewal calls in batches to speed things up
1144     my @responses;
1145     for my $circ (@$circs) {
1146
1147         my $evt = $U->simplereq(
1148             'open-ils.circ', 
1149             'open-ils.circ.renew',
1150             $self->editor->authtoken,
1151             {
1152                 patron_id => $self->editor->requestor->id,
1153                 copy_id => $circ->{circ}->target_copy,
1154                 opac_renewal => 1
1155             }
1156         );
1157
1158         # TODO return these, then insert them into the circ data 
1159         # blob that is shoved into the template for each circ
1160         # so the template won't have to match them
1161         push(@responses, {copy => $circ->{circ}->target_copy, evt => $evt});
1162     }
1163
1164     return @responses;
1165 }
1166
1167
1168 sub load_myopac_circs {
1169     my $self = shift;
1170     my $e = $self->editor;
1171     my $ctx = $self->ctx;
1172
1173     $ctx->{circs} = [];
1174     my $limit = $self->cgi->param('limit') || 0; # 0 == unlimited
1175     my $offset = $self->cgi->param('offset') || 0;
1176     my $action = $self->cgi->param('action') || '';
1177
1178     # perform the renewal first if necessary
1179     my @results = $self->handle_circ_renew($action) if $action =~ /renew/;
1180
1181     $ctx->{circs} = $self->fetch_user_circs(1, undef, $limit, $offset);
1182
1183     my $success_renewals = 0;
1184     my $failed_renewals = 0;
1185     for my $data (@{$ctx->{circs}}) {
1186         my ($resp) = grep { $_->{copy} == $data->{circ}->target_copy->id } @results;
1187
1188         if($resp) {
1189             my $evt = ref($resp->{evt}) eq 'ARRAY' ? $resp->{evt}->[0] : $resp->{evt};
1190             $data->{renewal_response} = $evt;
1191             $success_renewals++ if $evt->{textcode} eq 'SUCCESS';
1192             $failed_renewals++ if $evt->{textcode} ne 'SUCCESS';
1193         }
1194     }
1195
1196     $ctx->{success_renewals} = $success_renewals;
1197     $ctx->{failed_renewals} = $failed_renewals;
1198
1199     return Apache2::Const::OK;
1200 }
1201
1202 sub load_myopac_circ_history {
1203     my $self = shift;
1204     my $e = $self->editor;
1205     my $ctx = $self->ctx;
1206     my $limit = $self->cgi->param('limit') || 15;
1207     my $offset = $self->cgi->param('offset') || 0;
1208
1209     $ctx->{circ_history_limit} = $limit;
1210     $ctx->{circ_history_offset} = $offset;
1211
1212     my $circ_ids = $e->json_query({
1213         select => {
1214             au => [{
1215                 column => 'id', 
1216                 transform => 'action.usr_visible_circs', 
1217                 result_field => 'id'
1218             }]
1219         },
1220         from => 'au',
1221         where => {id => $e->requestor->id}, 
1222         limit => $limit,
1223         offset => $offset
1224     });
1225
1226     $ctx->{circs} = $self->fetch_user_circs(1, [map { $_->{id} } @$circ_ids]);
1227     return Apache2::Const::OK;
1228 }
1229
1230 # TODO: action.usr_visible_holds does not return cancelled holds.  Should it?
1231 sub load_myopac_hold_history {
1232     my $self = shift;
1233     my $e = $self->editor;
1234     my $ctx = $self->ctx;
1235     my $limit = $self->cgi->param('limit') || 15;
1236     my $offset = $self->cgi->param('offset') || 0;
1237     $ctx->{hold_history_limit} = $limit;
1238     $ctx->{hold_history_offset} = $offset;
1239
1240     my $hold_ids = $e->json_query({
1241         select => {
1242             au => [{
1243                 column => 'id', 
1244                 transform => 'action.usr_visible_holds', 
1245                 result_field => 'id'
1246             }]
1247         },
1248         from => 'au',
1249         where => {id => $e->requestor->id}
1250     });
1251
1252     my $holds_object = $self->fetch_user_holds([map { $_->{id} } @$hold_ids], 0, 1, 0, $limit, $offset);
1253     if($holds_object->{holds}) {
1254         $ctx->{holds} = $holds_object->{holds};
1255     }
1256     $ctx->{hold_history_ids} = $holds_object->{all_ids};
1257
1258     return Apache2::Const::OK;
1259 }
1260
1261 sub load_myopac_payment_form {
1262     my $self = shift;
1263     my $r;
1264
1265     $r = $self->prepare_fines(undef, undef, [$self->cgi->param('xact'), $self->cgi->param('xact_misc')]) and return $r;
1266     $r = $self->prepare_extended_user_info and return $r;
1267
1268     return Apache2::Const::OK;
1269 }
1270
1271 # TODO: add other filter options as params/configs/etc.
1272 sub load_myopac_payments {
1273     my $self = shift;
1274     my $limit = $self->cgi->param('limit') || 20;
1275     my $offset = $self->cgi->param('offset') || 0;
1276     my $e = $self->editor;
1277
1278     $self->ctx->{payment_history_limit} = $limit;
1279     $self->ctx->{payment_history_offset} = $offset;
1280
1281     my $args = {};
1282     $args->{limit} = $limit if $limit;
1283     $args->{offset} = $offset if $offset;
1284
1285     if (my $max_age = $self->ctx->{get_org_setting}->(
1286         $e->requestor->home_ou, "opac.payment_history_age_limit"
1287     )) {
1288         my $min_ts = DateTime->now(
1289             "time_zone" => DateTime::TimeZone->new("name" => "local"),
1290         )->subtract("seconds" => interval_to_seconds($max_age))->iso8601();
1291         
1292         $logger->info("XXX min_ts: $min_ts");
1293         $args->{"where"} = {"payment_ts" => {">=" => $min_ts}};
1294     }
1295
1296     $self->ctx->{payments} = $U->simplereq(
1297         'open-ils.actor',
1298         'open-ils.actor.user.payments.retrieve.atomic',
1299         $e->authtoken, $e->requestor->id, $args);
1300
1301     return Apache2::Const::OK;
1302 }
1303
1304 # 1. caches the form parameters
1305 # 2. loads the credit card payment "Processing..." page
1306 sub load_myopac_pay_init {
1307     my $self = shift;
1308     my $cache = OpenSRF::Utils::Cache->new('global');
1309
1310     my @payment_xacts = ($self->cgi->param('xact'), $self->cgi->param('xact_misc'));
1311
1312     if (!@payment_xacts) {
1313         # for consistency with load_myopac_payment_form() and
1314         # to preserve backwards compatibility, if no xacts are
1315         # selected, assume all (applicable) transactions are wanted.
1316         my $stat = $self->prepare_fines(undef, undef, [$self->cgi->param('xact'), $self->cgi->param('xact_misc')]);
1317         return $stat if $stat;
1318         @payment_xacts =
1319             map { $_->{xact}->id } (
1320                 @{$self->ctx->{fines}->{circulation}}, 
1321                 @{$self->ctx->{fines}->{grocery}}
1322         );
1323     }
1324
1325     return $self->generic_redirect unless @payment_xacts;
1326
1327     my $cc_args = {"where_process" => 1};
1328
1329     $cc_args->{$_} = $self->cgi->param($_) for (qw/
1330         number cvv2 expire_year expire_month billing_first
1331         billing_last billing_address billing_city billing_state
1332         billing_zip
1333     /);
1334
1335     my $cache_args = {
1336         cc_args => $cc_args, 
1337         user => $self->ctx->{user}->id,
1338         xacts => \@payment_xacts
1339     };
1340
1341     # generate a temporary cache token and cache the form data
1342     my $token = md5_hex($$ . time() . rand());
1343     $cache->put_cache($token, $cache_args, 30);
1344
1345     $logger->info("tpac caching payment info with token $token and xacts [@payment_xacts]");
1346
1347     # after we render the processing page, we quickly redirect to submit
1348     # the actual payment.  The refresh url contains the payment token.
1349     # It also contains the list of xact IDs, which allows us to clear the 
1350     # cache at the earliest possible time while leaving a trace of which 
1351     # transactions we were processing, so the UI can bring the user back
1352     # to the payment form w/ the same xacts if the payment fails.
1353
1354     my $refresh = "1; url=main_pay/$token?xact=" . pop(@payment_xacts);
1355     $refresh .= ";xact=$_" for @payment_xacts;
1356     $self->ctx->{refresh} = $refresh;
1357
1358     return Apache2::Const::OK;
1359 }
1360
1361 # retrieve the cached CC payment info and send off for processing
1362 sub load_myopac_pay {
1363     my $self = shift;
1364     my $token = $self->ctx->{page_args}->[0];
1365     return Apache2::Const::HTTP_BAD_REQUEST unless $token;
1366
1367     my $cache = OpenSRF::Utils::Cache->new('global');
1368     my $cache_args = $cache->get_cache($token);
1369     $cache->delete_cache($token);
1370
1371     # this page is loaded immediately after the token is created.
1372     # if the cached data is not there, it's because of an invalid
1373     # token (or cache failure) and not because of a timeout.
1374     return Apache2::Const::HTTP_BAD_REQUEST unless $cache_args;
1375
1376     my @payment_xacts = @{$cache_args->{xacts}};
1377     my $cc_args = $cache_args->{cc_args};
1378
1379     # as an added security check, verify the user submitting 
1380     # the form is the same as the user whose data was cached
1381     return Apache2::Const::HTTP_BAD_REQUEST unless
1382         $cache_args->{user} == $self->ctx->{user}->id;
1383
1384     $logger->info("tpac paying fines with token $token and xacts [@payment_xacts]");
1385
1386     my $r;
1387     $r = $self->prepare_fines(undef, undef, \@payment_xacts) and return $r;
1388
1389     # balance_owed is computed specifically from the fines we're paying
1390     if ($self->ctx->{fines}->{balance_owed} <= 0) {
1391         $logger->info("tpac can't pay non-positive balance. xacts selected: [@payment_xacts]");
1392         return Apache2::Const::HTTP_BAD_REQUEST;
1393     }
1394
1395     my $args = {
1396         "cc_args" => $cc_args,
1397         "userid" => $self->ctx->{user}->id,
1398         "payment_type" => "credit_card_payment",
1399         "payments" => $self->prepare_fines_for_payment  # should be safe after self->prepare_fines
1400     };
1401
1402     my $resp = $U->simplereq("open-ils.circ", "open-ils.circ.money.payment",
1403         $self->editor->authtoken, $args, $self->ctx->{user}->last_xact_id
1404     );
1405
1406     $self->ctx->{"payment_response"} = $resp;
1407
1408     unless ($resp->{"textcode"}) {
1409         $self->ctx->{printable_receipt} = $U->simplereq(
1410            "open-ils.circ", "open-ils.circ.money.payment_receipt.print",
1411            $self->editor->authtoken, $resp->{payments}
1412         );
1413     }
1414
1415     return Apache2::Const::OK;
1416 }
1417
1418 sub load_myopac_receipt_print {
1419     my $self = shift;
1420
1421     $self->ctx->{printable_receipt} = $U->simplereq(
1422        "open-ils.circ", "open-ils.circ.money.payment_receipt.print",
1423        $self->editor->authtoken, [$self->cgi->param("payment")]
1424     );
1425
1426     return Apache2::Const::OK;
1427 }
1428
1429 sub load_myopac_receipt_email {
1430     my $self = shift;
1431
1432     # The following ML method doesn't actually check whether the user in
1433     # question has an email address, so we do.
1434     if ($self->ctx->{user}->email) {
1435         $self->ctx->{email_receipt_result} = $U->simplereq(
1436            "open-ils.circ", "open-ils.circ.money.payment_receipt.email",
1437            $self->editor->authtoken, [$self->cgi->param("payment")]
1438         );
1439     } else {
1440         $self->ctx->{email_receipt_result} =
1441             new OpenILS::Event("PATRON_NO_EMAIL_ADDRESS");
1442     }
1443
1444     return Apache2::Const::OK;
1445 }
1446
1447 sub prepare_fines {
1448     my ($self, $limit, $offset, $id_list) = @_;
1449
1450     # XXX TODO: check for failure after various network calls
1451
1452     # It may be unclear, but this result structure lumps circulation and
1453     # reservation fines together, and keeps grocery fines separate.
1454     $self->ctx->{"fines"} = {
1455         "circulation" => [],
1456         "grocery" => [],
1457         "total_paid" => 0,
1458         "total_owed" => 0,
1459         "balance_owed" => 0
1460     };
1461
1462     my $cstore = OpenSRF::AppSession->create('open-ils.cstore');
1463
1464     # TODO: This should really be a ML call, but the existing calls 
1465     # return an excessive amount of data and don't offer streaming
1466
1467     my %paging = ($limit or $offset) ? (limit => $limit, offset => $offset) : ();
1468
1469     my $req = $cstore->request(
1470         'open-ils.cstore.direct.money.open_billable_transaction_summary.search',
1471         {
1472             usr => $self->editor->requestor->id,
1473             balance_owed => {'!=' => 0},
1474             ($id_list && @$id_list ? ("id" => $id_list) : ()),
1475         },
1476         {
1477             flesh => 4,
1478             flesh_fields => {
1479                 mobts => [qw/grocery circulation reservation/],
1480                 bresv => ['target_resource_type'],
1481                 brt => ['record'],
1482                 mg => ['billings'],
1483                 mb => ['btype'],
1484                 circ => ['target_copy'],
1485                 acp => ['call_number'],
1486                 acn => ['record']
1487             },
1488             order_by => { mobts => 'xact_start' },
1489             %paging
1490         }
1491     );
1492
1493     my @total_keys = qw/total_paid total_owed balance_owed/;
1494     $self->ctx->{"fines"}->{@total_keys} = (0, 0, 0);
1495
1496     while(my $resp = $req->recv) {
1497         my $mobts = $resp->content;
1498         my $circ = $mobts->circulation;
1499
1500         my $last_billing;
1501         if($mobts->grocery) {
1502             my @billings = sort { $a->billing_ts cmp $b->billing_ts } @{$mobts->grocery->billings};
1503             $last_billing = pop(@billings);
1504         }
1505
1506         # XXX TODO confirm that the following, and the later division by 100.0
1507         # to get a floating point representation once again, is sufficiently
1508         # "money-safe" math.
1509         $self->ctx->{"fines"}->{$_} += int($mobts->$_ * 100) for (@total_keys);
1510
1511         my $marc_xml = undef;
1512         if ($mobts->xact_type eq 'reservation' and
1513             $mobts->reservation->target_resource_type->record) {
1514             $marc_xml = XML::LibXML->new->parse_string(
1515                 $mobts->reservation->target_resource_type->record->marc
1516             );
1517         } elsif ($mobts->xact_type eq 'circulation' and
1518             $circ->target_copy->call_number->id != -1) {
1519             $marc_xml = XML::LibXML->new->parse_string(
1520                 $circ->target_copy->call_number->record->marc
1521             );
1522         }
1523
1524         push(
1525             @{$self->ctx->{"fines"}->{$mobts->grocery ? "grocery" : "circulation"}},
1526             {
1527                 xact => $mobts,
1528                 last_grocery_billing => $last_billing,
1529                 marc_xml => $marc_xml
1530             } 
1531         );
1532     }
1533
1534     $cstore->kill_me;
1535
1536     $self->ctx->{"fines"}->{$_} /= 100.0 for (@total_keys);
1537     return;
1538 }
1539
1540 sub prepare_fines_for_payment {
1541     # This assumes $self->prepare_fines has already been run
1542     my ($self) = @_;
1543
1544     my @results = ();
1545     if ($self->ctx->{fines}) {
1546         push @results, [$_->{xact}->id, $_->{xact}->balance_owed] foreach (
1547             @{$self->ctx->{fines}->{circulation}},
1548             @{$self->ctx->{fines}->{grocery}}
1549         );
1550     }
1551
1552     return \@results;
1553 }
1554
1555 sub load_myopac_main {
1556     my $self = shift;
1557     my $limit = $self->cgi->param('limit') || 0;
1558     my $offset = $self->cgi->param('offset') || 0;
1559     $self->ctx->{search_ou} = $self->_get_search_lib();
1560     $self->ctx->{user}->notes(
1561         $self->editor->search_actor_usr_note({
1562             usr => $self->ctx->{user}->id,
1563             pub => 't'
1564         })
1565     );
1566     return $self->prepare_fines($limit, $offset) || Apache2::Const::OK;
1567 }
1568
1569 sub load_myopac_update_email {
1570     my $self = shift;
1571     my $e = $self->editor;
1572     my $ctx = $self->ctx;
1573     my $email = $self->cgi->param('email') || '';
1574     my $current_pw = $self->cgi->param('current_pw') || '';
1575
1576     # needed for most up-to-date email address
1577     if (my $r = $self->prepare_extended_user_info) { return $r };
1578
1579     return Apache2::Const::OK 
1580         unless $self->cgi->request_method eq 'POST';
1581
1582     unless($email =~ /.+\@.+\..+/) { # TODO better regex?
1583         $ctx->{invalid_email} = $email;
1584         return Apache2::Const::OK;
1585     }
1586
1587     my $stat = $U->simplereq(
1588         'open-ils.actor', 
1589         'open-ils.actor.user.email.update', 
1590         $e->authtoken, $email, $current_pw);
1591
1592     if($U->event_equals($stat, 'INCORRECT_PASSWORD')) {
1593         $ctx->{password_incorrect} = 1;
1594         return Apache2::Const::OK;
1595     }
1596
1597     unless ($self->cgi->param("redirect_to")) {
1598         my $url = $self->apache->unparsed_uri;
1599         $url =~ s/update_email/prefs/;
1600
1601         return $self->generic_redirect($url);
1602     }
1603
1604     return $self->generic_redirect;
1605 }
1606
1607 sub load_myopac_update_username {
1608     my $self = shift;
1609     my $e = $self->editor;
1610     my $ctx = $self->ctx;
1611     my $username = $self->cgi->param('username') || '';
1612     my $current_pw = $self->cgi->param('current_pw') || '';
1613
1614     $self->prepare_extended_user_info;
1615
1616     my $allow_change = 1;
1617     my $regex_check;
1618     my $lock_usernames = $self->ctx->{get_org_setting}->($e->requestor->home_ou, 'opac.lock_usernames');
1619     if(defined($lock_usernames) and $lock_usernames == 1) {
1620         # Policy says no username changes
1621         $allow_change = 0;
1622     } else {
1623         # We want this further down.
1624         $regex_check = $self->ctx->{get_org_setting}->($e->requestor->home_ou, 'opac.barcode_regex');
1625         my $username_unlimit = $self->ctx->{get_org_setting}->($e->requestor->home_ou, 'opac.unlimit_usernames');
1626         if(!$username_unlimit) {
1627             if(!$regex_check) {
1628                 # Default is "starts with a number"
1629                 $regex_check = '^\d+';
1630             }
1631             # You already have a username?
1632             if($regex_check and $self->ctx->{user}->usrname !~ /$regex_check/) {
1633                 $allow_change = 0;
1634             }
1635         }
1636     }
1637     if(!$allow_change) {
1638         my $url = $self->apache->unparsed_uri;
1639         $url =~ s/update_username/prefs/;
1640
1641         return $self->generic_redirect($url);
1642     }
1643
1644     return Apache2::Const::OK 
1645         unless $self->cgi->request_method eq 'POST';
1646
1647     unless($username and $username !~ /\s/) { # any other username restrictions?
1648         $ctx->{invalid_username} = $username;
1649         return Apache2::Const::OK;
1650     }
1651
1652     # New username can't look like a barcode if we have a barcode regex
1653     if($regex_check and $username =~ /$regex_check/) {
1654         $ctx->{invalid_username} = $username;
1655         return Apache2::Const::OK;
1656     }
1657
1658     # New username has to look like a username if we have a username regex
1659     $regex_check = $ctx->{get_org_setting}->($e->requestor->home_ou, 'opac.username_regex');
1660     if($regex_check and $username !~ /$regex_check/) {
1661         $ctx->{invalid_username} = $username;
1662         return Apache2::Const::OK;
1663     }
1664
1665     if($username ne $e->requestor->usrname) {
1666
1667         my $evt = $U->simplereq(
1668             'open-ils.actor', 
1669             'open-ils.actor.user.username.update', 
1670             $e->authtoken, $username, $current_pw);
1671
1672         if($U->event_equals($evt, 'INCORRECT_PASSWORD')) {
1673             $ctx->{password_incorrect} = 1;
1674             return Apache2::Const::OK;
1675         }
1676
1677         if($U->event_equals($evt, 'USERNAME_EXISTS')) {
1678             $ctx->{username_exists} = $username;
1679             return Apache2::Const::OK;
1680         }
1681     }
1682
1683     my $url = $self->apache->unparsed_uri;
1684     $url =~ s/update_username/prefs/;
1685
1686     return $self->generic_redirect($url);
1687 }
1688
1689 sub load_myopac_update_password {
1690     my $self = shift;
1691     my $e = $self->editor;
1692     my $ctx = $self->ctx;
1693
1694     return Apache2::Const::OK 
1695         unless $self->cgi->request_method eq 'POST';
1696
1697     my $current_pw = $self->cgi->param('current_pw') || '';
1698     my $new_pw = $self->cgi->param('new_pw') || '';
1699     my $new_pw2 = $self->cgi->param('new_pw2') || '';
1700
1701     unless($new_pw eq $new_pw2) {
1702         $ctx->{password_nomatch} = 1;
1703         return Apache2::Const::OK;
1704     }
1705
1706     my $pw_regex = $ctx->{get_org_setting}->($e->requestor->home_ou, 'global.password_regex');
1707
1708     if(!$pw_regex) {
1709         # This regex duplicates the JSPac's default "digit, letter, and 7 characters" rule
1710         $pw_regex = '(?=.*\d+.*)(?=.*[A-Za-z]+.*).{7,}';
1711     }
1712
1713     if($pw_regex and $new_pw !~ /$pw_regex/) {
1714         $ctx->{password_invalid} = 1;
1715         return Apache2::Const::OK;
1716     }
1717
1718     my $evt = $U->simplereq(
1719         'open-ils.actor', 
1720         'open-ils.actor.user.password.update', 
1721         $e->authtoken, $new_pw, $current_pw);
1722
1723
1724     if($U->event_equals($evt, 'INCORRECT_PASSWORD')) {
1725         $ctx->{password_incorrect} = 1;
1726         return Apache2::Const::OK;
1727     }
1728
1729     my $url = $self->apache->unparsed_uri;
1730     $url =~ s/update_password/prefs/;
1731
1732     return $self->generic_redirect($url);
1733 }
1734
1735 sub _update_bookbag_metadata {
1736     my ($self, $bookbag) = @_;
1737
1738     $bookbag->name($self->cgi->param("name"));
1739     $bookbag->description($self->cgi->param("description"));
1740
1741     return 1 if $self->editor->update_container_biblio_record_entry_bucket($bookbag);
1742     return 0;
1743 }
1744
1745 sub _get_lists_per_page {
1746     my $self = shift;
1747
1748     if($self->editor->requestor) {
1749         $self->timelog("Checking for opac.lists_per_page preference");
1750         # See if the user has a lists per page preference
1751         my $ipp = $self->editor->search_actor_user_setting({
1752             usr => $self->editor->requestor->id,
1753             name => 'opac.lists_per_page'
1754         })->[0];
1755         $self->timelog("Got opac.lists_per_page preference");
1756         return OpenSRF::Utils::JSON->JSON2perl($ipp->value) if $ipp;
1757     }
1758     return 10; # default
1759 }
1760
1761 sub _get_items_per_page {
1762     my $self = shift;
1763
1764     if($self->editor->requestor) {
1765         $self->timelog("Checking for opac.list_items_per_page preference");
1766         # See if the user has a list items per page preference
1767         my $ipp = $self->editor->search_actor_user_setting({
1768             usr => $self->editor->requestor->id,
1769             name => 'opac.list_items_per_page'
1770         })->[0];
1771         $self->timelog("Got opac.list_items_per_page preference");
1772         return OpenSRF::Utils::JSON->JSON2perl($ipp->value) if $ipp;
1773     }
1774     return 10; # default
1775 }
1776
1777 sub load_myopac_bookbags {
1778     my $self = shift;
1779     my $e = $self->editor;
1780     my $ctx = $self->ctx;
1781     my $limit = $self->_get_lists_per_page || 10;
1782     my $offset = $self->cgi->param('offset') || 0;
1783
1784     $ctx->{bookbags_limit} = $limit;
1785     $ctx->{bookbags_offset} = $offset;
1786
1787     # for list item pagination
1788     my $item_limit = $self->_get_items_per_page;
1789     my $item_page = $self->cgi->param('item_page') || 1;
1790     my $item_offset = ($item_page - 1) * $item_limit;
1791     $ctx->{bookbags_item_page} = $item_page;
1792
1793     my ($sorter, $modifier) = $self->_get_bookbag_sort_params("sort");
1794     $e->xact_begin; # replication...
1795
1796     my $rv = $self->load_mylist;
1797     unless($rv eq Apache2::Const::OK) {
1798         $e->rollback;
1799         return $rv;
1800     }
1801
1802     $ctx->{bookbags} = $e->search_container_biblio_record_entry_bucket(
1803         [
1804             {owner => $e->requestor->id, btype => 'bookbag'}, {
1805                 order_by => {cbreb => 'name'},
1806                 limit => $limit,
1807                 offset => $offset
1808             }
1809         ],
1810         {substream => 1}
1811     );
1812
1813     if(!$ctx->{bookbags}) {
1814         $e->rollback;
1815         return Apache2::Const::HTTP_INTERNAL_SERVER_ERROR;
1816     }
1817
1818     # We load the user prefs to get their default bookbag.
1819     $self->_load_user_with_prefs;
1820
1821     # We also want a total count of the user's bookbags.
1822     my $q = {
1823         'select' => { 'cbreb' => [ { 'column' => 'id', 'transform' => 'count', 'aggregate' => 'true', 'alias' => 'count' } ] },
1824         'from' => 'cbreb',
1825         'where' => { 'btype' => 'bookbag', 'owner' => $self->ctx->{user}->id }
1826     };
1827     my $r = $e->json_query($q);
1828     $ctx->{bookbag_count} = $r->[0]->{'count'};
1829
1830     # If the user wants a specific bookbag's items, load them.
1831
1832     if ($self->cgi->param("bbid")) {
1833         my ($bookbag) =
1834             grep { $_->id eq $self->cgi->param("bbid") } @{$ctx->{bookbags}};
1835
1836         if ($bookbag) {
1837             my $query = $self->_prepare_bookbag_container_query(
1838                 $bookbag->id, $sorter, $modifier
1839             );
1840
1841             # Calculate total count of the items in selected bookbag.
1842             # This total includes record entries that have no assets available.
1843             my $bb_search_results = $U->simplereq(
1844                 "open-ils.search", "open-ils.search.biblio.multiclass.query",
1845                 {"limit" => 1, "offset" => 0}, $query
1846             ); # we only need the count, so do the actual search with limit=1
1847
1848             if ($bb_search_results) {
1849                 $ctx->{bb_item_count} = $bb_search_results->{count};
1850             } else {
1851                 $logger->warn("search failed in load_myopac_bookbags()");
1852                 $ctx->{bb_item_count} = 0; # fallback value
1853             }
1854
1855             #calculate page count
1856             $ctx->{bb_page_count} = int ((($ctx->{bb_item_count} - 1) / $item_limit) + 1);
1857
1858             if ( ($self->cgi->param("action") || '') eq "editmeta") {
1859                 if (!$self->_update_bookbag_metadata($bookbag))  {
1860                     $e->rollback;
1861                     return Apache2::Const::HTTP_INTERNAL_SERVER_ERROR;
1862                 } else {
1863                     $e->commit;
1864                     my $url = $self->ctx->{opac_root} . '/myopac/lists?bbid=' .
1865                         $bookbag->id;
1866
1867                     foreach my $param (('loc', 'qtype', 'query', 'sort', 'offset', 'limit')) {
1868                         if ($self->cgi->param($param)) {
1869                             $url .= ";$param=" . uri_escape_utf8($self->cgi->param($param));
1870                         }
1871                     }
1872
1873                     return $self->generic_redirect($url);
1874                 }
1875             }
1876
1877             # we're done with our CStoreEditor.  Rollback here so 
1878             # later calls don't cause a timeout, resulting in a 
1879             # transaction rollback under the covers.
1880             $e->rollback;
1881
1882
1883             # For list items pagination
1884             my $args = {
1885                 "limit" => $item_limit,
1886                 "offset" => $item_offset
1887             };
1888
1889             my $items = $U->bib_container_items_via_search($bookbag->id, $query, $args)
1890                 or return Apache2::Const::HTTP_INTERNAL_SERVER_ERROR;
1891
1892             # capture pref_ou for callnumber filter/display
1893             $ctx->{pref_ou} = $self->_get_pref_lib() || $ctx->{search_ou};
1894
1895             # search for local callnumbers for display
1896             my $focus_ou = $ctx->{physical_loc} || $ctx->{pref_ou};
1897
1898             my (undef, @recs) = $self->get_records_and_facets(
1899                 [ map {$_->target_biblio_record_entry->id} @$items ],
1900                 undef, 
1901                 {
1902                     flesh => '{mra,holdings_xml,acp,exclude_invisible_acn}',
1903                     flesh_depth => 1,
1904                     site => $ctx->{get_aou}->($focus_ou)->shortname,
1905                     pref_lib => $ctx->{pref_ou}
1906                 }
1907             );
1908
1909             $ctx->{bookbags_marc_xml}{$_->{id}} = $_->{marc_xml} for @recs;
1910
1911             $bookbag->items($items);
1912         }
1913     }
1914
1915     # If we have add_rec, we got here from the "Add to new list"
1916     # or "See all" popmenu items.
1917     if (my $add_rec = $self->cgi->param('add_rec')) {
1918         $self->ctx->{add_rec} = $add_rec;
1919         # But not in the staff client, 'cause that breaks things.
1920         unless ($self->ctx->{is_staff}) {
1921             $self->ctx->{where_from} = $self->ctx->{referer};
1922             if ( my $anchor = $self->cgi->param('anchor') ) {
1923                 $self->ctx->{where_from} =~ s/#.*|$/#$anchor/;
1924             }
1925         }
1926     }
1927
1928     # this rollback may be a dupe, but that's OK because 
1929     # cstoreditor ignores dupe rollbacks
1930     $e->rollback;
1931
1932     return Apache2::Const::OK;
1933 }
1934
1935
1936 # actions are create, delete, show, hide, rename, add_rec, delete_item, place_hold
1937 # CGI is action, list=list_id, add_rec/record=bre_id, del_item=bucket_item_id, name=new_bucket_name
1938 sub load_myopac_bookbag_update {
1939     my ($self, $action, $list_id, @hold_recs) = @_;
1940     my $e = $self->editor;
1941     my $cgi = $self->cgi;
1942
1943     # save_notes is effectively another action, but is passed in a separate
1944     # CGI parameter for what are really just layout reasons.
1945     $action = 'save_notes' if $cgi->param('save_notes');
1946     $action ||= $cgi->param('action');
1947
1948     $list_id ||= $cgi->param('list') || $cgi->param('bbid');
1949
1950     my @add_rec = $cgi->param('add_rec') || $cgi->param('record');
1951     my @selected_item = $cgi->param('selected_item');
1952     my $shared = $cgi->param('shared');
1953     my $name = $cgi->param('name');
1954     my $description = $cgi->param('description');
1955     my $success = 0;
1956     my $list;
1957
1958     # This url intentionally leaves off the edit_notes parameter, but
1959     # may need to add some back in for paging.
1960
1961     my $url = $self->ctx->{proto} . "://" . $self->ctx->{hostname} .
1962         $self->ctx->{opac_root} . "/myopac/lists?";
1963
1964     foreach my $param (('loc', 'qtype', 'query', 'sort')) {
1965         if ($cgi->param($param)) {
1966             $url .= "$param=" . uri_escape_utf8($cgi->param($param)) . ";";
1967         }
1968     }
1969
1970     if ($action eq 'create') {
1971         $list = Fieldmapper::container::biblio_record_entry_bucket->new;
1972         $list->name($name);
1973         $list->description($description);
1974         $list->owner($e->requestor->id);
1975         $list->btype('bookbag');
1976         $list->pub($shared ? 't' : 'f');
1977         $success = $U->simplereq('open-ils.actor',
1978             'open-ils.actor.container.create', $e->authtoken, 'biblio', $list);
1979         if (ref($success) ne 'HASH' && scalar @add_rec) {
1980             $list_id = (ref($success)) ? $success->id : $success;
1981             foreach my $add_rec (@add_rec) {
1982                 my $item = Fieldmapper::container::biblio_record_entry_bucket_item->new;
1983                 $item->bucket($list_id);
1984                 $item->target_biblio_record_entry($add_rec);
1985                 $success = $U->simplereq('open-ils.actor',
1986                                          'open-ils.actor.container.item.create', $e->authtoken, 'biblio', $item);
1987                 last unless $success;
1988             }
1989             $url = $cgi->param('where_from') if ($success && $cgi->param('where_from'));
1990         }
1991     } elsif($action eq 'place_hold') {
1992
1993         # @hold_recs comes from anon lists redirect; selected_itesm comes from existing buckets
1994         unless (@hold_recs) {
1995             if (@selected_item) {
1996                 my $items = $e->search_container_biblio_record_entry_bucket_item({id => \@selected_item});
1997                 @hold_recs = map { $_->target_biblio_record_entry } @$items;
1998             }
1999         }
2000                 
2001         return Apache2::Const::OK unless @hold_recs;
2002         $logger->info("placing holds from list page on: @hold_recs");
2003
2004         my $url = $self->ctx->{opac_root} . '/place_hold?hold_type=T';
2005         $url .= ';hold_target=' . $_ for @hold_recs;
2006         foreach my $param (('loc', 'qtype', 'query')) {
2007             if ($cgi->param($param)) {
2008                 $url .= ";$param=" . uri_escape_utf8($cgi->param($param));
2009             }
2010         }
2011         return $self->generic_redirect($url);
2012
2013     } else {
2014
2015         $list = $e->retrieve_container_biblio_record_entry_bucket($list_id);
2016
2017         return Apache2::Const::HTTP_BAD_REQUEST unless 
2018             $list and $list->owner == $e->requestor->id;
2019     }
2020
2021     if($action eq 'delete') {
2022         $success = $U->simplereq('open-ils.actor', 
2023             'open-ils.actor.container.full_delete', $e->authtoken, 'biblio', $list_id);
2024         if ($success) {
2025             # We check to see if we're deleting the user's default list.
2026             $self->_load_user_with_prefs;
2027             my $settings_map = $self->ctx->{user_setting_map};
2028             if ($$settings_map{'opac.default_list'} == $list_id) {
2029                 # We unset the user's opac.default_list setting.
2030                 $success = $U->simplereq(
2031                     'open-ils.actor',
2032                     'open-ils.actor.patron.settings.update',
2033                     $e->authtoken,
2034                     $e->requestor->id,
2035                     { 'opac.default_list' => 0 }
2036                 );
2037             }
2038         }
2039     } elsif($action eq 'show') {
2040         unless($U->is_true($list->pub)) {
2041             $list->pub('t');
2042             $success = $U->simplereq('open-ils.actor', 
2043                 'open-ils.actor.container.update', $e->authtoken, 'biblio', $list);
2044         }
2045
2046     } elsif($action eq 'hide') {
2047         if($U->is_true($list->pub)) {
2048             $list->pub('f');
2049             $success = $U->simplereq('open-ils.actor', 
2050                 'open-ils.actor.container.update', $e->authtoken, 'biblio', $list);
2051         }
2052
2053     } elsif($action eq 'rename') {
2054         if($name) {
2055             $list->name($name);
2056             $success = $U->simplereq('open-ils.actor', 
2057                 'open-ils.actor.container.update', $e->authtoken, 'biblio', $list);
2058         }
2059
2060     } elsif($action eq 'add_rec') {
2061         foreach my $add_rec (@add_rec) {
2062             my $item = Fieldmapper::container::biblio_record_entry_bucket_item->new;
2063             $item->bucket($list_id);
2064             $item->target_biblio_record_entry($add_rec);
2065             $success = $U->simplereq('open-ils.actor', 
2066                 'open-ils.actor.container.item.create', $e->authtoken, 'biblio', $item);
2067             last unless $success;
2068         }
2069         # Redirect back where we came from if we have an anchor parameter:
2070         if ( my $anchor = $cgi->param('anchor') && !$self->ctx->{is_staff}) {
2071             $url = $self->ctx->{referer};
2072             $url =~ s/#.*|$/#$anchor/;
2073         } elsif ($cgi->param('where_from')) {
2074             # Or, if we have a "where_from" parameter.
2075             $url = $cgi->param('where_from');
2076         }
2077     } elsif ($action eq 'del_item') {
2078         foreach (@selected_item) {
2079             $success = $U->simplereq(
2080                 'open-ils.actor',
2081                 'open-ils.actor.container.item.delete', $e->authtoken, 'biblio', $_
2082             );
2083             last unless $success;
2084         }
2085     } elsif ($action eq 'save_notes') {
2086         $success = $self->update_bookbag_item_notes;
2087         $url .= "&bbid=" . uri_escape_utf8($cgi->param("bbid")) if $cgi->param("bbid");
2088     } elsif ($action eq 'make_default') {
2089         $success = $U->simplereq(
2090             'open-ils.actor',
2091             'open-ils.actor.patron.settings.update',
2092             $e->authtoken,
2093             $list->owner,
2094             { 'opac.default_list' => $list_id }
2095         );
2096     } elsif ($action eq 'remove_default') {
2097         $success = $U->simplereq(
2098             'open-ils.actor',
2099             'open-ils.actor.patron.settings.update',
2100             $e->authtoken,
2101             $list->owner,
2102             { 'opac.default_list' => 0 }
2103         );
2104     }
2105
2106     return $self->generic_redirect($url) if $success;
2107
2108     # XXX FIXME Bucket failure doesn't have a page to show the user anything
2109     # right now. User just sees a 404 currently.
2110
2111     $self->ctx->{bucket_action} = $action;
2112     $self->ctx->{bucket_action_failed} = 1;
2113     return Apache2::Const::OK;
2114 }
2115
2116 sub update_bookbag_item_notes {
2117     my ($self) = @_;
2118     my $e = $self->editor;
2119
2120     my @note_keys = grep /^note-\d+/, keys(%{$self->cgi->Vars});
2121     my @item_keys = grep /^item-\d+/, keys(%{$self->cgi->Vars});
2122
2123     # We're going to leverage an API call that's already been written to check
2124     # permissions appropriately.
2125
2126     my $a = create OpenSRF::AppSession("open-ils.actor");
2127     my $method = "open-ils.actor.container.item_note.cud";
2128
2129     for my $note_key (@note_keys) {
2130         my $note;
2131
2132         my $id = ($note_key =~ /(\d+)/)[0];
2133
2134         if (!($note =
2135             $e->retrieve_container_biblio_record_entry_bucket_item_note($id))) {
2136             my $event = $e->die_event;
2137             $self->apache->log->warn(
2138                 "error retrieving cbrebin id $id, got event " .
2139                 $event->{textcode}
2140             );
2141             $a->kill_me;
2142             $self->ctx->{bucket_action_event} = $event;
2143             return;
2144         }
2145
2146         if (length($self->cgi->param($note_key))) {
2147             $note->ischanged(1);
2148             $note->note($self->cgi->param($note_key));
2149         } else {
2150             $note->isdeleted(1);
2151         }
2152
2153         my $r = $a->request($method, $e->authtoken, "biblio", $note)->gather(1);
2154
2155         if (defined $U->event_code($r)) {
2156             $self->apache->log->warn(
2157                 "attempt to modify cbrebin " . $note->id .
2158                 " returned event " .  $r->{textcode}
2159             );
2160             $e->rollback;
2161             $a->kill_me;
2162             $self->ctx->{bucket_action_event} = $r;
2163             return;
2164         }
2165     }
2166
2167     for my $item_key (@item_keys) {
2168         my $id = int(($item_key =~ /(\d+)/)[0]);
2169         my $text = $self->cgi->param($item_key);
2170
2171         chomp $text;
2172         next unless length $text;
2173
2174         my $note = new Fieldmapper::container::biblio_record_entry_bucket_item_note;
2175         $note->isnew(1);
2176         $note->item($id);
2177         $note->note($text);
2178
2179         my $r = $a->request($method, $e->authtoken, "biblio", $note)->gather(1);
2180
2181         if (defined $U->event_code($r)) {
2182             $self->apache->log->warn(
2183                 "attempt to create cbrebin for item " . $note->item .
2184                 " returned event " .  $r->{textcode}
2185             );
2186             $e->rollback;
2187             $a->kill_me;
2188             $self->ctx->{bucket_action_event} = $r;
2189             return;
2190         }
2191     }
2192
2193     $a->kill_me;
2194     return 1;   # success
2195 }
2196
2197 sub load_myopac_bookbag_print {
2198     my ($self) = @_;
2199
2200     my $id = int($self->cgi->param("list"));
2201
2202     my ($sorter, $modifier) = $self->_get_bookbag_sort_params("sort");
2203
2204     my $item_search =
2205         $self->_prepare_bookbag_container_query($id, $sorter, $modifier);
2206
2207     my $bbag;
2208
2209     # Get the bookbag object itself, assuming we're allowed to.
2210     if ($self->editor->allowed("VIEW_CONTAINER")) {
2211
2212         $bbag = $self->editor->retrieve_container_biblio_record_entry_bucket($id) or return Apache2::Const::HTTP_INTERNAL_SERVER_ERROR;
2213     } else {
2214         my $bookbags = $self->editor->search_container_biblio_record_entry_bucket(
2215             {
2216                 "id" => $id,
2217                 "-or" => {
2218                     "owner" => $self->editor->requestor->id,
2219                     "pub" => "t"
2220                 }
2221             }
2222         ) or return Apache2::Const::HTTP_INTERNAL_SERVER_ERROR;
2223
2224         $bbag = pop @$bookbags;
2225     }
2226
2227     # If we have a bookbag we're allowed to look at, issue the A/T event
2228     # to get CSV, passing as a user param that search query we built before.
2229     if ($bbag) {
2230         $self->ctx->{csv} = $U->fire_object_event(
2231             undef, "container.biblio_record_entry_bucket.csv",
2232             $bbag, $self->editor->requestor->home_ou,
2233             undef, {"item_search" => $item_search}
2234         );
2235     }
2236
2237     # Create a reasonable filename and set the content disposition to
2238     # provoke browser download dialogs.
2239     (my $filename = $bbag->id . $bbag->name) =~ s/[^a-z0-9_ -]//gi;
2240
2241     return $self->set_file_download_headers("$filename.csv");
2242 }
2243
2244 sub load_myopac_circ_history_export {
2245     my $self = shift;
2246     my $e = $self->editor;
2247     my $filename = $self->cgi->param('filename') || 'circ_history.csv';
2248
2249     my $ids = $e->json_query({
2250         select => {
2251             au => [{
2252                 column => 'id', 
2253                 transform => 'action.usr_visible_circs', 
2254                 result_field => 'id'
2255             }]
2256         },
2257         from => 'au',
2258         where => {id => $e->requestor->id} 
2259     });
2260
2261     $self->ctx->{csv} = $U->fire_object_event(
2262         undef, 
2263         'circ.format.history.csv',
2264         $e->search_action_circulation({id => [map {$_->{id}} @$ids]}, {substream =>1}),
2265         $self->editor->requestor->home_ou
2266     );
2267
2268     return $self->set_file_download_headers($filename);
2269 }
2270
2271 sub load_password_reset {
2272     my $self = shift;
2273     my $cgi = $self->cgi;
2274     my $ctx = $self->ctx;
2275     my $barcode = $cgi->param('barcode');
2276     my $username = $cgi->param('username');
2277     my $email = $cgi->param('email');
2278     my $pwd1 = $cgi->param('pwd1');
2279     my $pwd2 = $cgi->param('pwd2');
2280     my $uuid = $ctx->{page_args}->[0];
2281
2282     if ($uuid) {
2283
2284         $logger->info("patron password reset with uuid $uuid");
2285
2286         if ($pwd1 and $pwd2) {
2287
2288             if ($pwd1 eq $pwd2) {
2289
2290                 my $response = $U->simplereq(
2291                     'open-ils.actor', 
2292                     'open-ils.actor.patron.password_reset.commit',
2293                     $uuid, $pwd1);
2294
2295                 $logger->info("patron password reset response " . Dumper($response));
2296
2297                 if ($U->event_code($response)) { # non-success event
2298                     
2299                     my $code = $response->{textcode};
2300                     
2301                     if ($code eq 'PATRON_NOT_AN_ACTIVE_PASSWORD_RESET_REQUEST') {
2302                         $ctx->{pwreset} = {style => 'error', status => 'NOT_ACTIVE'};
2303                     }
2304
2305                     if ($code eq 'PATRON_PASSWORD_WAS_NOT_STRONG') {
2306                         $ctx->{pwreset} = {style => 'error', status => 'NOT_STRONG'};
2307                     }
2308
2309                 } else { # success
2310
2311                     $ctx->{pwreset} = {style => 'success', status => 'SUCCESS'};
2312                 }
2313
2314             } else { # passwords not equal
2315
2316                 $ctx->{pwreset} = {style => 'error', status => 'NO_MATCH'};
2317             }
2318
2319         } else { # 2 password values needed
2320
2321             $ctx->{pwreset} = {status => 'TWO_PASSWORDS'};
2322         }
2323
2324     } elsif ($barcode or $username) {
2325
2326         my @params = $barcode ? ('barcode', $barcode) : ('username', $username);
2327         push(@params, $email) if $email;
2328
2329         $U->simplereq(
2330             'open-ils.actor', 
2331             'open-ils.actor.patron.password_reset.request', @params);
2332
2333         $ctx->{pwreset} = {status => 'REQUEST_SUCCESS'};
2334     }
2335
2336     $logger->info("patron password reset resulted in " . Dumper($ctx->{pwreset}));
2337     return Apache2::Const::OK;
2338 }
2339
2340 1;