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