]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/src/perlmods/lib/OpenILS/WWW/EGCatLoader/Account.pm
LP#1527342 Patron checkout history CSV export repair
[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
1589     $ctx->{circ_history_limit} = $limit;
1590     $ctx->{circ_history_offset} = $offset;
1591
1592     # Defer limitation to circ_history.tt2 when sorting
1593     if ($self->cgi->param('sort')) {
1594         $limit = undef;
1595         $offset = undef;
1596     }
1597
1598     $ctx->{circs} = $self->fetch_user_circ_history(1, $limit, $offset);
1599     return Apache2::Const::OK;
1600 }
1601
1602 # if 'flesh' is set, copy data etc. is loaded and the return value is 
1603 # a hash of 'circ' and 'marc_xml'.  Othwerwise, it's just a list of 
1604 # auch objects.
1605 sub fetch_user_circ_history {
1606     my ($self, $flesh, $limit, $offset) = @_;
1607     my $e = $self->editor;
1608
1609     my %limits = ();
1610     $limits{offset} = $offset if defined $offset;
1611     $limits{limit} = $limit if defined $limit;
1612
1613     my %flesh_ops = (
1614         flesh => 3,
1615         flesh_fields => {
1616             auch => ['target_copy'],
1617             acp => ['call_number'],
1618             acn => ['record']
1619         },
1620     );
1621
1622     $e->xact_begin;
1623     my $circs = $e->search_action_user_circ_history([
1624         {usr => $e->requestor->id},
1625         {   # order newest to oldest by default
1626             order_by => {auch => 'xact_start DESC'},
1627             $flesh ? %flesh_ops : (),
1628             %limits
1629         },
1630         {substream => 1}
1631     ]);
1632     $e->rollback;
1633
1634     return $circs unless $flesh;
1635
1636     my @circs;
1637     for my $circ (@$circs) {
1638         push(@circs, {
1639             circ => $circ, 
1640             marc_xml => ($circ->target_copy->call_number->id != -1) ? 
1641                 XML::LibXML->new->parse_string(
1642                     $circ->target_copy->call_number->record->marc) : 
1643                 undef  # pre-cat copy, use the dummy title/author instead
1644         });
1645     }
1646
1647     return \@circs;
1648 }
1649
1650 # TODO: action.usr_visible_holds does not return cancelled holds.  Should it?
1651 sub load_myopac_hold_history {
1652     my $self = shift;
1653     my $e = $self->editor;
1654     my $ctx = $self->ctx;
1655     my $limit = $self->cgi->param('limit') || 15;
1656     my $offset = $self->cgi->param('offset') || 0;
1657     $ctx->{hold_history_limit} = $limit;
1658     $ctx->{hold_history_offset} = $offset;
1659
1660     my $hold_ids = $e->json_query({
1661         select => {
1662             au => [{
1663                 column => 'id', 
1664                 transform => 'action.usr_visible_holds', 
1665                 result_field => 'id'
1666             }]
1667         },
1668         from => 'au',
1669         where => {id => $e->requestor->id}
1670     });
1671
1672     my $holds_object = $self->fetch_user_holds([map { $_->{id} } @$hold_ids], 0, 1, 0, $limit, $offset);
1673     if($holds_object->{holds}) {
1674         $ctx->{holds} = $holds_object->{holds};
1675     }
1676     $ctx->{hold_history_ids} = $holds_object->{all_ids};
1677
1678     return Apache2::Const::OK;
1679 }
1680
1681 sub load_myopac_payment_form {
1682     my $self = shift;
1683     my $r;
1684
1685     $r = $self->prepare_fines(undef, undef, [$self->cgi->param('xact'), $self->cgi->param('xact_misc')]) and return $r;
1686     $r = $self->prepare_extended_user_info and return $r;
1687
1688     return Apache2::Const::OK;
1689 }
1690
1691 # TODO: add other filter options as params/configs/etc.
1692 sub load_myopac_payments {
1693     my $self = shift;
1694     my $limit = $self->cgi->param('limit') || 20;
1695     my $offset = $self->cgi->param('offset') || 0;
1696     my $e = $self->editor;
1697
1698     $self->ctx->{payment_history_limit} = $limit;
1699     $self->ctx->{payment_history_offset} = $offset;
1700
1701     my $args = {};
1702     $args->{limit} = $limit if $limit;
1703     $args->{offset} = $offset if $offset;
1704
1705     if (my $max_age = $self->ctx->{get_org_setting}->(
1706         $e->requestor->home_ou, "opac.payment_history_age_limit"
1707     )) {
1708         my $min_ts = DateTime->now(
1709             "time_zone" => DateTime::TimeZone->new("name" => "local"),
1710         )->subtract("seconds" => interval_to_seconds($max_age))->iso8601();
1711         
1712         $logger->info("XXX min_ts: $min_ts");
1713         $args->{"where"} = {"payment_ts" => {">=" => $min_ts}};
1714     }
1715
1716     $self->ctx->{payments} = $U->simplereq(
1717         'open-ils.actor',
1718         'open-ils.actor.user.payments.retrieve.atomic',
1719         $e->authtoken, $e->requestor->id, $args);
1720
1721     return Apache2::Const::OK;
1722 }
1723
1724 # 1. caches the form parameters
1725 # 2. loads the credit card payment "Processing..." page
1726 sub load_myopac_pay_init {
1727     my $self = shift;
1728     my $cache = OpenSRF::Utils::Cache->new('global');
1729
1730     my @payment_xacts = ($self->cgi->param('xact'), $self->cgi->param('xact_misc'));
1731
1732     if (!@payment_xacts) {
1733         # for consistency with load_myopac_payment_form() and
1734         # to preserve backwards compatibility, if no xacts are
1735         # selected, assume all (applicable) transactions are wanted.
1736         my $stat = $self->prepare_fines(undef, undef, [$self->cgi->param('xact'), $self->cgi->param('xact_misc')]);
1737         return $stat if $stat;
1738         @payment_xacts =
1739             map { $_->{xact}->id } (
1740                 @{$self->ctx->{fines}->{circulation}}, 
1741                 @{$self->ctx->{fines}->{grocery}}
1742         );
1743     }
1744
1745     return $self->generic_redirect unless @payment_xacts;
1746
1747     my $cc_args = {"where_process" => 1};
1748
1749     $cc_args->{$_} = $self->cgi->param($_) for (qw/
1750         number cvv2 expire_year expire_month billing_first
1751         billing_last billing_address billing_city billing_state
1752         billing_zip stripe_token
1753     /);
1754
1755     my $cache_args = {
1756         cc_args => $cc_args, 
1757         user => $self->ctx->{user}->id,
1758         xacts => \@payment_xacts
1759     };
1760
1761     # generate a temporary cache token and cache the form data
1762     my $token = md5_hex($$ . time() . rand());
1763     $cache->put_cache($token, $cache_args, 30);
1764
1765     $logger->info("tpac caching payment info with token $token and xacts [@payment_xacts]");
1766
1767     # after we render the processing page, we quickly redirect to submit
1768     # the actual payment.  The refresh url contains the payment token.
1769     # It also contains the list of xact IDs, which allows us to clear the 
1770     # cache at the earliest possible time while leaving a trace of which 
1771     # transactions we were processing, so the UI can bring the user back
1772     # to the payment form w/ the same xacts if the payment fails.
1773
1774     my $refresh = "1; url=main_pay/$token?xact=" . pop(@payment_xacts);
1775     $refresh .= ";xact=$_" for @payment_xacts;
1776     $self->ctx->{refresh} = $refresh;
1777
1778     return Apache2::Const::OK;
1779 }
1780
1781 # retrieve the cached CC payment info and send off for processing
1782 sub load_myopac_pay {
1783     my $self = shift;
1784     my $token = $self->ctx->{page_args}->[0];
1785     return Apache2::Const::HTTP_BAD_REQUEST unless $token;
1786
1787     my $cache = OpenSRF::Utils::Cache->new('global');
1788     my $cache_args = $cache->get_cache($token);
1789     $cache->delete_cache($token);
1790
1791     # this page is loaded immediately after the token is created.
1792     # if the cached data is not there, it's because of an invalid
1793     # token (or cache failure) and not because of a timeout.
1794     return Apache2::Const::HTTP_BAD_REQUEST unless $cache_args;
1795
1796     my @payment_xacts = @{$cache_args->{xacts}};
1797     my $cc_args = $cache_args->{cc_args};
1798
1799     # as an added security check, verify the user submitting 
1800     # the form is the same as the user whose data was cached
1801     return Apache2::Const::HTTP_BAD_REQUEST unless
1802         $cache_args->{user} == $self->ctx->{user}->id;
1803
1804     $logger->info("tpac paying fines with token $token and xacts [@payment_xacts]");
1805
1806     my $r;
1807     $r = $self->prepare_fines(undef, undef, \@payment_xacts) and return $r;
1808
1809     # balance_owed is computed specifically from the fines we're paying
1810     if ($self->ctx->{fines}->{balance_owed} <= 0) {
1811         $logger->info("tpac can't pay non-positive balance. xacts selected: [@payment_xacts]");
1812         return Apache2::Const::HTTP_BAD_REQUEST;
1813     }
1814
1815     my $args = {
1816         "cc_args" => $cc_args,
1817         "userid" => $self->ctx->{user}->id,
1818         "payment_type" => "credit_card_payment",
1819         "payments" => $self->prepare_fines_for_payment  # should be safe after self->prepare_fines
1820     };
1821
1822     my $resp = $U->simplereq("open-ils.circ", "open-ils.circ.money.payment",
1823         $self->editor->authtoken, $args, $self->ctx->{user}->last_xact_id
1824     );
1825
1826     $self->ctx->{"payment_response"} = $resp;
1827
1828     unless ($resp->{"textcode"}) {
1829         $self->ctx->{printable_receipt} = $U->simplereq(
1830            "open-ils.circ", "open-ils.circ.money.payment_receipt.print",
1831            $self->editor->authtoken, $resp->{payments}
1832         );
1833     }
1834
1835     return Apache2::Const::OK;
1836 }
1837
1838 sub load_myopac_receipt_print {
1839     my $self = shift;
1840
1841     $self->ctx->{printable_receipt} = $U->simplereq(
1842        "open-ils.circ", "open-ils.circ.money.payment_receipt.print",
1843        $self->editor->authtoken, [$self->cgi->param("payment")]
1844     );
1845
1846     return Apache2::Const::OK;
1847 }
1848
1849 sub load_myopac_receipt_email {
1850     my $self = shift;
1851
1852     # The following ML method doesn't actually check whether the user in
1853     # question has an email address, so we do.
1854     if ($self->ctx->{user}->email) {
1855         $self->ctx->{email_receipt_result} = $U->simplereq(
1856            "open-ils.circ", "open-ils.circ.money.payment_receipt.email",
1857            $self->editor->authtoken, [$self->cgi->param("payment")]
1858         );
1859     } else {
1860         $self->ctx->{email_receipt_result} =
1861             new OpenILS::Event("PATRON_NO_EMAIL_ADDRESS");
1862     }
1863
1864     return Apache2::Const::OK;
1865 }
1866
1867 sub prepare_fines {
1868     my ($self, $limit, $offset, $id_list) = @_;
1869
1870     # XXX TODO: check for failure after various network calls
1871
1872     # It may be unclear, but this result structure lumps circulation and
1873     # reservation fines together, and keeps grocery fines separate.
1874     $self->ctx->{"fines"} = {
1875         "circulation" => [],
1876         "grocery" => [],
1877         "total_paid" => 0,
1878         "total_owed" => 0,
1879         "balance_owed" => 0
1880     };
1881
1882     my $cstore = OpenSRF::AppSession->create('open-ils.cstore');
1883
1884     # TODO: This should really be a ML call, but the existing calls 
1885     # return an excessive amount of data and don't offer streaming
1886
1887     my %paging = ($limit or $offset) ? (limit => $limit, offset => $offset) : ();
1888
1889     my $req = $cstore->request(
1890         'open-ils.cstore.direct.money.open_billable_transaction_summary.search',
1891         {
1892             usr => $self->editor->requestor->id,
1893             balance_owed => {'!=' => 0},
1894             ($id_list && @$id_list ? ("id" => $id_list) : ()),
1895         },
1896         {
1897             flesh => 4,
1898             flesh_fields => {
1899                 mobts => [qw/grocery circulation reservation/],
1900                 bresv => ['target_resource_type'],
1901                 brt => ['record'],
1902                 mg => ['billings'],
1903                 mb => ['btype'],
1904                 circ => ['target_copy'],
1905                 acp => ['call_number'],
1906                 acn => ['record']
1907             },
1908             order_by => { mobts => 'xact_start' },
1909             %paging
1910         }
1911     );
1912
1913     my @total_keys = qw/total_paid total_owed balance_owed/;
1914     $self->ctx->{"fines"}->{@total_keys} = (0, 0, 0);
1915
1916     while(my $resp = $req->recv) {
1917         my $mobts = $resp->content;
1918         my $circ = $mobts->circulation;
1919
1920         my $last_billing;
1921         if($mobts->grocery) {
1922             my @billings = sort { $a->billing_ts cmp $b->billing_ts } @{$mobts->grocery->billings};
1923             $last_billing = pop(@billings);
1924         }
1925
1926         # XXX TODO confirm that the following, and the later division by 100.0
1927         # to get a floating point representation once again, is sufficiently
1928         # "money-safe" math.
1929         $self->ctx->{"fines"}->{$_} += int($mobts->$_ * 100) for (@total_keys);
1930
1931         my $marc_xml = undef;
1932         if ($mobts->xact_type eq 'reservation' and
1933             $mobts->reservation->target_resource_type->record) {
1934             $marc_xml = XML::LibXML->new->parse_string(
1935                 $mobts->reservation->target_resource_type->record->marc
1936             );
1937         } elsif ($mobts->xact_type eq 'circulation' and
1938             $circ->target_copy->call_number->id != -1) {
1939             $marc_xml = XML::LibXML->new->parse_string(
1940                 $circ->target_copy->call_number->record->marc
1941             );
1942         }
1943
1944         push(
1945             @{$self->ctx->{"fines"}->{$mobts->grocery ? "grocery" : "circulation"}},
1946             {
1947                 xact => $mobts,
1948                 last_grocery_billing => $last_billing,
1949                 marc_xml => $marc_xml
1950             } 
1951         );
1952     }
1953
1954     $cstore->kill_me;
1955
1956     $self->ctx->{"fines"}->{$_} /= 100.0 for (@total_keys);
1957     return;
1958 }
1959
1960 sub prepare_fines_for_payment {
1961     # This assumes $self->prepare_fines has already been run
1962     my ($self) = @_;
1963
1964     my @results = ();
1965     if ($self->ctx->{fines}) {
1966         push @results, [$_->{xact}->id, $_->{xact}->balance_owed] foreach (
1967             @{$self->ctx->{fines}->{circulation}},
1968             @{$self->ctx->{fines}->{grocery}}
1969         );
1970     }
1971
1972     return \@results;
1973 }
1974
1975 sub load_myopac_main {
1976     my $self = shift;
1977     my $limit = $self->cgi->param('limit') || 0;
1978     my $offset = $self->cgi->param('offset') || 0;
1979     $self->ctx->{search_ou} = $self->_get_search_lib();
1980     $self->ctx->{user}->notes(
1981         $self->editor->search_actor_usr_note({
1982             usr => $self->ctx->{user}->id,
1983             pub => 't'
1984         })
1985     );
1986     return $self->prepare_fines($limit, $offset) || Apache2::Const::OK;
1987 }
1988
1989 sub load_myopac_update_email {
1990     my $self = shift;
1991     my $e = $self->editor;
1992     my $ctx = $self->ctx;
1993     my $email = $self->cgi->param('email') || '';
1994     my $current_pw = $self->cgi->param('current_pw') || '';
1995
1996     # needed for most up-to-date email address
1997     if (my $r = $self->prepare_extended_user_info) { return $r };
1998
1999     return Apache2::Const::OK 
2000         unless $self->cgi->request_method eq 'POST';
2001
2002     unless($email =~ /.+\@.+\..+/) { # TODO better regex?
2003         $ctx->{invalid_email} = $email;
2004         return Apache2::Const::OK;
2005     }
2006
2007     my $stat = $U->simplereq(
2008         'open-ils.actor', 
2009         'open-ils.actor.user.email.update', 
2010         $e->authtoken, $email, $current_pw);
2011
2012     if($U->event_equals($stat, 'INCORRECT_PASSWORD')) {
2013         $ctx->{password_incorrect} = 1;
2014         return Apache2::Const::OK;
2015     }
2016
2017     unless ($self->cgi->param("redirect_to")) {
2018         my $url = $self->apache->unparsed_uri;
2019         $url =~ s/update_email/prefs/;
2020
2021         return $self->generic_redirect($url);
2022     }
2023
2024     return $self->generic_redirect;
2025 }
2026
2027 sub load_myopac_update_username {
2028     my $self = shift;
2029     my $e = $self->editor;
2030     my $ctx = $self->ctx;
2031     my $username = $self->cgi->param('username') || '';
2032     my $current_pw = $self->cgi->param('current_pw') || '';
2033
2034     $self->prepare_extended_user_info;
2035
2036     my $allow_change = 1;
2037     my $regex_check;
2038     my $lock_usernames = $self->ctx->{get_org_setting}->($e->requestor->home_ou, 'opac.lock_usernames');
2039     if(defined($lock_usernames) and $lock_usernames == 1) {
2040         # Policy says no username changes
2041         $allow_change = 0;
2042     } else {
2043         # We want this further down.
2044         $regex_check = $self->ctx->{get_org_setting}->($e->requestor->home_ou, 'opac.barcode_regex');
2045         my $username_unlimit = $self->ctx->{get_org_setting}->($e->requestor->home_ou, 'opac.unlimit_usernames');
2046         if(!$username_unlimit) {
2047             if(!$regex_check) {
2048                 # Default is "starts with a number"
2049                 $regex_check = '^\d+';
2050             }
2051             # You already have a username?
2052             if($regex_check and $self->ctx->{user}->usrname !~ /$regex_check/) {
2053                 $allow_change = 0;
2054             }
2055         }
2056     }
2057     if(!$allow_change) {
2058         my $url = $self->apache->unparsed_uri;
2059         $url =~ s/update_username/prefs/;
2060
2061         return $self->generic_redirect($url);
2062     }
2063
2064     return Apache2::Const::OK 
2065         unless $self->cgi->request_method eq 'POST';
2066
2067     unless($username and $username !~ /\s/) { # any other username restrictions?
2068         $ctx->{invalid_username} = $username;
2069         return Apache2::Const::OK;
2070     }
2071
2072     # New username can't look like a barcode if we have a barcode regex
2073     if($regex_check and $username =~ /$regex_check/) {
2074         $ctx->{invalid_username} = $username;
2075         return Apache2::Const::OK;
2076     }
2077
2078     # New username has to look like a username if we have a username regex
2079     $regex_check = $ctx->{get_org_setting}->($e->requestor->home_ou, 'opac.username_regex');
2080     if($regex_check and $username !~ /$regex_check/) {
2081         $ctx->{invalid_username} = $username;
2082         return Apache2::Const::OK;
2083     }
2084
2085     if($username ne $e->requestor->usrname) {
2086
2087         my $evt = $U->simplereq(
2088             'open-ils.actor', 
2089             'open-ils.actor.user.username.update', 
2090             $e->authtoken, $username, $current_pw);
2091
2092         if($U->event_equals($evt, 'INCORRECT_PASSWORD')) {
2093             $ctx->{password_incorrect} = 1;
2094             return Apache2::Const::OK;
2095         }
2096
2097         if($U->event_equals($evt, 'USERNAME_EXISTS')) {
2098             $ctx->{username_exists} = $username;
2099             return Apache2::Const::OK;
2100         }
2101     }
2102
2103     my $url = $self->apache->unparsed_uri;
2104     $url =~ s/update_username/prefs/;
2105
2106     return $self->generic_redirect($url);
2107 }
2108
2109 sub load_myopac_update_password {
2110     my $self = shift;
2111     my $e = $self->editor;
2112     my $ctx = $self->ctx;
2113
2114     return Apache2::Const::OK 
2115         unless $self->cgi->request_method eq 'POST';
2116
2117     my $current_pw = $self->cgi->param('current_pw') || '';
2118     my $new_pw = $self->cgi->param('new_pw') || '';
2119     my $new_pw2 = $self->cgi->param('new_pw2') || '';
2120
2121     unless($new_pw eq $new_pw2) {
2122         $ctx->{password_nomatch} = 1;
2123         return Apache2::Const::OK;
2124     }
2125
2126     my $pw_regex = $ctx->{get_org_setting}->($e->requestor->home_ou, 'global.password_regex');
2127
2128     if(!$pw_regex) {
2129         # This regex duplicates the JSPac's default "digit, letter, and 7 characters" rule
2130         $pw_regex = '(?=.*\d+.*)(?=.*[A-Za-z]+.*).{7,}';
2131     }
2132
2133     if($pw_regex and $new_pw !~ /$pw_regex/) {
2134         $ctx->{password_invalid} = 1;
2135         return Apache2::Const::OK;
2136     }
2137
2138     my $evt = $U->simplereq(
2139         'open-ils.actor', 
2140         'open-ils.actor.user.password.update', 
2141         $e->authtoken, $new_pw, $current_pw);
2142
2143
2144     if($U->event_equals($evt, 'INCORRECT_PASSWORD')) {
2145         $ctx->{password_incorrect} = 1;
2146         return Apache2::Const::OK;
2147     }
2148
2149     my $url = $self->apache->unparsed_uri;
2150     $url =~ s/update_password/prefs/;
2151
2152     return $self->generic_redirect($url);
2153 }
2154
2155 sub _update_bookbag_metadata {
2156     my ($self, $bookbag) = @_;
2157
2158     $bookbag->name($self->cgi->param("name"));
2159     $bookbag->description($self->cgi->param("description"));
2160
2161     return 1 if $self->editor->update_container_biblio_record_entry_bucket($bookbag);
2162     return 0;
2163 }
2164
2165 sub _get_lists_per_page {
2166     my $self = shift;
2167
2168     if($self->editor->requestor) {
2169         $self->timelog("Checking for opac.lists_per_page preference");
2170         # See if the user has a lists per page preference
2171         my $ipp = $self->editor->search_actor_user_setting({
2172             usr => $self->editor->requestor->id,
2173             name => 'opac.lists_per_page'
2174         })->[0];
2175         $self->timelog("Got opac.lists_per_page preference");
2176         return OpenSRF::Utils::JSON->JSON2perl($ipp->value) if $ipp;
2177     }
2178     return 10; # default
2179 }
2180
2181 sub _get_items_per_page {
2182     my $self = shift;
2183
2184     if($self->editor->requestor) {
2185         $self->timelog("Checking for opac.list_items_per_page preference");
2186         # See if the user has a list items per page preference
2187         my $ipp = $self->editor->search_actor_user_setting({
2188             usr => $self->editor->requestor->id,
2189             name => 'opac.list_items_per_page'
2190         })->[0];
2191         $self->timelog("Got opac.list_items_per_page preference");
2192         return OpenSRF::Utils::JSON->JSON2perl($ipp->value) if $ipp;
2193     }
2194     return 10; # default
2195 }
2196
2197 sub load_myopac_bookbags {
2198     my $self = shift;
2199     my $e = $self->editor;
2200     my $ctx = $self->ctx;
2201     my $limit = $self->_get_lists_per_page || 10;
2202     my $offset = $self->cgi->param('offset') || 0;
2203
2204     $ctx->{bookbags_limit} = $limit;
2205     $ctx->{bookbags_offset} = $offset;
2206
2207     # for list item pagination
2208     my $item_limit = $self->_get_items_per_page;
2209     my $item_page = $self->cgi->param('item_page') || 1;
2210     my $item_offset = ($item_page - 1) * $item_limit;
2211     $ctx->{bookbags_item_page} = $item_page;
2212
2213     my ($sorter, $modifier) = $self->_get_bookbag_sort_params("sort");
2214     $e->xact_begin; # replication...
2215
2216     my $rv = $self->load_mylist;
2217     unless($rv eq Apache2::Const::OK) {
2218         $e->rollback;
2219         return $rv;
2220     }
2221
2222     $ctx->{bookbags} = $e->search_container_biblio_record_entry_bucket(
2223         [
2224             {owner => $e->requestor->id, btype => 'bookbag'}, {
2225                 order_by => {cbreb => 'name'},
2226                 limit => $limit,
2227                 offset => $offset
2228             }
2229         ],
2230         {substream => 1}
2231     );
2232
2233     if(!$ctx->{bookbags}) {
2234         $e->rollback;
2235         return Apache2::Const::HTTP_INTERNAL_SERVER_ERROR;
2236     }
2237
2238     # We load the user prefs to get their default bookbag.
2239     $self->_load_user_with_prefs;
2240
2241     # We also want a total count of the user's bookbags.
2242     my $q = {
2243         'select' => { 'cbreb' => [ { 'column' => 'id', 'transform' => 'count', 'aggregate' => 'true', 'alias' => 'count' } ] },
2244         'from' => 'cbreb',
2245         'where' => { 'btype' => 'bookbag', 'owner' => $self->ctx->{user}->id }
2246     };
2247     my $r = $e->json_query($q);
2248     $ctx->{bookbag_count} = $r->[0]->{'count'};
2249
2250     # If the user wants a specific bookbag's items, load them.
2251
2252     if ($self->cgi->param("bbid")) {
2253         my ($bookbag) =
2254             grep { $_->id eq $self->cgi->param("bbid") } @{$ctx->{bookbags}};
2255
2256         if ($bookbag) {
2257             my $query = $self->_prepare_bookbag_container_query(
2258                 $bookbag->id, $sorter, $modifier
2259             );
2260
2261             # Calculate total count of the items in selected bookbag.
2262             # This total includes record entries that have no assets available.
2263             my $bb_search_results = $U->simplereq(
2264                 "open-ils.search", "open-ils.search.biblio.multiclass.query",
2265                 {"limit" => 1, "offset" => 0}, $query
2266             ); # we only need the count, so do the actual search with limit=1
2267
2268             if ($bb_search_results) {
2269                 $ctx->{bb_item_count} = $bb_search_results->{count};
2270             } else {
2271                 $logger->warn("search failed in load_myopac_bookbags()");
2272                 $ctx->{bb_item_count} = 0; # fallback value
2273             }
2274
2275             #calculate page count
2276             $ctx->{bb_page_count} = int ((($ctx->{bb_item_count} - 1) / $item_limit) + 1);
2277
2278             if ( ($self->cgi->param("action") || '') eq "editmeta") {
2279                 if (!$self->_update_bookbag_metadata($bookbag))  {
2280                     $e->rollback;
2281                     return Apache2::Const::HTTP_INTERNAL_SERVER_ERROR;
2282                 } else {
2283                     $e->commit;
2284                     my $url = $self->ctx->{opac_root} . '/myopac/lists?bbid=' .
2285                         $bookbag->id;
2286
2287                     foreach my $param (('loc', 'qtype', 'query', 'sort', 'offset', 'limit')) {
2288                         if ($self->cgi->param($param)) {
2289                             $url .= ";$param=" . uri_escape_utf8($self->cgi->param($param));
2290                         }
2291                     }
2292
2293                     return $self->generic_redirect($url);
2294                 }
2295             }
2296
2297             # we're done with our CStoreEditor.  Rollback here so 
2298             # later calls don't cause a timeout, resulting in a 
2299             # transaction rollback under the covers.
2300             $e->rollback;
2301
2302
2303             # For list items pagination
2304             my $args = {
2305                 "limit" => $item_limit,
2306                 "offset" => $item_offset
2307             };
2308
2309             my $items = $U->bib_container_items_via_search($bookbag->id, $query, $args)
2310                 or return Apache2::Const::HTTP_INTERNAL_SERVER_ERROR;
2311
2312             # capture pref_ou for callnumber filter/display
2313             $ctx->{pref_ou} = $self->_get_pref_lib() || $ctx->{search_ou};
2314
2315             # search for local callnumbers for display
2316             my $focus_ou = $ctx->{physical_loc} || $ctx->{pref_ou};
2317
2318             my (undef, @recs) = $self->get_records_and_facets(
2319                 [ map {$_->target_biblio_record_entry->id} @$items ],
2320                 undef, 
2321                 {
2322                     flesh => '{mra,holdings_xml,acp,exclude_invisible_acn}',
2323                     flesh_depth => 1,
2324                     site => $ctx->{get_aou}->($focus_ou)->shortname,
2325                     pref_lib => $ctx->{pref_ou}
2326                 }
2327             );
2328
2329             $ctx->{bookbags_marc_xml}{$_->{id}} = $_->{marc_xml} for @recs;
2330
2331             $bookbag->items($items);
2332         }
2333     }
2334
2335     # If we have add_rec, we got here from the "Add to new list"
2336     # or "See all" popmenu items.
2337     if (my $add_rec = $self->cgi->param('add_rec')) {
2338         $self->ctx->{add_rec} = $add_rec;
2339         # But not in the staff client, 'cause that breaks things.
2340         unless ($self->ctx->{is_staff}) {
2341             # allow caller to provide the where_from in cases where
2342             # the referer is an intermediate error page
2343             if ($self->cgi->param('where_from')) {
2344                 $self->ctx->{where_from} = $self->cgi->param('where_from');
2345             } else {
2346                 $self->ctx->{where_from} = $self->ctx->{referer};
2347                 if ( my $anchor = $self->cgi->param('anchor') ) {
2348                     $self->ctx->{where_from} =~ s/#.*|$/#$anchor/;
2349                 }
2350             }
2351         }
2352     }
2353
2354     # this rollback may be a dupe, but that's OK because 
2355     # cstoreditor ignores dupe rollbacks
2356     $e->rollback;
2357
2358     return Apache2::Const::OK;
2359 }
2360
2361
2362 # actions are create, delete, show, hide, rename, add_rec, delete_item, place_hold
2363 # CGI is action, list=list_id, add_rec/record=bre_id, del_item=bucket_item_id, name=new_bucket_name
2364 sub load_myopac_bookbag_update {
2365     my ($self, $action, $list_id, @hold_recs) = @_;
2366     my $e = $self->editor;
2367     my $cgi = $self->cgi;
2368
2369     # save_notes is effectively another action, but is passed in a separate
2370     # CGI parameter for what are really just layout reasons.
2371     $action = 'save_notes' if $cgi->param('save_notes');
2372     $action ||= $cgi->param('action');
2373
2374     $list_id ||= $cgi->param('list') || $cgi->param('bbid');
2375
2376     my @add_rec = $cgi->param('add_rec') || $cgi->param('record');
2377     my @selected_item = $cgi->param('selected_item');
2378     my $shared = $cgi->param('shared');
2379     my $name = $cgi->param('name');
2380     my $description = $cgi->param('description');
2381     my $success = 0;
2382     my $list;
2383
2384     # This url intentionally leaves off the edit_notes parameter, but
2385     # may need to add some back in for paging.
2386
2387     my $url = $self->ctx->{proto} . "://" . $self->ctx->{hostname} .
2388         $self->ctx->{opac_root} . "/myopac/lists?";
2389
2390     foreach my $param (('loc', 'qtype', 'query', 'sort')) {
2391         if ($cgi->param($param)) {
2392             $url .= "$param=" . uri_escape_utf8($cgi->param($param)) . ";";
2393         }
2394     }
2395
2396     if ($action eq 'create') {
2397
2398         if ($name) {
2399             $list = Fieldmapper::container::biblio_record_entry_bucket->new;
2400             $list->name($name);
2401             $list->description($description);
2402             $list->owner($e->requestor->id);
2403             $list->btype('bookbag');
2404             $list->pub($shared ? 't' : 'f');
2405             $success = $U->simplereq('open-ils.actor',
2406                 'open-ils.actor.container.create', $e->authtoken, 'biblio', $list);
2407             if (ref($success) ne 'HASH' && scalar @add_rec) {
2408                 $list_id = (ref($success)) ? $success->id : $success;
2409                 foreach my $add_rec (@add_rec) {
2410                     my $item = Fieldmapper::container::biblio_record_entry_bucket_item->new;
2411                     $item->bucket($list_id);
2412                     $item->target_biblio_record_entry($add_rec);
2413                     $success = $U->simplereq('open-ils.actor',
2414                                              'open-ils.actor.container.item.create', $e->authtoken, 'biblio', $item);
2415                     last unless $success;
2416                 }
2417             }
2418             $url = $cgi->param('where_from') if ($success && $cgi->param('where_from'));
2419
2420         } else { # no name
2421             $self->ctx->{bucket_failure_noname} = 1;
2422         }
2423
2424     } elsif($action eq 'place_hold') {
2425
2426         # @hold_recs comes from anon lists redirect; selected_itesm comes from existing buckets
2427         unless (@hold_recs) {
2428             if (@selected_item) {
2429                 my $items = $e->search_container_biblio_record_entry_bucket_item({id => \@selected_item});
2430                 @hold_recs = map { $_->target_biblio_record_entry } @$items;
2431             }
2432         }
2433                 
2434         return Apache2::Const::OK unless @hold_recs;
2435         $logger->info("placing holds from list page on: @hold_recs");
2436
2437         my $url = $self->ctx->{opac_root} . '/place_hold?hold_type=T';
2438         $url .= ';hold_target=' . $_ for @hold_recs;
2439         foreach my $param (('loc', 'qtype', 'query')) {
2440             if ($cgi->param($param)) {
2441                 $url .= ";$param=" . uri_escape_utf8($cgi->param($param));
2442             }
2443         }
2444         return $self->generic_redirect($url);
2445
2446     } else {
2447
2448         $list = $e->retrieve_container_biblio_record_entry_bucket($list_id);
2449
2450         return Apache2::Const::HTTP_BAD_REQUEST unless 
2451             $list and $list->owner == $e->requestor->id;
2452     }
2453
2454     if($action eq 'delete') {
2455         $success = $U->simplereq('open-ils.actor', 
2456             'open-ils.actor.container.full_delete', $e->authtoken, 'biblio', $list_id);
2457         if ($success) {
2458             # We check to see if we're deleting the user's default list.
2459             $self->_load_user_with_prefs;
2460             my $settings_map = $self->ctx->{user_setting_map};
2461             if ($$settings_map{'opac.default_list'} == $list_id) {
2462                 # We unset the user's opac.default_list setting.
2463                 $success = $U->simplereq(
2464                     'open-ils.actor',
2465                     'open-ils.actor.patron.settings.update',
2466                     $e->authtoken,
2467                     $e->requestor->id,
2468                     { 'opac.default_list' => 0 }
2469                 );
2470             }
2471         }
2472     } elsif($action eq 'show') {
2473         unless($U->is_true($list->pub)) {
2474             $list->pub('t');
2475             $success = $U->simplereq('open-ils.actor', 
2476                 'open-ils.actor.container.update', $e->authtoken, 'biblio', $list);
2477         }
2478
2479     } elsif($action eq 'hide') {
2480         if($U->is_true($list->pub)) {
2481             $list->pub('f');
2482             $success = $U->simplereq('open-ils.actor', 
2483                 'open-ils.actor.container.update', $e->authtoken, 'biblio', $list);
2484         }
2485
2486     } elsif($action eq 'rename') {
2487         if($name) {
2488             $list->name($name);
2489             $success = $U->simplereq('open-ils.actor', 
2490                 'open-ils.actor.container.update', $e->authtoken, 'biblio', $list);
2491         }
2492
2493     } elsif($action eq 'add_rec') {
2494         foreach my $add_rec (@add_rec) {
2495             my $item = Fieldmapper::container::biblio_record_entry_bucket_item->new;
2496             $item->bucket($list_id);
2497             $item->target_biblio_record_entry($add_rec);
2498             $success = $U->simplereq('open-ils.actor', 
2499                 'open-ils.actor.container.item.create', $e->authtoken, 'biblio', $item);
2500             last unless $success;
2501         }
2502         # Redirect back where we came from if we have an anchor parameter:
2503         if ( my $anchor = $cgi->param('anchor') && !$self->ctx->{is_staff}) {
2504             $url = $self->ctx->{referer};
2505             $url =~ s/#.*|$/#$anchor/;
2506         } elsif ($cgi->param('where_from')) {
2507             # Or, if we have a "where_from" parameter.
2508             $url = $cgi->param('where_from');
2509         }
2510     } elsif ($action eq 'del_item') {
2511         foreach (@selected_item) {
2512             $success = $U->simplereq(
2513                 'open-ils.actor',
2514                 'open-ils.actor.container.item.delete', $e->authtoken, 'biblio', $_
2515             );
2516             last unless $success;
2517         }
2518     } elsif ($action eq 'save_notes') {
2519         $success = $self->update_bookbag_item_notes;
2520         $url .= "&bbid=" . uri_escape_utf8($cgi->param("bbid")) if $cgi->param("bbid");
2521     } elsif ($action eq 'make_default') {
2522         $success = $U->simplereq(
2523             'open-ils.actor',
2524             'open-ils.actor.patron.settings.update',
2525             $e->authtoken,
2526             $list->owner,
2527             { 'opac.default_list' => $list_id }
2528         );
2529     } elsif ($action eq 'remove_default') {
2530         $success = $U->simplereq(
2531             'open-ils.actor',
2532             'open-ils.actor.patron.settings.update',
2533             $e->authtoken,
2534             $list->owner,
2535             { 'opac.default_list' => 0 }
2536         );
2537     }
2538
2539     return $self->generic_redirect($url) if $success;
2540
2541     $self->ctx->{where_from} = $cgi->param('where_from');
2542     $self->ctx->{bucket_action} = $action;
2543     $self->ctx->{bucket_action_failed} = 1;
2544     return Apache2::Const::OK;
2545 }
2546
2547 sub update_bookbag_item_notes {
2548     my ($self) = @_;
2549     my $e = $self->editor;
2550
2551     my @note_keys = grep /^note-\d+/, keys(%{$self->cgi->Vars});
2552     my @item_keys = grep /^item-\d+/, keys(%{$self->cgi->Vars});
2553
2554     # We're going to leverage an API call that's already been written to check
2555     # permissions appropriately.
2556
2557     my $a = create OpenSRF::AppSession("open-ils.actor");
2558     my $method = "open-ils.actor.container.item_note.cud";
2559
2560     for my $note_key (@note_keys) {
2561         my $note;
2562
2563         my $id = ($note_key =~ /(\d+)/)[0];
2564
2565         if (!($note =
2566             $e->retrieve_container_biblio_record_entry_bucket_item_note($id))) {
2567             my $event = $e->die_event;
2568             $self->apache->log->warn(
2569                 "error retrieving cbrebin id $id, got event " .
2570                 $event->{textcode}
2571             );
2572             $a->kill_me;
2573             $self->ctx->{bucket_action_event} = $event;
2574             return;
2575         }
2576
2577         if (length($self->cgi->param($note_key))) {
2578             $note->ischanged(1);
2579             $note->note($self->cgi->param($note_key));
2580         } else {
2581             $note->isdeleted(1);
2582         }
2583
2584         my $r = $a->request($method, $e->authtoken, "biblio", $note)->gather(1);
2585
2586         if (defined $U->event_code($r)) {
2587             $self->apache->log->warn(
2588                 "attempt to modify cbrebin " . $note->id .
2589                 " returned event " .  $r->{textcode}
2590             );
2591             $e->rollback;
2592             $a->kill_me;
2593             $self->ctx->{bucket_action_event} = $r;
2594             return;
2595         }
2596     }
2597
2598     for my $item_key (@item_keys) {
2599         my $id = int(($item_key =~ /(\d+)/)[0]);
2600         my $text = $self->cgi->param($item_key);
2601
2602         chomp $text;
2603         next unless length $text;
2604
2605         my $note = new Fieldmapper::container::biblio_record_entry_bucket_item_note;
2606         $note->isnew(1);
2607         $note->item($id);
2608         $note->note($text);
2609
2610         my $r = $a->request($method, $e->authtoken, "biblio", $note)->gather(1);
2611
2612         if (defined $U->event_code($r)) {
2613             $self->apache->log->warn(
2614                 "attempt to create cbrebin for item " . $note->item .
2615                 " returned event " .  $r->{textcode}
2616             );
2617             $e->rollback;
2618             $a->kill_me;
2619             $self->ctx->{bucket_action_event} = $r;
2620             return;
2621         }
2622     }
2623
2624     $a->kill_me;
2625     return 1;   # success
2626 }
2627
2628 sub load_myopac_bookbag_print {
2629     my ($self) = @_;
2630
2631     my $id = int($self->cgi->param("list"));
2632
2633     my ($sorter, $modifier) = $self->_get_bookbag_sort_params("sort");
2634
2635     my $item_search =
2636         $self->_prepare_bookbag_container_query($id, $sorter, $modifier);
2637
2638     my $bbag;
2639
2640     # Get the bookbag object itself, assuming we're allowed to.
2641     if ($self->editor->allowed("VIEW_CONTAINER")) {
2642
2643         $bbag = $self->editor->retrieve_container_biblio_record_entry_bucket($id) or return Apache2::Const::HTTP_INTERNAL_SERVER_ERROR;
2644     } else {
2645         my $bookbags = $self->editor->search_container_biblio_record_entry_bucket(
2646             {
2647                 "id" => $id,
2648                 "-or" => {
2649                     "owner" => $self->editor->requestor->id,
2650                     "pub" => "t"
2651                 }
2652             }
2653         ) or return Apache2::Const::HTTP_INTERNAL_SERVER_ERROR;
2654
2655         $bbag = pop @$bookbags;
2656     }
2657
2658     # If we have a bookbag we're allowed to look at, issue the A/T event
2659     # to get CSV, passing as a user param that search query we built before.
2660     if ($bbag) {
2661         $self->ctx->{csv} = $U->fire_object_event(
2662             undef, "container.biblio_record_entry_bucket.csv",
2663             $bbag, $self->editor->requestor->home_ou,
2664             undef, {"item_search" => $item_search}
2665         );
2666     }
2667
2668     # Create a reasonable filename and set the content disposition to
2669     # provoke browser download dialogs.
2670     (my $filename = $bbag->id . $bbag->name) =~ s/[^a-z0-9_ -]//gi;
2671
2672     return $self->set_file_download_headers("$filename.csv");
2673 }
2674
2675 sub load_myopac_circ_history_export {
2676     my $self = shift;
2677     my $e = $self->editor;
2678     my $filename = $self->cgi->param('filename') || 'circ_history.csv';
2679
2680     my $circs = $self->fetch_user_circ_history;
2681
2682     $self->ctx->{csv} = $U->fire_object_event(
2683         undef, 
2684         'circ.format.history.csv', $circs,
2685         $self->editor->requestor->home_ou
2686     );
2687
2688     return $self->set_file_download_headers($filename);
2689 }
2690
2691 sub load_password_reset {
2692     my $self = shift;
2693     my $cgi = $self->cgi;
2694     my $ctx = $self->ctx;
2695     my $barcode = $cgi->param('barcode');
2696     my $username = $cgi->param('username');
2697     my $email = $cgi->param('email');
2698     my $pwd1 = $cgi->param('pwd1');
2699     my $pwd2 = $cgi->param('pwd2');
2700     my $uuid = $ctx->{page_args}->[0];
2701
2702     if ($uuid) {
2703
2704         $logger->info("patron password reset with uuid $uuid");
2705
2706         if ($pwd1 and $pwd2) {
2707
2708             if ($pwd1 eq $pwd2) {
2709
2710                 my $response = $U->simplereq(
2711                     'open-ils.actor', 
2712                     'open-ils.actor.patron.password_reset.commit',
2713                     $uuid, $pwd1);
2714
2715                 $logger->info("patron password reset response " . Dumper($response));
2716
2717                 if ($U->event_code($response)) { # non-success event
2718                     
2719                     my $code = $response->{textcode};
2720                     
2721                     if ($code eq 'PATRON_NOT_AN_ACTIVE_PASSWORD_RESET_REQUEST') {
2722                         $ctx->{pwreset} = {style => 'error', status => 'NOT_ACTIVE'};
2723                     }
2724
2725                     if ($code eq 'PATRON_PASSWORD_WAS_NOT_STRONG') {
2726                         $ctx->{pwreset} = {style => 'error', status => 'NOT_STRONG'};
2727                     }
2728
2729                 } else { # success
2730
2731                     $ctx->{pwreset} = {style => 'success', status => 'SUCCESS'};
2732                 }
2733
2734             } else { # passwords not equal
2735
2736                 $ctx->{pwreset} = {style => 'error', status => 'NO_MATCH'};
2737             }
2738
2739         } else { # 2 password values needed
2740
2741             $ctx->{pwreset} = {status => 'TWO_PASSWORDS'};
2742         }
2743
2744     } elsif ($barcode or $username) {
2745
2746         my @params = $barcode ? ('barcode', $barcode) : ('username', $username);
2747         push(@params, $email) if $email;
2748
2749         $U->simplereq(
2750             'open-ils.actor', 
2751             'open-ils.actor.patron.password_reset.request', @params);
2752
2753         $ctx->{pwreset} = {status => 'REQUEST_SUCCESS'};
2754     }
2755
2756     $logger->info("patron password reset resulted in " . Dumper($ctx->{pwreset}));
2757     return Apache2::Const::OK;
2758 }
2759
2760 1;