]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/src/perlmods/lib/OpenILS/WWW/EGCatLoader/Account.pm
Prevent unshared warnings in hold placement closure
[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 Data::Dumper;
11 $Data::Dumper::Indent = 0;
12 use DateTime;
13 my $U = 'OpenILS::Application::AppUtils';
14
15 sub prepare_extended_user_info {
16     my $self = shift;
17     my @extra_flesh = @_;
18     my $e = $self->editor;
19
20     # are we already in a transaction?
21     my $local_xact = !$e->{xact_id}; 
22     $e->xact_begin if $local_xact;
23
24     $self->ctx->{user} = $self->editor->retrieve_actor_user([
25         $self->ctx->{user}->id,
26         {
27             flesh => 1,
28             flesh_fields => {
29                 au => [qw/card home_ou addresses ident_type billing_address/, @extra_flesh]
30                 # ...
31             }
32         }
33     ]);
34
35     $e->rollback if $local_xact;
36
37     return Apache2::Const::HTTP_INTERNAL_SERVER_ERROR 
38         unless $self->ctx->{user};
39
40     return;
41 }
42
43 # Given an event returned by a failed attempt to create a hold, do we have
44 # permission to override?  XXX Should the permission check be scoped to a
45 # given org_unit context?
46 sub test_could_override {
47     my ($self, $event) = @_;
48
49     return 0 unless $event;
50     return 1 if $self->editor->allowed($event->{textcode} . ".override");
51     return 1 if $event->{"fail_part"} and
52         $self->editor->allowed($event->{"fail_part"} . ".override");
53     return 0;
54 }
55
56 # Find out whether we care that local copies are available
57 sub local_avail_concern {
58     my ($self, $hold_target, $hold_type, $pickup_lib) = @_;
59
60     my $would_block = $self->ctx->{get_org_setting}->
61         ($pickup_lib, "circ.holds.hold_has_copy_at.block");
62     my $would_alert = (
63         $self->ctx->{get_org_setting}->
64             ($pickup_lib, "circ.holds.hold_has_copy_at.alert") and
65                 not $self->cgi->param("override")
66     ) unless $would_block;
67
68     if ($would_block or $would_alert) {
69         my $args = {
70             "hold_target" => $hold_target,
71             "hold_type" => $hold_type,
72             "org_unit" => $pickup_lib
73         };
74         my $local_avail = $U->simplereq(
75             "open-ils.circ",
76             "open-ils.circ.hold.has_copy_at", $self->editor->authtoken, $args
77         );
78         $logger->info(
79             "copy availability information for " . Dumper($args) .
80             " is " . Dumper($local_avail)
81         );
82         if (%$local_avail) { # if hash not empty
83             $self->ctx->{hold_copy_available} = $local_avail;
84             return ($would_block, $would_alert);
85         }
86     }
87
88     return (0, 0);
89 }
90
91 # context additions: 
92 #   user : au object, fleshed
93 sub load_myopac_prefs {
94     my $self = shift;
95     my $cgi = $self->cgi;
96     my $e = $self->editor;
97     my $pending_addr = $cgi->param('pending_addr');
98     my $replace_addr = $cgi->param('replace_addr');
99     my $delete_pending = $cgi->param('delete_pending');
100
101     $self->prepare_extended_user_info;
102     my $user = $self->ctx->{user};
103
104     my $lock_usernames = $self->ctx->{get_org_setting}->($e->requestor->home_ou, 'opac.lock_usernames');
105     if($lock_usernames == 1) {
106         # Policy says no username changes
107         $self->ctx->{username_change_disallowed} = 1;
108     } else {
109         my $username_unlimit = $self->ctx->{get_org_setting}->($e->requestor->home_ou, 'opac.unlimit_usernames');
110         if($username_unlimit != 1) {
111             my $regex_check = $self->ctx->{get_org_setting}->($e->requestor->home_ou, 'opac.barcode_regex');
112             if(!$regex_check) {
113                 # Default is "starts with a number"
114                 $regex_check = '^\d+';
115             }
116             # You already have a username?
117             if($regex_check and $self->ctx->{user}->usrname !~ /$regex_check/) {
118                 $self->ctx->{username_change_disallowed} = 1;
119             }
120         }
121     }
122
123     return Apache2::Const::OK unless 
124         $pending_addr or $replace_addr or $delete_pending;
125
126     my @form_fields = qw/address_type street1 street2 city county state country post_code/;
127
128     my $paddr;
129     if( $pending_addr ) { # update an existing pending address
130
131         ($paddr) = grep { $_->id == $pending_addr } @{$user->addresses};
132         return Apache2::Const::HTTP_BAD_REQUEST unless $paddr;
133         $paddr->$_( $cgi->param($_) ) for @form_fields;
134
135     } elsif( $replace_addr ) { # create a new pending address for 'replace_addr'
136
137         $paddr = Fieldmapper::actor::user_address->new;
138         $paddr->isnew(1);
139         $paddr->usr($user->id);
140         $paddr->pending('t');
141         $paddr->replaces($replace_addr);
142         $paddr->$_( $cgi->param($_) ) for @form_fields;
143
144     } elsif( $delete_pending ) {
145         $paddr = $e->retrieve_actor_user_address($delete_pending);
146         return Apache2::Const::HTTP_BAD_REQUEST unless 
147             $paddr and $paddr->usr == $user->id and $U->is_true($paddr->pending);
148         $paddr->isdeleted(1);
149     }
150
151     my $resp = $U->simplereq(
152         'open-ils.actor', 
153         'open-ils.actor.user.address.pending.cud',
154         $e->authtoken, $paddr);
155
156     if( $U->event_code($resp) ) {
157         $logger->error("Error updating pending address: $resp");
158         return Apache2::Const::HTTP_INTERNAL_SERVER_ERROR;
159     }
160
161     # in light of these changes, re-fetch latest data
162     $e->xact_begin; 
163     $self->prepare_extended_user_info;
164     $e->rollback;
165
166     return Apache2::Const::OK;
167 }
168
169 sub load_myopac_prefs_notify {
170     my $self = shift;
171     my $e = $self->editor;
172
173     my $user_prefs = $self->fetch_optin_prefs;
174     $user_prefs = $self->update_optin_prefs($user_prefs)
175         if $self->cgi->request_method eq 'POST';
176
177     $self->ctx->{opt_in_settings} = $user_prefs;
178
179     my %settings;
180     my $set_map = $self->ctx->{user_setting_map};
181  
182     foreach my $key (qw/
183         opac.default_phone
184         opac.default_sms_notify
185     /) {
186         my $val = $self->cgi->param($key);
187         $settings{$key}= $val unless $$set_map{$key} eq $val;
188     }
189
190     my $key = 'opac.default_sms_carrier';
191     my $val = $self->cgi->param('sms_carrier');
192     $settings{$key}= $val unless $$set_map{$key} eq $val;
193
194     $key = 'opac.hold_notify';
195     my @notify_methods = ();
196     if ($self->cgi->param($key . ".email") eq 'on') {
197         push @notify_methods, "email";
198     }
199     if ($self->cgi->param($key . ".phone") eq 'on') {
200         push @notify_methods, "phone";
201     }
202     if ($self->cgi->param($key . ".sms") eq 'on') {
203         push @notify_methods, "sms";
204     }
205     $val = join("|",@notify_methods);
206     $settings{$key}= $val unless $$set_map{$key} eq $val;
207
208     # Send the modified settings off to be saved
209     $U->simplereq(
210         'open-ils.actor', 
211         'open-ils.actor.patron.settings.update',
212         $self->editor->authtoken, undef, \%settings);
213
214     # re-fetch user prefs 
215     $self->ctx->{updated_user_settings} = \%settings;
216     return $self->_load_user_with_prefs || Apache2::Const::OK;
217 }
218
219 sub fetch_optin_prefs {
220     my $self = shift;
221     my $e = $self->editor;
222
223     # fetch all of the opt-in settings the user has access to
224     # XXX: user's should in theory have options to opt-in to notices
225     # for remote locations, but that opens the door for a large
226     # set of generally un-used opt-ins.. needs discussion
227     my $opt_ins =  $U->simplereq(
228         'open-ils.actor',
229         'open-ils.actor.event_def.opt_in.settings.atomic',
230         $e->authtoken, $e->requestor->home_ou);
231
232     # some opt-ins are staff-only
233     $opt_ins = [ grep { $U->is_true($_->opac_visible) } @$opt_ins ];
234
235     # fetch user setting values for each of the opt-in settings
236     my $user_set = $U->simplereq(
237         'open-ils.actor',
238         'open-ils.actor.patron.settings.retrieve',
239         $e->authtoken, 
240         $e->requestor->id, 
241         [map {$_->name} @$opt_ins]
242     );
243
244     return [map { {cust => $_, value => $user_set->{$_->name} } } @$opt_ins];
245 }
246
247 sub update_optin_prefs {
248     my $self = shift;
249     my $user_prefs = shift;
250     my $e = $self->editor;
251     my @settings = $self->cgi->param('setting');
252     my %newsets;
253
254     # apply now-true settings
255     for my $applied (@settings) {
256         # see if setting is already applied to this user
257         next if grep { $_->{cust}->name eq $applied and $_->{value} } @$user_prefs;
258         $newsets{$applied} = OpenSRF::Utils::JSON->true;
259     }
260
261     # remove now-false settings
262     for my $pref (grep { $_->{value} } @$user_prefs) {
263         $newsets{$pref->{cust}->name} = undef 
264             unless grep { $_ eq $pref->{cust}->name } @settings;
265     }
266
267     $U->simplereq(
268         'open-ils.actor',
269         'open-ils.actor.patron.settings.update',
270         $e->authtoken, $e->requestor->id, \%newsets);
271
272     # update the local prefs to match reality
273     for my $pref (@$user_prefs) {
274         $pref->{value} = $newsets{$pref->{cust}->name} 
275             if exists $newsets{$pref->{cust}->name};
276     }
277
278     return $user_prefs;
279 }
280
281 sub _load_user_with_prefs {
282     my $self = shift;
283     my $stat = $self->prepare_extended_user_info('settings');
284     return $stat if $stat; # not-OK
285
286     $self->ctx->{user_setting_map} = {
287         map { $_->name => OpenSRF::Utils::JSON->JSON2perl($_->value) } 
288             @{$self->ctx->{user}->settings}
289     };
290
291     return undef;
292 }
293
294 sub _get_bookbag_sort_params {
295     my ($self, $param_name) = @_;
296
297     # The interface that feeds this cgi parameter will provide a single
298     # argument for a QP sort filter, and potentially a modifier after a period.
299     # In practice this means the "sort" parameter will be something like
300     # "titlesort" or "authorsort.descending".
301     my $sorter = $self->cgi->param($param_name) || "";
302     my $modifier;
303     if ($sorter) {
304         $sorter =~ s/^(.*?)\.(.*)/$1/;
305         $modifier = $2 || undef;
306     }
307
308     return ($sorter, $modifier);
309 }
310
311 sub _prepare_bookbag_container_query {
312     my ($self, $container_id, $sorter, $modifier) = @_;
313
314     return sprintf(
315         "container(bre,bookbag,%d,%s)%s%s",
316         $container_id, $self->editor->authtoken,
317         ($sorter ? " sort($sorter)" : ""),
318         ($modifier ? "#$modifier" : "")
319     );
320 }
321
322 sub _prepare_anonlist_sorting_query {
323     my ($self, $list, $sorter, $modifier) = @_;
324
325     return sprintf(
326         "record_list(%s)%s%s",
327         join(",", @$list),
328         ($sorter ? " sort($sorter)" : ""),
329         ($modifier ? "#$modifier" : "")
330     );
331 }
332
333
334 sub load_myopac_prefs_settings {
335     my $self = shift;
336
337     my @user_prefs = qw/
338         opac.hits_per_page
339         opac.default_search_location
340     /;
341
342     my $stat = $self->_load_user_with_prefs;
343     return $stat if $stat;
344
345     return Apache2::Const::OK
346         unless $self->cgi->request_method eq 'POST';
347
348     # some setting values from the form don't match the 
349     # required value/format for the db, so they have to be 
350     # individually translated.
351
352     my %settings;
353     my $set_map = $self->ctx->{user_setting_map};
354
355     foreach my $key (@user_prefs) {
356         my $val = $self->cgi->param($key);
357         $settings{$key}= $val unless $$set_map{$key} eq $val;
358     }
359
360     my $now = DateTime->now->strftime('%F');
361     foreach my $key (qw/history.circ.retention_start history.hold.retention_start/) {
362         my $val = $self->cgi->param($key);
363         if($val and $val eq 'on') {
364             # Set the start time to 'now' unless a start time already exists for the user
365             $settings{$key} = $now unless $$set_map{$key};
366         } else {
367             # clear the start time if one previously existed for the user
368             $settings{$key} = undef if $$set_map{$key};
369         }
370     }
371
372     # Send the modified settings off to be saved
373     $U->simplereq(
374         'open-ils.actor', 
375         'open-ils.actor.patron.settings.update',
376         $self->editor->authtoken, undef, \%settings);
377
378     # re-fetch user prefs 
379     $self->ctx->{updated_user_settings} = \%settings;
380     return $self->_load_user_with_prefs || Apache2::Const::OK;
381 }
382
383 sub fetch_user_holds {
384     my $self = shift;
385     my $hold_ids = shift;
386     my $ids_only = shift;
387     my $flesh = shift;
388     my $available = shift;
389     my $limit = shift;
390     my $offset = shift;
391
392     my $e = $self->editor;
393
394     if(!$hold_ids) {
395         my $circ = OpenSRF::AppSession->create('open-ils.circ');
396
397         $hold_ids = $circ->request(
398             'open-ils.circ.holds.id_list.retrieve.authoritative', 
399             $e->authtoken, 
400             $e->requestor->id
401         )->gather(1);
402         $circ->kill_me;
403     
404         $hold_ids = [ grep { defined $_ } @$hold_ids[$offset..($offset + $limit - 1)] ] if $limit or $offset;
405     }
406
407
408     return $hold_ids if $ids_only or @$hold_ids == 0;
409
410     my $args = {
411         suppress_notices => 1,
412         suppress_transits => 1,
413         suppress_mvr => 1,
414         suppress_patron_details => 1
415     };
416
417     # ----------------------------------------------------------------
418     # Collect holds in batches of $batch_size for faster retrieval
419
420     my $batch_size = 8;
421     my $batch_idx = 0;
422     my $mk_req_batch = sub {
423         my @ses;
424         my $top_idx = $batch_idx + $batch_size;
425         while($batch_idx < $top_idx) {
426             my $hold_id = $hold_ids->[$batch_idx++];
427             last unless $hold_id;
428             my $ses = OpenSRF::AppSession->create('open-ils.circ');
429             my $req = $ses->request(
430                 'open-ils.circ.hold.details.retrieve', 
431                 $e->authtoken, $hold_id, $args);
432             push(@ses, {ses => $ses, req => $req});
433         }
434         return @ses;
435     };
436
437     my $first = 1;
438     my(@collected, @holds, @ses);
439
440     while(1) {
441         @ses = $mk_req_batch->() if $first;
442         last if $first and not @ses;
443
444         if(@collected) {
445             # If desired by the caller, filter any holds that are not available.
446             if ($available) {
447                 @collected = grep { $_->{hold}->{status} == 4 } @collected;
448             }
449             while(my $blob = pop(@collected)) {
450                 my (undef, @data) = $self->get_records_and_facets(
451                     [$blob->{hold}->{bre_id}], undef, {flesh => '{mra}'}
452                 );
453                 $blob->{marc_xml} = $data[0]->{marc_xml};
454                 push(@holds, $blob);
455             }
456         }
457
458         for my $req_data (@ses) {
459             push(@collected, {hold => $req_data->{req}->gather(1)});
460             $req_data->{ses}->kill_me;
461         }
462
463         @ses = $mk_req_batch->();
464         last unless @collected or @ses;
465         $first = 0;
466     }
467
468     # put the holds back into the original server sort order
469     my @sorted;
470     for my $id (@$hold_ids) {
471         push @sorted, grep { $_->{hold}->{hold}->id == $id } @holds;
472     }
473
474     return \@sorted;
475 }
476
477 sub handle_hold_update {
478     my $self = shift;
479     my $action = shift;
480     my $hold_ids = shift;
481     my $e = $self->editor;
482     my $url;
483
484     my @hold_ids = ($hold_ids) ? @$hold_ids : $self->cgi->param('hold_id'); # for non-_all actions
485     @hold_ids = @{$self->fetch_user_holds(undef, 1)} if $action =~ /_all/;
486
487     my $circ = OpenSRF::AppSession->create('open-ils.circ');
488
489     if($action =~ /cancel/) {
490
491         for my $hold_id (@hold_ids) {
492             my $resp = $circ->request(
493                 'open-ils.circ.hold.cancel', $e->authtoken, $hold_id, 6 )->gather(1); # 6 == patron-cancelled-via-opac
494         }
495
496     } elsif ($action =~ /activate|suspend/) {
497         
498         my $vlist = [];
499         for my $hold_id (@hold_ids) {
500             my $vals = {id => $hold_id};
501
502             if($action =~ /activate/) {
503                 $vals->{frozen} = 'f';
504                 $vals->{thaw_date} = undef;
505
506             } elsif($action =~ /suspend/) {
507                 $vals->{frozen} = 't';
508                 # $vals->{thaw_date} = TODO;
509             }
510             push(@$vlist, $vals);
511         }
512
513         my $resp = $circ->request('open-ils.circ.hold.update.batch.atomic', $e->authtoken, undef, $vlist)->gather(1);
514         $self->ctx->{hold_suspend_post_capture} = 1 if 
515             grep {$U->event_equals($_, 'HOLD_SUSPEND_AFTER_CAPTURE')} @$resp;
516
517     } elsif ($action eq 'edit') {
518
519         my @vals = map {
520             my $val = {"id" => $_};
521             $val->{"frozen"} = $self->cgi->param("frozen");
522             $val->{"pickup_lib"} = $self->cgi->param("pickup_lib");
523
524             for my $field (qw/expire_time thaw_date/) {
525                 # XXX TODO make this support other date formats, not just
526                 # MM/DD/YYYY.
527                 next unless $self->cgi->param($field) =~
528                     m:^(\d{2})/(\d{2})/(\d{4})$:;
529                 $val->{$field} = "$3-$1-$2";
530             }
531             $val;
532         } @hold_ids;
533
534         $circ->request(
535             'open-ils.circ.hold.update.batch.atomic',
536             $e->authtoken, undef, \@vals
537         )->gather(1);   # LFW XXX test for failure
538         $url = 'https://' . $self->apache->hostname . $self->ctx->{opac_root} . '/myopac/holds';
539     }
540
541     $circ->kill_me;
542     return defined($url) ? $self->generic_redirect($url) : undef;
543 }
544
545 sub load_myopac_holds {
546     my $self = shift;
547     my $e = $self->editor;
548     my $ctx = $self->ctx;
549     
550     my $limit = $self->cgi->param('limit') || 0;
551     my $offset = $self->cgi->param('offset') || 0;
552     my $action = $self->cgi->param('action') || '';
553     my $hold_id = $self->cgi->param('id');
554     my $available = int($self->cgi->param('available') || 0);
555
556     my $hold_handle_result;
557     $hold_handle_result = $self->handle_hold_update($action) if $action;
558
559     $ctx->{holds} = $self->fetch_user_holds($hold_id ? [$hold_id] : undef, 0, 1, $available, $limit, $offset);
560
561     return defined($hold_handle_result) ? $hold_handle_result : Apache2::Const::OK;
562 }
563
564 my $data_filler;
565
566 sub load_place_hold {
567     my $self = shift;
568     my $ctx = $self->ctx;
569     my $gos = $ctx->{get_org_setting};
570     my $e = $self->editor;
571     my $cgi = $self->cgi;
572
573     $self->ctx->{page} = 'place_hold';
574     my @targets = $cgi->param('hold_target');
575     my @parts = $cgi->param('part');
576
577     $ctx->{hold_type} = $cgi->param('hold_type');
578     $ctx->{default_pickup_lib} = $e->requestor->home_ou; # unless changed below
579     $ctx->{email_notify} = $cgi->param('email_notify');
580     if ($cgi->param('phone_notify_checkbox')) {
581         $ctx->{phone_notify} = $cgi->param('phone_notify');
582     }
583     if ($cgi->param('sms_notify_checkbox')) {
584         $ctx->{sms_notify} = $cgi->param('sms_notify');
585         $ctx->{sms_carrier} = $cgi->param('sms_carrier');
586     }
587
588     return $self->generic_redirect unless @targets;
589
590     $logger->info("Looking at hold_type: " . $ctx->{hold_type} . " and targets: @targets");
591
592     # if the staff client provides a patron barcode, fetch the patron
593     if (my $bc = $self->cgi->cookie("patron_barcode")) {
594         $ctx->{patron_recipient} = $U->simplereq(
595             "open-ils.actor", "open-ils.actor.user.fleshed.retrieve_by_barcode",
596             $self->editor->authtoken, $bc
597         ) or return Apache2::Const::HTTP_BAD_REQUEST;
598
599         $ctx->{default_pickup_lib} = $ctx->{patron_recipient}->home_ou;
600     } else {
601         $ctx->{staff_recipient} = $self->editor->retrieve_actor_user([
602             $e->requestor->id,
603             {
604                 flesh => 1,
605                 flesh_fields => {
606                     au => ['settings']
607                 }
608             }
609         ]) or return Apache2::Const::HTTP_INTERNAL_SERVER_ERROR;
610     }
611     my $user_setting_map = {
612         map { $_->name => OpenSRF::Utils::JSON->JSON2perl($_->value) }
613             @{
614                 $ctx->{patron_recipient}
615                 ? $ctx->{patron_recipient}->settings
616                 : $ctx->{staff_recipient}->settings
617             }
618     };
619     $ctx->{user_setting_map} = $user_setting_map;
620
621     my $default_notify = $$user_setting_map{'opac.hold_notify'} || '';
622     if ($default_notify =~ /email/) {
623         $ctx->{default_email_notify} = 'checked';
624     } else {
625         $ctx->{default_email_notify} = '';
626     }
627     if ($default_notify =~ /phone/) {
628         $ctx->{default_phone_notify} = 'checked';
629     } else {
630         $ctx->{default_phone_notify} = '';
631     }
632     if ($default_notify =~ /sms/) {
633         $ctx->{default_sms_notify} = 'checked';
634     } else {
635         $ctx->{default_sms_notify} = '';
636     }
637
638     my $request_lib = $e->requestor->ws_ou;
639     my @hold_data;
640     $ctx->{hold_data} = \@hold_data;
641
642     $data_filler = sub {
643         my $hdata = shift;
644         if ($ctx->{email_notify}) { $hdata->{email_notify} = $ctx->{email_notify}; }
645         if ($ctx->{phone_notify}) { $hdata->{phone_notify} = $ctx->{phone_notify}; }
646         if ($ctx->{sms_notify}) { $hdata->{sms_notify} = $ctx->{sms_notify}; }
647         if ($ctx->{sms_carrier}) { $hdata->{sms_carrier} = $ctx->{sms_carrier}; }
648         return $hdata;
649     };
650
651     my $type_dispatch = {
652         T => sub {
653             my $recs = $e->batch_retrieve_biblio_record_entry(\@targets, {substream => 1});
654
655             for my $id (@targets) { # force back into the correct order
656                 my ($rec) = grep {$_->id eq $id} @$recs;
657
658                 # NOTE: if tpac ever supports locked-down pickup libs,
659                 # we'll need to pass a pickup_lib param along with the 
660                 # record to filter the set of monographic parts.
661                 my $parts = $U->simplereq(
662                     'open-ils.search',
663                     'open-ils.search.biblio.record_hold_parts', 
664                     {record => $rec->id}
665                 );
666
667                 # T holds on records that have parts are OK, but if the record has 
668                 # no non-part copies, the hold will ultimately fail.  When that 
669                 # happens, require the user to select a part.
670                 my $part_required = 0;
671                 if (@$parts) {
672                     my $np_copies = $e->json_query({
673                         select => { acp => [{column => 'id', transform => 'count', alias => 'count'}]}, 
674                         from => {acp => {acn => {}, acpm => {type => 'left'}}}, 
675                         where => {
676                             '+acp' => {deleted => 'f'},
677                             '+acn' => {deleted => 'f', record => $rec->id}, 
678                             '+acpm' => {id => undef}
679                         }
680                     });
681                     $part_required = 1 if $np_copies->[0]->{count} == 0;
682                 }
683
684                 push(@hold_data, $data_filler->({
685                     target => $rec,
686                     record => $rec,
687                     parts => $parts,
688                     part_required => $part_required
689                 }));
690             }
691         },
692         V => sub {
693             my $vols = $e->batch_retrieve_asset_call_number([
694                 \@targets, {
695                     "flesh" => 1,
696                     "flesh_fields" => {"acn" => ["record"]}
697                 }
698             ], {substream => 1});
699
700             for my $id (@targets) { 
701                 my ($vol) = grep {$_->id eq $id} @$vols;
702                 push(@hold_data, $data_filler->({target => $vol, record => $vol->record}));
703             }
704         },
705         C => sub {
706             my $copies = $e->batch_retrieve_asset_copy([
707                 \@targets, {
708                     "flesh" => 2,
709                     "flesh_fields" => {
710                         "acn" => ["record"],
711                         "acp" => ["call_number"]
712                     }
713                 }
714             ], {substream => 1});
715
716             for my $id (@targets) { 
717                 my ($copy) = grep {$_->id eq $id} @$copies;
718                 push(@hold_data, $data_filler->({target => $copy, record => $copy->call_number->record}));
719             }
720         },
721         I => sub {
722             my $isses = $e->batch_retrieve_serial_issuance([
723                 \@targets, {
724                     "flesh" => 2,
725                     "flesh_fields" => {
726                         "siss" => ["subscription"], "ssub" => ["record_entry"]
727                     }
728                 }
729             ], {substream => 1});
730
731             for my $id (@targets) { 
732                 my ($iss) = grep {$_->id eq $id} @$isses;
733                 push(@hold_data, $data_filler->({target => $iss, record => $iss->subscription->record_entry}));
734             }
735         }
736         # ...
737
738     }->{$ctx->{hold_type}}->();
739
740     # caller sent bad target IDs or the wrong hold type
741     return Apache2::Const::HTTP_BAD_REQUEST unless @hold_data;
742
743     # generate the MARC xml for each record
744     $_->{marc_xml} = XML::LibXML->new->parse_string($_->{record}->marc) for @hold_data;
745
746     my $pickup_lib = $cgi->param('pickup_lib');
747     # no pickup lib means no holds placement
748     return Apache2::Const::OK unless $pickup_lib;
749
750     $ctx->{hold_attempt_made} = 1;
751
752     # Give the original CGI params back to the user in case they
753     # want to try to override something.
754     $ctx->{orig_params} = $cgi->Vars;
755     delete $ctx->{orig_params}{submit};
756     delete $ctx->{orig_params}{hold_target};
757     delete $ctx->{orig_params}{part};
758
759     my $usr = $e->requestor->id;
760
761     if ($ctx->{is_staff} and !$cgi->param("hold_usr_is_requestor")) {
762         # find the real hold target
763
764         $usr = $U->simplereq(
765             'open-ils.actor', 
766             "open-ils.actor.user.retrieve_id_by_barcode_or_username",
767             $e->authtoken, $cgi->param("hold_usr"));
768
769         if (defined $U->event_code($usr)) {
770             $ctx->{hold_failed} = 1;
771             $ctx->{hold_failed_event} = $usr;
772         }
773     }
774
775     # target_id is the true target_id for holds placement.  
776     # needed for attempt_hold_placement()
777     # With the exception of P-type holds, target_id == target->id.
778     $_->{target_id} = $_->{target}->id for @hold_data;
779
780     if ($ctx->{hold_type} eq 'T') {
781
782         # Much like quantum wave-particles, P-type holds pop into 
783         # and out of existence at the user's whim.  For our purposes,
784         # we treat such holds as T(itle) holds with a selected_part 
785         # designation.  When the time comes to pass the hold information 
786         # off for holds possibility testing and placement, make it look 
787         # like a real P-type hold.
788         my (@p_holds, @t_holds);
789         
790         for my $idx (0..$#parts) {
791             my $hdata = $hold_data[$idx];
792             if (my $part = $parts[$idx]) {
793                 $hdata->{target_id} = $part;
794                 $hdata->{selected_part} = $part;
795                 push(@p_holds, $hdata);
796             } else {
797                 push(@t_holds, $hdata);
798             }
799         }
800
801         $self->attempt_hold_placement($usr, $pickup_lib, 'P', @p_holds) if @p_holds;
802         $self->attempt_hold_placement($usr, $pickup_lib, 'T', @t_holds) if @t_holds;
803
804     } else {
805         $self->attempt_hold_placement($usr, $pickup_lib, $ctx->{hold_type}, @hold_data);
806     }
807
808     # NOTE: we are leaving the staff-placed patron barcode cookie 
809     # in place.  Otherwise, it's not possible to place more than 
810     # one hold for the patron within a staff/patron session.  This 
811     # does leave the barcode to linger longer than is ideal, but 
812     # normal staff work flow will cause the cookie to be replaced 
813     # with each new patron anyway.
814     # TODO: See about getting the staff client to clear the cookie
815
816     # return to the place_hold page so the results of the hold
817     # placement attempt can be reported to the user
818     return Apache2::Const::OK;
819 }
820
821 sub attempt_hold_placement {
822     my ($self, $usr, $pickup_lib, $hold_type, @hold_data) = @_;
823     my $cgi = $self->cgi;
824     my $ctx = $self->ctx;
825     my $e = $self->editor;
826
827     # First see if we should warn/block for any holds that 
828     # might have locally available items.
829     for my $hdata (@hold_data) {
830         my ($local_block, $local_alert) = $self->local_avail_concern(
831             $hdata->{target_id}, $hold_type, $pickup_lib);
832     
833         if ($local_block) {
834             $hdata->{hold_failed} = 1;
835             $hdata->{hold_local_block} = 1;
836         } elsif ($local_alert) {
837             $hdata->{hold_failed} = 1;
838             $hdata->{hold_local_alert} = 1;
839         }
840     }
841
842     my $method = 'open-ils.circ.holds.test_and_create.batch';
843     $method .= '.override' if $cgi->param('override');
844
845     my @create_targets = map {$_->{target_id}} (grep { !$_->{hold_failed} } @hold_data);
846
847     if(@create_targets) {
848
849         my $bses = OpenSRF::AppSession->create('open-ils.circ');
850         my $breq = $bses->request( 
851             $method, 
852             $e->authtoken, 
853             $data_filler->({   patronid => $usr,
854                 pickup_lib => $pickup_lib, 
855                 hold_type => $hold_type
856             }),
857             \@create_targets
858         );
859
860         while (my $resp = $breq->recv) {
861
862             $resp = $resp->content;
863             $logger->info('batch hold placement result: ' . OpenSRF::Utils::JSON->perl2JSON($resp));
864
865             if ($U->event_code($resp)) {
866                 $ctx->{general_hold_error} = $resp;
867                 last;
868             }
869
870             my ($hdata) = grep {$_->{target_id} eq $resp->{target}} @hold_data;
871             my $result = $resp->{result};
872
873             if ($U->event_code($result)) {
874                 # e.g. permission denied
875                 $hdata->{hold_failed} = 1;
876                 $hdata->{hold_failed_event} = $result;
877
878             } else {
879                 
880                 if(not ref $result and $result > 0) {
881                     # successul hold returns the hold ID
882
883                     $hdata->{hold_success} = $result; 
884     
885                 } else {
886                     # hold-specific failure event 
887                     $hdata->{hold_failed} = 1;
888
889                     if (ref $result eq 'HASH') {
890                         $hdata->{hold_failed_event} = $result->{last_event};
891                     } elsif (ref $result eq 'ARRAY') {
892                         $hdata->{hold_failed_event} = pop @$result;
893                     }
894
895                     $hdata->{could_override} = $self->test_could_override($hdata->{hold_failed_event});
896                 }
897             }
898         }
899
900         $bses->kill_me;
901     }
902 }
903
904 sub fetch_user_circs {
905     my $self = shift;
906     my $flesh = shift; # flesh bib data, etc.
907     my $circ_ids = shift;
908     my $limit = shift;
909     my $offset = shift;
910
911     my $e = $self->editor;
912
913     my @circ_ids;
914
915     if($circ_ids) {
916         @circ_ids = @$circ_ids;
917
918     } else {
919
920         my $query = {
921             select => {circ => ['id']},
922             from => 'circ',
923             where => {
924                 '+circ' => {
925                     usr => $e->requestor->id,
926                     checkin_time => undef,
927                     '-or' => [
928                         {stop_fines => undef},
929                         {stop_fines => {'not in' => ['LOST','CLAIMSRETURNED','LONGOVERDUE']}}
930                     ],
931                 }
932             },
933             order_by => {circ => ['due_date']}
934         };
935
936         $query->{limit} = $limit if $limit;
937         $query->{offset} = $offset if $offset;
938
939         my $ids = $e->json_query($query);
940         @circ_ids = map {$_->{id}} @$ids;
941     }
942
943     return [] unless @circ_ids;
944
945     my $qflesh = {
946         flesh => 3,
947         flesh_fields => {
948             circ => ['target_copy'],
949             acp => ['call_number'],
950             acn => ['record']
951         }
952     };
953
954     $e->xact_begin;
955     my $circs = $e->search_action_circulation(
956         [{id => \@circ_ids}, ($flesh) ? $qflesh : {}], {substream => 1});
957
958     my @circs;
959     for my $circ (@$circs) {
960         push(@circs, {
961             circ => $circ, 
962             marc_xml => ($flesh and $circ->target_copy->call_number->id != -1) ? 
963                 XML::LibXML->new->parse_string($circ->target_copy->call_number->record->marc) : 
964                 undef  # pre-cat copy, use the dummy title/author instead
965         });
966     }
967     $e->xact_rollback;
968
969     # make sure the final list is in the correct order
970     my @sorted_circs;
971     for my $id (@circ_ids) {
972         push(
973             @sorted_circs,
974             (grep { $_->{circ}->id == $id } @circs)
975         );
976     }
977
978     return \@sorted_circs;
979 }
980
981
982 sub handle_circ_renew {
983     my $self = shift;
984     my $action = shift;
985     my $ctx = $self->ctx;
986
987     my @renew_ids = $self->cgi->param('circ');
988
989     my $circs = $self->fetch_user_circs(0, ($action eq 'renew') ? [@renew_ids] : undef);
990
991     # TODO: fire off renewal calls in batches to speed things up
992     my @responses;
993     for my $circ (@$circs) {
994
995         my $evt = $U->simplereq(
996             'open-ils.circ', 
997             'open-ils.circ.renew',
998             $self->editor->authtoken,
999             {
1000                 patron_id => $self->editor->requestor->id,
1001                 copy_id => $circ->{circ}->target_copy,
1002                 opac_renewal => 1
1003             }
1004         );
1005
1006         # TODO return these, then insert them into the circ data 
1007         # blob that is shoved into the template for each circ
1008         # so the template won't have to match them
1009         push(@responses, {copy => $circ->{circ}->target_copy, evt => $evt});
1010     }
1011
1012     return @responses;
1013 }
1014
1015
1016 sub load_myopac_circs {
1017     my $self = shift;
1018     my $e = $self->editor;
1019     my $ctx = $self->ctx;
1020
1021     $ctx->{circs} = [];
1022     my $limit = $self->cgi->param('limit') || 0; # 0 == unlimited
1023     my $offset = $self->cgi->param('offset') || 0;
1024     my $action = $self->cgi->param('action') || '';
1025
1026     # perform the renewal first if necessary
1027     my @results = $self->handle_circ_renew($action) if $action =~ /renew/;
1028
1029     $ctx->{circs} = $self->fetch_user_circs(1, undef, $limit, $offset);
1030
1031     my $success_renewals = 0;
1032     my $failed_renewals = 0;
1033     for my $data (@{$ctx->{circs}}) {
1034         my ($resp) = grep { $_->{copy} == $data->{circ}->target_copy->id } @results;
1035
1036         if($resp) {
1037             my $evt = ref($resp->{evt}) eq 'ARRAY' ? $resp->{evt}->[0] : $resp->{evt};
1038             $data->{renewal_response} = $evt;
1039             $success_renewals++ if $evt->{textcode} eq 'SUCCESS';
1040             $failed_renewals++ if $evt->{textcode} ne 'SUCCESS';
1041         }
1042     }
1043
1044     $ctx->{success_renewals} = $success_renewals;
1045     $ctx->{failed_renewals} = $failed_renewals;
1046
1047     return Apache2::Const::OK;
1048 }
1049
1050 sub load_myopac_circ_history {
1051     my $self = shift;
1052     my $e = $self->editor;
1053     my $ctx = $self->ctx;
1054     my $limit = $self->cgi->param('limit') || 15;
1055     my $offset = $self->cgi->param('offset') || 0;
1056
1057     $ctx->{circ_history_limit} = $limit;
1058     $ctx->{circ_history_offset} = $offset;
1059
1060     my $circ_ids = $e->json_query({
1061         select => {
1062             au => [{
1063                 column => 'id', 
1064                 transform => 'action.usr_visible_circs', 
1065                 result_field => 'id'
1066             }]
1067         },
1068         from => 'au',
1069         where => {id => $e->requestor->id}, 
1070         limit => $limit,
1071         offset => $offset
1072     });
1073
1074     $ctx->{circs} = $self->fetch_user_circs(1, [map { $_->{id} } @$circ_ids]);
1075     return Apache2::Const::OK;
1076 }
1077
1078 # TODO: action.usr_visible_holds does not return cancelled holds.  Should it?
1079 sub load_myopac_hold_history {
1080     my $self = shift;
1081     my $e = $self->editor;
1082     my $ctx = $self->ctx;
1083     my $limit = $self->cgi->param('limit') || 15;
1084     my $offset = $self->cgi->param('offset') || 0;
1085     $ctx->{hold_history_limit} = $limit;
1086     $ctx->{hold_history_offset} = $offset;
1087
1088     my $hold_ids = $e->json_query({
1089         select => {
1090             au => [{
1091                 column => 'id', 
1092                 transform => 'action.usr_visible_holds', 
1093                 result_field => 'id'
1094             }]
1095         },
1096         from => 'au',
1097         where => {id => $e->requestor->id}, 
1098         limit => $limit,
1099         offset => $offset
1100     });
1101
1102     $ctx->{holds} = $self->fetch_user_holds([map { $_->{id} } @$hold_ids], 0, 1, 0);
1103     return Apache2::Const::OK;
1104 }
1105
1106 sub load_myopac_payment_form {
1107     my $self = shift;
1108     my $r;
1109
1110     $r = $self->prepare_fines(undef, undef, [$self->cgi->param('xact'), $self->cgi->param('xact_misc')]) and return $r;
1111     $r = $self->prepare_extended_user_info and return $r;
1112
1113     return Apache2::Const::OK;
1114 }
1115
1116 # TODO: add other filter options as params/configs/etc.
1117 sub load_myopac_payments {
1118     my $self = shift;
1119     my $limit = $self->cgi->param('limit') || 20;
1120     my $offset = $self->cgi->param('offset') || 0;
1121     my $e = $self->editor;
1122
1123     $self->ctx->{payment_history_limit} = $limit;
1124     $self->ctx->{payment_history_offset} = $offset;
1125
1126     my $args = {};
1127     $args->{limit} = $limit if $limit;
1128     $args->{offset} = $offset if $offset;
1129
1130     if (my $max_age = $self->ctx->{get_org_setting}->(
1131         $e->requestor->home_ou, "opac.payment_history_age_limit"
1132     )) {
1133         my $min_ts = DateTime->now(
1134             "time_zone" => DateTime::TimeZone->new("name" => "local"),
1135         )->subtract("seconds" => interval_to_seconds($max_age))->iso8601();
1136         
1137         $logger->info("XXX min_ts: $min_ts");
1138         $args->{"where"} = {"payment_ts" => {">=" => $min_ts}};
1139     }
1140
1141     $self->ctx->{payments} = $U->simplereq(
1142         'open-ils.actor',
1143         'open-ils.actor.user.payments.retrieve.atomic',
1144         $e->authtoken, $e->requestor->id, $args);
1145
1146     return Apache2::Const::OK;
1147 }
1148
1149 sub load_myopac_pay {
1150     my $self = shift;
1151     my $r;
1152
1153     my @payment_xacts = ($self->cgi->param('xact'), $self->cgi->param('xact_misc'));
1154     $logger->info("tpac paying fines for xacts @payment_xacts");
1155
1156     $r = $self->prepare_fines(undef, undef, \@payment_xacts) and return $r;
1157
1158     # balance_owed is computed specifically from the fines we're trying
1159     # to pay in this case.
1160     if ($self->ctx->{fines}->{balance_owed} <= 0) {
1161         $self->apache->log->info(
1162             sprintf("Can't pay non-positive balance. xacts selected: (%s)",
1163                 join(", ", map(int, $self->cgi->param("xact"), $self->cgi->param('xact_misc'))))
1164         );
1165         return Apache2::Const::HTTP_INTERNAL_SERVER_ERROR;
1166     }
1167
1168     my $cc_args = {"where_process" => 1};
1169
1170     $cc_args->{$_} = $self->cgi->param($_) for (qw/
1171         number cvv2 expire_year expire_month billing_first
1172         billing_last billing_address billing_city billing_state
1173         billing_zip
1174     /);
1175
1176     my $args = {
1177         "cc_args" => $cc_args,
1178         "userid" => $self->ctx->{user}->id,
1179         "payment_type" => "credit_card_payment",
1180         "payments" => $self->prepare_fines_for_payment   # should be safe after self->prepare_fines
1181     };
1182
1183     my $resp = $U->simplereq("open-ils.circ", "open-ils.circ.money.payment",
1184         $self->editor->authtoken, $args, $self->ctx->{user}->last_xact_id
1185     );
1186
1187     $self->ctx->{"payment_response"} = $resp;
1188
1189     unless ($resp->{"textcode"}) {
1190         $self->ctx->{printable_receipt} = $U->simplereq(
1191            "open-ils.circ", "open-ils.circ.money.payment_receipt.print",
1192            $self->editor->authtoken, $resp->{payments}
1193         );
1194     }
1195
1196     return Apache2::Const::OK;
1197 }
1198
1199 sub load_myopac_receipt_print {
1200     my $self = shift;
1201
1202     $self->ctx->{printable_receipt} = $U->simplereq(
1203        "open-ils.circ", "open-ils.circ.money.payment_receipt.print",
1204        $self->editor->authtoken, [$self->cgi->param("payment")]
1205     );
1206
1207     return Apache2::Const::OK;
1208 }
1209
1210 sub load_myopac_receipt_email {
1211     my $self = shift;
1212
1213     # The following ML method doesn't actually check whether the user in
1214     # question has an email address, so we do.
1215     if ($self->ctx->{user}->email) {
1216         $self->ctx->{email_receipt_result} = $U->simplereq(
1217            "open-ils.circ", "open-ils.circ.money.payment_receipt.email",
1218            $self->editor->authtoken, [$self->cgi->param("payment")]
1219         );
1220     } else {
1221         $self->ctx->{email_receipt_result} =
1222             new OpenILS::Event("PATRON_NO_EMAIL_ADDRESS");
1223     }
1224
1225     return Apache2::Const::OK;
1226 }
1227
1228 sub prepare_fines {
1229     my ($self, $limit, $offset, $id_list) = @_;
1230
1231     # XXX TODO: check for failure after various network calls
1232
1233     # It may be unclear, but this result structure lumps circulation and
1234     # reservation fines together, and keeps grocery fines separate.
1235     $self->ctx->{"fines"} = {
1236         "circulation" => [],
1237         "grocery" => [],
1238         "total_paid" => 0,
1239         "total_owed" => 0,
1240         "balance_owed" => 0
1241     };
1242
1243     my $cstore = OpenSRF::AppSession->create('open-ils.cstore');
1244
1245     # TODO: This should really be a ML call, but the existing calls 
1246     # return an excessive amount of data and don't offer streaming
1247
1248     my %paging = ($limit or $offset) ? (limit => $limit, offset => $offset) : ();
1249
1250     my $req = $cstore->request(
1251         'open-ils.cstore.direct.money.open_billable_transaction_summary.search',
1252         {
1253             usr => $self->editor->requestor->id,
1254             balance_owed => {'!=' => 0},
1255             ($id_list && @$id_list ? ("id" => $id_list) : ()),
1256         },
1257         {
1258             flesh => 4,
1259             flesh_fields => {
1260                 mobts => [qw/grocery circulation reservation/],
1261                 bresv => ['target_resource_type'],
1262                 brt => ['record'],
1263                 mg => ['billings'],
1264                 mb => ['btype'],
1265                 circ => ['target_copy'],
1266                 acp => ['call_number'],
1267                 acn => ['record']
1268             },
1269             order_by => { mobts => 'xact_start' },
1270             %paging
1271         }
1272     );
1273
1274     my @total_keys = qw/total_paid total_owed balance_owed/;
1275     $self->ctx->{"fines"}->{@total_keys} = (0, 0, 0);
1276
1277     while(my $resp = $req->recv) {
1278         my $mobts = $resp->content;
1279         my $circ = $mobts->circulation;
1280
1281         my $last_billing;
1282         if($mobts->grocery) {
1283             my @billings = sort { $a->billing_ts cmp $b->billing_ts } @{$mobts->grocery->billings};
1284             $last_billing = pop(@billings);
1285         }
1286
1287         # XXX TODO confirm that the following, and the later division by 100.0
1288         # to get a floating point representation once again, is sufficiently
1289         # "money-safe" math.
1290         $self->ctx->{"fines"}->{$_} += int($mobts->$_ * 100) for (@total_keys);
1291
1292         my $marc_xml = undef;
1293         if ($mobts->xact_type eq 'reservation' and
1294             $mobts->reservation->target_resource_type->record) {
1295             $marc_xml = XML::LibXML->new->parse_string(
1296                 $mobts->reservation->target_resource_type->record->marc
1297             );
1298         } elsif ($mobts->xact_type eq 'circulation' and
1299             $circ->target_copy->call_number->id != -1) {
1300             $marc_xml = XML::LibXML->new->parse_string(
1301                 $circ->target_copy->call_number->record->marc
1302             );
1303         }
1304
1305         push(
1306             @{$self->ctx->{"fines"}->{$mobts->grocery ? "grocery" : "circulation"}},
1307             {
1308                 xact => $mobts,
1309                 last_grocery_billing => $last_billing,
1310                 marc_xml => $marc_xml
1311             } 
1312         );
1313     }
1314
1315     $cstore->kill_me;
1316
1317     $self->ctx->{"fines"}->{$_} /= 100.0 for (@total_keys);
1318     return;
1319 }
1320
1321 sub prepare_fines_for_payment {
1322     # This assumes $self->prepare_fines has already been run
1323     my ($self) = @_;
1324
1325     my @results = ();
1326     if ($self->ctx->{fines}) {
1327         push @results, [$_->{xact}->id, $_->{xact}->balance_owed] foreach (
1328             @{$self->ctx->{fines}->{circulation}},
1329             @{$self->ctx->{fines}->{grocery}}
1330         );
1331     }
1332
1333     return \@results;
1334 }
1335
1336 sub load_myopac_main {
1337     my $self = shift;
1338     my $limit = $self->cgi->param('limit') || 0;
1339     my $offset = $self->cgi->param('offset') || 0;
1340     $self->ctx->{search_ou} = $self->_get_search_lib();
1341
1342     return $self->prepare_fines($limit, $offset) || Apache2::Const::OK;
1343 }
1344
1345 sub load_myopac_update_email {
1346     my $self = shift;
1347     my $e = $self->editor;
1348     my $ctx = $self->ctx;
1349     my $email = $self->cgi->param('email') || '';
1350     my $current_pw = $self->cgi->param('current_pw') || '';
1351
1352     # needed for most up-to-date email address
1353     if (my $r = $self->prepare_extended_user_info) { return $r };
1354
1355     return Apache2::Const::OK 
1356         unless $self->cgi->request_method eq 'POST';
1357
1358     unless($email =~ /.+\@.+\..+/) { # TODO better regex?
1359         $ctx->{invalid_email} = $email;
1360         return Apache2::Const::OK;
1361     }
1362
1363     my $stat = $U->simplereq(
1364         'open-ils.actor', 
1365         'open-ils.actor.user.email.update', 
1366         $e->authtoken, $email, $current_pw);
1367
1368     if($U->event_equals($stat, 'INCORRECT_PASSWORD')) {
1369         $ctx->{password_incorrect} = 1;
1370         return Apache2::Const::OK;
1371     }
1372
1373     unless ($self->cgi->param("redirect_to")) {
1374         my $url = $self->apache->unparsed_uri;
1375         $url =~ s/update_email/prefs/;
1376
1377         return $self->generic_redirect($url);
1378     }
1379
1380     return $self->generic_redirect;
1381 }
1382
1383 sub load_myopac_update_username {
1384     my $self = shift;
1385     my $e = $self->editor;
1386     my $ctx = $self->ctx;
1387     my $username = $self->cgi->param('username') || '';
1388     my $current_pw = $self->cgi->param('current_pw') || '';
1389
1390     $self->prepare_extended_user_info;
1391
1392     my $allow_change = 1;
1393     my $regex_check;
1394     my $lock_usernames = $self->ctx->{get_org_setting}->($e->requestor->home_ou, 'opac.lock_usernames');
1395     if($lock_usernames == 1) {
1396         # Policy says no username changes
1397         $allow_change = 0;
1398     } else {
1399         # We want this further down.
1400         $regex_check = $self->ctx->{get_org_setting}->($e->requestor->home_ou, 'opac.barcode_regex');
1401         my $username_unlimit = $self->ctx->{get_org_setting}->($e->requestor->home_ou, 'opac.unlimit_usernames');
1402         if($username_unlimit != 1) {
1403             if(!$regex_check) {
1404                 # Default is "starts with a number"
1405                 $regex_check = '^\d+';
1406             }
1407             # You already have a username?
1408             if($regex_check and $self->ctx->{user}->usrname !~ /$regex_check/) {
1409                 $allow_change = 0;
1410             }
1411         }
1412     }
1413     if(!$allow_change) {
1414         my $url = $self->apache->unparsed_uri;
1415         $url =~ s/update_username/prefs/;
1416
1417         return $self->generic_redirect($url);
1418     }
1419
1420     return Apache2::Const::OK 
1421         unless $self->cgi->request_method eq 'POST';
1422
1423     unless($username and $username !~ /\s/) { # any other username restrictions?
1424         $ctx->{invalid_username} = $username;
1425         return Apache2::Const::OK;
1426     }
1427
1428     # New username can't look like a barcode if we have a barcode regex
1429     if($regex_check and $username =~ /$regex_check/) {
1430         $ctx->{invalid_username} = $username;
1431         return Apache2::Const::OK;
1432     }
1433
1434     # New username has to look like a username if we have a username regex
1435     $regex_check = $ctx->{get_org_setting}->($e->requestor->home_ou, 'opac.username_regex');
1436     if($regex_check and $username !~ /$regex_check/) {
1437         $ctx->{invalid_username} = $username;
1438         return Apache2::Const::OK;
1439     }
1440
1441     if($username ne $e->requestor->usrname) {
1442
1443         my $evt = $U->simplereq(
1444             'open-ils.actor', 
1445             'open-ils.actor.user.username.update', 
1446             $e->authtoken, $username, $current_pw);
1447
1448         if($U->event_equals($evt, 'INCORRECT_PASSWORD')) {
1449             $ctx->{password_incorrect} = 1;
1450             return Apache2::Const::OK;
1451         }
1452
1453         if($U->event_equals($evt, 'USERNAME_EXISTS')) {
1454             $ctx->{username_exists} = $username;
1455             return Apache2::Const::OK;
1456         }
1457     }
1458
1459     my $url = $self->apache->unparsed_uri;
1460     $url =~ s/update_username/prefs/;
1461
1462     return $self->generic_redirect($url);
1463 }
1464
1465 sub load_myopac_update_password {
1466     my $self = shift;
1467     my $e = $self->editor;
1468     my $ctx = $self->ctx;
1469
1470     return Apache2::Const::OK 
1471         unless $self->cgi->request_method eq 'POST';
1472
1473     my $current_pw = $self->cgi->param('current_pw') || '';
1474     my $new_pw = $self->cgi->param('new_pw') || '';
1475     my $new_pw2 = $self->cgi->param('new_pw2') || '';
1476
1477     unless($new_pw eq $new_pw2) {
1478         $ctx->{password_nomatch} = 1;
1479         return Apache2::Const::OK;
1480     }
1481
1482     my $pw_regex = $ctx->{get_org_setting}->($e->requestor->home_ou, 'global.password_regex');
1483
1484     if(!$pw_regex) {
1485         # This regex duplicates the JSPac's default "digit, letter, and 7 characters" rule
1486         $pw_regex = '(?=.*\d+.*)(?=.*[A-Za-z]+.*).{7,}';
1487     }
1488
1489     if($pw_regex and $new_pw !~ /$pw_regex/) {
1490         $ctx->{password_invalid} = 1;
1491         return Apache2::Const::OK;
1492     }
1493
1494     my $evt = $U->simplereq(
1495         'open-ils.actor', 
1496         'open-ils.actor.user.password.update', 
1497         $e->authtoken, $new_pw, $current_pw);
1498
1499
1500     if($U->event_equals($evt, 'INCORRECT_PASSWORD')) {
1501         $ctx->{password_incorrect} = 1;
1502         return Apache2::Const::OK;
1503     }
1504
1505     my $url = $self->apache->unparsed_uri;
1506     $url =~ s/update_password/prefs/;
1507
1508     return $self->generic_redirect($url);
1509 }
1510
1511 sub _update_bookbag_metadata {
1512     my ($self, $bookbag) = @_;
1513
1514     $bookbag->name($self->cgi->param("name"));
1515     $bookbag->description($self->cgi->param("description"));
1516
1517     return 1 if $self->editor->update_container_biblio_record_entry_bucket($bookbag);
1518     return 0;
1519 }
1520
1521 sub load_myopac_bookbags {
1522     my $self = shift;
1523     my $e = $self->editor;
1524     my $ctx = $self->ctx;
1525
1526     my ($sorter, $modifier) = $self->_get_bookbag_sort_params("sort");
1527     $e->xact_begin; # replication...
1528
1529     my $rv = $self->load_mylist;
1530     unless($rv eq Apache2::Const::OK) {
1531         $e->rollback;
1532         return $rv;
1533     }
1534
1535     $ctx->{bookbags} = $e->search_container_biblio_record_entry_bucket(
1536         [
1537             {owner => $e->requestor->id, btype => 'bookbag'}, {
1538                 order_by => {cbreb => 'name'},
1539                 limit => $self->cgi->param('limit') || 10,
1540                 offset => $self->cgi->param('offset') || 0
1541             }
1542         ],
1543         {substream => 1}
1544     );
1545
1546     if(!$ctx->{bookbags}) {
1547         $e->rollback;
1548         return Apache2::Const::HTTP_INTERNAL_SERVER_ERROR;
1549     }
1550     
1551     # If the user wants a specific bookbag's items, load them.
1552     # XXX add bookbag item paging support
1553
1554     if ($self->cgi->param("id")) {
1555         my ($bookbag) =
1556             grep { $_->id eq $self->cgi->param("id") } @{$ctx->{bookbags}};
1557
1558         if (!$bookbag) {
1559             $e->rollback;
1560             return Apache2::Const::HTTP_INTERNAL_SERVER_ERROR;
1561         }
1562
1563         if ($self->cgi->param("action") eq "editmeta") {
1564             if (!$self->_update_bookbag_metadata($bookbag))  {
1565                 $e->rollback;
1566                 return Apache2::Const::HTTP_INTERNAL_SERVER_ERROR;
1567             } else {
1568                 $e->commit;
1569                 my $url = $self->ctx->{opac_root} . '/myopac/lists?id=' .
1570                     $bookbag->id;
1571
1572                 # Keep it if we've got it
1573                 if ($self->cgi->param("sort")) {
1574                     $url .= ";sort=" . $self->cgi->param("sort");
1575                 }
1576
1577                 return $self->generic_redirect($url);
1578             }
1579         }
1580
1581         my $query = $self->_prepare_bookbag_container_query(
1582             $bookbag->id, $sorter, $modifier
1583         );
1584
1585         # XXX we need to limit the number of records per bbag; use third arg
1586         # of bib_container_items_via_search() i think.
1587         my $items = $U->bib_container_items_via_search($bookbag->id, $query)
1588             or return Apache2::Const::HTTP_INTERNAL_SERVER_ERROR;
1589
1590         my (undef, @recs) = $self->get_records_and_facets(
1591             [ map {$_->target_biblio_record_entry->id} @$items ],
1592             undef, 
1593             {flesh => '{mra}'}
1594         );
1595
1596         $ctx->{bookbags_marc_xml}{$_->{id}} = $_->{marc_xml} for @recs;
1597
1598         $bookbag->items($items);
1599     }
1600
1601     $e->rollback;
1602     return Apache2::Const::OK;
1603 }
1604
1605
1606 # actions are create, delete, show, hide, rename, add_rec, delete_item, place_hold
1607 # CGI is action, list=list_id, add_rec/record=bre_id, del_item=bucket_item_id, name=new_bucket_name
1608 sub load_myopac_bookbag_update {
1609     my ($self, $action, $list_id, @hold_recs) = @_;
1610     my $e = $self->editor;
1611     my $cgi = $self->cgi;
1612
1613     # save_notes is effectively another action, but is passed in a separate
1614     # CGI parameter for what are really just layout reasons.
1615     $action = 'save_notes' if $cgi->param('save_notes');
1616     $action ||= $cgi->param('action');
1617
1618     $list_id ||= $cgi->param('list');
1619
1620     my @add_rec = $cgi->param('add_rec') || $cgi->param('record');
1621     my @selected_item = $cgi->param('selected_item');
1622     my $shared = $cgi->param('shared');
1623     my $name = $cgi->param('name');
1624     my $description = $cgi->param('description');
1625     my $success = 0;
1626     my $list;
1627
1628     # This url intentionally leaves off the edit_notes parameter, but
1629     # may need to add some back in for paging.
1630
1631     my $url = "https://" . $self->apache->hostname .
1632         $self->ctx->{opac_root} . "/myopac/lists?";
1633
1634     $url .= 'sort=' . uri_escape($cgi->param("sort")) if $cgi->param("sort");
1635
1636     if ($action eq 'create') {
1637         $list = Fieldmapper::container::biblio_record_entry_bucket->new;
1638         $list->name($name);
1639         $list->description($description);
1640         $list->owner($e->requestor->id);
1641         $list->btype('bookbag');
1642         $list->pub($shared ? 't' : 'f');
1643         $success = $U->simplereq('open-ils.actor', 
1644             'open-ils.actor.container.create', $e->authtoken, 'biblio', $list)
1645
1646     } elsif($action eq 'place_hold') {
1647
1648         # @hold_recs comes from anon lists redirect; selected_itesm comes from existing buckets
1649         unless (@hold_recs) {
1650             if (@selected_item) {
1651                 my $items = $e->search_container_biblio_record_entry_bucket_item({id => \@selected_item});
1652                 @hold_recs = map { $_->target_biblio_record_entry } @$items;
1653             }
1654         }
1655                 
1656         return Apache2::Const::OK unless @hold_recs;
1657         $logger->info("placing holds from list page on: @hold_recs");
1658
1659         my $url = $self->ctx->{opac_root} . '/place_hold?hold_type=T';
1660         $url .= ';hold_target=' . $_ for @hold_recs;
1661         return $self->generic_redirect($url);
1662
1663     } else {
1664
1665         $list = $e->retrieve_container_biblio_record_entry_bucket($list_id);
1666
1667         return Apache2::Const::HTTP_BAD_REQUEST unless 
1668             $list and $list->owner == $e->requestor->id;
1669     }
1670
1671     if($action eq 'delete') {
1672         $success = $U->simplereq('open-ils.actor', 
1673             'open-ils.actor.container.full_delete', $e->authtoken, 'biblio', $list_id);
1674
1675     } elsif($action eq 'show') {
1676         unless($U->is_true($list->pub)) {
1677             $list->pub('t');
1678             $success = $U->simplereq('open-ils.actor', 
1679                 'open-ils.actor.container.update', $e->authtoken, 'biblio', $list);
1680         }
1681
1682     } elsif($action eq 'hide') {
1683         if($U->is_true($list->pub)) {
1684             $list->pub('f');
1685             $success = $U->simplereq('open-ils.actor', 
1686                 'open-ils.actor.container.update', $e->authtoken, 'biblio', $list);
1687         }
1688
1689     } elsif($action eq 'rename') {
1690         if($name) {
1691             $list->name($name);
1692             $success = $U->simplereq('open-ils.actor', 
1693                 'open-ils.actor.container.update', $e->authtoken, 'biblio', $list);
1694         }
1695
1696     } elsif($action eq 'add_rec') {
1697         foreach my $add_rec (@add_rec) {
1698             my $item = Fieldmapper::container::biblio_record_entry_bucket_item->new;
1699             $item->bucket($list_id);
1700             $item->target_biblio_record_entry($add_rec);
1701             $success = $U->simplereq('open-ils.actor', 
1702                 'open-ils.actor.container.item.create', $e->authtoken, 'biblio', $item);
1703             last unless $success;
1704         }
1705
1706     } elsif($action eq 'del_item') {
1707         foreach (@selected_item) {
1708             $success = $U->simplereq(
1709                 'open-ils.actor',
1710                 'open-ils.actor.container.item.delete', $e->authtoken, 'biblio', $_
1711             );
1712             last unless $success;
1713         }
1714     } elsif ($action eq 'save_notes') {
1715         $success = $self->update_bookbag_item_notes;
1716         $url .= "&id=" . uri_escape($cgi->param("id")) if $cgi->param("id");
1717     }
1718
1719     return $self->generic_redirect($url) if $success;
1720
1721     # XXX FIXME Bucket failure doesn't have a page to show the user anything
1722     # right now. User just sees a 404 currently.
1723
1724     $self->ctx->{bucket_action} = $action;
1725     $self->ctx->{bucket_action_failed} = 1;
1726     return Apache2::Const::OK;
1727 }
1728
1729 sub update_bookbag_item_notes {
1730     my ($self) = @_;
1731     my $e = $self->editor;
1732
1733     my @note_keys = grep /^note-\d+/, keys(%{$self->cgi->Vars});
1734     my @item_keys = grep /^item-\d+/, keys(%{$self->cgi->Vars});
1735
1736     # We're going to leverage an API call that's already been written to check
1737     # permissions appropriately.
1738
1739     my $a = create OpenSRF::AppSession("open-ils.actor");
1740     my $method = "open-ils.actor.container.item_note.cud";
1741
1742     for my $note_key (@note_keys) {
1743         my $note;
1744
1745         my $id = ($note_key =~ /(\d+)/)[0];
1746
1747         if (!($note =
1748             $e->retrieve_container_biblio_record_entry_bucket_item_note($id))) {
1749             my $event = $e->die_event;
1750             $self->apache->log->warn(
1751                 "error retrieving cbrebin id $id, got event " .
1752                 $event->{textcode}
1753             );
1754             $a->kill_me;
1755             $self->ctx->{bucket_action_event} = $event;
1756             return;
1757         }
1758
1759         if (length($self->cgi->param($note_key))) {
1760             $note->ischanged(1);
1761             $note->note($self->cgi->param($note_key));
1762         } else {
1763             $note->isdeleted(1);
1764         }
1765
1766         my $r = $a->request($method, $e->authtoken, "biblio", $note)->gather(1);
1767
1768         if (defined $U->event_code($r)) {
1769             $self->apache->log->warn(
1770                 "attempt to modify cbrebin " . $note->id .
1771                 " returned event " .  $r->{textcode}
1772             );
1773             $e->rollback;
1774             $a->kill_me;
1775             $self->ctx->{bucket_action_event} = $r;
1776             return;
1777         }
1778     }
1779
1780     for my $item_key (@item_keys) {
1781         my $id = int(($item_key =~ /(\d+)/)[0]);
1782         my $text = $self->cgi->param($item_key);
1783
1784         chomp $text;
1785         next unless length $text;
1786
1787         my $note = new Fieldmapper::container::biblio_record_entry_bucket_item_note;
1788         $note->isnew(1);
1789         $note->item($id);
1790         $note->note($text);
1791
1792         my $r = $a->request($method, $e->authtoken, "biblio", $note)->gather(1);
1793
1794         if (defined $U->event_code($r)) {
1795             $self->apache->log->warn(
1796                 "attempt to create cbrebin for item " . $note->item .
1797                 " returned event " .  $r->{textcode}
1798             );
1799             $e->rollback;
1800             $a->kill_me;
1801             $self->ctx->{bucket_action_event} = $r;
1802             return;
1803         }
1804     }
1805
1806     $a->kill_me;
1807     return 1;   # success
1808 }
1809
1810 sub load_myopac_bookbag_print {
1811     my ($self) = @_;
1812
1813     $self->apache->content_type("text/plain; encoding=utf8");
1814
1815     my $id = int($self->cgi->param("list"));
1816
1817     my ($sorter, $modifier) = $self->_get_bookbag_sort_params("sort");
1818
1819     my $item_search =
1820         $self->_prepare_bookbag_container_query($id, $sorter, $modifier);
1821
1822     my $bbag;
1823
1824     # Get the bookbag object itself, assuming we're allowed to.
1825     if ($self->editor->allowed("VIEW_CONTAINER")) {
1826
1827         $bbag = $self->editor->retrieve_container_biblio_record_entry_bucket($id) or return Apache2::Const::HTTP_INTERNAL_SERVER_ERROR;
1828     } else {
1829         my $bookbags = $self->editor->search_container_biblio_record_entry_bucket(
1830             {
1831                 "id" => $id,
1832                 "-or" => {
1833                     "owner" => $self->editor->requestor->id,
1834                     "pub" => "t"
1835                 }
1836             }
1837         ) or return Apache2::Const::HTTP_INTERNAL_SERVER_ERROR;
1838
1839         $bbag = pop @$bookbags;
1840     }
1841
1842     # If we have a bookbag we're allowed to look at, issue the A/T event
1843     # to get CSV, passing as a user param that search query we built before.
1844     if ($bbag) {
1845         $self->ctx->{csv} = $U->fire_object_event(
1846             undef, "container.biblio_record_entry_bucket.csv",
1847             $bbag, $self->editor->requestor->home_ou,
1848             undef, {"item_search" => $item_search}
1849         );
1850     }
1851
1852     # Create a reasonable filename and set the content disposition to
1853     # provoke browser download dialogs.
1854     (my $filename = $bbag->id . $bbag->name) =~ s/[^a-z0-9_ -]//gi;
1855
1856     $self->apache->headers_out->add(
1857         "Content-Disposition",
1858         "attachment;filename=$filename.csv"
1859     );
1860
1861     return Apache2::Const::OK;
1862 }
1863
1864 sub load_password_reset {
1865     my $self = shift;
1866     my $cgi = $self->cgi;
1867     my $ctx = $self->ctx;
1868     my $barcode = $cgi->param('barcode');
1869     my $username = $cgi->param('username');
1870     my $email = $cgi->param('email');
1871     my $pwd1 = $cgi->param('pwd1');
1872     my $pwd2 = $cgi->param('pwd2');
1873     my $uuid = $ctx->{page_args}->[0];
1874
1875     if ($uuid) {
1876
1877         $logger->info("patron password reset with uuid $uuid");
1878
1879         if ($pwd1 and $pwd2) {
1880
1881             if ($pwd1 eq $pwd2) {
1882
1883                 my $response = $U->simplereq(
1884                     'open-ils.actor', 
1885                     'open-ils.actor.patron.password_reset.commit',
1886                     $uuid, $pwd1);
1887
1888                 $logger->info("patron password reset response " . Dumper($response));
1889
1890                 if ($U->event_code($response)) { # non-success event
1891                     
1892                     my $code = $response->{textcode};
1893                     
1894                     if ($code eq 'PATRON_NOT_AN_ACTIVE_PASSWORD_RESET_REQUEST') {
1895                         $ctx->{pwreset} = {style => 'error', status => 'NOT_ACTIVE'};
1896                     }
1897
1898                     if ($code eq 'PATRON_PASSWORD_WAS_NOT_STRONG') {
1899                         $ctx->{pwreset} = {style => 'error', status => 'NOT_STRONG'};
1900                     }
1901
1902                 } else { # success
1903
1904                     $ctx->{pwreset} = {style => 'success', status => 'SUCCESS'};
1905                 }
1906
1907             } else { # passwords not equal
1908
1909                 $ctx->{pwreset} = {style => 'error', status => 'NO_MATCH'};
1910             }
1911
1912         } else { # 2 password values needed
1913
1914             $ctx->{pwreset} = {status => 'TWO_PASSWORDS'};
1915         }
1916
1917     } elsif ($barcode or $username) {
1918
1919         my @params = $barcode ? ('barcode', $barcode) : ('username', $username);
1920         push(@params, $email) if $email;
1921
1922         $U->simplereq(
1923             'open-ils.actor', 
1924             'open-ils.actor.patron.password_reset.request', @params);
1925
1926         $ctx->{pwreset} = {status => 'REQUEST_SUCCESS'};
1927     }
1928
1929     $logger->info("patron password reset resulted in " . Dumper($ctx->{pwreset}));
1930     return Apache2::Const::OK;
1931 }
1932
1933 1;