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