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