]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/src/perlmods/lib/OpenILS/WWW/EGCatLoader/Account.pm
LP#1208875: follow-up to standardize extract fields
[working/Evergreen.git] / Open-ILS / src / perlmods / lib / OpenILS / WWW / EGCatLoader / Account.pm
1 package OpenILS::WWW::EGCatLoader;
2 use strict; use warnings;
3 use Apache2::Const -compile => qw(OK DECLINED FORBIDDEN HTTP_INTERNAL_SERVER_ERROR REDIRECT HTTP_BAD_REQUEST);
4 use OpenSRF::Utils::Logger qw/$logger/;
5 use OpenILS::Utils::CStoreEditor qw/:funcs/;
6 use OpenILS::Utils::Fieldmapper;
7 use OpenILS::Application::AppUtils;
8 use OpenILS::Event;
9 use OpenSRF::Utils::JSON;
10 use OpenSRF::Utils::Cache;
11 use Digest::MD5 qw(md5_hex);
12 use Data::Dumper;
13 $Data::Dumper::Indent = 0;
14 use DateTime;
15 my $U = 'OpenILS::Application::AppUtils';
16
17 sub prepare_extended_user_info {
18     my $self = shift;
19     my @extra_flesh = @_;
20     my $e = $self->editor;
21
22     # are we already in a transaction?
23     my $local_xact = !$e->{xact_id};
24     $e->xact_begin if $local_xact;
25
26     # keep the original user object so we can restore
27     # login-specific data (e.g. workstation)
28     my $usr = $self->ctx->{user};
29
30     $self->ctx->{user} = $self->editor->retrieve_actor_user([
31         $self->ctx->{user}->id,
32         {
33             flesh => 1,
34             flesh_fields => {
35                 au => [qw/card home_ou addresses ident_type billing_address/, @extra_flesh]
36                 # ...
37             }
38         }
39     ]);
40
41     $e->rollback if $local_xact;
42
43     $self->ctx->{user}->wsid($usr->wsid);
44     $self->ctx->{user}->ws_ou($usr->ws_ou);
45
46     # discard replaced (negative-id) addresses.
47     $self->ctx->{user}->addresses([
48         grep {$_->id > 0} @{$self->ctx->{user}->addresses} ]);
49
50     return Apache2::Const::HTTP_INTERNAL_SERVER_ERROR
51         unless $self->ctx->{user};
52
53     return;
54 }
55
56 # Given an event returned by a failed attempt to create a hold, do we have
57 # permission to override?  XXX Should the permission check be scoped to a
58 # given org_unit context?
59 sub test_could_override {
60     my ($self, $event) = @_;
61
62     return 0 unless $event;
63     return 1 if $self->editor->allowed($event->{textcode} . ".override");
64     return 1 if $event->{"fail_part"} and
65         $self->editor->allowed($event->{"fail_part"} . ".override");
66     return 0;
67 }
68
69 # Find out whether we care that local copies are available
70 sub local_avail_concern {
71     my ($self, $hold_target, $hold_type, $pickup_lib) = @_;
72
73     my $would_block = $self->ctx->{get_org_setting}->
74         ($pickup_lib, "circ.holds.hold_has_copy_at.block");
75     my $would_alert = (
76         $self->ctx->{get_org_setting}->
77             ($pickup_lib, "circ.holds.hold_has_copy_at.alert") and
78                 not $self->cgi->param("override")
79     ) unless $would_block;
80
81     if ($would_block or $would_alert) {
82         my $args = {
83             "hold_target" => $hold_target,
84             "hold_type" => $hold_type,
85             "org_unit" => $pickup_lib
86         };
87         my $local_avail = $U->simplereq(
88             "open-ils.circ",
89             "open-ils.circ.hold.has_copy_at", $self->editor->authtoken, $args
90         );
91         $logger->info(
92             "copy availability information for " . Dumper($args) .
93             " is " . Dumper($local_avail)
94         );
95         if (%$local_avail) { # if hash not empty
96             $self->ctx->{hold_copy_available} = $local_avail;
97             return ($would_block, $would_alert);
98         }
99     }
100
101     return (0, 0);
102 }
103
104 # context additions:
105 #   user : au object, fleshed
106 sub load_myopac_prefs {
107     my $self = shift;
108     my $cgi = $self->cgi;
109     my $e = $self->editor;
110     my $pending_addr = $cgi->param('pending_addr');
111     my $replace_addr = $cgi->param('replace_addr');
112     my $delete_pending = $cgi->param('delete_pending');
113
114     $self->prepare_extended_user_info;
115     my $user = $self->ctx->{user};
116
117     my $lock_usernames = $self->ctx->{get_org_setting}->($e->requestor->home_ou, 'opac.lock_usernames');
118     if(defined($lock_usernames) and $lock_usernames == 1) {
119         # Policy says no username changes
120         $self->ctx->{username_change_disallowed} = 1;
121     } else {
122         my $username_unlimit = $self->ctx->{get_org_setting}->($e->requestor->home_ou, 'opac.unlimit_usernames');
123         if(!$username_unlimit) {
124             my $regex_check = $self->ctx->{get_org_setting}->($e->requestor->home_ou, 'opac.barcode_regex');
125             if(!$regex_check) {
126                 # Default is "starts with a number"
127                 $regex_check = '^\d+';
128             }
129             # You already have a username?
130             if($regex_check and $self->ctx->{user}->usrname !~ /$regex_check/) {
131                 $self->ctx->{username_change_disallowed} = 1;
132             }
133         }
134     }
135
136     return Apache2::Const::OK unless
137         $pending_addr or $replace_addr or $delete_pending;
138
139     my @form_fields = qw/address_type street1 street2 city county state country post_code/;
140
141     my $paddr;
142     if( $pending_addr ) { # update an existing pending address
143
144         ($paddr) = grep { $_->id == $pending_addr } @{$user->addresses};
145         return Apache2::Const::HTTP_BAD_REQUEST unless $paddr;
146         $paddr->$_( $cgi->param($_) ) for @form_fields;
147
148     } elsif( $replace_addr ) { # create a new pending address for 'replace_addr'
149
150         $paddr = Fieldmapper::actor::user_address->new;
151         $paddr->isnew(1);
152         $paddr->usr($user->id);
153         $paddr->pending('t');
154         $paddr->replaces($replace_addr);
155         $paddr->$_( $cgi->param($_) ) for @form_fields;
156
157     } elsif( $delete_pending ) {
158         $paddr = $e->retrieve_actor_user_address($delete_pending);
159         return Apache2::Const::HTTP_BAD_REQUEST unless
160             $paddr and $paddr->usr == $user->id and $U->is_true($paddr->pending);
161         $paddr->isdeleted(1);
162     }
163
164     my $resp = $U->simplereq(
165         'open-ils.actor',
166         'open-ils.actor.user.address.pending.cud',
167         $e->authtoken, $paddr);
168
169     if( $U->event_code($resp) ) {
170         $logger->error("Error updating pending address: $resp");
171         return Apache2::Const::HTTP_INTERNAL_SERVER_ERROR;
172     }
173
174     # in light of these changes, re-fetch latest data
175     $e->xact_begin;
176     $self->prepare_extended_user_info;
177     $e->rollback;
178
179     return Apache2::Const::OK;
180 }
181
182 sub load_myopac_prefs_notify {
183     my $self = shift;
184     my $e = $self->editor;
185
186
187     my $stat = $self->_load_user_with_prefs;
188     return $stat if $stat;
189
190     my $user_prefs = $self->fetch_optin_prefs;
191     $user_prefs = $self->update_optin_prefs($user_prefs)
192         if $self->cgi->request_method eq 'POST';
193
194     $self->ctx->{opt_in_settings} = $user_prefs;
195
196     return Apache2::Const::OK
197         unless $self->cgi->request_method eq 'POST';
198
199     my %settings;
200     my $set_map = $self->ctx->{user_setting_map};
201
202     foreach my $key (qw/
203         opac.default_phone
204         opac.default_sms_notify
205     /) {
206         my $val = $self->cgi->param($key);
207         $settings{$key}= $val unless $$set_map{$key} eq $val;
208     }
209
210     my $key = 'opac.default_sms_carrier';
211     my $val = $self->cgi->param('sms_carrier');
212     $settings{$key}= $val unless $$set_map{$key} eq $val;
213
214     $key = 'opac.hold_notify';
215     my @notify_methods = ();
216     if ($self->cgi->param($key . ".email") eq 'on') {
217         push @notify_methods, "email";
218     }
219     if ($self->cgi->param($key . ".phone") eq 'on') {
220         push @notify_methods, "phone";
221     }
222     if ($self->cgi->param($key . ".sms") eq 'on') {
223         push @notify_methods, "sms";
224     }
225     $val = join("|",@notify_methods);
226     $settings{$key}= $val unless $$set_map{$key} eq $val;
227
228     # Send the modified settings off to be saved
229     $U->simplereq(
230         'open-ils.actor',
231         'open-ils.actor.patron.settings.update',
232         $self->editor->authtoken, undef, \%settings);
233
234     # re-fetch user prefs
235     $self->ctx->{updated_user_settings} = \%settings;
236     return $self->_load_user_with_prefs || Apache2::Const::OK;
237 }
238
239 sub fetch_optin_prefs {
240     my $self = shift;
241     my $e = $self->editor;
242
243     # fetch all of the opt-in settings the user has access to
244     # XXX: user's should in theory have options to opt-in to notices
245     # for remote locations, but that opens the door for a large
246     # set of generally un-used opt-ins.. needs discussion
247     my $opt_ins =  $U->simplereq(
248         'open-ils.actor',
249         'open-ils.actor.event_def.opt_in.settings.atomic',
250         $e->authtoken, $e->requestor->home_ou);
251
252     # some opt-ins are staff-only
253     $opt_ins = [ grep { $U->is_true($_->opac_visible) } @$opt_ins ];
254
255     # fetch user setting values for each of the opt-in settings
256     my $user_set = $U->simplereq(
257         'open-ils.actor',
258         'open-ils.actor.patron.settings.retrieve',
259         $e->authtoken,
260         $e->requestor->id,
261         [map {$_->name} @$opt_ins]
262     );
263
264     return [map { {cust => $_, value => $user_set->{$_->name} } } @$opt_ins];
265 }
266
267 sub load_myopac_messages {
268     my $self = shift;
269     my $e = $self->editor;
270     my $ctx = $self->ctx;
271     my $cgi = $self->cgi;
272
273     my $limit  = $cgi->param('limit') || 20;
274     my $offset = $cgi->param('offset') || 0;
275
276     my $pcrud = OpenSRF::AppSession->create('open-ils.pcrud');
277     $pcrud->connect();
278
279     my $action = $cgi->param('action') || '';
280     if ($action) {
281         my ($changed, $failed) = $self->_handle_message_action($pcrud, $action);
282         if ($changed > 0 || $failed > 0) {
283             $ctx->{message_update_action} = $action;
284             $ctx->{message_update_changed} = $changed;
285             $ctx->{message_update_failed} = $failed;
286             $self->update_dashboard_stats();
287         }
288     }
289
290     my $single = $cgi->param('single') || 0;
291     my $id = $cgi->param('message_id');
292
293     my $messages;
294     my $fetch_all = 1;
295     if (!$action && $single && $id) {
296         $messages = $self->_fetch_and_mark_read_single_message($pcrud, $id);
297         if (scalar(@$messages) == 1) {
298             $ctx->{display_single_message} = 1;
299             $ctx->{patron_message_id} = $id;
300             $fetch_all = 0;
301         }
302     }
303
304     if ($fetch_all) {
305         # fetch all the messages
306         ($ctx->{patron_messages_count}, $messages) =
307             $self->_fetch_user_messages($pcrud, $offset, $limit);
308     }
309
310     $pcrud->kill_me;
311
312     foreach my $aum (@$messages) {
313
314         push @{ $ctx->{patron_messages} }, {
315             id          => $aum->id,
316             title       => $aum->title,
317             message     => $aum->message,
318             create_date => $aum->create_date,
319             is_read     => defined($aum->read_date) ? 1 : 0,
320             library     => $aum->sending_lib->name,
321         };
322     }
323
324     $ctx->{patron_messages_limit} = $limit;
325     $ctx->{patron_messages_offset} = $offset;
326
327     return Apache2::Const::OK;
328 }
329
330 sub _fetch_and_mark_read_single_message {
331     my $self = shift;
332     my $pcrud = shift;
333     my $id = shift;
334
335     $pcrud->request('open-ils.pcrud.transaction.begin', $self->editor->authtoken)->gather(1);
336     my $messages = $pcrud->request(
337         'open-ils.pcrud.search.auml.atomic',
338         $self->editor->authtoken,
339         {
340             usr     => $self->editor->requestor->id,
341             deleted => 'f',
342             id      => $id,
343         },
344         {
345             flesh => 1,
346             flesh_fields => { auml => ['sending_lib'] },
347         }
348     )->gather(1);
349     if (@$messages) {
350         $messages->[0]->read_date('now');
351         $pcrud->request(
352             'open-ils.pcrud.update.auml',
353             $self->editor->authtoken,
354             $messages->[0]
355         )->gather(1);
356     }
357     $pcrud->request('open-ils.pcrud.transaction.commit', $self->editor->authtoken)->gather(1);
358
359     $self->update_dashboard_stats();
360
361     return $messages;
362 }
363
364 sub _fetch_user_messages {
365     my $self = shift;
366     my $pcrud = shift;
367     my $offset = shift;
368     my $limit = shift;
369
370     my %paging = ($limit or $offset) ? (limit => $limit, offset => $offset) : ();
371
372     my $all_messages = $pcrud->request(
373         'open-ils.pcrud.id_list.auml.atomic',
374         $self->editor->authtoken,
375         {
376             usr     => $self->editor->requestor->id,
377             deleted => 'f'
378         },
379         {}
380     )->gather(1);
381
382     my $messages = $pcrud->request(
383         'open-ils.pcrud.search.auml.atomic',
384         $self->editor->authtoken,
385         {
386             usr     => $self->editor->requestor->id,
387             deleted => 'f'
388         },
389         {
390             flesh => 1,
391             flesh_fields => { auml => ['sending_lib'] },
392             order_by => { auml => 'create_date DESC' },
393             %paging
394         }
395     )->gather(1);
396
397     return scalar(@$all_messages), $messages;
398 }
399
400 sub _handle_message_action {
401     my $self = shift;
402     my $pcrud = shift;
403     my $action = shift;
404     my $cgi = $self->cgi;
405
406     my @ids = $cgi->param('message_id');
407     return (0, 0) unless @ids;
408
409     my $changed = 0;
410     my $failed = 0;
411     $pcrud->request('open-ils.pcrud.transaction.begin', $self->editor->authtoken)->gather(1);
412     for my $id (@ids) {
413         my $aum = $pcrud->request(
414             'open-ils.pcrud.retrieve.auml',
415             $self->editor->authtoken,
416             $id
417         )->gather(1);
418         next unless $aum;
419         if      ($action eq 'mark_read') {
420             $aum->read_date('now');
421         } elsif ($action eq 'mark_unread') {
422             $aum->clear_read_date();
423         } elsif ($action eq 'mark_deleted') {
424             $aum->deleted('t');
425         }
426         $pcrud->request('open-ils.pcrud.update.auml', $self->editor->authtoken, $aum)->gather(1) ?
427             $changed++ :
428             $failed++;
429     }
430     if ($failed) {
431         $pcrud->request('open-ils.pcrud.transaction.rollback', $self->editor->authtoken)->gather(1);
432         $changed = 0;
433         $failed = scalar(@ids);
434     } else {
435         $pcrud->request('open-ils.pcrud.transaction.commit', $self->editor->authtoken)->gather(1);
436     }
437     return ($changed, $failed);
438 }
439
440 sub _load_lists_and_settings {
441     my $self = shift;
442     my $e = $self->editor;
443     my $stat = $self->_load_user_with_prefs;
444     unless ($stat) {
445         my $exclude = 0;
446         my $setting_map = $self->ctx->{user_setting_map};
447         $exclude = $$setting_map{'opac.default_list'} if ($$setting_map{'opac.default_list'});
448         $self->ctx->{bookbags} = $e->search_container_biblio_record_entry_bucket(
449             [
450                 {owner => $self->ctx->{user}->id, btype => 'bookbag', id => {'<>' => $exclude}}, {
451                     order_by => {cbreb => 'name'},
452                     limit => $self->cgi->param('limit') || 10,
453                     offset => $self->cgi->param('offset') || 0
454                 }
455             ]
456         );
457         # We also want a total count of the user's bookbags.
458         my $q = {
459             'select' => { 'cbreb' => [ { 'column' => 'id', 'transform' => 'count', 'aggregate' => 'true', 'alias' => 'count' } ] },
460             'from' => 'cbreb',
461             'where' => { 'btype' => 'bookbag', 'owner' => $self->ctx->{user}->id }
462         };
463         my $r = $e->json_query($q);
464         $self->ctx->{bookbag_count} = $r->[0]->{'count'};
465         # Someone has requested that we use the default list's name
466         # rather than "Default List."
467         if ($exclude) {
468             $q = {
469                 'select' => {'cbreb' => ['name']},
470                 'from' => 'cbreb',
471                 'where' => {'id' => $exclude}
472             };
473             $r = $e->json_query($q);
474             $self->ctx->{default_bookbag} = $r->[0]->{'name'};
475         }
476     } else {
477         return $stat;
478     }
479     return undef;
480 }
481
482 sub update_optin_prefs {
483     my $self = shift;
484     my $user_prefs = shift;
485     my $e = $self->editor;
486     my @settings = $self->cgi->param('setting');
487     my %newsets;
488
489     # apply now-true settings
490     for my $applied (@settings) {
491         # see if setting is already applied to this user
492         next if grep { $_->{cust}->name eq $applied and $_->{value} } @$user_prefs;
493         $newsets{$applied} = OpenSRF::Utils::JSON->true;
494     }
495
496     # remove now-false settings
497     for my $pref (grep { $_->{value} } @$user_prefs) {
498         $newsets{$pref->{cust}->name} = undef
499             unless grep { $_ eq $pref->{cust}->name } @settings;
500     }
501
502     $U->simplereq(
503         'open-ils.actor',
504         'open-ils.actor.patron.settings.update',
505         $e->authtoken, $e->requestor->id, \%newsets);
506
507     # update the local prefs to match reality
508     for my $pref (@$user_prefs) {
509         $pref->{value} = $newsets{$pref->{cust}->name}
510             if exists $newsets{$pref->{cust}->name};
511     }
512
513     return $user_prefs;
514 }
515
516 sub _load_user_with_prefs {
517     my $self = shift;
518     my $stat = $self->prepare_extended_user_info('settings');
519     return $stat if $stat; # not-OK
520
521     $self->ctx->{user_setting_map} = {
522         map { $_->name => OpenSRF::Utils::JSON->JSON2perl($_->value) }
523             @{$self->ctx->{user}->settings}
524     };
525
526     return undef;
527 }
528
529 sub _get_bookbag_sort_params {
530     my ($self, $param_name) = @_;
531
532     # The interface that feeds this cgi parameter will provide a single
533     # argument for a QP sort filter, and potentially a modifier after a period.
534     # In practice this means the "sort" parameter will be something like
535     # "titlesort" or "authorsort.descending".
536     my $sorter = $self->cgi->param($param_name) || "";
537     my $modifier;
538     if ($sorter) {
539         $sorter =~ s/^(.*?)\.(.*)/$1/;
540         $modifier = $2 || undef;
541     }
542
543     return ($sorter, $modifier);
544 }
545
546 sub _prepare_bookbag_container_query {
547     my ($self, $container_id, $sorter, $modifier) = @_;
548
549     return sprintf(
550         "container(bre,bookbag,%d,%s)%s%s",
551         $container_id, $self->editor->authtoken,
552         ($sorter ? " sort($sorter)" : ""),
553         ($modifier ? "#$modifier" : "")
554     );
555 }
556
557 sub _prepare_anonlist_sorting_query {
558     my ($self, $list, $sorter, $modifier) = @_;
559
560     return sprintf(
561         "record_list(%s)%s%s",
562         join(",", @$list),
563         ($sorter ? " sort($sorter)" : ""),
564         ($modifier ? "#$modifier" : "")
565     );
566 }
567
568
569 sub load_myopac_prefs_settings {
570     my $self = shift;
571
572     my @user_prefs = qw/
573         opac.hits_per_page
574         opac.default_search_location
575         opac.default_pickup_location
576         opac.temporary_list_no_warn
577     /;
578
579     my $stat = $self->_load_user_with_prefs;
580     return $stat if $stat;
581
582     # if behind-desk holds are supported and the user
583     # setting which controls the value is opac-visible,
584     # add the setting to the list of settings to manage.
585     # note: this logic may need to be changed later to
586     # check whether behind-the-desk holds are supported
587     # anywhere the patron may select as a pickup lib.
588     my $e = $self->editor;
589     my $bdous = $self->ctx->{get_org_setting}->(
590         $e->requestor->home_ou,
591         'circ.holds.behind_desk_pickup_supported');
592
593     if ($bdous) {
594         my $setting =
595             $e->retrieve_config_usr_setting_type(
596                 'circ.holds_behind_desk');
597
598         if ($U->is_true($setting->opac_visible)) {
599             push(@user_prefs, 'circ.holds_behind_desk');
600             $self->ctx->{behind_desk_supported} = 1;
601         }
602     }
603
604     return Apache2::Const::OK
605         unless $self->cgi->request_method eq 'POST';
606
607     # some setting values from the form don't match the
608     # required value/format for the db, so they have to be
609     # individually translated.
610
611     my %settings;
612     my $set_map = $self->ctx->{user_setting_map};
613
614     foreach my $key (@user_prefs) {
615         my $val = $self->cgi->param($key);
616         $settings{$key}= $val unless $$set_map{$key} eq $val;
617     }
618
619     # 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     if(@create_targets) {
1293
1294         # holdable formats may be different for each MR hold.
1295         # map each set to the ID of the target.
1296         my $holdable_formats = {};
1297         if ($hold_type eq 'M') {
1298             $holdable_formats->{$_->{target_id}} =
1299                 $_->{holdable_formats} for @hold_data;
1300         }
1301
1302         my $bses = OpenSRF::AppSession->create('open-ils.circ');
1303         my $breq = $bses->request(
1304             $method,
1305             $e->authtoken,
1306             $data_filler->({
1307                 patronid => $usr,
1308                 pickup_lib => $pickup_lib,
1309                 hold_type => $hold_type,
1310                 holdable_formats_map => $holdable_formats
1311             }),
1312             \@create_targets
1313         );
1314
1315         while (my $resp = $breq->recv) {
1316
1317             $resp = $resp->content;
1318             $logger->info('batch hold placement result: ' . OpenSRF::Utils::JSON->perl2JSON($resp));
1319
1320             if ($U->event_code($resp)) {
1321                 $ctx->{general_hold_error} = $resp;
1322                 last;
1323             }
1324
1325             my ($hdata) = grep {$_->{target_id} eq $resp->{target}} @hold_data;
1326             my $result = $resp->{result};
1327
1328             if ($U->event_code($result)) {
1329                 # e.g. permission denied
1330                 $hdata->{hold_failed} = 1;
1331                 $hdata->{hold_failed_event} = $result;
1332
1333             } else {
1334
1335                 if(not ref $result and $result > 0) {
1336                     # successul hold returns the hold ID
1337
1338                     $hdata->{hold_success} = $result;
1339
1340                 } else {
1341                     # hold-specific failure event
1342                     $hdata->{hold_failed} = 1;
1343
1344                     if (ref $result eq 'HASH') {
1345                         $hdata->{hold_failed_event} = $result->{last_event};
1346
1347                         if ($result->{age_protected_copy}) {
1348                             my %temp = %{$hdata->{hold_failed_event}};
1349                             my $theTextcode = $temp{"textcode"};
1350                             $theTextcode.=".override";
1351                             $hdata->{could_override} = $self->editor->allowed( $theTextcode );
1352                             $hdata->{age_protect} = 1;
1353                         } else {
1354                             $hdata->{could_override} = $result->{place_unfillable} ||
1355                                 $self->test_could_override($hdata->{hold_failed_event});
1356                         }
1357                     } elsif (ref $result eq 'ARRAY') {
1358                         $hdata->{hold_failed_event} = $result->[0];
1359
1360                         if ($result->[3]) { # age_protect_only
1361                             my %temp = %{$hdata->{hold_failed_event}};
1362                             my $theTextcode = $temp{"textcode"};
1363                             $theTextcode.=".override";
1364                             $hdata->{could_override} = $self->editor->allowed( $theTextcode );
1365                             $hdata->{age_protect} = 1;
1366                         } else {
1367                             $hdata->{could_override} = $result->[4] || # place_unfillable
1368                                 $self->test_could_override($hdata->{hold_failed_event});
1369                         }
1370                     }
1371                 }
1372             }
1373         }
1374
1375         $bses->kill_me;
1376     }
1377 }
1378
1379 # pull the selected formats and languages for metarecord holds
1380 # from the CGI params and map them into the JSON holdable
1381 # formats...er, format.
1382 # if no metarecord is provided, we'll pull it from the target
1383 # of the provided hold.
1384 sub compile_holdable_formats {
1385     my ($self, $mr_id, $hold_id) = @_;
1386     my $e = $self->editor;
1387     my $cgi = $self->cgi;
1388
1389     # exit early if not needed
1390     return undef unless
1391         grep /metarecord_formats_|metarecord_langs_/,
1392         $cgi->param;
1393
1394     # CGI params are based on the MR id, since during hold placement
1395     # we have no old ID.  During hold edit, map the hold ID back to
1396     # the metarecod target.
1397     $mr_id =
1398         $e->retrieve_action_hold_request($hold_id)->target
1399         unless $mr_id;
1400
1401     my $format_attr = $self->ctx->{get_cgf}->(
1402         'opac.metarecord.holds.format_attr');
1403
1404     if (!$format_attr) {
1405         $logger->error("Missing config.global_flag: ".
1406             "opac.metarecord.holds.format_attr!");
1407         return "";
1408     }
1409
1410     $format_attr = $format_attr->value;
1411
1412     # during hold placement or edit submission, the user selects
1413     # which of the available formats/langs are acceptable.
1414     # Capture those here as the holdable_formats for the MR hold.
1415     my @selected_formats = $cgi->param("metarecord_formats_$mr_id");
1416     my @selected_langs = $cgi->param("metarecord_langs_$mr_id");
1417
1418     # map the selected attrs into the JSON holdable_formats structure
1419     my $blob = {};
1420     if (@selected_formats) {
1421         $blob->{0} = [
1422             map { {_attr => $format_attr, _val => $_} }
1423             @selected_formats
1424         ];
1425     }
1426     if (@selected_langs) {
1427         $blob->{1} = [
1428             map { {_attr => 'item_lang', _val => $_} }
1429             @selected_langs
1430         ];
1431     }
1432
1433     return OpenSRF::Utils::JSON->perl2JSON($blob);
1434 }
1435
1436 sub fetch_user_circs {
1437     my $self = shift;
1438     my $flesh = shift; # flesh bib data, etc.
1439     my $circ_ids = shift;
1440     my $limit = shift;
1441     my $offset = shift;
1442
1443     my $e = $self->editor;
1444
1445     my @circ_ids;
1446
1447     if($circ_ids) {
1448         @circ_ids = @$circ_ids;
1449
1450     } else {
1451
1452         my $query = {
1453             select => {circ => ['id']},
1454             from => 'circ',
1455             where => {
1456                 '+circ' => {
1457                     usr => $e->requestor->id,
1458                     checkin_time => undef,
1459                     '-or' => [
1460                         {stop_fines => undef},
1461                         {stop_fines => {'not in' => ['LOST','CLAIMSRETURNED','LONGOVERDUE']}}
1462                     ],
1463                 }
1464             },
1465             order_by => {circ => ['due_date']}
1466         };
1467
1468         $query->{limit} = $limit if $limit;
1469         $query->{offset} = $offset if $offset;
1470
1471         my $ids = $e->json_query($query);
1472         @circ_ids = map {$_->{id}} @$ids;
1473     }
1474
1475     return [] unless @circ_ids;
1476
1477     my $qflesh = {
1478         flesh => 3,
1479         flesh_fields => {
1480             circ => ['target_copy'],
1481             acp => ['call_number'],
1482             acn => ['record']
1483         }
1484     };
1485
1486     $e->xact_begin;
1487     my $circs = $e->search_action_circulation(
1488         [{id => \@circ_ids}, ($flesh) ? $qflesh : {}], {substream => 1});
1489
1490     my @circs;
1491     for my $circ (@$circs) {
1492         push(@circs, {
1493             circ => $circ,
1494             marc_xml => ($flesh and $circ->target_copy->call_number->id != -1) ?
1495                 XML::LibXML->new->parse_string($circ->target_copy->call_number->record->marc) :
1496                 undef  # pre-cat copy, use the dummy title/author instead
1497         });
1498     }
1499     $e->rollback;
1500
1501     # make sure the final list is in the correct order
1502     my @sorted_circs;
1503     for my $id (@circ_ids) {
1504         push(
1505             @sorted_circs,
1506             (grep { $_->{circ}->id == $id } @circs)
1507         );
1508     }
1509
1510     return \@sorted_circs;
1511 }
1512
1513
1514 sub handle_circ_renew {
1515     my $self = shift;
1516     my $action = shift;
1517     my $ctx = $self->ctx;
1518
1519     my @renew_ids = $self->cgi->param('circ');
1520
1521     my $circs = $self->fetch_user_circs(0, ($action eq 'renew') ? [@renew_ids] : undef);
1522
1523     # TODO: fire off renewal calls in batches to speed things up
1524     my @responses;
1525     for my $circ (@$circs) {
1526
1527         my $evt = $U->simplereq(
1528             'open-ils.circ',
1529             'open-ils.circ.renew',
1530             $self->editor->authtoken,
1531             {
1532                 patron_id => $self->editor->requestor->id,
1533                 copy_id => $circ->{circ}->target_copy,
1534                 opac_renewal => 1
1535             }
1536         );
1537
1538         # TODO return these, then insert them into the circ data
1539         # blob that is shoved into the template for each circ
1540         # so the template won't have to match them
1541         push(@responses, {copy => $circ->{circ}->target_copy, evt => $evt});
1542     }
1543
1544     return @responses;
1545 }
1546
1547 sub load_myopac_circs {
1548     my $self = shift;
1549     my $e = $self->editor;
1550     my $ctx = $self->ctx;
1551
1552     $ctx->{circs} = [];
1553     my $limit = $self->cgi->param('limit') || 0; # 0 == unlimited
1554     my $offset = $self->cgi->param('offset') || 0;
1555     my $action = $self->cgi->param('action') || '';
1556
1557     # perform the renewal first if necessary
1558     my @results = $self->handle_circ_renew($action) if $action =~ /renew/;
1559
1560     $ctx->{circs} = $self->fetch_user_circs(1, undef, $limit, $offset);
1561
1562     my $success_renewals = 0;
1563     my $failed_renewals = 0;
1564     for my $data (@{$ctx->{circs}}) {
1565         my ($resp) = grep { $_->{copy} == $data->{circ}->target_copy->id } @results;
1566
1567         if($resp) {
1568             my $evt = ref($resp->{evt}) eq 'ARRAY' ? $resp->{evt}->[0] : $resp->{evt};
1569
1570             # extract the fail_part, if present, from the event payload;
1571             # since # the payload is an acp object in some cases,
1572             # blindly looking for a # 'fail_part' key in the template can
1573             # break things
1574             $evt->{fail_part} = (ref($evt->{payload}) eq 'HASH' && exists $evt->{payload}->{fail_part}) ?
1575                 $evt->{payload}->{fail_part} :
1576                 '';
1577
1578             $data->{renewal_response} = $evt;
1579             $success_renewals++ if $evt->{textcode} eq 'SUCCESS';
1580             $failed_renewals++ if $evt->{textcode} ne 'SUCCESS';
1581         }
1582     }
1583
1584     $ctx->{success_renewals} = $success_renewals;
1585     $ctx->{failed_renewals} = $failed_renewals;
1586
1587     return Apache2::Const::OK;
1588 }
1589
1590 sub load_myopac_circ_history {
1591     my $self = shift;
1592     my $e = $self->editor;
1593     my $ctx = $self->ctx;
1594     my $limit = $self->cgi->param('limit') || 15;
1595     my $offset = $self->cgi->param('offset') || 0;
1596     my $action = $self->cgi->param('action') || '';
1597
1598     my $circ_handle_result;
1599     $circ_handle_result = $self->handle_circ_update($action) if $action;
1600
1601     $ctx->{circ_history_limit} = $limit;
1602     $ctx->{circ_history_offset} = $offset;
1603
1604     # Defer limitation to circ_history.tt2 when sorting
1605     if ($self->cgi->param('sort')) {
1606         $limit = undef;
1607         $offset = undef;
1608     }
1609
1610     $ctx->{circs} = $self->fetch_user_circ_history(1, $limit, $offset);
1611     return Apache2::Const::OK;
1612 }
1613
1614 # if 'flesh' is set, copy data etc. is loaded and the return value is
1615 # a hash of 'circ' and 'marc_xml'.  Othwerwise, it's just a list of
1616 # auch objects.
1617 sub fetch_user_circ_history {
1618     my ($self, $flesh, $limit, $offset) = @_;
1619     my $e = $self->editor;
1620
1621     my %limits = ();
1622     $limits{offset} = $offset if defined $offset;
1623     $limits{limit} = $limit if defined $limit;
1624
1625     my %flesh_ops = (
1626         flesh => 3,
1627         flesh_fields => {
1628             auch => ['target_copy'],
1629             acp => ['call_number'],
1630             acn => ['record']
1631         },
1632     );
1633
1634     $e->xact_begin;
1635     my $circs = $e->search_action_user_circ_history(
1636         [
1637             {usr => $e->requestor->id},
1638             {   # order newest to oldest by default
1639                 order_by => {auch => 'xact_start DESC'},
1640                 $flesh ? %flesh_ops : (),
1641                 %limits
1642             }
1643         ],
1644         {substream => 1}
1645     );
1646     $e->rollback;
1647
1648     return $circs unless $flesh;
1649
1650     $e->xact_begin;
1651     my @circs;
1652     my %unapi_cache = ();
1653     for my $circ (@$circs) {
1654         if ($circ->target_copy->call_number->id == -1) {
1655             push(@circs, {
1656                 circ => $circ,
1657                 marc_xml => undef # pre-cat copy, use the dummy title/author instead
1658             });
1659             next;
1660         }
1661         my $bre_id = $circ->target_copy->call_number->record->id;
1662         my $unapi;
1663         if (exists $unapi_cache{$bre_id}) {
1664             $unapi = $unapi_cache{$bre_id};
1665         } else {
1666             my $result = $e->json_query({
1667                 from => [
1668                     'unapi.bre', $bre_id, 'marcxml','record','{mra}', undef, undef, undef
1669                 ]
1670             });
1671             if ($result) {
1672                 $unapi_cache{$bre_id} = $unapi = XML::LibXML->new->parse_string($result->[0]->{'unapi.bre'});
1673             }
1674         }
1675         if ($unapi) {
1676             push(@circs, {
1677                 circ => $circ,
1678                 marc_xml => $unapi
1679             });
1680         } else {
1681             push(@circs, {
1682                 circ => $circ,
1683                 marc_xml => undef # failed, but try to go on
1684             });
1685         }
1686     }
1687     $e->rollback;
1688
1689     return \@circs;
1690 }
1691
1692 sub handle_circ_update {
1693     my $self     = shift;
1694     my $action   = shift;
1695     my $circ_ids = shift;
1696
1697     my $circ_ids //= [$self->cgi->param('circ_id')];
1698
1699     if ($action =~ /delete/) {
1700         my $options = {
1701             circ_ids => $circ_ids,
1702         };
1703
1704         $U->simplereq(
1705             'open-ils.actor',
1706             'open-ils.actor.history.circ.clear',
1707             $self->editor->authtoken,
1708             $options
1709         );
1710     }
1711
1712     return;
1713 }
1714
1715 # TODO: action.usr_visible_holds does not return cancelled holds.  Should it?
1716 sub load_myopac_hold_history {
1717     my $self = shift;
1718     my $e = $self->editor;
1719     my $ctx = $self->ctx;
1720     my $limit = $self->cgi->param('limit') || 15;
1721     my $offset = $self->cgi->param('offset') || 0;
1722     $ctx->{hold_history_limit} = $limit;
1723     $ctx->{hold_history_offset} = $offset;
1724
1725     my $hold_ids = $e->json_query({
1726         select => {
1727             au => [{
1728                 column => 'id',
1729                 transform => 'action.usr_visible_holds',
1730                 result_field => 'id'
1731             }]
1732         },
1733         from => 'au',
1734         where => {id => $e->requestor->id}
1735     });
1736
1737     my $holds_object = $self->fetch_user_holds([map { $_->{id} } @$hold_ids], 0, 1, 0, $limit, $offset);
1738     if($holds_object->{holds}) {
1739         $ctx->{holds} = $holds_object->{holds};
1740     }
1741     $ctx->{hold_history_ids} = $holds_object->{all_ids};
1742
1743     return Apache2::Const::OK;
1744 }
1745
1746 sub load_myopac_payment_form {
1747     my $self = shift;
1748     my $r;
1749
1750     $r = $self->prepare_fines(undef, undef, [$self->cgi->param('xact'), $self->cgi->param('xact_misc')]) and return $r;
1751     $r = $self->prepare_extended_user_info and return $r;
1752
1753     return Apache2::Const::OK;
1754 }
1755
1756 # TODO: add other filter options as params/configs/etc.
1757 sub load_myopac_payments {
1758     my $self = shift;
1759     my $limit = $self->cgi->param('limit') || 20;
1760     my $offset = $self->cgi->param('offset') || 0;
1761     my $e = $self->editor;
1762
1763     $self->ctx->{payment_history_limit} = $limit;
1764     $self->ctx->{payment_history_offset} = $offset;
1765
1766     my $args = {};
1767     $args->{limit} = $limit if $limit;
1768     $args->{offset} = $offset if $offset;
1769
1770     if (my $max_age = $self->ctx->{get_org_setting}->(
1771         $e->requestor->home_ou, "opac.payment_history_age_limit"
1772     )) {
1773         my $min_ts = DateTime->now(
1774             "time_zone" => DateTime::TimeZone->new("name" => "local"),
1775         )->subtract("seconds" => interval_to_seconds($max_age))->iso8601();
1776
1777         $logger->info("XXX min_ts: $min_ts");
1778         $args->{"where"} = {"payment_ts" => {">=" => $min_ts}};
1779     }
1780
1781     $self->ctx->{payments} = $U->simplereq(
1782         'open-ils.actor',
1783         'open-ils.actor.user.payments.retrieve.atomic',
1784         $e->authtoken, $e->requestor->id, $args);
1785
1786     return Apache2::Const::OK;
1787 }
1788
1789 # 1. caches the form parameters
1790 # 2. loads the credit card payment "Processing..." page
1791 sub load_myopac_pay_init {
1792     my $self = shift;
1793     my $cache = OpenSRF::Utils::Cache->new('global');
1794
1795     my @payment_xacts = ($self->cgi->param('xact'), $self->cgi->param('xact_misc'));
1796
1797     if (!@payment_xacts) {
1798         # for consistency with load_myopac_payment_form() and
1799         # to preserve backwards compatibility, if no xacts are
1800         # selected, assume all (applicable) transactions are wanted.
1801         my $stat = $self->prepare_fines(undef, undef, [$self->cgi->param('xact'), $self->cgi->param('xact_misc')]);
1802         return $stat if $stat;
1803         @payment_xacts =
1804             map { $_->{xact}->id } (
1805                 @{$self->ctx->{fines}->{circulation}},
1806                 @{$self->ctx->{fines}->{grocery}}
1807         );
1808     }
1809
1810     return $self->generic_redirect unless @payment_xacts;
1811
1812     my $cc_args = {"where_process" => 1};
1813
1814     $cc_args->{$_} = $self->cgi->param($_) for (qw/
1815         number cvv2 expire_year expire_month billing_first
1816         billing_last billing_address billing_city billing_state
1817         billing_zip stripe_token
1818     /);
1819
1820     my $cache_args = {
1821         cc_args => $cc_args,
1822         user => $self->ctx->{user}->id,
1823         xacts => \@payment_xacts
1824     };
1825
1826     # generate a temporary cache token and cache the form data
1827     my $token = md5_hex($$ . time() . rand());
1828     $cache->put_cache($token, $cache_args, 30);
1829
1830     $logger->info("tpac caching payment info with token $token and xacts [@payment_xacts]");
1831
1832     # after we render the processing page, we quickly redirect to submit
1833     # the actual payment.  The refresh url contains the payment token.
1834     # It also contains the list of xact IDs, which allows us to clear the
1835     # cache at the earliest possible time while leaving a trace of which
1836     # transactions we were processing, so the UI can bring the user back
1837     # to the payment form w/ the same xacts if the payment fails.
1838
1839     my $refresh = "1; url=main_pay/$token?xact=" . pop(@payment_xacts);
1840     $refresh .= ";xact=$_" for @payment_xacts;
1841     $self->ctx->{refresh} = $refresh;
1842
1843     return Apache2::Const::OK;
1844 }
1845
1846 # retrieve the cached CC payment info and send off for processing
1847 sub load_myopac_pay {
1848     my $self = shift;
1849     my $token = $self->ctx->{page_args}->[0];
1850     return Apache2::Const::HTTP_BAD_REQUEST unless $token;
1851
1852     my $cache = OpenSRF::Utils::Cache->new('global');
1853     my $cache_args = $cache->get_cache($token);
1854     $cache->delete_cache($token);
1855
1856     # this page is loaded immediately after the token is created.
1857     # if the cached data is not there, it's because of an invalid
1858     # token (or cache failure) and not because of a timeout.
1859     return Apache2::Const::HTTP_BAD_REQUEST unless $cache_args;
1860
1861     my @payment_xacts = @{$cache_args->{xacts}};
1862     my $cc_args = $cache_args->{cc_args};
1863
1864     # as an added security check, verify the user submitting
1865     # the form is the same as the user whose data was cached
1866     return Apache2::Const::HTTP_BAD_REQUEST unless
1867         $cache_args->{user} == $self->ctx->{user}->id;
1868
1869     $logger->info("tpac paying fines with token $token and xacts [@payment_xacts]");
1870
1871     my $r;
1872     $r = $self->prepare_fines(undef, undef, \@payment_xacts) and return $r;
1873
1874     # balance_owed is computed specifically from the fines we're paying
1875     if ($self->ctx->{fines}->{balance_owed} <= 0) {
1876         $logger->info("tpac can't pay non-positive balance. xacts selected: [@payment_xacts]");
1877         return Apache2::Const::HTTP_BAD_REQUEST;
1878     }
1879
1880     my $args = {
1881         "cc_args" => $cc_args,
1882         "userid" => $self->ctx->{user}->id,
1883         "payment_type" => "credit_card_payment",
1884         "payments" => $self->prepare_fines_for_payment  # should be safe after self->prepare_fines
1885     };
1886
1887     my $resp = $U->simplereq("open-ils.circ", "open-ils.circ.money.payment",
1888         $self->editor->authtoken, $args, $self->ctx->{user}->last_xact_id
1889     );
1890
1891     $self->ctx->{"payment_response"} = $resp;
1892
1893     unless ($resp->{"textcode"}) {
1894         $self->ctx->{printable_receipt} = $U->simplereq(
1895         "open-ils.circ", "open-ils.circ.money.payment_receipt.print",
1896         $self->editor->authtoken, $resp->{payments}
1897         );
1898     }
1899
1900     return Apache2::Const::OK;
1901 }
1902
1903 sub load_myopac_receipt_print {
1904     my $self = shift;
1905
1906     $self->ctx->{printable_receipt} = $U->simplereq(
1907     "open-ils.circ", "open-ils.circ.money.payment_receipt.print",
1908     $self->editor->authtoken, [$self->cgi->param("payment")]
1909     );
1910
1911     return Apache2::Const::OK;
1912 }
1913
1914 sub load_myopac_receipt_email {
1915     my $self = shift;
1916
1917     # The following ML method doesn't actually check whether the user in
1918     # question has an email address, so we do.
1919     if ($self->ctx->{user}->email) {
1920         $self->ctx->{email_receipt_result} = $U->simplereq(
1921         "open-ils.circ", "open-ils.circ.money.payment_receipt.email",
1922         $self->editor->authtoken, [$self->cgi->param("payment")]
1923         );
1924     } else {
1925         $self->ctx->{email_receipt_result} =
1926             new OpenILS::Event("PATRON_NO_EMAIL_ADDRESS");
1927     }
1928
1929     return Apache2::Const::OK;
1930 }
1931
1932 sub prepare_fines {
1933     my ($self, $limit, $offset, $id_list) = @_;
1934
1935     # XXX TODO: check for failure after various network calls
1936
1937     # It may be unclear, but this result structure lumps circulation and
1938     # reservation fines together, and keeps grocery fines separate.
1939     $self->ctx->{"fines"} = {
1940         "circulation" => [],
1941         "grocery" => [],
1942         "total_paid" => 0,
1943         "total_owed" => 0,
1944         "balance_owed" => 0
1945     };
1946
1947     my $cstore = OpenSRF::AppSession->create('open-ils.cstore');
1948
1949     # TODO: This should really be a ML call, but the existing calls
1950     # return an excessive amount of data and don't offer streaming
1951
1952     my %paging = ($limit or $offset) ? (limit => $limit, offset => $offset) : ();
1953
1954     my $req = $cstore->request(
1955         'open-ils.cstore.direct.money.open_billable_transaction_summary.search',
1956         {
1957             usr => $self->editor->requestor->id,
1958             balance_owed => {'!=' => 0},
1959             ($id_list && @$id_list ? ("id" => $id_list) : ()),
1960         },
1961         {
1962             flesh => 4,
1963             flesh_fields => {
1964                 mobts => [qw/grocery circulation reservation/],
1965                 bresv => ['target_resource_type'],
1966                 brt => ['record'],
1967                 mg => ['billings'],
1968                 mb => ['btype'],
1969                 circ => ['target_copy'],
1970                 acp => ['call_number'],
1971                 acn => ['record']
1972             },
1973             order_by => { mobts => 'xact_start' },
1974             %paging
1975         }
1976     );
1977
1978     # Collect $$ amounts from each transaction for summing below.
1979     my (@paid_amounts, @owed_amounts, @balance_amounts);
1980
1981     while(my $resp = $req->recv) {
1982         my $mobts = $resp->content;
1983         my $circ = $mobts->circulation;
1984
1985         my $last_billing;
1986         if($mobts->grocery) {
1987             my @billings = sort { $a->billing_ts cmp $b->billing_ts } @{$mobts->grocery->billings};
1988             $last_billing = pop(@billings);
1989         }
1990
1991         push(@paid_amounts, $mobts->total_paid);
1992         push(@owed_amounts, $mobts->total_owed);
1993         push(@balance_amounts, $mobts->balance_owed);
1994
1995         my $marc_xml = undef;
1996         if ($mobts->xact_type eq 'reservation' and
1997             $mobts->reservation->target_resource_type->record) {
1998             $marc_xml = XML::LibXML->new->parse_string(
1999                 $mobts->reservation->target_resource_type->record->marc
2000             );
2001         } elsif ($mobts->xact_type eq 'circulation' and
2002             $circ->target_copy->call_number->id != -1) {
2003             $marc_xml = XML::LibXML->new->parse_string(
2004                 $circ->target_copy->call_number->record->marc
2005             );
2006         }
2007
2008         push(
2009             @{$self->ctx->{"fines"}->{$mobts->grocery ? "grocery" : "circulation"}},
2010             {
2011                 xact => $mobts,
2012                 last_grocery_billing => $last_billing,
2013                 marc_xml => $marc_xml
2014             }
2015         );
2016     }
2017
2018     $cstore->kill_me;
2019
2020     $self->ctx->{"fines"}->{total_paid}   = $U->fpsum(@paid_amounts);
2021     $self->ctx->{"fines"}->{total_owed}   = $U->fpsum(@owed_amounts);
2022     $self->ctx->{"fines"}->{balance_owed} = $U->fpsum(@balance_amounts);
2023
2024     return;
2025 }
2026
2027 sub prepare_fines_for_payment {
2028     # This assumes $self->prepare_fines has already been run
2029     my ($self) = @_;
2030
2031     my @results = ();
2032     if ($self->ctx->{fines}) {
2033         push @results, [$_->{xact}->id, $_->{xact}->balance_owed] foreach (
2034             @{$self->ctx->{fines}->{circulation}},
2035             @{$self->ctx->{fines}->{grocery}}
2036         );
2037     }
2038
2039     return \@results;
2040 }
2041
2042 sub load_myopac_main {
2043     my $self = shift;
2044     my $limit = $self->cgi->param('limit') || 0;
2045     my $offset = $self->cgi->param('offset') || 0;
2046     $self->ctx->{search_ou} = $self->_get_search_lib();
2047     $self->ctx->{user}->notes(
2048         $self->editor->search_actor_usr_note({
2049             usr => $self->ctx->{user}->id,
2050             pub => 't'
2051         })
2052     );
2053     return $self->prepare_fines($limit, $offset) || Apache2::Const::OK;
2054 }
2055
2056 sub load_myopac_update_email {
2057     my $self = shift;
2058     my $e = $self->editor;
2059     my $ctx = $self->ctx;
2060     my $email = $self->cgi->param('email') || '';
2061     my $current_pw = $self->cgi->param('current_pw') || '';
2062
2063     # needed for most up-to-date email address
2064     if (my $r = $self->prepare_extended_user_info) { return $r };
2065
2066     return Apache2::Const::OK
2067         unless $self->cgi->request_method eq 'POST';
2068
2069     unless($email =~ /.+\@.+\..+/) { # TODO better regex?
2070         $ctx->{invalid_email} = $email;
2071         return Apache2::Const::OK;
2072     }
2073
2074     my $stat = $U->simplereq(
2075         'open-ils.actor',
2076         'open-ils.actor.user.email.update',
2077         $e->authtoken, $email, $current_pw);
2078
2079     if($U->event_equals($stat, 'INCORRECT_PASSWORD')) {
2080         $ctx->{password_incorrect} = 1;
2081         return Apache2::Const::OK;
2082     }
2083
2084     unless ($self->cgi->param("redirect_to")) {
2085         my $url = $self->apache->unparsed_uri;
2086         $url =~ s/update_email/prefs/;
2087
2088         return $self->generic_redirect($url);
2089     }
2090
2091     return $self->generic_redirect;
2092 }
2093
2094 sub load_myopac_update_username {
2095     my $self = shift;
2096     my $e = $self->editor;
2097     my $ctx = $self->ctx;
2098     my $username = $self->cgi->param('username') || '';
2099     my $current_pw = $self->cgi->param('current_pw') || '';
2100
2101     $self->prepare_extended_user_info;
2102
2103     my $allow_change = 1;
2104     my $regex_check;
2105     my $lock_usernames = $self->ctx->{get_org_setting}->($e->requestor->home_ou, 'opac.lock_usernames');
2106     if(defined($lock_usernames) and $lock_usernames == 1) {
2107         # Policy says no username changes
2108         $allow_change = 0;
2109     } else {
2110         # We want this further down.
2111         $regex_check = $self->ctx->{get_org_setting}->($e->requestor->home_ou, 'opac.barcode_regex');
2112         my $username_unlimit = $self->ctx->{get_org_setting}->($e->requestor->home_ou, 'opac.unlimit_usernames');
2113         if(!$username_unlimit) {
2114             if(!$regex_check) {
2115                 # Default is "starts with a number"
2116                 $regex_check = '^\d+';
2117             }
2118             # You already have a username?
2119             if($regex_check and $self->ctx->{user}->usrname !~ /$regex_check/) {
2120                 $allow_change = 0;
2121             }
2122         }
2123     }
2124     if(!$allow_change) {
2125         my $url = $self->apache->unparsed_uri;
2126         $url =~ s/update_username/prefs/;
2127
2128         return $self->generic_redirect($url);
2129     }
2130
2131     return Apache2::Const::OK
2132         unless $self->cgi->request_method eq 'POST';
2133
2134     unless($username and $username !~ /\s/) { # any other username restrictions?
2135         $ctx->{invalid_username} = $username;
2136         return Apache2::Const::OK;
2137     }
2138
2139     # New username can't look like a barcode if we have a barcode regex
2140     if($regex_check and $username =~ /$regex_check/) {
2141         $ctx->{invalid_username} = $username;
2142         return Apache2::Const::OK;
2143     }
2144
2145     # New username has to look like a username if we have a username regex
2146     $regex_check = $ctx->{get_org_setting}->($e->requestor->home_ou, 'opac.username_regex');
2147     if($regex_check and $username !~ /$regex_check/) {
2148         $ctx->{invalid_username} = $username;
2149         return Apache2::Const::OK;
2150     }
2151
2152     if($username ne $e->requestor->usrname) {
2153
2154         my $evt = $U->simplereq(
2155             'open-ils.actor',
2156             'open-ils.actor.user.username.update',
2157             $e->authtoken, $username, $current_pw);
2158
2159         if($U->event_equals($evt, 'INCORRECT_PASSWORD')) {
2160             $ctx->{password_incorrect} = 1;
2161             return Apache2::Const::OK;
2162         }
2163
2164         if($U->event_equals($evt, 'USERNAME_EXISTS')) {
2165             $ctx->{username_exists} = $username;
2166             return Apache2::Const::OK;
2167         }
2168     }
2169
2170     my $url = $self->apache->unparsed_uri;
2171     $url =~ s/update_username/prefs/;
2172
2173     return $self->generic_redirect($url);
2174 }
2175
2176 sub load_myopac_update_password {
2177     my $self = shift;
2178     my $e = $self->editor;
2179     my $ctx = $self->ctx;
2180
2181     return Apache2::Const::OK
2182         unless $self->cgi->request_method eq 'POST';
2183
2184     my $current_pw = $self->cgi->param('current_pw') || '';
2185     my $new_pw = $self->cgi->param('new_pw') || '';
2186     my $new_pw2 = $self->cgi->param('new_pw2') || '';
2187
2188     unless($new_pw eq $new_pw2) {
2189         $ctx->{password_nomatch} = 1;
2190         return Apache2::Const::OK;
2191     }
2192
2193     my $pw_regex = $ctx->{get_org_setting}->($e->requestor->home_ou, 'global.password_regex');
2194
2195     if(!$pw_regex) {
2196         # This regex duplicates the JSPac's default "digit, letter, and 7 characters" rule
2197         $pw_regex = '(?=.*\d+.*)(?=.*[A-Za-z]+.*).{7,}';
2198     }
2199
2200     if($pw_regex and $new_pw !~ /$pw_regex/) {
2201         $ctx->{password_invalid} = 1;
2202         return Apache2::Const::OK;
2203     }
2204
2205     my $evt = $U->simplereq(
2206         'open-ils.actor',
2207         'open-ils.actor.user.password.update',
2208         $e->authtoken, $new_pw, $current_pw);
2209
2210
2211     if($U->event_equals($evt, 'INCORRECT_PASSWORD')) {
2212         $ctx->{password_incorrect} = 1;
2213         return Apache2::Const::OK;
2214     }
2215
2216     my $url = $self->apache->unparsed_uri;
2217     $url =~ s/update_password/prefs/;
2218
2219     return $self->generic_redirect($url);
2220 }
2221
2222 sub _update_bookbag_metadata {
2223     my ($self, $bookbag) = @_;
2224
2225     $bookbag->name($self->cgi->param("name"));
2226     $bookbag->description($self->cgi->param("description"));
2227
2228     return 1 if $self->editor->update_container_biblio_record_entry_bucket($bookbag);
2229     return 0;
2230 }
2231
2232 sub _get_lists_per_page {
2233     my $self = shift;
2234
2235     if($self->editor->requestor) {
2236         $self->timelog("Checking for opac.lists_per_page preference");
2237         # See if the user has a lists per page preference
2238         my $ipp = $self->editor->search_actor_user_setting({
2239             usr => $self->editor->requestor->id,
2240             name => 'opac.lists_per_page'
2241         })->[0];
2242         $self->timelog("Got opac.lists_per_page preference");
2243         return OpenSRF::Utils::JSON->JSON2perl($ipp->value) if $ipp;
2244     }
2245     return 10; # default
2246 }
2247
2248 sub _get_items_per_page {
2249     my $self = shift;
2250
2251     if($self->editor->requestor) {
2252         $self->timelog("Checking for opac.list_items_per_page preference");
2253         # See if the user has a list items per page preference
2254         my $ipp = $self->editor->search_actor_user_setting({
2255             usr => $self->editor->requestor->id,
2256             name => 'opac.list_items_per_page'
2257         })->[0];
2258         $self->timelog("Got opac.list_items_per_page preference");
2259         return OpenSRF::Utils::JSON->JSON2perl($ipp->value) if $ipp;
2260     }
2261     return 10; # default
2262 }
2263
2264 sub load_myopac_bookbags {
2265     my $self = shift;
2266     my $e = $self->editor;
2267     my $ctx = $self->ctx;
2268     my $limit = $self->_get_lists_per_page || 10;
2269     my $offset = $self->cgi->param('offset') || 0;
2270
2271     $ctx->{bookbags_limit} = $limit;
2272     $ctx->{bookbags_offset} = $offset;
2273
2274     # for list item pagination
2275     my $item_limit = $self->_get_items_per_page;
2276     my $item_page = $self->cgi->param('item_page') || 1;
2277     my $item_offset = ($item_page - 1) * $item_limit;
2278     $ctx->{bookbags_item_page} = $item_page;
2279
2280     my ($sorter, $modifier) = $self->_get_bookbag_sort_params("sort");
2281     $e->xact_begin; # replication...
2282
2283     my $rv = $self->load_mylist;
2284     unless($rv eq Apache2::Const::OK) {
2285         $e->rollback;
2286         return $rv;
2287     }
2288
2289     $ctx->{bookbags} = $e->search_container_biblio_record_entry_bucket(
2290         [
2291             {owner => $e->requestor->id, btype => 'bookbag'}, {
2292                 order_by => {cbreb => 'name'},
2293                 limit => $limit,
2294                 offset => $offset
2295             }
2296         ],
2297         {substream => 1}
2298     );
2299
2300     if(!$ctx->{bookbags}) {
2301         $e->rollback;
2302         return Apache2::Const::HTTP_INTERNAL_SERVER_ERROR;
2303     }
2304
2305     # We load the user prefs to get their default bookbag.
2306     $self->_load_user_with_prefs;
2307
2308     # We also want a total count of the user's bookbags.
2309     my $q = {
2310         'select' => { 'cbreb' => [ { 'column' => 'id', 'transform' => 'count', 'aggregate' => 'true', 'alias' => 'count' } ] },
2311         'from' => 'cbreb',
2312         'where' => { 'btype' => 'bookbag', 'owner' => $self->ctx->{user}->id }
2313     };
2314     my $r = $e->json_query($q);
2315     $ctx->{bookbag_count} = $r->[0]->{'count'};
2316
2317     # If the user wants a specific bookbag's items, load them.
2318
2319     if ($self->cgi->param("bbid")) {
2320         my ($bookbag) =
2321             grep { $_->id eq $self->cgi->param("bbid") } @{$ctx->{bookbags}};
2322
2323         if ($bookbag) {
2324             my $query = $self->_prepare_bookbag_container_query(
2325                 $bookbag->id, $sorter, $modifier
2326             );
2327
2328             # Calculate total count of the items in selected bookbag.
2329             # This total includes record entries that have no assets available.
2330             my $bb_search_results = $U->simplereq(
2331                 "open-ils.search", "open-ils.search.biblio.multiclass.query",
2332                 {"limit" => 1, "offset" => 0}, $query
2333             ); # we only need the count, so do the actual search with limit=1
2334
2335             if ($bb_search_results) {
2336                 $ctx->{bb_item_count} = $bb_search_results->{count};
2337             } else {
2338                 $logger->warn("search failed in load_myopac_bookbags()");
2339                 $ctx->{bb_item_count} = 0; # fallback value
2340             }
2341
2342             #calculate page count
2343             $ctx->{bb_page_count} = int ((($ctx->{bb_item_count} - 1) / $item_limit) + 1);
2344
2345             if ( ($self->cgi->param("action") || '') eq "editmeta") {
2346                 if (!$self->_update_bookbag_metadata($bookbag))  {
2347                     $e->rollback;
2348                     return Apache2::Const::HTTP_INTERNAL_SERVER_ERROR;
2349                 } else {
2350                     $e->commit;
2351                     my $url = $self->ctx->{opac_root} . '/myopac/lists?bbid=' .
2352                         $bookbag->id;
2353
2354                     foreach my $param (('loc', 'qtype', 'query', 'sort', 'offset', 'limit')) {
2355                         if ($self->cgi->param($param)) {
2356                             $url .= ";$param=" . uri_escape_utf8($self->cgi->param($param));
2357                         }
2358                     }
2359
2360                     return $self->generic_redirect($url);
2361                 }
2362             }
2363
2364             # we're done with our CStoreEditor.  Rollback here so
2365             # later calls don't cause a timeout, resulting in a
2366             # transaction rollback under the covers.
2367             $e->rollback;
2368
2369
2370             # For list items pagination
2371             my $args = {
2372                 "limit" => $item_limit,
2373                 "offset" => $item_offset
2374             };
2375
2376             my $items = $U->bib_container_items_via_search($bookbag->id, $query, $args)
2377                 or return Apache2::Const::HTTP_INTERNAL_SERVER_ERROR;
2378
2379             # capture pref_ou for callnumber filter/display
2380             $ctx->{pref_ou} = $self->_get_pref_lib() || $ctx->{search_ou};
2381
2382             # search for local callnumbers for display
2383             my $focus_ou = $ctx->{physical_loc} || $ctx->{pref_ou};
2384
2385             my (undef, @recs) = $self->get_records_and_facets(
2386                 [ map {$_->target_biblio_record_entry->id} @$items ],
2387                 undef,
2388                 {
2389                     flesh => '{mra,holdings_xml,acp,exclude_invisible_acn}',
2390                     flesh_depth => 1,
2391                     site => $ctx->{get_aou}->($focus_ou)->shortname,
2392                     pref_lib => $ctx->{pref_ou}
2393                 }
2394             );
2395
2396             $ctx->{bookbags_marc_xml}{$_->{id}} = $_->{marc_xml} for @recs;
2397
2398             $bookbag->items($items);
2399         }
2400     }
2401
2402     # If we have add_rec, we got here from the "Add to new list"
2403     # or "See all" popmenu items.
2404     if (my $add_rec = $self->cgi->param('add_rec')) {
2405         $self->ctx->{add_rec} = $add_rec;
2406         # But not in the staff client, 'cause that breaks things.
2407         unless ($self->ctx->{is_staff}) {
2408             # allow caller to provide the where_from in cases where
2409             # the referer is an intermediate error page
2410             if ($self->cgi->param('where_from')) {
2411                 $self->ctx->{where_from} = $self->cgi->param('where_from');
2412             } else {
2413                 $self->ctx->{where_from} = $self->ctx->{referer};
2414                 if ( my $anchor = $self->cgi->param('anchor') ) {
2415                     $self->ctx->{where_from} =~ s/#.*|$/#$anchor/;
2416                 }
2417             }
2418         }
2419     }
2420
2421     # this rollback may be a dupe, but that's OK because
2422     # cstoreditor ignores dupe rollbacks
2423     $e->rollback;
2424
2425     return Apache2::Const::OK;
2426 }
2427
2428
2429 # actions are create, delete, show, hide, rename, add_rec, delete_item, place_hold
2430 # CGI is action, list=list_id, add_rec/record=bre_id, del_item=bucket_item_id, name=new_bucket_name
2431 sub load_myopac_bookbag_update {
2432     my ($self, $action, $list_id, @hold_recs) = @_;
2433     my $e = $self->editor;
2434     my $cgi = $self->cgi;
2435
2436     # save_notes is effectively another action, but is passed in a separate
2437     # CGI parameter for what are really just layout reasons.
2438     $action = 'save_notes' if $cgi->param('save_notes');
2439     $action ||= $cgi->param('action');
2440
2441     $list_id ||= $cgi->param('list') || $cgi->param('bbid');
2442
2443     my @add_rec = $cgi->param('add_rec') || $cgi->param('record');
2444     my @selected_item = $cgi->param('selected_item');
2445     my $shared = $cgi->param('shared');
2446     my $name = $cgi->param('name');
2447     my $description = $cgi->param('description');
2448     my $success = 0;
2449     my $list;
2450
2451     # This url intentionally leaves off the edit_notes parameter, but
2452     # may need to add some back in for paging.
2453
2454     my $url = $self->ctx->{proto} . "://" . $self->ctx->{hostname} .
2455         $self->ctx->{opac_root} . "/myopac/lists?";
2456
2457     foreach my $param (('loc', 'qtype', 'query', 'sort')) {
2458         if ($cgi->param($param)) {
2459             $url .= "$param=" . uri_escape_utf8($cgi->param($param)) . ";";
2460         }
2461     }
2462
2463     if ($action eq 'create') {
2464
2465         if ($name) {
2466             $list = Fieldmapper::container::biblio_record_entry_bucket->new;
2467             $list->name($name);
2468             $list->description($description);
2469             $list->owner($e->requestor->id);
2470             $list->btype('bookbag');
2471             $list->pub($shared ? 't' : 'f');
2472             $success = $U->simplereq('open-ils.actor',
2473                 'open-ils.actor.container.create', $e->authtoken, 'biblio', $list);
2474             if (ref($success) ne 'HASH' && scalar @add_rec) {
2475                 $list_id = (ref($success)) ? $success->id : $success;
2476                 foreach my $add_rec (@add_rec) {
2477                     my $item = Fieldmapper::container::biblio_record_entry_bucket_item->new;
2478                     $item->bucket($list_id);
2479                     $item->target_biblio_record_entry($add_rec);
2480                     $success = $U->simplereq('open-ils.actor',
2481                                             'open-ils.actor.container.item.create', $e->authtoken, 'biblio', $item);
2482                     last unless $success;
2483                 }
2484             }
2485             $url = $cgi->param('where_from') if ($success && $cgi->param('where_from'));
2486
2487         } else { # no name
2488             $self->ctx->{bucket_failure_noname} = 1;
2489         }
2490
2491     } elsif($action eq 'place_hold') {
2492
2493         # @hold_recs comes from anon lists redirect; selected_itesm comes from existing buckets
2494         unless (@hold_recs) {
2495             if (@selected_item) {
2496                 my $items = $e->search_container_biblio_record_entry_bucket_item({id => \@selected_item});
2497                 @hold_recs = map { $_->target_biblio_record_entry } @$items;
2498             }
2499         }
2500
2501         return Apache2::Const::OK unless @hold_recs;
2502         $logger->info("placing holds from list page on: @hold_recs");
2503
2504         my $url = $self->ctx->{opac_root} . '/place_hold?hold_type=T';
2505         $url .= ';hold_target=' . $_ for @hold_recs;
2506         foreach my $param (('loc', 'qtype', 'query')) {
2507             if ($cgi->param($param)) {
2508                 $url .= ";$param=" . uri_escape_utf8($cgi->param($param));
2509             }
2510         }
2511         return $self->generic_redirect($url);
2512
2513     } else {
2514
2515         $list = $e->retrieve_container_biblio_record_entry_bucket($list_id);
2516
2517         return Apache2::Const::HTTP_BAD_REQUEST unless
2518             $list and $list->owner == $e->requestor->id;
2519     }
2520
2521     if($action eq 'delete') {
2522         $success = $U->simplereq('open-ils.actor',
2523             'open-ils.actor.container.full_delete', $e->authtoken, 'biblio', $list_id);
2524         if ($success) {
2525             # We check to see if we're deleting the user's default list.
2526             $self->_load_user_with_prefs;
2527             my $settings_map = $self->ctx->{user_setting_map};
2528             if ($$settings_map{'opac.default_list'} == $list_id) {
2529                 # We unset the user's opac.default_list setting.
2530                 $success = $U->simplereq(
2531                     'open-ils.actor',
2532                     'open-ils.actor.patron.settings.update',
2533                     $e->authtoken,
2534                     $e->requestor->id,
2535                     { 'opac.default_list' => 0 }
2536                 );
2537             }
2538         }
2539     } elsif($action eq 'show') {
2540         unless($U->is_true($list->pub)) {
2541             $list->pub('t');
2542             $success = $U->simplereq('open-ils.actor',
2543                 'open-ils.actor.container.update', $e->authtoken, 'biblio', $list);
2544         }
2545
2546     } elsif($action eq 'hide') {
2547         if($U->is_true($list->pub)) {
2548             $list->pub('f');
2549             $success = $U->simplereq('open-ils.actor',
2550                 'open-ils.actor.container.update', $e->authtoken, 'biblio', $list);
2551         }
2552
2553     } elsif($action eq 'rename') {
2554         if($name) {
2555             $list->name($name);
2556             $success = $U->simplereq('open-ils.actor',
2557                 'open-ils.actor.container.update', $e->authtoken, 'biblio', $list);
2558         }
2559
2560     } elsif($action eq 'add_rec') {
2561         foreach my $add_rec (@add_rec) {
2562             my $item = Fieldmapper::container::biblio_record_entry_bucket_item->new;
2563             $item->bucket($list_id);
2564             $item->target_biblio_record_entry($add_rec);
2565             $success = $U->simplereq('open-ils.actor',
2566                 'open-ils.actor.container.item.create', $e->authtoken, 'biblio', $item);
2567             last unless $success;
2568         }
2569         # Redirect back where we came from if we have an anchor parameter:
2570         if ( my $anchor = $cgi->param('anchor') && !$self->ctx->{is_staff}) {
2571             $url = $self->ctx->{referer};
2572             $url =~ s/#.*|$/#$anchor/;
2573         } elsif ($cgi->param('where_from')) {
2574             # Or, if we have a "where_from" parameter.
2575             $url = $cgi->param('where_from');
2576         }
2577     } elsif ($action eq 'del_item') {
2578         foreach (@selected_item) {
2579             $success = $U->simplereq(
2580                 'open-ils.actor',
2581                 'open-ils.actor.container.item.delete', $e->authtoken, 'biblio', $_
2582             );
2583             last unless $success;
2584         }
2585     } elsif ($action eq 'save_notes') {
2586         $success = $self->update_bookbag_item_notes;
2587         $url .= "&bbid=" . uri_escape_utf8($cgi->param("bbid")) if $cgi->param("bbid");
2588     } elsif ($action eq 'make_default') {
2589         $success = $U->simplereq(
2590             'open-ils.actor',
2591             'open-ils.actor.patron.settings.update',
2592             $e->authtoken,
2593             $list->owner,
2594             { 'opac.default_list' => $list_id }
2595         );
2596     } elsif ($action eq 'remove_default') {
2597         $success = $U->simplereq(
2598             'open-ils.actor',
2599             'open-ils.actor.patron.settings.update',
2600             $e->authtoken,
2601             $list->owner,
2602             { 'opac.default_list' => 0 }
2603         );
2604     }
2605
2606     return $self->generic_redirect($url) if $success;
2607
2608     $self->ctx->{where_from} = $cgi->param('where_from');
2609     $self->ctx->{bucket_action} = $action;
2610     $self->ctx->{bucket_action_failed} = 1;
2611     return Apache2::Const::OK;
2612 }
2613
2614 sub update_bookbag_item_notes {
2615     my ($self) = @_;
2616     my $e = $self->editor;
2617
2618     my @note_keys = grep /^note-\d+/, keys(%{$self->cgi->Vars});
2619     my @item_keys = grep /^item-\d+/, keys(%{$self->cgi->Vars});
2620
2621     # We're going to leverage an API call that's already been written to check
2622     # permissions appropriately.
2623
2624     my $a = create OpenSRF::AppSession("open-ils.actor");
2625     my $method = "open-ils.actor.container.item_note.cud";
2626
2627     for my $note_key (@note_keys) {
2628         my $note;
2629
2630         my $id = ($note_key =~ /(\d+)/)[0];
2631
2632         if (!($note =
2633             $e->retrieve_container_biblio_record_entry_bucket_item_note($id))) {
2634             my $event = $e->die_event;
2635             $self->apache->log->warn(
2636                 "error retrieving cbrebin id $id, got event " .
2637                 $event->{textcode}
2638             );
2639             $a->kill_me;
2640             $self->ctx->{bucket_action_event} = $event;
2641             return;
2642         }
2643
2644         if (length($self->cgi->param($note_key))) {
2645             $note->ischanged(1);
2646             $note->note($self->cgi->param($note_key));
2647         } else {
2648             $note->isdeleted(1);
2649         }
2650
2651         my $r = $a->request($method, $e->authtoken, "biblio", $note)->gather(1);
2652
2653         if (defined $U->event_code($r)) {
2654             $self->apache->log->warn(
2655                 "attempt to modify cbrebin " . $note->id .
2656                 " returned event " .  $r->{textcode}
2657             );
2658             $e->rollback;
2659             $a->kill_me;
2660             $self->ctx->{bucket_action_event} = $r;
2661             return;
2662         }
2663     }
2664
2665     for my $item_key (@item_keys) {
2666         my $id = int(($item_key =~ /(\d+)/)[0]);
2667         my $text = $self->cgi->param($item_key);
2668
2669         chomp $text;
2670         next unless length $text;
2671
2672         my $note = new Fieldmapper::container::biblio_record_entry_bucket_item_note;
2673         $note->isnew(1);
2674         $note->item($id);
2675         $note->note($text);
2676
2677         my $r = $a->request($method, $e->authtoken, "biblio", $note)->gather(1);
2678
2679         if (defined $U->event_code($r)) {
2680             $self->apache->log->warn(
2681                 "attempt to create cbrebin for item " . $note->item .
2682                 " returned event " .  $r->{textcode}
2683             );
2684             $e->rollback;
2685             $a->kill_me;
2686             $self->ctx->{bucket_action_event} = $r;
2687             return;
2688         }
2689     }
2690
2691     $a->kill_me;
2692     return 1;   # success
2693 }
2694
2695 sub load_myopac_bookbag_print {
2696     my ($self) = @_;
2697
2698     my $id = int($self->cgi->param("list"));
2699
2700     my ($sorter, $modifier) = $self->_get_bookbag_sort_params("sort");
2701
2702     my $item_search =
2703         $self->_prepare_bookbag_container_query($id, $sorter, $modifier);
2704
2705     my $bbag;
2706
2707     # Get the bookbag object itself, assuming we're allowed to.
2708     if ($self->editor->allowed("VIEW_CONTAINER")) {
2709
2710         $bbag = $self->editor->retrieve_container_biblio_record_entry_bucket($id) or return Apache2::Const::HTTP_INTERNAL_SERVER_ERROR;
2711     } else {
2712         my $bookbags = $self->editor->search_container_biblio_record_entry_bucket(
2713             {
2714                 "id" => $id,
2715                 "-or" => {
2716                     "owner" => $self->editor->requestor->id,
2717                     "pub" => "t"
2718                 }
2719             }
2720         ) or return Apache2::Const::HTTP_INTERNAL_SERVER_ERROR;
2721
2722         $bbag = pop @$bookbags;
2723     }
2724
2725     # If we have a bookbag we're allowed to look at, issue the A/T event
2726     # to get CSV, passing as a user param that search query we built before.
2727     if ($bbag) {
2728         $self->ctx->{csv} = $U->fire_object_event(
2729             undef, "container.biblio_record_entry_bucket.csv",
2730             $bbag, $self->editor->requestor->home_ou,
2731             undef, {"item_search" => $item_search}
2732         );
2733     }
2734
2735     # Create a reasonable filename and set the content disposition to
2736     # provoke browser download dialogs.
2737     (my $filename = $bbag->id . $bbag->name) =~ s/[^a-z0-9_ -]//gi;
2738
2739     return $self->set_file_download_headers("$filename.csv");
2740 }
2741
2742 sub load_myopac_circ_history_export {
2743     my $self = shift;
2744     my $e = $self->editor;
2745     my $filename = $self->cgi->param('filename') || 'circ_history.csv';
2746
2747     my $circs = $self->fetch_user_circ_history(1);
2748
2749     $self->ctx->{csv}->{circs} = $circs;
2750     return $self->set_file_download_headers($filename, 'text/csv; encoding=UTF-8');
2751
2752 }
2753
2754 sub load_password_reset {
2755     my $self = shift;
2756     my $cgi = $self->cgi;
2757     my $ctx = $self->ctx;
2758     my $barcode = $cgi->param('barcode');
2759     my $username = $cgi->param('username');
2760     my $email = $cgi->param('email');
2761     my $pwd1 = $cgi->param('pwd1');
2762     my $pwd2 = $cgi->param('pwd2');
2763     my $uuid = $ctx->{page_args}->[0];
2764
2765     if ($uuid) {
2766
2767         $logger->info("patron password reset with uuid $uuid");
2768
2769         if ($pwd1 and $pwd2) {
2770
2771             if ($pwd1 eq $pwd2) {
2772
2773                 my $response = $U->simplereq(
2774                     'open-ils.actor',
2775                     'open-ils.actor.patron.password_reset.commit',
2776                     $uuid, $pwd1);
2777
2778                 $logger->info("patron password reset response " . Dumper($response));
2779
2780                 if ($U->event_code($response)) { # non-success event
2781
2782                     my $code = $response->{textcode};
2783
2784                     if ($code eq 'PATRON_NOT_AN_ACTIVE_PASSWORD_RESET_REQUEST') {
2785                         $ctx->{pwreset} = {style => 'error', status => 'NOT_ACTIVE'};
2786                     }
2787
2788                     if ($code eq 'PATRON_PASSWORD_WAS_NOT_STRONG') {
2789                         $ctx->{pwreset} = {style => 'error', status => 'NOT_STRONG'};
2790                     }
2791
2792                 } else { # success
2793
2794                     $ctx->{pwreset} = {style => 'success', status => 'SUCCESS'};
2795                 }
2796
2797             } else { # passwords not equal
2798
2799                 $ctx->{pwreset} = {style => 'error', status => 'NO_MATCH'};
2800             }
2801
2802         } else { # 2 password values needed
2803
2804             $ctx->{pwreset} = {status => 'TWO_PASSWORDS'};
2805         }
2806
2807     } elsif ($barcode or $username) {
2808
2809         my @params = $barcode ? ('barcode', $barcode) : ('username', $username);
2810         push(@params, $email) if $email;
2811
2812         $U->simplereq(
2813             'open-ils.actor',
2814             'open-ils.actor.patron.password_reset.request', @params);
2815
2816         $ctx->{pwreset} = {status => 'REQUEST_SUCCESS'};
2817     }
2818
2819     $logger->info("patron password reset resulted in " . Dumper($ctx->{pwreset}));
2820     return Apache2::Const::OK;
2821 }
2822
2823 1;