]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/src/perlmods/lib/OpenILS/WWW/EGCatLoader/Account.pm
LP#1312699 - Add feature to allow user to edit their checkout history.
[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_myopac_messages {
268     my $self = shift;
269     my $e = $self->editor;
270     my $ctx = $self->ctx;
271     my $cgi = $self->cgi;
272
273     my $limit  = $cgi->param('limit') || 20;
274     my $offset = $cgi->param('offset') || 0;
275
276     my $pcrud = OpenSRF::AppSession->create('open-ils.pcrud');
277     $pcrud->connect();
278
279     my $action = $cgi->param('action') || '';
280     if ($action) {
281         my ($changed, $failed) = $self->_handle_message_action($pcrud, $action);
282         if ($changed > 0 || $failed > 0) {
283             $ctx->{message_update_action} = $action;
284             $ctx->{message_update_changed} = $changed;
285             $ctx->{message_update_failed} = $failed;
286             $self->update_dashboard_stats();
287         }
288     }
289
290     my $single = $cgi->param('single') || 0;
291     my $id = $cgi->param('message_id');
292
293     my $messages;
294     my $fetch_all = 1;
295     if (!$action && $single && $id) {
296         $messages = $self->_fetch_and_mark_read_single_message($pcrud, $id);
297         if (scalar(@$messages) == 1) {
298             $ctx->{display_single_message} = 1;
299             $ctx->{patron_message_id} = $id;
300             $fetch_all = 0;
301         }
302     }
303
304     if ($fetch_all) {
305         # fetch all the messages
306         ($ctx->{patron_messages_count}, $messages) =
307             $self->_fetch_user_messages($pcrud, $offset, $limit);    
308     }
309
310     $pcrud->kill_me;
311
312     foreach my $aum (@$messages) {
313
314         push @{ $ctx->{patron_messages} }, {
315             id          => $aum->id,
316             title       => $aum->title,
317             message     => $aum->message,
318             create_date => $aum->create_date,
319             is_read     => defined($aum->read_date) ? 1 : 0,
320             library     => $aum->sending_lib->name, 
321         };
322     }
323
324     $ctx->{patron_messages_limit} = $limit;
325     $ctx->{patron_messages_offset} = $offset;
326
327     return Apache2::Const::OK;
328 }
329
330 sub _fetch_and_mark_read_single_message {
331     my $self = shift;
332     my $pcrud = shift;
333     my $id = shift;
334
335     $pcrud->request('open-ils.pcrud.transaction.begin', $self->editor->authtoken)->gather(1);
336     my $messages = $pcrud->request(
337         'open-ils.pcrud.search.auml.atomic',
338         $self->editor->authtoken,
339         {
340             usr     => $self->editor->requestor->id,
341             deleted => 'f',
342             id      => $id,
343         },
344         {
345             flesh => 1,
346             flesh_fields => { auml => ['sending_lib'] },
347         }
348     )->gather(1);
349     if (@$messages) {
350         $messages->[0]->read_date('now');
351         $pcrud->request(
352             'open-ils.pcrud.update.auml',
353             $self->editor->authtoken,
354             $messages->[0]
355         )->gather(1);
356     }
357     $pcrud->request('open-ils.pcrud.transaction.commit', $self->editor->authtoken)->gather(1);
358
359     $self->update_dashboard_stats();
360
361     return $messages;
362 }
363
364 sub _fetch_user_messages {
365     my $self = shift;
366     my $pcrud = shift;
367     my $offset = shift;
368     my $limit = shift;
369
370     my %paging = ($limit or $offset) ? (limit => $limit, offset => $offset) : ();
371
372     my $all_messages = $pcrud->request(
373         'open-ils.pcrud.id_list.auml.atomic',
374         $self->editor->authtoken,
375         {
376             usr     => $self->editor->requestor->id,
377             deleted => 'f'
378         },
379         {}
380     )->gather(1);
381
382     my $messages = $pcrud->request(
383         'open-ils.pcrud.search.auml.atomic',
384         $self->editor->authtoken,
385         {
386             usr     => $self->editor->requestor->id,
387             deleted => 'f'
388         },
389         {
390             flesh => 1,
391             flesh_fields => { auml => ['sending_lib'] },
392             order_by => { auml => 'create_date DESC' },
393             %paging
394         }
395     )->gather(1);
396
397     return scalar(@$all_messages), $messages;
398 }
399
400 sub _handle_message_action {
401     my $self = shift;
402     my $pcrud = shift;
403     my $action = shift;
404     my $cgi = $self->cgi;
405
406     my @ids = $cgi->param('message_id');
407     return (0, 0) unless @ids;
408
409     my $changed = 0;
410     my $failed = 0;
411     $pcrud->request('open-ils.pcrud.transaction.begin', $self->editor->authtoken)->gather(1);
412     for my $id (@ids) {
413         my $aum = $pcrud->request(
414             'open-ils.pcrud.retrieve.auml',
415             $self->editor->authtoken,
416             $id
417         )->gather(1);
418         next unless $aum;
419         if      ($action eq 'mark_read') {
420             $aum->read_date('now');
421         } elsif ($action eq 'mark_unread') {
422             $aum->clear_read_date();
423         } elsif ($action eq 'mark_deleted') {
424             $aum->deleted('t');
425         }
426         $pcrud->request('open-ils.pcrud.update.auml', $self->editor->authtoken, $aum)->gather(1) ?
427             $changed++ :
428             $failed++;
429     }
430     if ($failed) {
431         $pcrud->request('open-ils.pcrud.transaction.rollback', $self->editor->authtoken)->gather(1);
432         $changed = 0;
433         $failed = scalar(@ids);
434     } else {
435         $pcrud->request('open-ils.pcrud.transaction.commit', $self->editor->authtoken)->gather(1);
436     }
437     return ($changed, $failed);
438 }
439
440 sub _load_lists_and_settings {
441     my $self = shift;
442     my $e = $self->editor;
443     my $stat = $self->_load_user_with_prefs;
444     unless ($stat) {
445         my $exclude = 0;
446         my $setting_map = $self->ctx->{user_setting_map};
447         $exclude = $$setting_map{'opac.default_list'} if ($$setting_map{'opac.default_list'});
448         $self->ctx->{bookbags} = $e->search_container_biblio_record_entry_bucket(
449             [
450                 {owner => $self->ctx->{user}->id, btype => 'bookbag', id => {'<>' => $exclude}}, {
451                     order_by => {cbreb => 'name'},
452                     limit => $self->cgi->param('limit') || 10,
453                     offset => $self->cgi->param('offset') || 0
454                 }
455             ]
456         );
457         # We also want a total count of the user's bookbags.
458         my $q = {
459             'select' => { 'cbreb' => [ { 'column' => 'id', 'transform' => 'count', 'aggregate' => 'true', 'alias' => 'count' } ] },
460             'from' => 'cbreb',
461             'where' => { 'btype' => 'bookbag', 'owner' => $self->ctx->{user}->id }
462         };
463         my $r = $e->json_query($q);
464         $self->ctx->{bookbag_count} = $r->[0]->{'count'};
465         # Someone has requested that we use the default list's name
466         # rather than "Default List."
467         if ($exclude) {
468             $q = {
469                 'select' => {'cbreb' => ['name']},
470                 'from' => 'cbreb',
471                 'where' => {'id' => $exclude}
472             };
473             $r = $e->json_query($q);
474             $self->ctx->{default_bookbag} = $r->[0]->{'name'};
475         }
476     } else {
477         return $stat;
478     }
479     return undef;
480 }
481
482 sub update_optin_prefs {
483     my $self = shift;
484     my $user_prefs = shift;
485     my $e = $self->editor;
486     my @settings = $self->cgi->param('setting');
487     my %newsets;
488
489     # apply now-true settings
490     for my $applied (@settings) {
491         # see if setting is already applied to this user
492         next if grep { $_->{cust}->name eq $applied and $_->{value} } @$user_prefs;
493         $newsets{$applied} = OpenSRF::Utils::JSON->true;
494     }
495
496     # remove now-false settings
497     for my $pref (grep { $_->{value} } @$user_prefs) {
498         $newsets{$pref->{cust}->name} = undef 
499             unless grep { $_ eq $pref->{cust}->name } @settings;
500     }
501
502     $U->simplereq(
503         'open-ils.actor',
504         'open-ils.actor.patron.settings.update',
505         $e->authtoken, $e->requestor->id, \%newsets);
506
507     # update the local prefs to match reality
508     for my $pref (@$user_prefs) {
509         $pref->{value} = $newsets{$pref->{cust}->name} 
510             if exists $newsets{$pref->{cust}->name};
511     }
512
513     return $user_prefs;
514 }
515
516 sub _load_user_with_prefs {
517     my $self = shift;
518     my $stat = $self->prepare_extended_user_info('settings');
519     return $stat if $stat; # not-OK
520
521     $self->ctx->{user_setting_map} = {
522         map { $_->name => OpenSRF::Utils::JSON->JSON2perl($_->value) } 
523             @{$self->ctx->{user}->settings}
524     };
525
526     return undef;
527 }
528
529 sub _get_bookbag_sort_params {
530     my ($self, $param_name) = @_;
531
532     # The interface that feeds this cgi parameter will provide a single
533     # argument for a QP sort filter, and potentially a modifier after a period.
534     # In practice this means the "sort" parameter will be something like
535     # "titlesort" or "authorsort.descending".
536     my $sorter = $self->cgi->param($param_name) || "";
537     my $modifier;
538     if ($sorter) {
539         $sorter =~ s/^(.*?)\.(.*)/$1/;
540         $modifier = $2 || undef;
541     }
542
543     return ($sorter, $modifier);
544 }
545
546 sub _prepare_bookbag_container_query {
547     my ($self, $container_id, $sorter, $modifier) = @_;
548
549     return sprintf(
550         "container(bre,bookbag,%d,%s)%s%s",
551         $container_id, $self->editor->authtoken,
552         ($sorter ? " sort($sorter)" : ""),
553         ($modifier ? "#$modifier" : "")
554     );
555 }
556
557 sub _prepare_anonlist_sorting_query {
558     my ($self, $list, $sorter, $modifier) = @_;
559
560     return sprintf(
561         "record_list(%s)%s%s",
562         join(",", @$list),
563         ($sorter ? " sort($sorter)" : ""),
564         ($modifier ? "#$modifier" : "")
565     );
566 }
567
568
569 sub load_myopac_prefs_settings {
570     my $self = shift;
571
572     my @user_prefs = qw/
573         opac.hits_per_page
574         opac.default_search_location
575         opac.default_pickup_location
576         opac.temporary_list_no_warn
577     /;
578
579     my $stat = $self->_load_user_with_prefs;
580     return $stat if $stat;
581
582     # if behind-desk holds are supported and the user
583     # setting which controls the value is opac-visible,
584     # add the setting to the list of settings to manage.
585     # note: this logic may need to be changed later to
586     # check whether behind-the-desk holds are supported
587     # anywhere the patron may select as a pickup lib.
588     my $e = $self->editor;
589     my $bdous = $self->ctx->{get_org_setting}->(
590         $e->requestor->home_ou,
591         'circ.holds.behind_desk_pickup_supported');
592
593     if ($bdous) {
594         my $setting = 
595             $e->retrieve_config_usr_setting_type(
596                 'circ.holds_behind_desk');
597
598         if ($U->is_true($setting->opac_visible)) {
599             push(@user_prefs, 'circ.holds_behind_desk');
600             $self->ctx->{behind_desk_supported} = 1;
601         }
602     }
603
604     return Apache2::Const::OK
605         unless $self->cgi->request_method eq 'POST';
606
607     # some setting values from the form don't match the 
608     # required value/format for the db, so they have to be 
609     # individually translated.
610
611     my %settings;
612     my $set_map = $self->ctx->{user_setting_map};
613
614     foreach my $key (@user_prefs) {
615         my $val = $self->cgi->param($key);
616         $settings{$key}= $val unless $$set_map{$key} eq $val;
617     }
618
619     # Used by the settings update form when warning on history delete.
620     my $clear_circ_history = 0;
621     my $clear_hold_history = 0;
622
623     # true if we need to show the warning on next page load.
624     my $hist_warning_needed = 0;
625     my $hist_clear_confirmed = $self->cgi->param('history_delete_confirmed');
626
627     my $now = DateTime->now->strftime('%F');
628     foreach my $key (
629             qw/history.circ.retention_start history.hold.retention_start/) {
630
631         my $val = $self->cgi->param($key);
632         if($val and $val eq 'on') {
633             # Set the start time to 'now' unless a start time already exists for the user
634             $settings{$key} = $now unless $$set_map{$key};
635
636         } else {
637
638             next unless $$set_map{$key}; # nothing to do
639
640             $clear_circ_history = 1 if $key =~ /circ/;
641             $clear_hold_history = 1 if $key =~ /hold/;
642
643             if (!$hist_clear_confirmed) {
644                 # when clearing circ history, only warn if history data exists.
645     
646                 if ($clear_circ_history) {
647
648                     if ($self->fetch_user_circ_history(0, 1)->[0]) {
649                         $hist_warning_needed = 1;
650                         next; # no history updates while confirmation pending
651                     }
652
653                 } else {
654
655                     my $one_hold = $e->json_query({
656                         select => {
657                             au => [{
658                                 column => 'id', 
659                                 transform => 'action.usr_visible_holds', 
660                                 result_field => 'id'
661                             }]
662                         },
663                         from => 'au',
664                         where => {id => $e->requestor->id},
665                         limit => 1
666                     })->[0];
667
668                     if ($one_hold) {
669                         $hist_warning_needed = 1;
670                         next; # no history updates while confirmation pending
671                     }
672                 }
673             }
674
675             $settings{$key} = undef;
676
677             if ($key eq 'history.circ.retention_start') {
678                 # delete existing circulation history data.
679                 $U->simplereq(
680                     'open-ils.actor',
681                     'open-ils.actor.history.circ.clear',
682                     $self->editor->authtoken);
683             }
684         }
685     }
686
687     # Warn patrons before clearing circ/hold history
688     if ($hist_warning_needed) {
689         $self->ctx->{clear_circ_history} = $clear_circ_history;
690         $self->ctx->{clear_hold_history} = $clear_hold_history;
691         $self->ctx->{confirm_history_delete} = 1;
692     }
693
694     # Send the modified settings off to be saved
695     $U->simplereq(
696         'open-ils.actor', 
697         'open-ils.actor.patron.settings.update',
698         $self->editor->authtoken, undef, \%settings);
699
700     # re-fetch user prefs 
701     $self->ctx->{updated_user_settings} = \%settings;
702     return $self->_load_user_with_prefs || Apache2::Const::OK;
703 }
704
705 sub load_myopac_prefs_my_lists {
706     my $self = shift;
707
708     my @user_prefs = qw/
709         opac.lists_per_page
710         opac.list_items_per_page
711     /;
712
713     my $stat = $self->_load_user_with_prefs;
714     return $stat if $stat;
715
716     return Apache2::Const::OK
717         unless $self->cgi->request_method eq 'POST';
718
719     my %settings;
720     my $set_map = $self->ctx->{user_setting_map};
721
722     foreach my $key (@user_prefs) {
723         my $val = $self->cgi->param($key);
724         $settings{$key}= $val unless $$set_map{$key} eq $val;
725     }
726
727     if (keys %settings) { # we found a different setting value
728         # Send the modified settings off to be saved
729         $U->simplereq(
730             'open-ils.actor',
731             'open-ils.actor.patron.settings.update',
732             $self->editor->authtoken, undef, \%settings);
733
734         # re-fetch user prefs
735         $self->ctx->{updated_user_settings} = \%settings;
736         $stat = $self->_load_user_with_prefs;
737     }
738
739     return $stat || Apache2::Const::OK;
740 }
741
742 sub fetch_user_holds {
743     my $self = shift;
744     my $hold_ids = shift;
745     my $ids_only = shift;
746     my $flesh = shift;
747     my $available = shift;
748     my $limit = shift;
749     my $offset = shift;
750
751     my $e = $self->editor;
752     my $all_ids; # to be used below.
753
754     if(!$hold_ids) {
755         my $circ = OpenSRF::AppSession->create('open-ils.circ');
756
757         $hold_ids = $circ->request(
758             'open-ils.circ.holds.id_list.retrieve.authoritative', 
759             $e->authtoken, 
760             $e->requestor->id,
761             $available
762         )->gather(1);
763         $circ->kill_me;
764
765         $all_ids = $hold_ids;
766         $hold_ids = [ grep { defined $_ } @$hold_ids[$offset..($offset + $limit - 1)] ] if $limit or $offset;
767
768     } else {
769         $all_ids = $hold_ids;
770     }
771
772     return { ids => $hold_ids, all_ids => $all_ids } if $ids_only or @$hold_ids == 0;
773
774     my $args = {
775         suppress_notices => 1,
776         suppress_transits => 1,
777         suppress_mvr => 1,
778         suppress_patron_details => 1
779     };
780
781     # ----------------------------------------------------------------
782     # Collect holds in batches of $batch_size for faster retrieval
783
784     my $batch_size = 8;
785     my $batch_idx = 0;
786     my $mk_req_batch = sub {
787         my @ses;
788         my $top_idx = $batch_idx + $batch_size;
789         while($batch_idx < $top_idx) {
790             my $hold_id = $hold_ids->[$batch_idx++];
791             last unless $hold_id;
792             my $ses = OpenSRF::AppSession->create('open-ils.circ');
793             my $req = $ses->request(
794                 'open-ils.circ.hold.details.retrieve', 
795                 $e->authtoken, $hold_id, $args);
796             push(@ses, {ses => $ses, req => $req});
797         }
798         return @ses;
799     };
800
801     my $first = 1;
802     my(@collected, @holds, @ses);
803
804     while(1) {
805         @ses = $mk_req_batch->() if $first;
806         last if $first and not @ses;
807
808         if(@collected) {
809             while(my $blob = pop(@collected)) {
810                 my @data;
811
812                 # in the holds edit UI, we need to know what formats and
813                 # languages the user selected for this hold, plus what
814                 # formats/langs are available on the MR as a whole.
815                 if ($blob->{hold}{hold}->hold_type eq 'M') {
816                     my $hold = $blob->{hold}->{hold};
817
818                     # for MR, fetch the combined MR unapi blob
819                     (undef, @data) = $self->get_records_and_facets(
820                         [$hold->target], undef, {flesh => '{mra}', metarecord => 1});
821
822                     my $filter_org = $U->org_unit_ancestor_at_depth(
823                         $hold->selection_ou,
824                         $hold->selection_depth);
825
826                     my $filter_data = $U->simplereq(
827                         'open-ils.circ',
828                         'open-ils.circ.mmr.holds.filters.authoritative.atomic', 
829                         $hold->target, $filter_org, [$hold->id]
830                     );
831
832                     $blob->{metarecord_filters} = 
833                         $filter_data->[0]->{metarecord};
834                     $blob->{metarecord_selected_filters} = 
835                         $filter_data->[1]->{hold};
836                 } else {
837
838                     (undef, @data) = $self->get_records_and_facets(
839                         [$blob->{hold}->{bre_id}], undef, {flesh => '{mra}'}
840                     );
841                 }
842
843                 $blob->{marc_xml} = $data[0]->{marc_xml};
844                 push(@holds, $blob);
845             }
846         }
847
848         for my $req_data (@ses) {
849             push(@collected, {hold => $req_data->{req}->gather(1)});
850             $req_data->{ses}->kill_me;
851         }
852
853         @ses = $mk_req_batch->();
854         last unless @collected or @ses;
855         $first = 0;
856     }
857
858     # put the holds back into the original server sort order
859     my @sorted;
860     for my $id (@$hold_ids) {
861         push @sorted, grep { $_->{hold}->{hold}->id == $id } @holds;
862     }
863
864     return { holds => \@sorted, ids => $hold_ids, all_ids => $all_ids };
865 }
866
867 sub handle_hold_update {
868     my $self = shift;
869     my $action = shift;
870     my $hold_ids = shift;
871     my $e = $self->editor;
872     my $url;
873
874     my @hold_ids = ($hold_ids) ? @$hold_ids : $self->cgi->param('hold_id'); # for non-_all actions
875     @hold_ids = @{$self->fetch_user_holds(undef, 1)->{ids}} if $action =~ /_all/;
876
877     my $circ = OpenSRF::AppSession->create('open-ils.circ');
878
879     if($action =~ /cancel/) {
880
881         for my $hold_id (@hold_ids) {
882             my $resp = $circ->request(
883                 'open-ils.circ.hold.cancel', $e->authtoken, $hold_id, 6 )->gather(1); # 6 == patron-cancelled-via-opac
884         }
885
886     } elsif ($action =~ /activate|suspend/) {
887         
888         my $vlist = [];
889         for my $hold_id (@hold_ids) {
890             my $vals = {id => $hold_id};
891
892             if($action =~ /activate/) {
893                 $vals->{frozen} = 'f';
894                 $vals->{thaw_date} = undef;
895
896             } elsif($action =~ /suspend/) {
897                 $vals->{frozen} = 't';
898                 # $vals->{thaw_date} = TODO;
899             }
900             push(@$vlist, $vals);
901         }
902
903         my $resp = $circ->request('open-ils.circ.hold.update.batch.atomic', $e->authtoken, undef, $vlist)->gather(1);
904         $self->ctx->{hold_suspend_post_capture} = 1 if 
905             grep {$U->event_equals($_, 'HOLD_SUSPEND_AFTER_CAPTURE')} @$resp;
906
907     } elsif ($action eq 'edit') {
908
909         my @vals = map {
910             my $val = {"id" => $_};
911             $val->{"frozen"} = $self->cgi->param("frozen");
912             $val->{"pickup_lib"} = $self->cgi->param("pickup_lib");
913
914             for my $field (qw/expire_time thaw_date/) {
915                 # XXX TODO make this support other date formats, not just
916                 # MM/DD/YYYY.
917                 next unless $self->cgi->param($field) =~
918                     m:^(\d{2})/(\d{2})/(\d{4})$:;
919                 $val->{$field} = "$3-$1-$2";
920             }
921
922             $val->{holdable_formats} = # no-op for non-MR holds
923                 $self->compile_holdable_formats(undef, $_);
924
925             $val;
926         } @hold_ids;
927
928         $circ->request(
929             'open-ils.circ.hold.update.batch.atomic',
930             $e->authtoken, undef, \@vals
931         )->gather(1);   # LFW XXX test for failure
932         $url = $self->ctx->{proto} . '://' . $self->ctx->{hostname} . $self->ctx->{opac_root} . '/myopac/holds';
933         foreach my $param (('loc', 'qtype', 'query')) {
934             if ($self->cgi->param($param)) {
935                 $url .= ";$param=" . uri_escape_utf8($self->cgi->param($param));
936             }
937         }
938     }
939
940     $circ->kill_me;
941     return defined($url) ? $self->generic_redirect($url) : undef;
942 }
943
944 sub load_myopac_holds {
945     my $self = shift;
946     my $e = $self->editor;
947     my $ctx = $self->ctx;
948     
949     my $limit = $self->cgi->param('limit') || 15;
950     my $offset = $self->cgi->param('offset') || 0;
951     my $action = $self->cgi->param('action') || '';
952     my $hold_id = $self->cgi->param('id');
953     my $available = int($self->cgi->param('available') || 0);
954
955     my $hold_handle_result;
956     $hold_handle_result = $self->handle_hold_update($action) if $action;
957
958     my $holds_object;
959     if ($self->cgi->param('sort') ne "") {
960         $holds_object = $self->fetch_user_holds($hold_id ? [$hold_id] : undef, 0, 1, $available);
961     }
962     else {
963         $holds_object = $self->fetch_user_holds($hold_id ? [$hold_id] : undef, 0, 1, $available, $limit, $offset);
964     }
965
966     if($holds_object->{holds}) {
967         $ctx->{holds} = $holds_object->{holds};
968     }
969     $ctx->{holds_ids} = $holds_object->{all_ids};
970     $ctx->{holds_limit} = $limit;
971     $ctx->{holds_offset} = $offset;
972
973     return defined($hold_handle_result) ? $hold_handle_result : Apache2::Const::OK;
974 }
975
976 my $data_filler;
977
978 sub load_place_hold {
979     my $self = shift;
980     my $ctx = $self->ctx;
981     my $gos = $ctx->{get_org_setting};
982     my $e = $self->editor;
983     my $cgi = $self->cgi;
984
985     $self->ctx->{page} = 'place_hold';
986     my @targets = $cgi->param('hold_target');
987     my @parts = $cgi->param('part');
988
989     $ctx->{hold_type} = $cgi->param('hold_type');
990     $ctx->{default_pickup_lib} = $e->requestor->home_ou; # unless changed below
991     $ctx->{email_notify} = $cgi->param('email_notify');
992     if ($cgi->param('phone_notify_checkbox')) {
993         $ctx->{phone_notify} = $cgi->param('phone_notify');
994     }
995     if ($cgi->param('sms_notify_checkbox')) {
996         $ctx->{sms_notify} = $cgi->param('sms_notify');
997         $ctx->{sms_carrier} = $cgi->param('sms_carrier');
998     }
999
1000     return $self->generic_redirect unless @targets;
1001
1002     $logger->info("Looking at hold_type: " . $ctx->{hold_type} . " and targets: @targets");
1003
1004     $ctx->{staff_recipient} = $self->editor->retrieve_actor_user([
1005         $e->requestor->id,
1006         {
1007             flesh => 1,
1008             flesh_fields => {
1009                 au => ['settings', 'card']
1010             }
1011         }
1012     ]) or return Apache2::Const::HTTP_INTERNAL_SERVER_ERROR;
1013     my $user_setting_map = {
1014         map { $_->name => OpenSRF::Utils::JSON->JSON2perl($_->value) }
1015             @{
1016                 $ctx->{staff_recipient}->settings
1017             }
1018     };
1019     $ctx->{user_setting_map} = $user_setting_map;
1020
1021     my $default_notify = (defined $$user_setting_map{'opac.hold_notify'} ? $$user_setting_map{'opac.hold_notify'} : 'email:phone');
1022     if ($default_notify =~ /email/) {
1023         $ctx->{default_email_notify} = 'checked';
1024     } else {
1025         $ctx->{default_email_notify} = '';
1026     }
1027     if ($default_notify =~ /phone/) {
1028         $ctx->{default_phone_notify} = 'checked';
1029     } else {
1030         $ctx->{default_phone_notify} = '';
1031     }
1032     if ($default_notify =~ /sms/) {
1033         $ctx->{default_sms_notify} = 'checked';
1034     } else {
1035         $ctx->{default_sms_notify} = '';
1036     }
1037
1038     # If we have a default pickup location, grab it
1039     if ($$user_setting_map{'opac.default_pickup_location'}) {
1040         $ctx->{default_pickup_lib} = $$user_setting_map{'opac.default_pickup_location'};
1041     }
1042
1043     my $request_lib = $e->requestor->ws_ou;
1044     my @hold_data;
1045     $ctx->{hold_data} = \@hold_data;
1046
1047     $data_filler = sub {
1048         my $hdata = shift;
1049         if ($ctx->{email_notify}) { $hdata->{email_notify} = $ctx->{email_notify}; }
1050         if ($ctx->{phone_notify}) { $hdata->{phone_notify} = $ctx->{phone_notify}; }
1051         if ($ctx->{sms_notify}) { $hdata->{sms_notify} = $ctx->{sms_notify}; }
1052         if ($ctx->{sms_carrier}) { $hdata->{sms_carrier} = $ctx->{sms_carrier}; }
1053         return $hdata;
1054     };
1055
1056     my $type_dispatch = {
1057         M => sub {
1058             # target metarecords
1059             my $mrecs = $e->batch_retrieve_metabib_metarecord([
1060                 \@targets, 
1061                 {flesh => 1, flesh_fields => {mmr => ['master_record']}}], 
1062                 {substream => 1}
1063             );
1064
1065             for my $id (@targets) {
1066                 my ($mr) = grep {$_->id eq $id} @$mrecs;
1067
1068                 my $ou_id = $cgi->param('pickup_lib') || $self->ctx->{search_ou};
1069                 my $filter_data = $U->simplereq(
1070                     'open-ils.circ',
1071                     'open-ils.circ.mmr.holds.filters.authoritative', $mr->id, $ou_id);
1072
1073                 my $holdable_formats = 
1074                     $self->compile_holdable_formats($mr->id);
1075
1076                 push(@hold_data, $data_filler->({
1077                     target => $mr, 
1078                     record => $mr->master_record,
1079                     holdable_formats => $holdable_formats,
1080                     metarecord_filters => $filter_data->{metarecord}
1081                 }));
1082             }
1083         },
1084         T => sub {
1085             my $recs = $e->batch_retrieve_biblio_record_entry(
1086                 [\@targets,  {flesh => 1, flesh_fields => {bre => ['metarecord']}}],
1087                 {substream => 1}
1088             );
1089
1090             for my $id (@targets) { # force back into the correct order
1091                 my ($rec) = grep {$_->id eq $id} @$recs;
1092
1093                 # NOTE: if tpac ever supports locked-down pickup libs,
1094                 # we'll need to pass a pickup_lib param along with the 
1095                 # record to filter the set of monographic parts.
1096                 my $parts = $U->simplereq(
1097                     'open-ils.search',
1098                     'open-ils.search.biblio.record_hold_parts', 
1099                     {record => $rec->id}
1100                 );
1101
1102                 # T holds on records that have parts are OK, but if the record has 
1103                 # no non-part copies, the hold will ultimately fail.  When that 
1104                 # happens, require the user to select a part.
1105                 my $part_required = 0;
1106                 if (@$parts) {
1107                     my $np_copies = $e->json_query({
1108                         select => { acp => [{column => 'id', transform => 'count', alias => 'count'}]}, 
1109                         from => {acp => {acn => {}, acpm => {type => 'left'}}}, 
1110                         where => {
1111                             '+acp' => {deleted => 'f'},
1112                             '+acn' => {deleted => 'f', record => $rec->id}, 
1113                             '+acpm' => {id => undef}
1114                         }
1115                     });
1116                     $part_required = 1 if $np_copies->[0]->{count} == 0;
1117                 }
1118
1119                 push(@hold_data, $data_filler->({
1120                     target => $rec,
1121                     record => $rec,
1122                     parts => $parts,
1123                     part_required => $part_required
1124                 }));
1125             }
1126         },
1127         V => sub {
1128             my $vols = $e->batch_retrieve_asset_call_number([
1129                 \@targets, {
1130                     "flesh" => 1,
1131                     "flesh_fields" => {"acn" => ["record"]}
1132                 }
1133             ], {substream => 1});
1134
1135             for my $id (@targets) { 
1136                 my ($vol) = grep {$_->id eq $id} @$vols;
1137                 push(@hold_data, $data_filler->({target => $vol, record => $vol->record}));
1138             }
1139         },
1140         C => sub {
1141             my $copies = $e->batch_retrieve_asset_copy([
1142                 \@targets, {
1143                     "flesh" => 2,
1144                     "flesh_fields" => {
1145                         "acn" => ["record"],
1146                         "acp" => ["call_number"]
1147                     }
1148                 }
1149             ], {substream => 1});
1150
1151             for my $id (@targets) { 
1152                 my ($copy) = grep {$_->id eq $id} @$copies;
1153                 push(@hold_data, $data_filler->({target => $copy, record => $copy->call_number->record}));
1154             }
1155         },
1156         I => sub {
1157             my $isses = $e->batch_retrieve_serial_issuance([
1158                 \@targets, {
1159                     "flesh" => 2,
1160                     "flesh_fields" => {
1161                         "siss" => ["subscription"], "ssub" => ["record_entry"]
1162                     }
1163                 }
1164             ], {substream => 1});
1165
1166             for my $id (@targets) { 
1167                 my ($iss) = grep {$_->id eq $id} @$isses;
1168                 push(@hold_data, $data_filler->({target => $iss, record => $iss->subscription->record_entry}));
1169             }
1170         }
1171         # ...
1172
1173     }->{$ctx->{hold_type}}->();
1174
1175     # caller sent bad target IDs or the wrong hold type
1176     return Apache2::Const::HTTP_BAD_REQUEST unless @hold_data;
1177
1178     # generate the MARC xml for each record
1179     $_->{marc_xml} = XML::LibXML->new->parse_string($_->{record}->marc) for @hold_data;
1180
1181     my $pickup_lib = $cgi->param('pickup_lib');
1182     # no pickup lib means no holds placement
1183     return Apache2::Const::OK unless $pickup_lib;
1184
1185     $ctx->{hold_attempt_made} = 1;
1186
1187     # Give the original CGI params back to the user in case they
1188     # want to try to override something.
1189     $ctx->{orig_params} = $cgi->Vars;
1190     delete $ctx->{orig_params}{submit};
1191     delete $ctx->{orig_params}{hold_target};
1192     delete $ctx->{orig_params}{part};
1193
1194     my $usr = $e->requestor->id;
1195
1196     if ($ctx->{is_staff} and !$cgi->param("hold_usr_is_requestor")) {
1197         # find the real hold target
1198
1199         $usr = $U->simplereq(
1200             'open-ils.actor', 
1201             "open-ils.actor.user.retrieve_id_by_barcode_or_username",
1202             $e->authtoken, $cgi->param("hold_usr"));
1203
1204         if (defined $U->event_code($usr)) {
1205             $ctx->{hold_failed} = 1;
1206             $ctx->{hold_failed_event} = $usr;
1207         }
1208     }
1209
1210     # target_id is the true target_id for holds placement.  
1211     # needed for attempt_hold_placement()
1212     # With the exception of P-type holds, target_id == target->id.
1213     $_->{target_id} = $_->{target}->id for @hold_data;
1214
1215     if ($ctx->{hold_type} eq 'T') {
1216
1217         # Much like quantum wave-particles, P-type holds pop into 
1218         # and out of existence at the user's whim.  For our purposes,
1219         # we treat such holds as T(itle) holds with a selected_part 
1220         # designation.  When the time comes to pass the hold information 
1221         # off for holds possibility testing and placement, make it look 
1222         # like a real P-type hold.
1223         my (@p_holds, @t_holds);
1224         
1225         for my $idx (0..$#parts) {
1226             my $hdata = $hold_data[$idx];
1227             if (my $part = $parts[$idx]) {
1228                 $hdata->{target_id} = $part;
1229                 $hdata->{selected_part} = $part;
1230                 push(@p_holds, $hdata);
1231             } else {
1232                 push(@t_holds, $hdata);
1233             }
1234         }
1235
1236         $self->apache->log->warn("$#parts : @t_holds");
1237
1238         $self->attempt_hold_placement($usr, $pickup_lib, 'P', @p_holds) if @p_holds;
1239         $self->attempt_hold_placement($usr, $pickup_lib, 'T', @t_holds) if @t_holds;
1240
1241     } else {
1242         $self->attempt_hold_placement($usr, $pickup_lib, $ctx->{hold_type}, @hold_data);
1243     }
1244
1245     # NOTE: we are leaving the staff-placed patron barcode cookie 
1246     # in place.  Otherwise, it's not possible to place more than 
1247     # one hold for the patron within a staff/patron session.  This 
1248     # does leave the barcode to linger longer than is ideal, but 
1249     # normal staff work flow will cause the cookie to be replaced 
1250     # with each new patron anyway.
1251     # TODO: See about getting the staff client to clear the cookie
1252
1253     # return to the place_hold page so the results of the hold
1254     # placement attempt can be reported to the user
1255     return Apache2::Const::OK;
1256 }
1257
1258 sub attempt_hold_placement {
1259     my ($self, $usr, $pickup_lib, $hold_type, @hold_data) = @_;
1260     my $cgi = $self->cgi;
1261     my $ctx = $self->ctx;
1262     my $e = $self->editor;
1263
1264     # First see if we should warn/block for any holds that 
1265     # might have locally available items.
1266     for my $hdata (@hold_data) {
1267         my ($local_block, $local_alert) = $self->local_avail_concern(
1268             $hdata->{target_id}, $hold_type, $pickup_lib);
1269     
1270         if ($local_block) {
1271             $hdata->{hold_failed} = 1;
1272             $hdata->{hold_local_block} = 1;
1273         } elsif ($local_alert) {
1274             $hdata->{hold_failed} = 1;
1275             $hdata->{hold_local_alert} = 1;
1276         }
1277     }
1278
1279     my $method = 'open-ils.circ.holds.test_and_create.batch';
1280
1281     if ($cgi->param('override')) {
1282         $method .= '.override';
1283
1284     } elsif (!$ctx->{is_staff})  {
1285
1286         $method .= '.override' if $self->ctx->{get_org_setting}->(
1287             $e->requestor->home_ou, "opac.patron.auto_overide_hold_events");
1288     }
1289
1290     my @create_targets = map {$_->{target_id}} (grep { !$_->{hold_failed} } @hold_data);
1291
1292     if(@create_targets) {
1293
1294         # holdable formats may be different for each MR hold.
1295         # map each set to the ID of the target.
1296         my $holdable_formats = {};
1297         if ($hold_type eq 'M') {
1298             $holdable_formats->{$_->{target_id}} = 
1299                 $_->{holdable_formats} for @hold_data;
1300         }
1301
1302         my $bses = OpenSRF::AppSession->create('open-ils.circ');
1303         my $breq = $bses->request( 
1304             $method, 
1305             $e->authtoken, 
1306             $data_filler->({   
1307                 patronid => $usr,
1308                 pickup_lib => $pickup_lib, 
1309                 hold_type => $hold_type,
1310                 holdable_formats_map => $holdable_formats
1311             }),
1312             \@create_targets
1313         );
1314
1315         while (my $resp = $breq->recv) {
1316
1317             $resp = $resp->content;
1318             $logger->info('batch hold placement result: ' . OpenSRF::Utils::JSON->perl2JSON($resp));
1319
1320             if ($U->event_code($resp)) {
1321                 $ctx->{general_hold_error} = $resp;
1322                 last;
1323             }
1324
1325             my ($hdata) = grep {$_->{target_id} eq $resp->{target}} @hold_data;
1326             my $result = $resp->{result};
1327
1328             if ($U->event_code($result)) {
1329                 # e.g. permission denied
1330                 $hdata->{hold_failed} = 1;
1331                 $hdata->{hold_failed_event} = $result;
1332
1333             } else {
1334                 
1335                 if(not ref $result and $result > 0) {
1336                     # successul hold returns the hold ID
1337
1338                     $hdata->{hold_success} = $result; 
1339     
1340                 } else {
1341                     # hold-specific failure event 
1342                     $hdata->{hold_failed} = 1;
1343
1344                     if (ref $result eq 'HASH') {
1345                         $hdata->{hold_failed_event} = $result->{last_event};
1346
1347                         if ($result->{age_protected_copy}) {
1348                             my %temp = %{$hdata->{hold_failed_event}};
1349                             my $theTextcode = $temp{"textcode"};
1350                             $theTextcode.=".override";
1351                             $hdata->{could_override} = $self->editor->allowed( $theTextcode );
1352                             $hdata->{age_protect} = 1;
1353                         } else {
1354                             $hdata->{could_override} = $result->{place_unfillable} || 
1355                                 $self->test_could_override($hdata->{hold_failed_event});
1356                         }
1357                     } elsif (ref $result eq 'ARRAY') {
1358                         $hdata->{hold_failed_event} = $result->[0];
1359
1360                         if ($result->[3]) { # age_protect_only
1361                             my %temp = %{$hdata->{hold_failed_event}};
1362                             my $theTextcode = $temp{"textcode"};
1363                             $theTextcode.=".override";
1364                             $hdata->{could_override} = $self->editor->allowed( $theTextcode );
1365                             $hdata->{age_protect} = 1;
1366                         } else {
1367                             $hdata->{could_override} = $result->[4] || # place_unfillable
1368                                 $self->test_could_override($hdata->{hold_failed_event});
1369                         }
1370                     }
1371                 }
1372             }
1373         }
1374
1375         $bses->kill_me;
1376     }
1377 }
1378
1379 # pull the selected formats and languages for metarecord holds
1380 # from the CGI params and map them into the JSON holdable
1381 # formats...er, format.
1382 # if no metarecord is provided, we'll pull it from the target
1383 # of the provided hold.
1384 sub compile_holdable_formats {
1385     my ($self, $mr_id, $hold_id) = @_;
1386     my $e = $self->editor;
1387     my $cgi = $self->cgi;
1388
1389     # exit early if not needed
1390     return undef unless 
1391         grep /metarecord_formats_|metarecord_langs_/, 
1392         $cgi->param;
1393
1394     # CGI params are based on the MR id, since during hold placement
1395     # we have no old ID.  During hold edit, map the hold ID back to 
1396     # the metarecod target.
1397     $mr_id = 
1398         $e->retrieve_action_hold_request($hold_id)->target 
1399         unless $mr_id;
1400
1401     my $format_attr = $self->ctx->{get_cgf}->(
1402         'opac.metarecord.holds.format_attr');
1403
1404     if (!$format_attr) {
1405         $logger->error("Missing config.global_flag: ".
1406             "opac.metarecord.holds.format_attr!");
1407         return "";
1408     }
1409
1410     $format_attr = $format_attr->value;
1411
1412     # during hold placement or edit submission, the user selects
1413     # which of the available formats/langs are acceptable.
1414     # Capture those here as the holdable_formats for the MR hold.
1415     my @selected_formats = $cgi->param("metarecord_formats_$mr_id");
1416     my @selected_langs = $cgi->param("metarecord_langs_$mr_id");
1417
1418     # map the selected attrs into the JSON holdable_formats structure
1419     my $blob = {};
1420     if (@selected_formats) {
1421         $blob->{0} = [
1422             map { {_attr => $format_attr, _val => $_} } 
1423             @selected_formats
1424         ];
1425     }
1426     if (@selected_langs) {
1427         $blob->{1} = [
1428             map { {_attr => 'item_lang', _val => $_} } 
1429             @selected_langs
1430         ];
1431     }
1432
1433     return OpenSRF::Utils::JSON->perl2JSON($blob);
1434 }
1435
1436 sub fetch_user_circs {
1437     my $self = shift;
1438     my $flesh = shift; # flesh bib data, etc.
1439     my $circ_ids = shift;
1440     my $limit = shift;
1441     my $offset = shift;
1442
1443     my $e = $self->editor;
1444
1445     my @circ_ids;
1446
1447     if($circ_ids) {
1448         @circ_ids = @$circ_ids;
1449
1450     } else {
1451
1452         my $query = {
1453             select => {circ => ['id']},
1454             from => 'circ',
1455             where => {
1456                 '+circ' => {
1457                     usr => $e->requestor->id,
1458                     checkin_time => undef,
1459                     '-or' => [
1460                         {stop_fines => undef},
1461                         {stop_fines => {'not in' => ['LOST','CLAIMSRETURNED','LONGOVERDUE']}}
1462                     ],
1463                 }
1464             },
1465             order_by => {circ => ['due_date']}
1466         };
1467
1468         $query->{limit} = $limit if $limit;
1469         $query->{offset} = $offset if $offset;
1470
1471         my $ids = $e->json_query($query);
1472         @circ_ids = map {$_->{id}} @$ids;
1473     }
1474
1475     return [] unless @circ_ids;
1476
1477     my $qflesh = {
1478         flesh => 3,
1479         flesh_fields => {
1480             circ => ['target_copy'],
1481             acp => ['call_number'],
1482             acn => ['record']
1483         }
1484     };
1485
1486     $e->xact_begin;
1487     my $circs = $e->search_action_circulation(
1488         [{id => \@circ_ids}, ($flesh) ? $qflesh : {}], {substream => 1});
1489
1490     my @circs;
1491     for my $circ (@$circs) {
1492         push(@circs, {
1493             circ => $circ, 
1494             marc_xml => ($flesh and $circ->target_copy->call_number->id != -1) ? 
1495                 XML::LibXML->new->parse_string($circ->target_copy->call_number->record->marc) : 
1496                 undef  # pre-cat copy, use the dummy title/author instead
1497         });
1498     }
1499     $e->rollback;
1500
1501     # make sure the final list is in the correct order
1502     my @sorted_circs;
1503     for my $id (@circ_ids) {
1504         push(
1505             @sorted_circs,
1506             (grep { $_->{circ}->id == $id } @circs)
1507         );
1508     }
1509
1510     return \@sorted_circs;
1511 }
1512
1513
1514 sub handle_circ_renew {
1515     my $self = shift;
1516     my $action = shift;
1517     my $ctx = $self->ctx;
1518
1519     my @renew_ids = $self->cgi->param('circ');
1520
1521     my $circs = $self->fetch_user_circs(0, ($action eq 'renew') ? [@renew_ids] : undef);
1522
1523     # TODO: fire off renewal calls in batches to speed things up
1524     my @responses;
1525     for my $circ (@$circs) {
1526
1527         my $evt = $U->simplereq(
1528             'open-ils.circ', 
1529             'open-ils.circ.renew',
1530             $self->editor->authtoken,
1531             {
1532                 patron_id => $self->editor->requestor->id,
1533                 copy_id => $circ->{circ}->target_copy,
1534                 opac_renewal => 1
1535             }
1536         );
1537
1538         # TODO return these, then insert them into the circ data 
1539         # blob that is shoved into the template for each circ
1540         # so the template won't have to match them
1541         push(@responses, {copy => $circ->{circ}->target_copy, evt => $evt});
1542     }
1543
1544     return @responses;
1545 }
1546
1547
1548 sub load_myopac_circs {
1549     my $self = shift;
1550     my $e = $self->editor;
1551     my $ctx = $self->ctx;
1552
1553     $ctx->{circs} = [];
1554     my $limit = $self->cgi->param('limit') || 0; # 0 == unlimited
1555     my $offset = $self->cgi->param('offset') || 0;
1556     my $action = $self->cgi->param('action') || '';
1557
1558     # perform the renewal first if necessary
1559     my @results = $self->handle_circ_renew($action) if $action =~ /renew/;
1560
1561     $ctx->{circs} = $self->fetch_user_circs(1, undef, $limit, $offset);
1562
1563     my $success_renewals = 0;
1564     my $failed_renewals = 0;
1565     for my $data (@{$ctx->{circs}}) {
1566         my ($resp) = grep { $_->{copy} == $data->{circ}->target_copy->id } @results;
1567
1568         if($resp) {
1569             my $evt = ref($resp->{evt}) eq 'ARRAY' ? $resp->{evt}->[0] : $resp->{evt};
1570             $data->{renewal_response} = $evt;
1571             $success_renewals++ if $evt->{textcode} eq 'SUCCESS';
1572             $failed_renewals++ if $evt->{textcode} ne 'SUCCESS';
1573         }
1574     }
1575
1576     $ctx->{success_renewals} = $success_renewals;
1577     $ctx->{failed_renewals} = $failed_renewals;
1578
1579     return Apache2::Const::OK;
1580 }
1581
1582 sub load_myopac_circ_history {
1583     my $self = shift;
1584     my $e = $self->editor;
1585     my $ctx = $self->ctx;
1586     my $limit = $self->cgi->param('limit') || 15;
1587     my $offset = $self->cgi->param('offset') || 0;
1588     my $action = $self->cgi->param('action') || '';
1589
1590     my $circ_handle_result;
1591     $circ_handle_result = $self->handle_circ_update($action) if $action;
1592
1593     $ctx->{circ_history_limit} = $limit;
1594     $ctx->{circ_history_offset} = $offset;
1595
1596     # Defer limitation to circ_history.tt2 when sorting
1597     if ($self->cgi->param('sort')) {
1598         $limit = undef;
1599         $offset = undef;
1600     }
1601
1602     $ctx->{circs} = $self->fetch_user_circ_history(1, $limit, $offset);
1603     return Apache2::Const::OK;
1604 }
1605
1606 # if 'flesh' is set, copy data etc. is loaded and the return value is 
1607 # a hash of 'circ' and 'marc_xml'.  Othwerwise, it's just a list of 
1608 # auch objects.
1609 sub fetch_user_circ_history {
1610     my ($self, $flesh, $limit, $offset) = @_;
1611     my $e = $self->editor;
1612
1613     my %limits = ();
1614     $limits{offset} = $offset if defined $offset;
1615     $limits{limit} = $limit if defined $limit;
1616
1617     my %flesh_ops = (
1618         flesh => 3,
1619         flesh_fields => {
1620             auch => ['target_copy'],
1621             acp => ['call_number'],
1622             acn => ['record']
1623         },
1624     );
1625
1626     $e->xact_begin;
1627     my $circs = $e->search_action_user_circ_history([
1628         {usr => $e->requestor->id},
1629         {   # order newest to oldest by default
1630             order_by => {auch => 'xact_start DESC'},
1631             $flesh ? %flesh_ops : (),
1632             %limits
1633         },
1634         {substream => 1}
1635     ]);
1636     $e->rollback;
1637
1638     return $circs unless $flesh;
1639
1640     my @circs;
1641     for my $circ (@$circs) {
1642         push(@circs, {
1643             circ => $circ, 
1644             marc_xml => ($circ->target_copy->call_number->id != -1) ? 
1645                 XML::LibXML->new->parse_string(
1646                     $circ->target_copy->call_number->record->marc) : 
1647                 undef  # pre-cat copy, use the dummy title/author instead
1648         });
1649     }
1650
1651     return \@circs;
1652 }
1653
1654 sub handle_circ_update {
1655     my $self = shift;
1656     my $action = shift;
1657     my $circ_ids = shift;
1658     my $e = $self->editor;
1659     my $url;
1660
1661     my @circ_ids = ($circ_ids) ? @$circ_ids : $self->cgi->param('circ_id'); # for non-_all actions
1662
1663     my $cstore_ses = OpenSRF::AppSession->create('open-ils.cstore');
1664     $cstore_ses->connect();
1665     $cstore_ses->request('open-ils.cstore.transaction.begin')->gather(1);
1666
1667     if($action =~ /delete/) {
1668         for my $circ_id (@circ_ids) {
1669             my $circ = $cstore_ses->request(
1670                 'open-ils.cstore.direct.action.circulation.retrieve', $circ_id)->gather(1);
1671             $circ->hide_from_usr_history(1);
1672             my $resp = $cstore_ses->request(
1673                 'open-ils.cstore.direct.action.circulation.update', $circ)->gather(1);
1674         }
1675     }
1676
1677     $cstore_ses->request('open-ils.cstore.transaction.commit')->gather(1);
1678     $cstore_ses->disconnect();
1679     return undef;
1680 }
1681
1682 # TODO: action.usr_visible_holds does not return cancelled holds.  Should it?
1683 sub load_myopac_hold_history {
1684     my $self = shift;
1685     my $e = $self->editor;
1686     my $ctx = $self->ctx;
1687     my $limit = $self->cgi->param('limit') || 15;
1688     my $offset = $self->cgi->param('offset') || 0;
1689     $ctx->{hold_history_limit} = $limit;
1690     $ctx->{hold_history_offset} = $offset;
1691
1692     my $hold_ids = $e->json_query({
1693         select => {
1694             au => [{
1695                 column => 'id', 
1696                 transform => 'action.usr_visible_holds', 
1697                 result_field => 'id'
1698             }]
1699         },
1700         from => 'au',
1701         where => {id => $e->requestor->id}
1702     });
1703
1704     my $holds_object = $self->fetch_user_holds([map { $_->{id} } @$hold_ids], 0, 1, 0, $limit, $offset);
1705     if($holds_object->{holds}) {
1706         $ctx->{holds} = $holds_object->{holds};
1707     }
1708     $ctx->{hold_history_ids} = $holds_object->{all_ids};
1709
1710     return Apache2::Const::OK;
1711 }
1712
1713 sub load_myopac_payment_form {
1714     my $self = shift;
1715     my $r;
1716
1717     $r = $self->prepare_fines(undef, undef, [$self->cgi->param('xact'), $self->cgi->param('xact_misc')]) and return $r;
1718     $r = $self->prepare_extended_user_info and return $r;
1719
1720     return Apache2::Const::OK;
1721 }
1722
1723 # TODO: add other filter options as params/configs/etc.
1724 sub load_myopac_payments {
1725     my $self = shift;
1726     my $limit = $self->cgi->param('limit') || 20;
1727     my $offset = $self->cgi->param('offset') || 0;
1728     my $e = $self->editor;
1729
1730     $self->ctx->{payment_history_limit} = $limit;
1731     $self->ctx->{payment_history_offset} = $offset;
1732
1733     my $args = {};
1734     $args->{limit} = $limit if $limit;
1735     $args->{offset} = $offset if $offset;
1736
1737     if (my $max_age = $self->ctx->{get_org_setting}->(
1738         $e->requestor->home_ou, "opac.payment_history_age_limit"
1739     )) {
1740         my $min_ts = DateTime->now(
1741             "time_zone" => DateTime::TimeZone->new("name" => "local"),
1742         )->subtract("seconds" => interval_to_seconds($max_age))->iso8601();
1743         
1744         $logger->info("XXX min_ts: $min_ts");
1745         $args->{"where"} = {"payment_ts" => {">=" => $min_ts}};
1746     }
1747
1748     $self->ctx->{payments} = $U->simplereq(
1749         'open-ils.actor',
1750         'open-ils.actor.user.payments.retrieve.atomic',
1751         $e->authtoken, $e->requestor->id, $args);
1752
1753     return Apache2::Const::OK;
1754 }
1755
1756 # 1. caches the form parameters
1757 # 2. loads the credit card payment "Processing..." page
1758 sub load_myopac_pay_init {
1759     my $self = shift;
1760     my $cache = OpenSRF::Utils::Cache->new('global');
1761
1762     my @payment_xacts = ($self->cgi->param('xact'), $self->cgi->param('xact_misc'));
1763
1764     if (!@payment_xacts) {
1765         # for consistency with load_myopac_payment_form() and
1766         # to preserve backwards compatibility, if no xacts are
1767         # selected, assume all (applicable) transactions are wanted.
1768         my $stat = $self->prepare_fines(undef, undef, [$self->cgi->param('xact'), $self->cgi->param('xact_misc')]);
1769         return $stat if $stat;
1770         @payment_xacts =
1771             map { $_->{xact}->id } (
1772                 @{$self->ctx->{fines}->{circulation}}, 
1773                 @{$self->ctx->{fines}->{grocery}}
1774         );
1775     }
1776
1777     return $self->generic_redirect unless @payment_xacts;
1778
1779     my $cc_args = {"where_process" => 1};
1780
1781     $cc_args->{$_} = $self->cgi->param($_) for (qw/
1782         number cvv2 expire_year expire_month billing_first
1783         billing_last billing_address billing_city billing_state
1784         billing_zip stripe_token
1785     /);
1786
1787     my $cache_args = {
1788         cc_args => $cc_args, 
1789         user => $self->ctx->{user}->id,
1790         xacts => \@payment_xacts
1791     };
1792
1793     # generate a temporary cache token and cache the form data
1794     my $token = md5_hex($$ . time() . rand());
1795     $cache->put_cache($token, $cache_args, 30);
1796
1797     $logger->info("tpac caching payment info with token $token and xacts [@payment_xacts]");
1798
1799     # after we render the processing page, we quickly redirect to submit
1800     # the actual payment.  The refresh url contains the payment token.
1801     # It also contains the list of xact IDs, which allows us to clear the 
1802     # cache at the earliest possible time while leaving a trace of which 
1803     # transactions we were processing, so the UI can bring the user back
1804     # to the payment form w/ the same xacts if the payment fails.
1805
1806     my $refresh = "1; url=main_pay/$token?xact=" . pop(@payment_xacts);
1807     $refresh .= ";xact=$_" for @payment_xacts;
1808     $self->ctx->{refresh} = $refresh;
1809
1810     return Apache2::Const::OK;
1811 }
1812
1813 # retrieve the cached CC payment info and send off for processing
1814 sub load_myopac_pay {
1815     my $self = shift;
1816     my $token = $self->ctx->{page_args}->[0];
1817     return Apache2::Const::HTTP_BAD_REQUEST unless $token;
1818
1819     my $cache = OpenSRF::Utils::Cache->new('global');
1820     my $cache_args = $cache->get_cache($token);
1821     $cache->delete_cache($token);
1822
1823     # this page is loaded immediately after the token is created.
1824     # if the cached data is not there, it's because of an invalid
1825     # token (or cache failure) and not because of a timeout.
1826     return Apache2::Const::HTTP_BAD_REQUEST unless $cache_args;
1827
1828     my @payment_xacts = @{$cache_args->{xacts}};
1829     my $cc_args = $cache_args->{cc_args};
1830
1831     # as an added security check, verify the user submitting 
1832     # the form is the same as the user whose data was cached
1833     return Apache2::Const::HTTP_BAD_REQUEST unless
1834         $cache_args->{user} == $self->ctx->{user}->id;
1835
1836     $logger->info("tpac paying fines with token $token and xacts [@payment_xacts]");
1837
1838     my $r;
1839     $r = $self->prepare_fines(undef, undef, \@payment_xacts) and return $r;
1840
1841     # balance_owed is computed specifically from the fines we're paying
1842     if ($self->ctx->{fines}->{balance_owed} <= 0) {
1843         $logger->info("tpac can't pay non-positive balance. xacts selected: [@payment_xacts]");
1844         return Apache2::Const::HTTP_BAD_REQUEST;
1845     }
1846
1847     my $args = {
1848         "cc_args" => $cc_args,
1849         "userid" => $self->ctx->{user}->id,
1850         "payment_type" => "credit_card_payment",
1851         "payments" => $self->prepare_fines_for_payment  # should be safe after self->prepare_fines
1852     };
1853
1854     my $resp = $U->simplereq("open-ils.circ", "open-ils.circ.money.payment",
1855         $self->editor->authtoken, $args, $self->ctx->{user}->last_xact_id
1856     );
1857
1858     $self->ctx->{"payment_response"} = $resp;
1859
1860     unless ($resp->{"textcode"}) {
1861         $self->ctx->{printable_receipt} = $U->simplereq(
1862            "open-ils.circ", "open-ils.circ.money.payment_receipt.print",
1863            $self->editor->authtoken, $resp->{payments}
1864         );
1865     }
1866
1867     return Apache2::Const::OK;
1868 }
1869
1870 sub load_myopac_receipt_print {
1871     my $self = shift;
1872
1873     $self->ctx->{printable_receipt} = $U->simplereq(
1874        "open-ils.circ", "open-ils.circ.money.payment_receipt.print",
1875        $self->editor->authtoken, [$self->cgi->param("payment")]
1876     );
1877
1878     return Apache2::Const::OK;
1879 }
1880
1881 sub load_myopac_receipt_email {
1882     my $self = shift;
1883
1884     # The following ML method doesn't actually check whether the user in
1885     # question has an email address, so we do.
1886     if ($self->ctx->{user}->email) {
1887         $self->ctx->{email_receipt_result} = $U->simplereq(
1888            "open-ils.circ", "open-ils.circ.money.payment_receipt.email",
1889            $self->editor->authtoken, [$self->cgi->param("payment")]
1890         );
1891     } else {
1892         $self->ctx->{email_receipt_result} =
1893             new OpenILS::Event("PATRON_NO_EMAIL_ADDRESS");
1894     }
1895
1896     return Apache2::Const::OK;
1897 }
1898
1899 sub prepare_fines {
1900     my ($self, $limit, $offset, $id_list) = @_;
1901
1902     # XXX TODO: check for failure after various network calls
1903
1904     # It may be unclear, but this result structure lumps circulation and
1905     # reservation fines together, and keeps grocery fines separate.
1906     $self->ctx->{"fines"} = {
1907         "circulation" => [],
1908         "grocery" => [],
1909         "total_paid" => 0,
1910         "total_owed" => 0,
1911         "balance_owed" => 0
1912     };
1913
1914     my $cstore = OpenSRF::AppSession->create('open-ils.cstore');
1915
1916     # TODO: This should really be a ML call, but the existing calls 
1917     # return an excessive amount of data and don't offer streaming
1918
1919     my %paging = ($limit or $offset) ? (limit => $limit, offset => $offset) : ();
1920
1921     my $req = $cstore->request(
1922         'open-ils.cstore.direct.money.open_billable_transaction_summary.search',
1923         {
1924             usr => $self->editor->requestor->id,
1925             balance_owed => {'!=' => 0},
1926             ($id_list && @$id_list ? ("id" => $id_list) : ()),
1927         },
1928         {
1929             flesh => 4,
1930             flesh_fields => {
1931                 mobts => [qw/grocery circulation reservation/],
1932                 bresv => ['target_resource_type'],
1933                 brt => ['record'],
1934                 mg => ['billings'],
1935                 mb => ['btype'],
1936                 circ => ['target_copy'],
1937                 acp => ['call_number'],
1938                 acn => ['record']
1939             },
1940             order_by => { mobts => 'xact_start' },
1941             %paging
1942         }
1943     );
1944
1945     my @total_keys = qw/total_paid total_owed balance_owed/;
1946     $self->ctx->{"fines"}->{@total_keys} = (0, 0, 0);
1947
1948     while(my $resp = $req->recv) {
1949         my $mobts = $resp->content;
1950         my $circ = $mobts->circulation;
1951
1952         my $last_billing;
1953         if($mobts->grocery) {
1954             my @billings = sort { $a->billing_ts cmp $b->billing_ts } @{$mobts->grocery->billings};
1955             $last_billing = pop(@billings);
1956         }
1957
1958         # XXX TODO confirm that the following, and the later division by 100.0
1959         # to get a floating point representation once again, is sufficiently
1960         # "money-safe" math.
1961         $self->ctx->{"fines"}->{$_} += int($mobts->$_ * 100) for (@total_keys);
1962
1963         my $marc_xml = undef;
1964         if ($mobts->xact_type eq 'reservation' and
1965             $mobts->reservation->target_resource_type->record) {
1966             $marc_xml = XML::LibXML->new->parse_string(
1967                 $mobts->reservation->target_resource_type->record->marc
1968             );
1969         } elsif ($mobts->xact_type eq 'circulation' and
1970             $circ->target_copy->call_number->id != -1) {
1971             $marc_xml = XML::LibXML->new->parse_string(
1972                 $circ->target_copy->call_number->record->marc
1973             );
1974         }
1975
1976         push(
1977             @{$self->ctx->{"fines"}->{$mobts->grocery ? "grocery" : "circulation"}},
1978             {
1979                 xact => $mobts,
1980                 last_grocery_billing => $last_billing,
1981                 marc_xml => $marc_xml
1982             } 
1983         );
1984     }
1985
1986     $cstore->kill_me;
1987
1988     $self->ctx->{"fines"}->{$_} /= 100.0 for (@total_keys);
1989     return;
1990 }
1991
1992 sub prepare_fines_for_payment {
1993     # This assumes $self->prepare_fines has already been run
1994     my ($self) = @_;
1995
1996     my @results = ();
1997     if ($self->ctx->{fines}) {
1998         push @results, [$_->{xact}->id, $_->{xact}->balance_owed] foreach (
1999             @{$self->ctx->{fines}->{circulation}},
2000             @{$self->ctx->{fines}->{grocery}}
2001         );
2002     }
2003
2004     return \@results;
2005 }
2006
2007 sub load_myopac_main {
2008     my $self = shift;
2009     my $limit = $self->cgi->param('limit') || 0;
2010     my $offset = $self->cgi->param('offset') || 0;
2011     $self->ctx->{search_ou} = $self->_get_search_lib();
2012     $self->ctx->{user}->notes(
2013         $self->editor->search_actor_usr_note({
2014             usr => $self->ctx->{user}->id,
2015             pub => 't'
2016         })
2017     );
2018     return $self->prepare_fines($limit, $offset) || Apache2::Const::OK;
2019 }
2020
2021 sub load_myopac_update_email {
2022     my $self = shift;
2023     my $e = $self->editor;
2024     my $ctx = $self->ctx;
2025     my $email = $self->cgi->param('email') || '';
2026     my $current_pw = $self->cgi->param('current_pw') || '';
2027
2028     # needed for most up-to-date email address
2029     if (my $r = $self->prepare_extended_user_info) { return $r };
2030
2031     return Apache2::Const::OK 
2032         unless $self->cgi->request_method eq 'POST';
2033
2034     unless($email =~ /.+\@.+\..+/) { # TODO better regex?
2035         $ctx->{invalid_email} = $email;
2036         return Apache2::Const::OK;
2037     }
2038
2039     my $stat = $U->simplereq(
2040         'open-ils.actor', 
2041         'open-ils.actor.user.email.update', 
2042         $e->authtoken, $email, $current_pw);
2043
2044     if($U->event_equals($stat, 'INCORRECT_PASSWORD')) {
2045         $ctx->{password_incorrect} = 1;
2046         return Apache2::Const::OK;
2047     }
2048
2049     unless ($self->cgi->param("redirect_to")) {
2050         my $url = $self->apache->unparsed_uri;
2051         $url =~ s/update_email/prefs/;
2052
2053         return $self->generic_redirect($url);
2054     }
2055
2056     return $self->generic_redirect;
2057 }
2058
2059 sub load_myopac_update_username {
2060     my $self = shift;
2061     my $e = $self->editor;
2062     my $ctx = $self->ctx;
2063     my $username = $self->cgi->param('username') || '';
2064     my $current_pw = $self->cgi->param('current_pw') || '';
2065
2066     $self->prepare_extended_user_info;
2067
2068     my $allow_change = 1;
2069     my $regex_check;
2070     my $lock_usernames = $self->ctx->{get_org_setting}->($e->requestor->home_ou, 'opac.lock_usernames');
2071     if(defined($lock_usernames) and $lock_usernames == 1) {
2072         # Policy says no username changes
2073         $allow_change = 0;
2074     } else {
2075         # We want this further down.
2076         $regex_check = $self->ctx->{get_org_setting}->($e->requestor->home_ou, 'opac.barcode_regex');
2077         my $username_unlimit = $self->ctx->{get_org_setting}->($e->requestor->home_ou, 'opac.unlimit_usernames');
2078         if(!$username_unlimit) {
2079             if(!$regex_check) {
2080                 # Default is "starts with a number"
2081                 $regex_check = '^\d+';
2082             }
2083             # You already have a username?
2084             if($regex_check and $self->ctx->{user}->usrname !~ /$regex_check/) {
2085                 $allow_change = 0;
2086             }
2087         }
2088     }
2089     if(!$allow_change) {
2090         my $url = $self->apache->unparsed_uri;
2091         $url =~ s/update_username/prefs/;
2092
2093         return $self->generic_redirect($url);
2094     }
2095
2096     return Apache2::Const::OK 
2097         unless $self->cgi->request_method eq 'POST';
2098
2099     unless($username and $username !~ /\s/) { # any other username restrictions?
2100         $ctx->{invalid_username} = $username;
2101         return Apache2::Const::OK;
2102     }
2103
2104     # New username can't look like a barcode if we have a barcode regex
2105     if($regex_check and $username =~ /$regex_check/) {
2106         $ctx->{invalid_username} = $username;
2107         return Apache2::Const::OK;
2108     }
2109
2110     # New username has to look like a username if we have a username regex
2111     $regex_check = $ctx->{get_org_setting}->($e->requestor->home_ou, 'opac.username_regex');
2112     if($regex_check and $username !~ /$regex_check/) {
2113         $ctx->{invalid_username} = $username;
2114         return Apache2::Const::OK;
2115     }
2116
2117     if($username ne $e->requestor->usrname) {
2118
2119         my $evt = $U->simplereq(
2120             'open-ils.actor', 
2121             'open-ils.actor.user.username.update', 
2122             $e->authtoken, $username, $current_pw);
2123
2124         if($U->event_equals($evt, 'INCORRECT_PASSWORD')) {
2125             $ctx->{password_incorrect} = 1;
2126             return Apache2::Const::OK;
2127         }
2128
2129         if($U->event_equals($evt, 'USERNAME_EXISTS')) {
2130             $ctx->{username_exists} = $username;
2131             return Apache2::Const::OK;
2132         }
2133     }
2134
2135     my $url = $self->apache->unparsed_uri;
2136     $url =~ s/update_username/prefs/;
2137
2138     return $self->generic_redirect($url);
2139 }
2140
2141 sub load_myopac_update_password {
2142     my $self = shift;
2143     my $e = $self->editor;
2144     my $ctx = $self->ctx;
2145
2146     return Apache2::Const::OK 
2147         unless $self->cgi->request_method eq 'POST';
2148
2149     my $current_pw = $self->cgi->param('current_pw') || '';
2150     my $new_pw = $self->cgi->param('new_pw') || '';
2151     my $new_pw2 = $self->cgi->param('new_pw2') || '';
2152
2153     unless($new_pw eq $new_pw2) {
2154         $ctx->{password_nomatch} = 1;
2155         return Apache2::Const::OK;
2156     }
2157
2158     my $pw_regex = $ctx->{get_org_setting}->($e->requestor->home_ou, 'global.password_regex');
2159
2160     if(!$pw_regex) {
2161         # This regex duplicates the JSPac's default "digit, letter, and 7 characters" rule
2162         $pw_regex = '(?=.*\d+.*)(?=.*[A-Za-z]+.*).{7,}';
2163     }
2164
2165     if($pw_regex and $new_pw !~ /$pw_regex/) {
2166         $ctx->{password_invalid} = 1;
2167         return Apache2::Const::OK;
2168     }
2169
2170     my $evt = $U->simplereq(
2171         'open-ils.actor', 
2172         'open-ils.actor.user.password.update', 
2173         $e->authtoken, $new_pw, $current_pw);
2174
2175
2176     if($U->event_equals($evt, 'INCORRECT_PASSWORD')) {
2177         $ctx->{password_incorrect} = 1;
2178         return Apache2::Const::OK;
2179     }
2180
2181     my $url = $self->apache->unparsed_uri;
2182     $url =~ s/update_password/prefs/;
2183
2184     return $self->generic_redirect($url);
2185 }
2186
2187 sub _update_bookbag_metadata {
2188     my ($self, $bookbag) = @_;
2189
2190     $bookbag->name($self->cgi->param("name"));
2191     $bookbag->description($self->cgi->param("description"));
2192
2193     return 1 if $self->editor->update_container_biblio_record_entry_bucket($bookbag);
2194     return 0;
2195 }
2196
2197 sub _get_lists_per_page {
2198     my $self = shift;
2199
2200     if($self->editor->requestor) {
2201         $self->timelog("Checking for opac.lists_per_page preference");
2202         # See if the user has a lists per page preference
2203         my $ipp = $self->editor->search_actor_user_setting({
2204             usr => $self->editor->requestor->id,
2205             name => 'opac.lists_per_page'
2206         })->[0];
2207         $self->timelog("Got opac.lists_per_page preference");
2208         return OpenSRF::Utils::JSON->JSON2perl($ipp->value) if $ipp;
2209     }
2210     return 10; # default
2211 }
2212
2213 sub _get_items_per_page {
2214     my $self = shift;
2215
2216     if($self->editor->requestor) {
2217         $self->timelog("Checking for opac.list_items_per_page preference");
2218         # See if the user has a list items per page preference
2219         my $ipp = $self->editor->search_actor_user_setting({
2220             usr => $self->editor->requestor->id,
2221             name => 'opac.list_items_per_page'
2222         })->[0];
2223         $self->timelog("Got opac.list_items_per_page preference");
2224         return OpenSRF::Utils::JSON->JSON2perl($ipp->value) if $ipp;
2225     }
2226     return 10; # default
2227 }
2228
2229 sub load_myopac_bookbags {
2230     my $self = shift;
2231     my $e = $self->editor;
2232     my $ctx = $self->ctx;
2233     my $limit = $self->_get_lists_per_page || 10;
2234     my $offset = $self->cgi->param('offset') || 0;
2235
2236     $ctx->{bookbags_limit} = $limit;
2237     $ctx->{bookbags_offset} = $offset;
2238
2239     # for list item pagination
2240     my $item_limit = $self->_get_items_per_page;
2241     my $item_page = $self->cgi->param('item_page') || 1;
2242     my $item_offset = ($item_page - 1) * $item_limit;
2243     $ctx->{bookbags_item_page} = $item_page;
2244
2245     my ($sorter, $modifier) = $self->_get_bookbag_sort_params("sort");
2246     $e->xact_begin; # replication...
2247
2248     my $rv = $self->load_mylist;
2249     unless($rv eq Apache2::Const::OK) {
2250         $e->rollback;
2251         return $rv;
2252     }
2253
2254     $ctx->{bookbags} = $e->search_container_biblio_record_entry_bucket(
2255         [
2256             {owner => $e->requestor->id, btype => 'bookbag'}, {
2257                 order_by => {cbreb => 'name'},
2258                 limit => $limit,
2259                 offset => $offset
2260             }
2261         ],
2262         {substream => 1}
2263     );
2264
2265     if(!$ctx->{bookbags}) {
2266         $e->rollback;
2267         return Apache2::Const::HTTP_INTERNAL_SERVER_ERROR;
2268     }
2269
2270     # We load the user prefs to get their default bookbag.
2271     $self->_load_user_with_prefs;
2272
2273     # We also want a total count of the user's bookbags.
2274     my $q = {
2275         'select' => { 'cbreb' => [ { 'column' => 'id', 'transform' => 'count', 'aggregate' => 'true', 'alias' => 'count' } ] },
2276         'from' => 'cbreb',
2277         'where' => { 'btype' => 'bookbag', 'owner' => $self->ctx->{user}->id }
2278     };
2279     my $r = $e->json_query($q);
2280     $ctx->{bookbag_count} = $r->[0]->{'count'};
2281
2282     # If the user wants a specific bookbag's items, load them.
2283
2284     if ($self->cgi->param("bbid")) {
2285         my ($bookbag) =
2286             grep { $_->id eq $self->cgi->param("bbid") } @{$ctx->{bookbags}};
2287
2288         if ($bookbag) {
2289             my $query = $self->_prepare_bookbag_container_query(
2290                 $bookbag->id, $sorter, $modifier
2291             );
2292
2293             # Calculate total count of the items in selected bookbag.
2294             # This total includes record entries that have no assets available.
2295             my $bb_search_results = $U->simplereq(
2296                 "open-ils.search", "open-ils.search.biblio.multiclass.query",
2297                 {"limit" => 1, "offset" => 0}, $query
2298             ); # we only need the count, so do the actual search with limit=1
2299
2300             if ($bb_search_results) {
2301                 $ctx->{bb_item_count} = $bb_search_results->{count};
2302             } else {
2303                 $logger->warn("search failed in load_myopac_bookbags()");
2304                 $ctx->{bb_item_count} = 0; # fallback value
2305             }
2306
2307             #calculate page count
2308             $ctx->{bb_page_count} = int ((($ctx->{bb_item_count} - 1) / $item_limit) + 1);
2309
2310             if ( ($self->cgi->param("action") || '') eq "editmeta") {
2311                 if (!$self->_update_bookbag_metadata($bookbag))  {
2312                     $e->rollback;
2313                     return Apache2::Const::HTTP_INTERNAL_SERVER_ERROR;
2314                 } else {
2315                     $e->commit;
2316                     my $url = $self->ctx->{opac_root} . '/myopac/lists?bbid=' .
2317                         $bookbag->id;
2318
2319                     foreach my $param (('loc', 'qtype', 'query', 'sort', 'offset', 'limit')) {
2320                         if ($self->cgi->param($param)) {
2321                             $url .= ";$param=" . uri_escape_utf8($self->cgi->param($param));
2322                         }
2323                     }
2324
2325                     return $self->generic_redirect($url);
2326                 }
2327             }
2328
2329             # we're done with our CStoreEditor.  Rollback here so 
2330             # later calls don't cause a timeout, resulting in a 
2331             # transaction rollback under the covers.
2332             $e->rollback;
2333
2334
2335             # For list items pagination
2336             my $args = {
2337                 "limit" => $item_limit,
2338                 "offset" => $item_offset
2339             };
2340
2341             my $items = $U->bib_container_items_via_search($bookbag->id, $query, $args)
2342                 or return Apache2::Const::HTTP_INTERNAL_SERVER_ERROR;
2343
2344             # capture pref_ou for callnumber filter/display
2345             $ctx->{pref_ou} = $self->_get_pref_lib() || $ctx->{search_ou};
2346
2347             # search for local callnumbers for display
2348             my $focus_ou = $ctx->{physical_loc} || $ctx->{pref_ou};
2349
2350             my (undef, @recs) = $self->get_records_and_facets(
2351                 [ map {$_->target_biblio_record_entry->id} @$items ],
2352                 undef, 
2353                 {
2354                     flesh => '{mra,holdings_xml,acp,exclude_invisible_acn}',
2355                     flesh_depth => 1,
2356                     site => $ctx->{get_aou}->($focus_ou)->shortname,
2357                     pref_lib => $ctx->{pref_ou}
2358                 }
2359             );
2360
2361             $ctx->{bookbags_marc_xml}{$_->{id}} = $_->{marc_xml} for @recs;
2362
2363             $bookbag->items($items);
2364         }
2365     }
2366
2367     # If we have add_rec, we got here from the "Add to new list"
2368     # or "See all" popmenu items.
2369     if (my $add_rec = $self->cgi->param('add_rec')) {
2370         $self->ctx->{add_rec} = $add_rec;
2371         # But not in the staff client, 'cause that breaks things.
2372         unless ($self->ctx->{is_staff}) {
2373             # allow caller to provide the where_from in cases where
2374             # the referer is an intermediate error page
2375             if ($self->cgi->param('where_from')) {
2376                 $self->ctx->{where_from} = $self->cgi->param('where_from');
2377             } else {
2378                 $self->ctx->{where_from} = $self->ctx->{referer};
2379                 if ( my $anchor = $self->cgi->param('anchor') ) {
2380                     $self->ctx->{where_from} =~ s/#.*|$/#$anchor/;
2381                 }
2382             }
2383         }
2384     }
2385
2386     # this rollback may be a dupe, but that's OK because 
2387     # cstoreditor ignores dupe rollbacks
2388     $e->rollback;
2389
2390     return Apache2::Const::OK;
2391 }
2392
2393
2394 # actions are create, delete, show, hide, rename, add_rec, delete_item, place_hold
2395 # CGI is action, list=list_id, add_rec/record=bre_id, del_item=bucket_item_id, name=new_bucket_name
2396 sub load_myopac_bookbag_update {
2397     my ($self, $action, $list_id, @hold_recs) = @_;
2398     my $e = $self->editor;
2399     my $cgi = $self->cgi;
2400
2401     # save_notes is effectively another action, but is passed in a separate
2402     # CGI parameter for what are really just layout reasons.
2403     $action = 'save_notes' if $cgi->param('save_notes');
2404     $action ||= $cgi->param('action');
2405
2406     $list_id ||= $cgi->param('list') || $cgi->param('bbid');
2407
2408     my @add_rec = $cgi->param('add_rec') || $cgi->param('record');
2409     my @selected_item = $cgi->param('selected_item');
2410     my $shared = $cgi->param('shared');
2411     my $name = $cgi->param('name');
2412     my $description = $cgi->param('description');
2413     my $success = 0;
2414     my $list;
2415
2416     # This url intentionally leaves off the edit_notes parameter, but
2417     # may need to add some back in for paging.
2418
2419     my $url = $self->ctx->{proto} . "://" . $self->ctx->{hostname} .
2420         $self->ctx->{opac_root} . "/myopac/lists?";
2421
2422     foreach my $param (('loc', 'qtype', 'query', 'sort')) {
2423         if ($cgi->param($param)) {
2424             $url .= "$param=" . uri_escape_utf8($cgi->param($param)) . ";";
2425         }
2426     }
2427
2428     if ($action eq 'create') {
2429
2430         if ($name) {
2431             $list = Fieldmapper::container::biblio_record_entry_bucket->new;
2432             $list->name($name);
2433             $list->description($description);
2434             $list->owner($e->requestor->id);
2435             $list->btype('bookbag');
2436             $list->pub($shared ? 't' : 'f');
2437             $success = $U->simplereq('open-ils.actor',
2438                 'open-ils.actor.container.create', $e->authtoken, 'biblio', $list);
2439             if (ref($success) ne 'HASH' && scalar @add_rec) {
2440                 $list_id = (ref($success)) ? $success->id : $success;
2441                 foreach my $add_rec (@add_rec) {
2442                     my $item = Fieldmapper::container::biblio_record_entry_bucket_item->new;
2443                     $item->bucket($list_id);
2444                     $item->target_biblio_record_entry($add_rec);
2445                     $success = $U->simplereq('open-ils.actor',
2446                                              'open-ils.actor.container.item.create', $e->authtoken, 'biblio', $item);
2447                     last unless $success;
2448                 }
2449             }
2450             $url = $cgi->param('where_from') if ($success && $cgi->param('where_from'));
2451
2452         } else { # no name
2453             $self->ctx->{bucket_failure_noname} = 1;
2454         }
2455
2456     } elsif($action eq 'place_hold') {
2457
2458         # @hold_recs comes from anon lists redirect; selected_itesm comes from existing buckets
2459         unless (@hold_recs) {
2460             if (@selected_item) {
2461                 my $items = $e->search_container_biblio_record_entry_bucket_item({id => \@selected_item});
2462                 @hold_recs = map { $_->target_biblio_record_entry } @$items;
2463             }
2464         }
2465                 
2466         return Apache2::Const::OK unless @hold_recs;
2467         $logger->info("placing holds from list page on: @hold_recs");
2468
2469         my $url = $self->ctx->{opac_root} . '/place_hold?hold_type=T';
2470         $url .= ';hold_target=' . $_ for @hold_recs;
2471         foreach my $param (('loc', 'qtype', 'query')) {
2472             if ($cgi->param($param)) {
2473                 $url .= ";$param=" . uri_escape_utf8($cgi->param($param));
2474             }
2475         }
2476         return $self->generic_redirect($url);
2477
2478     } else {
2479
2480         $list = $e->retrieve_container_biblio_record_entry_bucket($list_id);
2481
2482         return Apache2::Const::HTTP_BAD_REQUEST unless 
2483             $list and $list->owner == $e->requestor->id;
2484     }
2485
2486     if($action eq 'delete') {
2487         $success = $U->simplereq('open-ils.actor', 
2488             'open-ils.actor.container.full_delete', $e->authtoken, 'biblio', $list_id);
2489         if ($success) {
2490             # We check to see if we're deleting the user's default list.
2491             $self->_load_user_with_prefs;
2492             my $settings_map = $self->ctx->{user_setting_map};
2493             if ($$settings_map{'opac.default_list'} == $list_id) {
2494                 # We unset the user's opac.default_list setting.
2495                 $success = $U->simplereq(
2496                     'open-ils.actor',
2497                     'open-ils.actor.patron.settings.update',
2498                     $e->authtoken,
2499                     $e->requestor->id,
2500                     { 'opac.default_list' => 0 }
2501                 );
2502             }
2503         }
2504     } elsif($action eq 'show') {
2505         unless($U->is_true($list->pub)) {
2506             $list->pub('t');
2507             $success = $U->simplereq('open-ils.actor', 
2508                 'open-ils.actor.container.update', $e->authtoken, 'biblio', $list);
2509         }
2510
2511     } elsif($action eq 'hide') {
2512         if($U->is_true($list->pub)) {
2513             $list->pub('f');
2514             $success = $U->simplereq('open-ils.actor', 
2515                 'open-ils.actor.container.update', $e->authtoken, 'biblio', $list);
2516         }
2517
2518     } elsif($action eq 'rename') {
2519         if($name) {
2520             $list->name($name);
2521             $success = $U->simplereq('open-ils.actor', 
2522                 'open-ils.actor.container.update', $e->authtoken, 'biblio', $list);
2523         }
2524
2525     } elsif($action eq 'add_rec') {
2526         foreach my $add_rec (@add_rec) {
2527             my $item = Fieldmapper::container::biblio_record_entry_bucket_item->new;
2528             $item->bucket($list_id);
2529             $item->target_biblio_record_entry($add_rec);
2530             $success = $U->simplereq('open-ils.actor', 
2531                 'open-ils.actor.container.item.create', $e->authtoken, 'biblio', $item);
2532             last unless $success;
2533         }
2534         # Redirect back where we came from if we have an anchor parameter:
2535         if ( my $anchor = $cgi->param('anchor') && !$self->ctx->{is_staff}) {
2536             $url = $self->ctx->{referer};
2537             $url =~ s/#.*|$/#$anchor/;
2538         } elsif ($cgi->param('where_from')) {
2539             # Or, if we have a "where_from" parameter.
2540             $url = $cgi->param('where_from');
2541         }
2542     } elsif ($action eq 'del_item') {
2543         foreach (@selected_item) {
2544             $success = $U->simplereq(
2545                 'open-ils.actor',
2546                 'open-ils.actor.container.item.delete', $e->authtoken, 'biblio', $_
2547             );
2548             last unless $success;
2549         }
2550     } elsif ($action eq 'save_notes') {
2551         $success = $self->update_bookbag_item_notes;
2552         $url .= "&bbid=" . uri_escape_utf8($cgi->param("bbid")) if $cgi->param("bbid");
2553     } elsif ($action eq 'make_default') {
2554         $success = $U->simplereq(
2555             'open-ils.actor',
2556             'open-ils.actor.patron.settings.update',
2557             $e->authtoken,
2558             $list->owner,
2559             { 'opac.default_list' => $list_id }
2560         );
2561     } elsif ($action eq 'remove_default') {
2562         $success = $U->simplereq(
2563             'open-ils.actor',
2564             'open-ils.actor.patron.settings.update',
2565             $e->authtoken,
2566             $list->owner,
2567             { 'opac.default_list' => 0 }
2568         );
2569     }
2570
2571     return $self->generic_redirect($url) if $success;
2572
2573     $self->ctx->{where_from} = $cgi->param('where_from');
2574     $self->ctx->{bucket_action} = $action;
2575     $self->ctx->{bucket_action_failed} = 1;
2576     return Apache2::Const::OK;
2577 }
2578
2579 sub update_bookbag_item_notes {
2580     my ($self) = @_;
2581     my $e = $self->editor;
2582
2583     my @note_keys = grep /^note-\d+/, keys(%{$self->cgi->Vars});
2584     my @item_keys = grep /^item-\d+/, keys(%{$self->cgi->Vars});
2585
2586     # We're going to leverage an API call that's already been written to check
2587     # permissions appropriately.
2588
2589     my $a = create OpenSRF::AppSession("open-ils.actor");
2590     my $method = "open-ils.actor.container.item_note.cud";
2591
2592     for my $note_key (@note_keys) {
2593         my $note;
2594
2595         my $id = ($note_key =~ /(\d+)/)[0];
2596
2597         if (!($note =
2598             $e->retrieve_container_biblio_record_entry_bucket_item_note($id))) {
2599             my $event = $e->die_event;
2600             $self->apache->log->warn(
2601                 "error retrieving cbrebin id $id, got event " .
2602                 $event->{textcode}
2603             );
2604             $a->kill_me;
2605             $self->ctx->{bucket_action_event} = $event;
2606             return;
2607         }
2608
2609         if (length($self->cgi->param($note_key))) {
2610             $note->ischanged(1);
2611             $note->note($self->cgi->param($note_key));
2612         } else {
2613             $note->isdeleted(1);
2614         }
2615
2616         my $r = $a->request($method, $e->authtoken, "biblio", $note)->gather(1);
2617
2618         if (defined $U->event_code($r)) {
2619             $self->apache->log->warn(
2620                 "attempt to modify cbrebin " . $note->id .
2621                 " returned event " .  $r->{textcode}
2622             );
2623             $e->rollback;
2624             $a->kill_me;
2625             $self->ctx->{bucket_action_event} = $r;
2626             return;
2627         }
2628     }
2629
2630     for my $item_key (@item_keys) {
2631         my $id = int(($item_key =~ /(\d+)/)[0]);
2632         my $text = $self->cgi->param($item_key);
2633
2634         chomp $text;
2635         next unless length $text;
2636
2637         my $note = new Fieldmapper::container::biblio_record_entry_bucket_item_note;
2638         $note->isnew(1);
2639         $note->item($id);
2640         $note->note($text);
2641
2642         my $r = $a->request($method, $e->authtoken, "biblio", $note)->gather(1);
2643
2644         if (defined $U->event_code($r)) {
2645             $self->apache->log->warn(
2646                 "attempt to create cbrebin for item " . $note->item .
2647                 " returned event " .  $r->{textcode}
2648             );
2649             $e->rollback;
2650             $a->kill_me;
2651             $self->ctx->{bucket_action_event} = $r;
2652             return;
2653         }
2654     }
2655
2656     $a->kill_me;
2657     return 1;   # success
2658 }
2659
2660 sub load_myopac_bookbag_print {
2661     my ($self) = @_;
2662
2663     my $id = int($self->cgi->param("list"));
2664
2665     my ($sorter, $modifier) = $self->_get_bookbag_sort_params("sort");
2666
2667     my $item_search =
2668         $self->_prepare_bookbag_container_query($id, $sorter, $modifier);
2669
2670     my $bbag;
2671
2672     # Get the bookbag object itself, assuming we're allowed to.
2673     if ($self->editor->allowed("VIEW_CONTAINER")) {
2674
2675         $bbag = $self->editor->retrieve_container_biblio_record_entry_bucket($id) or return Apache2::Const::HTTP_INTERNAL_SERVER_ERROR;
2676     } else {
2677         my $bookbags = $self->editor->search_container_biblio_record_entry_bucket(
2678             {
2679                 "id" => $id,
2680                 "-or" => {
2681                     "owner" => $self->editor->requestor->id,
2682                     "pub" => "t"
2683                 }
2684             }
2685         ) or return Apache2::Const::HTTP_INTERNAL_SERVER_ERROR;
2686
2687         $bbag = pop @$bookbags;
2688     }
2689
2690     # If we have a bookbag we're allowed to look at, issue the A/T event
2691     # to get CSV, passing as a user param that search query we built before.
2692     if ($bbag) {
2693         $self->ctx->{csv} = $U->fire_object_event(
2694             undef, "container.biblio_record_entry_bucket.csv",
2695             $bbag, $self->editor->requestor->home_ou,
2696             undef, {"item_search" => $item_search}
2697         );
2698     }
2699
2700     # Create a reasonable filename and set the content disposition to
2701     # provoke browser download dialogs.
2702     (my $filename = $bbag->id . $bbag->name) =~ s/[^a-z0-9_ -]//gi;
2703
2704     return $self->set_file_download_headers("$filename.csv");
2705 }
2706
2707 sub load_myopac_circ_history_export {
2708     my $self = shift;
2709     my $e = $self->editor;
2710     my $filename = $self->cgi->param('filename') || 'circ_history.csv';
2711
2712     my $circs = $self->fetch_user_circ_history;
2713
2714     $self->ctx->{csv} = $U->fire_object_event(
2715         undef, 
2716         'circ.format.history.csv', $circs,
2717         $self->editor->requestor->home_ou
2718     );
2719
2720     return $self->set_file_download_headers($filename);
2721 }
2722
2723 sub load_password_reset {
2724     my $self = shift;
2725     my $cgi = $self->cgi;
2726     my $ctx = $self->ctx;
2727     my $barcode = $cgi->param('barcode');
2728     my $username = $cgi->param('username');
2729     my $email = $cgi->param('email');
2730     my $pwd1 = $cgi->param('pwd1');
2731     my $pwd2 = $cgi->param('pwd2');
2732     my $uuid = $ctx->{page_args}->[0];
2733
2734     if ($uuid) {
2735
2736         $logger->info("patron password reset with uuid $uuid");
2737
2738         if ($pwd1 and $pwd2) {
2739
2740             if ($pwd1 eq $pwd2) {
2741
2742                 my $response = $U->simplereq(
2743                     'open-ils.actor', 
2744                     'open-ils.actor.patron.password_reset.commit',
2745                     $uuid, $pwd1);
2746
2747                 $logger->info("patron password reset response " . Dumper($response));
2748
2749                 if ($U->event_code($response)) { # non-success event
2750                     
2751                     my $code = $response->{textcode};
2752                     
2753                     if ($code eq 'PATRON_NOT_AN_ACTIVE_PASSWORD_RESET_REQUEST') {
2754                         $ctx->{pwreset} = {style => 'error', status => 'NOT_ACTIVE'};
2755                     }
2756
2757                     if ($code eq 'PATRON_PASSWORD_WAS_NOT_STRONG') {
2758                         $ctx->{pwreset} = {style => 'error', status => 'NOT_STRONG'};
2759                     }
2760
2761                 } else { # success
2762
2763                     $ctx->{pwreset} = {style => 'success', status => 'SUCCESS'};
2764                 }
2765
2766             } else { # passwords not equal
2767
2768                 $ctx->{pwreset} = {style => 'error', status => 'NO_MATCH'};
2769             }
2770
2771         } else { # 2 password values needed
2772
2773             $ctx->{pwreset} = {status => 'TWO_PASSWORDS'};
2774         }
2775
2776     } elsif ($barcode or $username) {
2777
2778         my @params = $barcode ? ('barcode', $barcode) : ('username', $username);
2779         push(@params, $email) if $email;
2780
2781         $U->simplereq(
2782             'open-ils.actor', 
2783             'open-ils.actor.patron.password_reset.request', @params);
2784
2785         $ctx->{pwreset} = {status => 'REQUEST_SUCCESS'};
2786     }
2787
2788     $logger->info("patron password reset resulted in " . Dumper($ctx->{pwreset}));
2789     return Apache2::Const::OK;
2790 }
2791
2792 1;