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