]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/src/perlmods/lib/OpenILS/WWW/EGCatLoader/Account.pm
TPAC bookbag CGI param changed to bbid
[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
856     if ($cgi->param('override')) {
857         $method .= '.override';
858
859     } elsif (!$ctx->{is_staff})  {
860
861         $method .= '.override' if $self->ctx->{get_org_setting}->(
862             $e->requestor->home_ou, "opac.patron.auto_overide_hold_events");
863     }
864
865     my @create_targets = map {$_->{target_id}} (grep { !$_->{hold_failed} } @hold_data);
866
867     if(@create_targets) {
868
869         my $bses = OpenSRF::AppSession->create('open-ils.circ');
870         my $breq = $bses->request( 
871             $method, 
872             $e->authtoken, 
873             $data_filler->({   patronid => $usr,
874                 pickup_lib => $pickup_lib, 
875                 hold_type => $hold_type
876             }),
877             \@create_targets
878         );
879
880         while (my $resp = $breq->recv) {
881
882             $resp = $resp->content;
883             $logger->info('batch hold placement result: ' . OpenSRF::Utils::JSON->perl2JSON($resp));
884
885             if ($U->event_code($resp)) {
886                 $ctx->{general_hold_error} = $resp;
887                 last;
888             }
889
890             my ($hdata) = grep {$_->{target_id} eq $resp->{target}} @hold_data;
891             my $result = $resp->{result};
892
893             if ($U->event_code($result)) {
894                 # e.g. permission denied
895                 $hdata->{hold_failed} = 1;
896                 $hdata->{hold_failed_event} = $result;
897
898             } else {
899                 
900                 if(not ref $result and $result > 0) {
901                     # successul hold returns the hold ID
902
903                     $hdata->{hold_success} = $result; 
904     
905                 } else {
906                     # hold-specific failure event 
907                     $hdata->{hold_failed} = 1;
908
909                     if (ref $result eq 'HASH') {
910                         $hdata->{hold_failed_event} = $result->{last_event};
911
912                         if ($result->{age_protected_copy}) {
913                             $hdata->{could_override} = 1;
914                             $hdata->{age_protect} = 1;
915                         } else {
916                             $hdata->{could_override} = $result->{place_unfillable} || 
917                                 $self->test_could_override($hdata->{hold_failed_event});
918                         }
919                     } elsif (ref $result eq 'ARRAY') {
920                         $hdata->{hold_failed_event} = $result->[0];
921
922                         if ($result->[3]) { # age_protect_only
923                             $hdata->{could_override} = 1;
924                             $hdata->{age_protect} = 1;
925                         } else {
926                             $hdata->{could_override} = $result->[4] || # place_unfillable
927                                 $self->test_could_override($hdata->{hold_failed_event});
928                         }
929                     }
930                 }
931             }
932         }
933
934         $bses->kill_me;
935     }
936 }
937
938 sub fetch_user_circs {
939     my $self = shift;
940     my $flesh = shift; # flesh bib data, etc.
941     my $circ_ids = shift;
942     my $limit = shift;
943     my $offset = shift;
944
945     my $e = $self->editor;
946
947     my @circ_ids;
948
949     if($circ_ids) {
950         @circ_ids = @$circ_ids;
951
952     } else {
953
954         my $query = {
955             select => {circ => ['id']},
956             from => 'circ',
957             where => {
958                 '+circ' => {
959                     usr => $e->requestor->id,
960                     checkin_time => undef,
961                     '-or' => [
962                         {stop_fines => undef},
963                         {stop_fines => {'not in' => ['LOST','CLAIMSRETURNED','LONGOVERDUE']}}
964                     ],
965                 }
966             },
967             order_by => {circ => ['due_date']}
968         };
969
970         $query->{limit} = $limit if $limit;
971         $query->{offset} = $offset if $offset;
972
973         my $ids = $e->json_query($query);
974         @circ_ids = map {$_->{id}} @$ids;
975     }
976
977     return [] unless @circ_ids;
978
979     my $qflesh = {
980         flesh => 3,
981         flesh_fields => {
982             circ => ['target_copy'],
983             acp => ['call_number'],
984             acn => ['record']
985         }
986     };
987
988     $e->xact_begin;
989     my $circs = $e->search_action_circulation(
990         [{id => \@circ_ids}, ($flesh) ? $qflesh : {}], {substream => 1});
991
992     my @circs;
993     for my $circ (@$circs) {
994         push(@circs, {
995             circ => $circ, 
996             marc_xml => ($flesh and $circ->target_copy->call_number->id != -1) ? 
997                 XML::LibXML->new->parse_string($circ->target_copy->call_number->record->marc) : 
998                 undef  # pre-cat copy, use the dummy title/author instead
999         });
1000     }
1001     $e->xact_rollback;
1002
1003     # make sure the final list is in the correct order
1004     my @sorted_circs;
1005     for my $id (@circ_ids) {
1006         push(
1007             @sorted_circs,
1008             (grep { $_->{circ}->id == $id } @circs)
1009         );
1010     }
1011
1012     return \@sorted_circs;
1013 }
1014
1015
1016 sub handle_circ_renew {
1017     my $self = shift;
1018     my $action = shift;
1019     my $ctx = $self->ctx;
1020
1021     my @renew_ids = $self->cgi->param('circ');
1022
1023     my $circs = $self->fetch_user_circs(0, ($action eq 'renew') ? [@renew_ids] : undef);
1024
1025     # TODO: fire off renewal calls in batches to speed things up
1026     my @responses;
1027     for my $circ (@$circs) {
1028
1029         my $evt = $U->simplereq(
1030             'open-ils.circ', 
1031             'open-ils.circ.renew',
1032             $self->editor->authtoken,
1033             {
1034                 patron_id => $self->editor->requestor->id,
1035                 copy_id => $circ->{circ}->target_copy,
1036                 opac_renewal => 1
1037             }
1038         );
1039
1040         # TODO return these, then insert them into the circ data 
1041         # blob that is shoved into the template for each circ
1042         # so the template won't have to match them
1043         push(@responses, {copy => $circ->{circ}->target_copy, evt => $evt});
1044     }
1045
1046     return @responses;
1047 }
1048
1049
1050 sub load_myopac_circs {
1051     my $self = shift;
1052     my $e = $self->editor;
1053     my $ctx = $self->ctx;
1054
1055     $ctx->{circs} = [];
1056     my $limit = $self->cgi->param('limit') || 0; # 0 == unlimited
1057     my $offset = $self->cgi->param('offset') || 0;
1058     my $action = $self->cgi->param('action') || '';
1059
1060     # perform the renewal first if necessary
1061     my @results = $self->handle_circ_renew($action) if $action =~ /renew/;
1062
1063     $ctx->{circs} = $self->fetch_user_circs(1, undef, $limit, $offset);
1064
1065     my $success_renewals = 0;
1066     my $failed_renewals = 0;
1067     for my $data (@{$ctx->{circs}}) {
1068         my ($resp) = grep { $_->{copy} == $data->{circ}->target_copy->id } @results;
1069
1070         if($resp) {
1071             my $evt = ref($resp->{evt}) eq 'ARRAY' ? $resp->{evt}->[0] : $resp->{evt};
1072             $data->{renewal_response} = $evt;
1073             $success_renewals++ if $evt->{textcode} eq 'SUCCESS';
1074             $failed_renewals++ if $evt->{textcode} ne 'SUCCESS';
1075         }
1076     }
1077
1078     $ctx->{success_renewals} = $success_renewals;
1079     $ctx->{failed_renewals} = $failed_renewals;
1080
1081     return Apache2::Const::OK;
1082 }
1083
1084 sub load_myopac_circ_history {
1085     my $self = shift;
1086     my $e = $self->editor;
1087     my $ctx = $self->ctx;
1088     my $limit = $self->cgi->param('limit') || 15;
1089     my $offset = $self->cgi->param('offset') || 0;
1090
1091     $ctx->{circ_history_limit} = $limit;
1092     $ctx->{circ_history_offset} = $offset;
1093
1094     my $circ_ids = $e->json_query({
1095         select => {
1096             au => [{
1097                 column => 'id', 
1098                 transform => 'action.usr_visible_circs', 
1099                 result_field => 'id'
1100             }]
1101         },
1102         from => 'au',
1103         where => {id => $e->requestor->id}, 
1104         limit => $limit,
1105         offset => $offset
1106     });
1107
1108     $ctx->{circs} = $self->fetch_user_circs(1, [map { $_->{id} } @$circ_ids]);
1109     return Apache2::Const::OK;
1110 }
1111
1112 # TODO: action.usr_visible_holds does not return cancelled holds.  Should it?
1113 sub load_myopac_hold_history {
1114     my $self = shift;
1115     my $e = $self->editor;
1116     my $ctx = $self->ctx;
1117     my $limit = $self->cgi->param('limit') || 15;
1118     my $offset = $self->cgi->param('offset') || 0;
1119     $ctx->{hold_history_limit} = $limit;
1120     $ctx->{hold_history_offset} = $offset;
1121
1122     my $hold_ids = $e->json_query({
1123         select => {
1124             au => [{
1125                 column => 'id', 
1126                 transform => 'action.usr_visible_holds', 
1127                 result_field => 'id'
1128             }]
1129         },
1130         from => 'au',
1131         where => {id => $e->requestor->id}, 
1132         limit => $limit,
1133         offset => $offset
1134     });
1135
1136     $ctx->{holds} = $self->fetch_user_holds([map { $_->{id} } @$hold_ids], 0, 1, 0);
1137     return Apache2::Const::OK;
1138 }
1139
1140 sub load_myopac_payment_form {
1141     my $self = shift;
1142     my $r;
1143
1144     $r = $self->prepare_fines(undef, undef, [$self->cgi->param('xact'), $self->cgi->param('xact_misc')]) and return $r;
1145     $r = $self->prepare_extended_user_info and return $r;
1146
1147     return Apache2::Const::OK;
1148 }
1149
1150 # TODO: add other filter options as params/configs/etc.
1151 sub load_myopac_payments {
1152     my $self = shift;
1153     my $limit = $self->cgi->param('limit') || 20;
1154     my $offset = $self->cgi->param('offset') || 0;
1155     my $e = $self->editor;
1156
1157     $self->ctx->{payment_history_limit} = $limit;
1158     $self->ctx->{payment_history_offset} = $offset;
1159
1160     my $args = {};
1161     $args->{limit} = $limit if $limit;
1162     $args->{offset} = $offset if $offset;
1163
1164     if (my $max_age = $self->ctx->{get_org_setting}->(
1165         $e->requestor->home_ou, "opac.payment_history_age_limit"
1166     )) {
1167         my $min_ts = DateTime->now(
1168             "time_zone" => DateTime::TimeZone->new("name" => "local"),
1169         )->subtract("seconds" => interval_to_seconds($max_age))->iso8601();
1170         
1171         $logger->info("XXX min_ts: $min_ts");
1172         $args->{"where"} = {"payment_ts" => {">=" => $min_ts}};
1173     }
1174
1175     $self->ctx->{payments} = $U->simplereq(
1176         'open-ils.actor',
1177         'open-ils.actor.user.payments.retrieve.atomic',
1178         $e->authtoken, $e->requestor->id, $args);
1179
1180     return Apache2::Const::OK;
1181 }
1182
1183 # 1. caches the form parameters
1184 # 2. loads the credit card payment "Processing..." page
1185 sub load_myopac_pay_init {
1186     my $self = shift;
1187     my $cache = OpenSRF::Utils::Cache->new('global');
1188
1189     my @payment_xacts = ($self->cgi->param('xact'), $self->cgi->param('xact_misc'));
1190
1191     if (!@payment_xacts) {
1192         # for consistency with load_myopac_payment_form() and
1193         # to preserve backwards compatibility, if no xacts are
1194         # selected, assume all (applicable) transactions are wanted.
1195         my $stat = $self->prepare_fines(undef, undef, [$self->cgi->param('xact'), $self->cgi->param('xact_misc')]);
1196         return $stat if $stat;
1197         @payment_xacts =
1198             map { $_->{xact}->id } (
1199                 @{$self->ctx->{fines}->{circulation}}, 
1200                 @{$self->ctx->{fines}->{grocery}}
1201         );
1202     }
1203
1204     return $self->generic_redirect unless @payment_xacts;
1205
1206     my $cc_args = {"where_process" => 1};
1207
1208     $cc_args->{$_} = $self->cgi->param($_) for (qw/
1209         number cvv2 expire_year expire_month billing_first
1210         billing_last billing_address billing_city billing_state
1211         billing_zip
1212     /);
1213
1214     my $cache_args = {
1215         cc_args => $cc_args, 
1216         user => $self->ctx->{user}->id,
1217         xacts => \@payment_xacts
1218     };
1219
1220     # generate a temporary cache token and cache the form data
1221     my $token = md5_hex($$ . time() . rand());
1222     $cache->put_cache($token, $cache_args, 30);
1223
1224     $logger->info("tpac caching payment info with token $token and xacts [@payment_xacts]");
1225
1226     # after we render the processing page, we quickly redirect to submit
1227     # the actual payment.  The refresh url contains the payment token.
1228     # It also contains the list of xact IDs, which allows us to clear the 
1229     # cache at the earliest possible time while leaving a trace of which 
1230     # transactions we were processing, so the UI can bring the user back
1231     # to the payment form w/ the same xacts if the payment fails.
1232
1233     my $refresh = "1; url=main_pay/$token?xact=" . pop(@payment_xacts);
1234     $refresh .= ";xact=$_" for @payment_xacts;
1235     $self->ctx->{refresh} = $refresh;
1236
1237     return Apache2::Const::OK;
1238 }
1239
1240 # retrieve the cached CC payment info and send off for processing
1241 sub load_myopac_pay {
1242     my $self = shift;
1243     my $token = $self->ctx->{page_args}->[0];
1244     return Apache2::Const::HTTP_BAD_REQUEST unless $token;
1245
1246     my $cache = OpenSRF::Utils::Cache->new('global');
1247     my $cache_args = $cache->get_cache($token);
1248     $cache->delete_cache($token);
1249
1250     # this page is loaded immediately after the token is created.
1251     # if the cached data is not there, it's because of an invalid
1252     # token (or cache failure) and not because of a timeout.
1253     return Apache2::Const::HTTP_BAD_REQUEST unless $cache_args;
1254
1255     my @payment_xacts = @{$cache_args->{xacts}};
1256     my $cc_args = $cache_args->{cc_args};
1257
1258     # as an added security check, verify the user submitting 
1259     # the form is the same as the user whose data was cached
1260     return Apache2::Const::HTTP_BAD_REQUEST unless
1261         $cache_args->{user} == $self->ctx->{user}->id;
1262
1263     $logger->info("tpac paying fines with token $token and xacts [@payment_xacts]");
1264
1265     my $r;
1266     $r = $self->prepare_fines(undef, undef, \@payment_xacts) and return $r;
1267
1268     # balance_owed is computed specifically from the fines we're paying
1269     if ($self->ctx->{fines}->{balance_owed} <= 0) {
1270         $logger->info("tpac can't pay non-positive balance. xacts selected: [@payment_xacts]");
1271         return Apache2::Const::HTTP_BAD_REQUEST;
1272     }
1273
1274     my $args = {
1275         "cc_args" => $cc_args,
1276         "userid" => $self->ctx->{user}->id,
1277         "payment_type" => "credit_card_payment",
1278         "payments" => $self->prepare_fines_for_payment  # should be safe after self->prepare_fines
1279     };
1280
1281     my $resp = $U->simplereq("open-ils.circ", "open-ils.circ.money.payment",
1282         $self->editor->authtoken, $args, $self->ctx->{user}->last_xact_id
1283     );
1284
1285     $self->ctx->{"payment_response"} = $resp;
1286
1287     unless ($resp->{"textcode"}) {
1288         $self->ctx->{printable_receipt} = $U->simplereq(
1289            "open-ils.circ", "open-ils.circ.money.payment_receipt.print",
1290            $self->editor->authtoken, $resp->{payments}
1291         );
1292     }
1293
1294     return Apache2::Const::OK;
1295 }
1296
1297 sub load_myopac_receipt_print {
1298     my $self = shift;
1299
1300     $self->ctx->{printable_receipt} = $U->simplereq(
1301        "open-ils.circ", "open-ils.circ.money.payment_receipt.print",
1302        $self->editor->authtoken, [$self->cgi->param("payment")]
1303     );
1304
1305     return Apache2::Const::OK;
1306 }
1307
1308 sub load_myopac_receipt_email {
1309     my $self = shift;
1310
1311     # The following ML method doesn't actually check whether the user in
1312     # question has an email address, so we do.
1313     if ($self->ctx->{user}->email) {
1314         $self->ctx->{email_receipt_result} = $U->simplereq(
1315            "open-ils.circ", "open-ils.circ.money.payment_receipt.email",
1316            $self->editor->authtoken, [$self->cgi->param("payment")]
1317         );
1318     } else {
1319         $self->ctx->{email_receipt_result} =
1320             new OpenILS::Event("PATRON_NO_EMAIL_ADDRESS");
1321     }
1322
1323     return Apache2::Const::OK;
1324 }
1325
1326 sub prepare_fines {
1327     my ($self, $limit, $offset, $id_list) = @_;
1328
1329     # XXX TODO: check for failure after various network calls
1330
1331     # It may be unclear, but this result structure lumps circulation and
1332     # reservation fines together, and keeps grocery fines separate.
1333     $self->ctx->{"fines"} = {
1334         "circulation" => [],
1335         "grocery" => [],
1336         "total_paid" => 0,
1337         "total_owed" => 0,
1338         "balance_owed" => 0
1339     };
1340
1341     my $cstore = OpenSRF::AppSession->create('open-ils.cstore');
1342
1343     # TODO: This should really be a ML call, but the existing calls 
1344     # return an excessive amount of data and don't offer streaming
1345
1346     my %paging = ($limit or $offset) ? (limit => $limit, offset => $offset) : ();
1347
1348     my $req = $cstore->request(
1349         'open-ils.cstore.direct.money.open_billable_transaction_summary.search',
1350         {
1351             usr => $self->editor->requestor->id,
1352             balance_owed => {'!=' => 0},
1353             ($id_list && @$id_list ? ("id" => $id_list) : ()),
1354         },
1355         {
1356             flesh => 4,
1357             flesh_fields => {
1358                 mobts => [qw/grocery circulation reservation/],
1359                 bresv => ['target_resource_type'],
1360                 brt => ['record'],
1361                 mg => ['billings'],
1362                 mb => ['btype'],
1363                 circ => ['target_copy'],
1364                 acp => ['call_number'],
1365                 acn => ['record']
1366             },
1367             order_by => { mobts => 'xact_start' },
1368             %paging
1369         }
1370     );
1371
1372     my @total_keys = qw/total_paid total_owed balance_owed/;
1373     $self->ctx->{"fines"}->{@total_keys} = (0, 0, 0);
1374
1375     while(my $resp = $req->recv) {
1376         my $mobts = $resp->content;
1377         my $circ = $mobts->circulation;
1378
1379         my $last_billing;
1380         if($mobts->grocery) {
1381             my @billings = sort { $a->billing_ts cmp $b->billing_ts } @{$mobts->grocery->billings};
1382             $last_billing = pop(@billings);
1383         }
1384
1385         # XXX TODO confirm that the following, and the later division by 100.0
1386         # to get a floating point representation once again, is sufficiently
1387         # "money-safe" math.
1388         $self->ctx->{"fines"}->{$_} += int($mobts->$_ * 100) for (@total_keys);
1389
1390         my $marc_xml = undef;
1391         if ($mobts->xact_type eq 'reservation' and
1392             $mobts->reservation->target_resource_type->record) {
1393             $marc_xml = XML::LibXML->new->parse_string(
1394                 $mobts->reservation->target_resource_type->record->marc
1395             );
1396         } elsif ($mobts->xact_type eq 'circulation' and
1397             $circ->target_copy->call_number->id != -1) {
1398             $marc_xml = XML::LibXML->new->parse_string(
1399                 $circ->target_copy->call_number->record->marc
1400             );
1401         }
1402
1403         push(
1404             @{$self->ctx->{"fines"}->{$mobts->grocery ? "grocery" : "circulation"}},
1405             {
1406                 xact => $mobts,
1407                 last_grocery_billing => $last_billing,
1408                 marc_xml => $marc_xml
1409             } 
1410         );
1411     }
1412
1413     $cstore->kill_me;
1414
1415     $self->ctx->{"fines"}->{$_} /= 100.0 for (@total_keys);
1416     return;
1417 }
1418
1419 sub prepare_fines_for_payment {
1420     # This assumes $self->prepare_fines has already been run
1421     my ($self) = @_;
1422
1423     my @results = ();
1424     if ($self->ctx->{fines}) {
1425         push @results, [$_->{xact}->id, $_->{xact}->balance_owed] foreach (
1426             @{$self->ctx->{fines}->{circulation}},
1427             @{$self->ctx->{fines}->{grocery}}
1428         );
1429     }
1430
1431     return \@results;
1432 }
1433
1434 sub load_myopac_main {
1435     my $self = shift;
1436     my $limit = $self->cgi->param('limit') || 0;
1437     my $offset = $self->cgi->param('offset') || 0;
1438     $self->ctx->{search_ou} = $self->_get_search_lib();
1439
1440     return $self->prepare_fines($limit, $offset) || Apache2::Const::OK;
1441 }
1442
1443 sub load_myopac_update_email {
1444     my $self = shift;
1445     my $e = $self->editor;
1446     my $ctx = $self->ctx;
1447     my $email = $self->cgi->param('email') || '';
1448     my $current_pw = $self->cgi->param('current_pw') || '';
1449
1450     # needed for most up-to-date email address
1451     if (my $r = $self->prepare_extended_user_info) { return $r };
1452
1453     return Apache2::Const::OK 
1454         unless $self->cgi->request_method eq 'POST';
1455
1456     unless($email =~ /.+\@.+\..+/) { # TODO better regex?
1457         $ctx->{invalid_email} = $email;
1458         return Apache2::Const::OK;
1459     }
1460
1461     my $stat = $U->simplereq(
1462         'open-ils.actor', 
1463         'open-ils.actor.user.email.update', 
1464         $e->authtoken, $email, $current_pw);
1465
1466     if($U->event_equals($stat, 'INCORRECT_PASSWORD')) {
1467         $ctx->{password_incorrect} = 1;
1468         return Apache2::Const::OK;
1469     }
1470
1471     unless ($self->cgi->param("redirect_to")) {
1472         my $url = $self->apache->unparsed_uri;
1473         $url =~ s/update_email/prefs/;
1474
1475         return $self->generic_redirect($url);
1476     }
1477
1478     return $self->generic_redirect;
1479 }
1480
1481 sub load_myopac_update_username {
1482     my $self = shift;
1483     my $e = $self->editor;
1484     my $ctx = $self->ctx;
1485     my $username = $self->cgi->param('username') || '';
1486     my $current_pw = $self->cgi->param('current_pw') || '';
1487
1488     $self->prepare_extended_user_info;
1489
1490     my $allow_change = 1;
1491     my $regex_check;
1492     my $lock_usernames = $self->ctx->{get_org_setting}->($e->requestor->home_ou, 'opac.lock_usernames');
1493     if($lock_usernames == 1) {
1494         # Policy says no username changes
1495         $allow_change = 0;
1496     } else {
1497         # We want this further down.
1498         $regex_check = $self->ctx->{get_org_setting}->($e->requestor->home_ou, 'opac.barcode_regex');
1499         my $username_unlimit = $self->ctx->{get_org_setting}->($e->requestor->home_ou, 'opac.unlimit_usernames');
1500         if($username_unlimit != 1) {
1501             if(!$regex_check) {
1502                 # Default is "starts with a number"
1503                 $regex_check = '^\d+';
1504             }
1505             # You already have a username?
1506             if($regex_check and $self->ctx->{user}->usrname !~ /$regex_check/) {
1507                 $allow_change = 0;
1508             }
1509         }
1510     }
1511     if(!$allow_change) {
1512         my $url = $self->apache->unparsed_uri;
1513         $url =~ s/update_username/prefs/;
1514
1515         return $self->generic_redirect($url);
1516     }
1517
1518     return Apache2::Const::OK 
1519         unless $self->cgi->request_method eq 'POST';
1520
1521     unless($username and $username !~ /\s/) { # any other username restrictions?
1522         $ctx->{invalid_username} = $username;
1523         return Apache2::Const::OK;
1524     }
1525
1526     # New username can't look like a barcode if we have a barcode regex
1527     if($regex_check and $username =~ /$regex_check/) {
1528         $ctx->{invalid_username} = $username;
1529         return Apache2::Const::OK;
1530     }
1531
1532     # New username has to look like a username if we have a username regex
1533     $regex_check = $ctx->{get_org_setting}->($e->requestor->home_ou, 'opac.username_regex');
1534     if($regex_check and $username !~ /$regex_check/) {
1535         $ctx->{invalid_username} = $username;
1536         return Apache2::Const::OK;
1537     }
1538
1539     if($username ne $e->requestor->usrname) {
1540
1541         my $evt = $U->simplereq(
1542             'open-ils.actor', 
1543             'open-ils.actor.user.username.update', 
1544             $e->authtoken, $username, $current_pw);
1545
1546         if($U->event_equals($evt, 'INCORRECT_PASSWORD')) {
1547             $ctx->{password_incorrect} = 1;
1548             return Apache2::Const::OK;
1549         }
1550
1551         if($U->event_equals($evt, 'USERNAME_EXISTS')) {
1552             $ctx->{username_exists} = $username;
1553             return Apache2::Const::OK;
1554         }
1555     }
1556
1557     my $url = $self->apache->unparsed_uri;
1558     $url =~ s/update_username/prefs/;
1559
1560     return $self->generic_redirect($url);
1561 }
1562
1563 sub load_myopac_update_password {
1564     my $self = shift;
1565     my $e = $self->editor;
1566     my $ctx = $self->ctx;
1567
1568     return Apache2::Const::OK 
1569         unless $self->cgi->request_method eq 'POST';
1570
1571     my $current_pw = $self->cgi->param('current_pw') || '';
1572     my $new_pw = $self->cgi->param('new_pw') || '';
1573     my $new_pw2 = $self->cgi->param('new_pw2') || '';
1574
1575     unless($new_pw eq $new_pw2) {
1576         $ctx->{password_nomatch} = 1;
1577         return Apache2::Const::OK;
1578     }
1579
1580     my $pw_regex = $ctx->{get_org_setting}->($e->requestor->home_ou, 'global.password_regex');
1581
1582     if(!$pw_regex) {
1583         # This regex duplicates the JSPac's default "digit, letter, and 7 characters" rule
1584         $pw_regex = '(?=.*\d+.*)(?=.*[A-Za-z]+.*).{7,}';
1585     }
1586
1587     if($pw_regex and $new_pw !~ /$pw_regex/) {
1588         $ctx->{password_invalid} = 1;
1589         return Apache2::Const::OK;
1590     }
1591
1592     my $evt = $U->simplereq(
1593         'open-ils.actor', 
1594         'open-ils.actor.user.password.update', 
1595         $e->authtoken, $new_pw, $current_pw);
1596
1597
1598     if($U->event_equals($evt, 'INCORRECT_PASSWORD')) {
1599         $ctx->{password_incorrect} = 1;
1600         return Apache2::Const::OK;
1601     }
1602
1603     my $url = $self->apache->unparsed_uri;
1604     $url =~ s/update_password/prefs/;
1605
1606     return $self->generic_redirect($url);
1607 }
1608
1609 sub _update_bookbag_metadata {
1610     my ($self, $bookbag) = @_;
1611
1612     $bookbag->name($self->cgi->param("name"));
1613     $bookbag->description($self->cgi->param("description"));
1614
1615     return 1 if $self->editor->update_container_biblio_record_entry_bucket($bookbag);
1616     return 0;
1617 }
1618
1619 sub load_myopac_bookbags {
1620     my $self = shift;
1621     my $e = $self->editor;
1622     my $ctx = $self->ctx;
1623
1624     my ($sorter, $modifier) = $self->_get_bookbag_sort_params("sort");
1625     $e->xact_begin; # replication...
1626
1627     my $rv = $self->load_mylist;
1628     unless($rv eq Apache2::Const::OK) {
1629         $e->rollback;
1630         return $rv;
1631     }
1632
1633     $ctx->{bookbags} = $e->search_container_biblio_record_entry_bucket(
1634         [
1635             {owner => $e->requestor->id, btype => 'bookbag'}, {
1636                 order_by => {cbreb => 'name'},
1637                 limit => $self->cgi->param('limit') || 10,
1638                 offset => $self->cgi->param('offset') || 0
1639             }
1640         ],
1641         {substream => 1}
1642     );
1643
1644     if(!$ctx->{bookbags}) {
1645         $e->rollback;
1646         return Apache2::Const::HTTP_INTERNAL_SERVER_ERROR;
1647     }
1648     
1649     # If the user wants a specific bookbag's items, load them.
1650     # XXX add bookbag item paging support
1651
1652     if ($self->cgi->param("bbid")) {
1653         my ($bookbag) =
1654             grep { $_->id eq $self->cgi->param("bbid") } @{$ctx->{bookbags}};
1655
1656         if (!$bookbag) {
1657             $e->rollback;
1658             return Apache2::Const::HTTP_INTERNAL_SERVER_ERROR;
1659         }
1660
1661         if ( ($self->cgi->param("action") || '') eq "editmeta") {
1662             if (!$self->_update_bookbag_metadata($bookbag))  {
1663                 $e->rollback;
1664                 return Apache2::Const::HTTP_INTERNAL_SERVER_ERROR;
1665             } else {
1666                 $e->commit;
1667                 my $url = $self->ctx->{opac_root} . '/myopac/lists?bbid=' .
1668                     $bookbag->id;
1669
1670                 foreach my $param (('loc', 'qtype', 'query', 'sort')) {
1671                     if ($self->cgi->param($param)) {
1672                         $url .= ";$param=" . uri_escape($self->cgi->param($param));
1673                     }
1674                 }
1675
1676                 return $self->generic_redirect($url);
1677             }
1678         }
1679
1680         my $query = $self->_prepare_bookbag_container_query(
1681             $bookbag->id, $sorter, $modifier
1682         );
1683
1684         # XXX we need to limit the number of records per bbag; use third arg
1685         # of bib_container_items_via_search() i think.
1686         my $items = $U->bib_container_items_via_search($bookbag->id, $query)
1687             or return Apache2::Const::HTTP_INTERNAL_SERVER_ERROR;
1688
1689         my (undef, @recs) = $self->get_records_and_facets(
1690             [ map {$_->target_biblio_record_entry->id} @$items ],
1691             undef, 
1692             {flesh => '{mra}'}
1693         );
1694
1695         $ctx->{bookbags_marc_xml}{$_->{id}} = $_->{marc_xml} for @recs;
1696
1697         $bookbag->items($items);
1698     }
1699
1700     $e->rollback;
1701     return Apache2::Const::OK;
1702 }
1703
1704
1705 # actions are create, delete, show, hide, rename, add_rec, delete_item, place_hold
1706 # CGI is action, list=list_id, add_rec/record=bre_id, del_item=bucket_item_id, name=new_bucket_name
1707 sub load_myopac_bookbag_update {
1708     my ($self, $action, $list_id, @hold_recs) = @_;
1709     my $e = $self->editor;
1710     my $cgi = $self->cgi;
1711
1712     # save_notes is effectively another action, but is passed in a separate
1713     # CGI parameter for what are really just layout reasons.
1714     $action = 'save_notes' if $cgi->param('save_notes');
1715     $action ||= $cgi->param('action');
1716
1717     $list_id ||= $cgi->param('list');
1718
1719     my @add_rec = $cgi->param('add_rec') || $cgi->param('record');
1720     my @selected_item = $cgi->param('selected_item');
1721     my $shared = $cgi->param('shared');
1722     my $name = $cgi->param('name');
1723     my $description = $cgi->param('description');
1724     my $success = 0;
1725     my $list;
1726
1727     # This url intentionally leaves off the edit_notes parameter, but
1728     # may need to add some back in for paging.
1729
1730     my $url = "https://" . $self->apache->hostname .
1731         $self->ctx->{opac_root} . "/myopac/lists?";
1732
1733     foreach my $param (('loc', 'qtype', 'query', 'sort')) {
1734         if ($cgi->param($param)) {
1735             $url .= "$param=" . uri_escape($cgi->param($param)) . ";";
1736         }
1737     }
1738
1739     if ($action eq 'create') {
1740         $list = Fieldmapper::container::biblio_record_entry_bucket->new;
1741         $list->name($name);
1742         $list->description($description);
1743         $list->owner($e->requestor->id);
1744         $list->btype('bookbag');
1745         $list->pub($shared ? 't' : 'f');
1746         $success = $U->simplereq('open-ils.actor', 
1747             'open-ils.actor.container.create', $e->authtoken, 'biblio', $list)
1748
1749     } elsif($action eq 'place_hold') {
1750
1751         # @hold_recs comes from anon lists redirect; selected_itesm comes from existing buckets
1752         unless (@hold_recs) {
1753             if (@selected_item) {
1754                 my $items = $e->search_container_biblio_record_entry_bucket_item({id => \@selected_item});
1755                 @hold_recs = map { $_->target_biblio_record_entry } @$items;
1756             }
1757         }
1758                 
1759         return Apache2::Const::OK unless @hold_recs;
1760         $logger->info("placing holds from list page on: @hold_recs");
1761
1762         my $url = $self->ctx->{opac_root} . '/place_hold?hold_type=T';
1763         $url .= ';hold_target=' . $_ for @hold_recs;
1764         foreach my $param (('loc', 'qtype', 'query')) {
1765             if ($cgi->param($param)) {
1766                 $url .= ";$param=" . uri_escape($cgi->param($param));
1767             }
1768         }
1769         return $self->generic_redirect($url);
1770
1771     } else {
1772
1773         $list = $e->retrieve_container_biblio_record_entry_bucket($list_id);
1774
1775         return Apache2::Const::HTTP_BAD_REQUEST unless 
1776             $list and $list->owner == $e->requestor->id;
1777     }
1778
1779     if($action eq 'delete') {
1780         $success = $U->simplereq('open-ils.actor', 
1781             'open-ils.actor.container.full_delete', $e->authtoken, 'biblio', $list_id);
1782
1783     } elsif($action eq 'show') {
1784         unless($U->is_true($list->pub)) {
1785             $list->pub('t');
1786             $success = $U->simplereq('open-ils.actor', 
1787                 'open-ils.actor.container.update', $e->authtoken, 'biblio', $list);
1788         }
1789
1790     } elsif($action eq 'hide') {
1791         if($U->is_true($list->pub)) {
1792             $list->pub('f');
1793             $success = $U->simplereq('open-ils.actor', 
1794                 'open-ils.actor.container.update', $e->authtoken, 'biblio', $list);
1795         }
1796
1797     } elsif($action eq 'rename') {
1798         if($name) {
1799             $list->name($name);
1800             $success = $U->simplereq('open-ils.actor', 
1801                 'open-ils.actor.container.update', $e->authtoken, 'biblio', $list);
1802         }
1803
1804     } elsif($action eq 'add_rec') {
1805         foreach my $add_rec (@add_rec) {
1806             my $item = Fieldmapper::container::biblio_record_entry_bucket_item->new;
1807             $item->bucket($list_id);
1808             $item->target_biblio_record_entry($add_rec);
1809             $success = $U->simplereq('open-ils.actor', 
1810                 'open-ils.actor.container.item.create', $e->authtoken, 'biblio', $item);
1811             last unless $success;
1812         }
1813
1814     } elsif($action eq 'del_item') {
1815         foreach (@selected_item) {
1816             $success = $U->simplereq(
1817                 'open-ils.actor',
1818                 'open-ils.actor.container.item.delete', $e->authtoken, 'biblio', $_
1819             );
1820             last unless $success;
1821         }
1822     } elsif ($action eq 'save_notes') {
1823         $success = $self->update_bookbag_item_notes;
1824         $url .= "&bbid=" . uri_escape($cgi->param("bbid")) if $cgi->param("bbid");
1825     }
1826
1827     return $self->generic_redirect($url) if $success;
1828
1829     # XXX FIXME Bucket failure doesn't have a page to show the user anything
1830     # right now. User just sees a 404 currently.
1831
1832     $self->ctx->{bucket_action} = $action;
1833     $self->ctx->{bucket_action_failed} = 1;
1834     return Apache2::Const::OK;
1835 }
1836
1837 sub update_bookbag_item_notes {
1838     my ($self) = @_;
1839     my $e = $self->editor;
1840
1841     my @note_keys = grep /^note-\d+/, keys(%{$self->cgi->Vars});
1842     my @item_keys = grep /^item-\d+/, keys(%{$self->cgi->Vars});
1843
1844     # We're going to leverage an API call that's already been written to check
1845     # permissions appropriately.
1846
1847     my $a = create OpenSRF::AppSession("open-ils.actor");
1848     my $method = "open-ils.actor.container.item_note.cud";
1849
1850     for my $note_key (@note_keys) {
1851         my $note;
1852
1853         my $id = ($note_key =~ /(\d+)/)[0];
1854
1855         if (!($note =
1856             $e->retrieve_container_biblio_record_entry_bucket_item_note($id))) {
1857             my $event = $e->die_event;
1858             $self->apache->log->warn(
1859                 "error retrieving cbrebin id $id, got event " .
1860                 $event->{textcode}
1861             );
1862             $a->kill_me;
1863             $self->ctx->{bucket_action_event} = $event;
1864             return;
1865         }
1866
1867         if (length($self->cgi->param($note_key))) {
1868             $note->ischanged(1);
1869             $note->note($self->cgi->param($note_key));
1870         } else {
1871             $note->isdeleted(1);
1872         }
1873
1874         my $r = $a->request($method, $e->authtoken, "biblio", $note)->gather(1);
1875
1876         if (defined $U->event_code($r)) {
1877             $self->apache->log->warn(
1878                 "attempt to modify cbrebin " . $note->id .
1879                 " returned event " .  $r->{textcode}
1880             );
1881             $e->rollback;
1882             $a->kill_me;
1883             $self->ctx->{bucket_action_event} = $r;
1884             return;
1885         }
1886     }
1887
1888     for my $item_key (@item_keys) {
1889         my $id = int(($item_key =~ /(\d+)/)[0]);
1890         my $text = $self->cgi->param($item_key);
1891
1892         chomp $text;
1893         next unless length $text;
1894
1895         my $note = new Fieldmapper::container::biblio_record_entry_bucket_item_note;
1896         $note->isnew(1);
1897         $note->item($id);
1898         $note->note($text);
1899
1900         my $r = $a->request($method, $e->authtoken, "biblio", $note)->gather(1);
1901
1902         if (defined $U->event_code($r)) {
1903             $self->apache->log->warn(
1904                 "attempt to create cbrebin for item " . $note->item .
1905                 " returned event " .  $r->{textcode}
1906             );
1907             $e->rollback;
1908             $a->kill_me;
1909             $self->ctx->{bucket_action_event} = $r;
1910             return;
1911         }
1912     }
1913
1914     $a->kill_me;
1915     return 1;   # success
1916 }
1917
1918 sub load_myopac_bookbag_print {
1919     my ($self) = @_;
1920
1921     my $id = int($self->cgi->param("list"));
1922
1923     my ($sorter, $modifier) = $self->_get_bookbag_sort_params("sort");
1924
1925     my $item_search =
1926         $self->_prepare_bookbag_container_query($id, $sorter, $modifier);
1927
1928     my $bbag;
1929
1930     # Get the bookbag object itself, assuming we're allowed to.
1931     if ($self->editor->allowed("VIEW_CONTAINER")) {
1932
1933         $bbag = $self->editor->retrieve_container_biblio_record_entry_bucket($id) or return Apache2::Const::HTTP_INTERNAL_SERVER_ERROR;
1934     } else {
1935         my $bookbags = $self->editor->search_container_biblio_record_entry_bucket(
1936             {
1937                 "id" => $id,
1938                 "-or" => {
1939                     "owner" => $self->editor->requestor->id,
1940                     "pub" => "t"
1941                 }
1942             }
1943         ) or return Apache2::Const::HTTP_INTERNAL_SERVER_ERROR;
1944
1945         $bbag = pop @$bookbags;
1946     }
1947
1948     # If we have a bookbag we're allowed to look at, issue the A/T event
1949     # to get CSV, passing as a user param that search query we built before.
1950     if ($bbag) {
1951         $self->ctx->{csv} = $U->fire_object_event(
1952             undef, "container.biblio_record_entry_bucket.csv",
1953             $bbag, $self->editor->requestor->home_ou,
1954             undef, {"item_search" => $item_search}
1955         );
1956     }
1957
1958     # Create a reasonable filename and set the content disposition to
1959     # provoke browser download dialogs.
1960     (my $filename = $bbag->id . $bbag->name) =~ s/[^a-z0-9_ -]//gi;
1961
1962     return $self->set_file_download_headers("$filename.csv");
1963 }
1964
1965 sub load_myopac_circ_history_export {
1966     my $self = shift;
1967     my $e = $self->editor;
1968     my $filename = $self->cgi->param('filename') || 'circ_history.csv';
1969
1970     my $ids = $e->json_query({
1971         select => {
1972             au => [{
1973                 column => 'id', 
1974                 transform => 'action.usr_visible_circs', 
1975                 result_field => 'id'
1976             }]
1977         },
1978         from => 'au',
1979         where => {id => $e->requestor->id} 
1980     });
1981
1982     $self->ctx->{csv} = $U->fire_object_event(
1983         undef, 
1984         'circ.format.history.csv',
1985         $e->search_action_circulation({id => [map {$_->{id}} @$ids]}, {substream =>1}),
1986         $self->editor->requestor->home_ou
1987     );
1988
1989     return $self->set_file_download_headers($filename);
1990 }
1991
1992 sub load_password_reset {
1993     my $self = shift;
1994     my $cgi = $self->cgi;
1995     my $ctx = $self->ctx;
1996     my $barcode = $cgi->param('barcode');
1997     my $username = $cgi->param('username');
1998     my $email = $cgi->param('email');
1999     my $pwd1 = $cgi->param('pwd1');
2000     my $pwd2 = $cgi->param('pwd2');
2001     my $uuid = $ctx->{page_args}->[0];
2002
2003     if ($uuid) {
2004
2005         $logger->info("patron password reset with uuid $uuid");
2006
2007         if ($pwd1 and $pwd2) {
2008
2009             if ($pwd1 eq $pwd2) {
2010
2011                 my $response = $U->simplereq(
2012                     'open-ils.actor', 
2013                     'open-ils.actor.patron.password_reset.commit',
2014                     $uuid, $pwd1);
2015
2016                 $logger->info("patron password reset response " . Dumper($response));
2017
2018                 if ($U->event_code($response)) { # non-success event
2019                     
2020                     my $code = $response->{textcode};
2021                     
2022                     if ($code eq 'PATRON_NOT_AN_ACTIVE_PASSWORD_RESET_REQUEST') {
2023                         $ctx->{pwreset} = {style => 'error', status => 'NOT_ACTIVE'};
2024                     }
2025
2026                     if ($code eq 'PATRON_PASSWORD_WAS_NOT_STRONG') {
2027                         $ctx->{pwreset} = {style => 'error', status => 'NOT_STRONG'};
2028                     }
2029
2030                 } else { # success
2031
2032                     $ctx->{pwreset} = {style => 'success', status => 'SUCCESS'};
2033                 }
2034
2035             } else { # passwords not equal
2036
2037                 $ctx->{pwreset} = {style => 'error', status => 'NO_MATCH'};
2038             }
2039
2040         } else { # 2 password values needed
2041
2042             $ctx->{pwreset} = {status => 'TWO_PASSWORDS'};
2043         }
2044
2045     } elsif ($barcode or $username) {
2046
2047         my @params = $barcode ? ('barcode', $barcode) : ('username', $username);
2048         push(@params, $email) if $email;
2049
2050         $U->simplereq(
2051             'open-ils.actor', 
2052             'open-ils.actor.patron.password_reset.request', @params);
2053
2054         $ctx->{pwreset} = {status => 'REQUEST_SUCCESS'};
2055     }
2056
2057     $logger->info("patron password reset resulted in " . Dumper($ctx->{pwreset}));
2058     return Apache2::Const::OK;
2059 }
2060
2061 1;