]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/src/perlmods/lib/OpenILS/SIP/Patron.pm
LP#1296937: (SIP2) Add ids_only parameter to _items functions
[Evergreen.git] / Open-ILS / src / perlmods / lib / OpenILS / SIP / Patron.pm
1 #
2
3 # A Class for hiding the ILS's concept of the patron from the OpenSIP
4 # system
5 #
6
7 package OpenILS::SIP::Patron;
8
9 use strict;
10 use warnings;
11 use Exporter;
12
13 use Sys::Syslog qw(syslog);
14 use Data::Dumper;
15 use Digest::MD5 qw(md5_hex);
16
17 use OpenILS::SIP;
18 use OpenILS::Application::AppUtils;
19 use OpenILS::Application::Actor;
20 use OpenSRF::Utils qw/:datetime/;
21 use DateTime::Format::ISO8601;
22 my $U = 'OpenILS::Application::AppUtils';
23
24 our (@ISA, @EXPORT_OK);
25
26 @ISA = qw(Exporter);
27
28 @EXPORT_OK = qw(invalid_patron);
29
30 my $INET_PRIVS;
31
32 sub new {
33     my $class = shift;
34     my $key   = shift;
35     my $patron_id = shift;
36     my %args = @_;
37
38     if ($key ne 'usr' and $key ne 'barcode') {
39         syslog("LOG_ERROR", "Patron (card) lookup requested by illegeal key '$key'");
40         return undef;
41     }
42
43     unless(defined $patron_id) {
44         syslog("LOG_WARNING", "No patron ID provided to ILS::Patron->new");
45         return undef;
46     }
47
48     my $type = ref($class) || $class;
49     my $self = bless({}, $type);
50
51     syslog("LOG_DEBUG", "OILS: new OpenILS Patron(%s => %s): searching...", $key, $patron_id);
52
53     my $e = OpenILS::SIP->editor();
54
55     my $usr_flesh = {
56         flesh => 2,
57         flesh_fields => {
58             au => [
59                 "card",
60                 "addresses",
61                 "billing_address",
62                 "mailing_address",
63                 'profile',
64                 "stat_cat_entries",
65             ],
66             actscecm => [
67                 "stat_cat",
68             ],
69         }
70     };
71
72     # in some cases, we don't need all of this data.  Only fetch the user + barcode
73     $usr_flesh = {flesh => 1, flesh_fields => {au => ['card']}} if $args{slim_user};
74     
75     my $user;
76     if($key eq 'barcode') { # retrieve user by barcode
77
78         $$usr_flesh{flesh} += 1;
79         $$usr_flesh{flesh_fields}{ac} = ['usr'];
80
81         my $card = $e->search_actor_card([{barcode => $patron_id}, $usr_flesh])->[0];
82
83         if(!$card or !$U->is_true($card->active)) {
84             syslog("LOG_WARNING", "No such patron barcode: $patron_id");
85             return undef;
86         }
87
88         $user = $card->usr;
89
90     } else {
91         $user = $e->retrieve_actor_user([$patron_id, $usr_flesh]);
92     }
93
94     if(!$user or $U->is_true($user->deleted)) {
95         syslog("LOG_WARNING", "OILS: Unable to find patron %s => %s", $key, $patron_id);
96         return undef;
97     }
98
99     if(!$U->is_true($user->active)) {
100         syslog("LOG_WARNING", "OILS: Patron is inactive %s => %s", $key, $patron_id);
101         return undef;
102     }
103
104     # now grab the user's penalties
105
106     $self->flesh_user_penalties($user, $e) unless $args{slim_user};
107
108     $self->{authtoken} = $args{authtoken} if $args{authtoken};
109     $self->{editor} = $e;
110     $self->{user}   = $user;
111     $self->{id}     = ($key eq 'barcode') ? $patron_id : $user->card->barcode;   # The barcode IS the ID to SIP.  
112     # We give back the passed barcode if the key was indeed a barcode, just to be safe.  Otherwise pull it from the card.
113
114     syslog("LOG_DEBUG", "OILS: new OpenILS Patron(%s => %s): found patron : barred=%s, card:active=%s", 
115         $key, $patron_id, $user->barred, $user->card->active );
116
117     $U->log_user_activity($user->id, $self->get_act_who, 'verify');
118
119     return $self;
120 }
121
122 sub get_act_who {
123     my $self = shift;
124     my $config = OpenILS::SIP->config();
125     my $login = OpenILS::SIP->login_account();
126
127     my $act_who = $config->{implementation_config}->{default_activity_who};
128     my $force_who = $config->{implementation_config}->{force_activity_who};
129
130     # 1. future: test sip extension for caller-provided ewho and !$force_who
131
132     # 2. See if the login is tagged with an ewho
133     return $login->{activity_who} if $login->{activity_who};
134
135     # 3. if all else fails, see if there is an institution-wide ewho
136     return $config->{activity_who} if $config->{activity_who};
137
138     return undef;
139 }
140
141 # grab patron penalties.  Only grab non-archived penalties that are for fines,
142 # excessive overdues, or otherwise block circluation activity
143 sub flesh_user_penalties {
144     my ($self, $user, $e) = @_;
145
146     $user->standing_penalties(
147         $e->search_actor_user_standing_penalty([
148             {   
149                 usr => $user->id,
150                 '-or' => [
151
152                     # ignore "archived" penalties
153                     {stop_date => undef},
154                     {stop_date => {'>' => 'now'}}
155                 ],
156
157                 org_unit => {
158                     in  => {
159                         select => {
160                             aou => [{
161                                 column => 'id', 
162                                 transform => 'actor.org_unit_ancestors', 
163                                 result_field => 'id'
164                             }]
165                         },
166                         from => 'aou',
167
168                         # at this point, there is no concept of "here", so fetch penalties 
169                         # for the patron's home lib plus ancestors
170                         where => {id => $user->home_ou}, 
171                         distinct => 1
172                     }
173                 },
174
175                 # in addition to fines and excessive overdue penalties, 
176                 # we only care about penalties that result in blocks
177                 standing_penalty => {
178                     in => {
179                         select => {csp => ['id']},
180                         from => 'csp',
181                         where => {
182                             '-or' => [
183                                 {id => [1,2]}, # fines / overdues
184                                 {block_list => {'!=' => undef}}
185                             ]
186                         },
187                     }
188                 }
189             },
190         ])
191     );
192 }
193
194 sub id {
195     my $self = shift;
196     return $self->{id};
197 }
198
199 sub name {
200     my $self = shift;
201     return format_name($self->{user});
202 }
203
204 sub format_name {
205     my $u = shift;
206     return OpenILS::SIP::clean_text(
207         sprintf('%s %s %s', 
208             ($u->first_given_name || ''),
209             ($u->second_given_name || ''),
210             ($u->family_name || '')));
211 }
212
213 sub home_library {
214     my $self = shift;
215     my $lib = OpenILS::SIP::shortname_from_id($self->{user}->home_ou);
216     syslog('LOG_DEBUG', "OILS: Patron->home_library() = $lib");
217     return $lib;
218 }
219
220 sub __addr_string {
221     my $addr = shift;
222     return "" unless $addr;
223     my $return = OpenILS::SIP::clean_text(
224         join( ' ', map {$_ || ''} (
225             $addr->street1,
226             $addr->street2,
227             $addr->city . ',',
228             $addr->county,
229             $addr->state,
230             $addr->country,
231             $addr->post_code
232             )
233         )
234     );
235     $return =~ s/\s+/ /sg;     # Compress any run of of whitespace to one space
236     return $return;
237 }
238
239 sub internal_id {
240     my $self = shift;
241     return $self->{user}->id;
242 }
243
244 sub address {
245     my $self = shift;
246     my $u    = $self->{user};
247     my $str  = __addr_string($u->billing_address || $u->mailing_address);
248     syslog('LOG_DEBUG', "OILS: Patron address: $str");
249     return $str;
250 }
251
252 sub email_addr {
253     my $self = shift;
254     return OpenILS::SIP::clean_text($self->{user}->email);
255 }
256
257 sub home_phone {
258     my $self = shift;
259     return $self->{user}->day_phone;
260 }
261
262 sub sip_birthdate {
263     my $self = shift;
264     my $dob = OpenILS::SIP->format_date($self->{user}->dob);
265     syslog('LOG_DEBUG', "OILS: Patron DOB = $dob");
266     return $dob;
267 }
268
269 sub sip_expire {
270     my $self = shift;
271     my $expire = OpenILS::SIP->format_date($self->{user}->expire_date);
272     syslog('LOG_DEBUG', "OILS: Patron Expire = $expire");
273     return $expire;
274 }
275
276 sub ptype {
277     my $self = shift;
278
279     my $use_code = OpenILS::SIP->get_option_value('patron_type_uses_code') || '';
280
281     # should we use the no_i18n version of patron profile name (as a 'code')?
282     return $self->{editor}->retrieve_permission_grp_tree(
283         [$self->{user}->profile->id, {no_i18n => 1}])->name
284         if $use_code =~ /true/io;
285
286     return OpenILS::SIP::clean_text($self->{user}->profile->name);
287 }
288
289 sub language {
290     my $self = shift;
291     return '000'; # Unspecified
292 }
293
294 # How much more detail do we need to check here?
295 # sec: adding logic to return false if user is barred, has a circulation block
296 # or an expired card
297 sub charge_ok {
298     my $self = shift;
299     my $u = $self->{user};
300
301     # compute expiration date for borrowing privileges
302     my $expire = DateTime::Format::ISO8601->new->parse_datetime(cleanse_ISO8601($u->expire_date));
303
304     # determine whether patron should be allowed to circulate materials:
305     # not barred, doesn't owe too much wrt fines/fees, privileges haven't
306     # expired
307     my $circ_is_blocked = 
308         (($u->barred eq 't') or
309          ($u->standing_penalties and @{$u->standing_penalties}) or
310          (CORE::time > $expire->epoch));
311
312     return
313         !$circ_is_blocked and
314         $u->active eq 't' and
315         $u->card->active eq 't';
316 }
317
318
319
320 # How much more detail do we need to check here?
321 sub renew_ok {
322     my $self = shift;
323     return $self->charge_ok;
324 }
325
326 sub recall_ok {
327     my $self = shift;
328     return $self->charge_ok if 
329         OpenILS::SIP->get_option_value('patron_calculate_recal_ok');
330     return 0;
331 }
332
333 sub hold_ok {
334     my $self = shift;
335     return $self->charge_ok;
336 }
337
338 # return true if the card provided is marked as lost
339 sub card_lost {
340     my $self = shift;
341     return $self->{user}->card->active eq 'f';
342 }
343
344 sub recall_overdue {        # not implemented
345     my $self = shift;
346     return 0;
347 }
348
349 sub check_password {
350     my ($self, $pwd) = @_;
351     syslog('LOG_DEBUG', 'OILS: Patron->check_password()');
352     return 0 unless (defined $pwd and $self->{user});
353     return md5_hex($pwd) eq $self->{user}->passwd;
354 }
355
356 sub currency {              # not really implemented
357     my $self = shift;
358     syslog('LOG_DEBUG', 'OILS: Patron->currency()');
359     return 'USD';
360 }
361
362 sub fee_amount {
363     my $self = shift;
364     syslog('LOG_DEBUG', 'OILS: Patron->fee_amount()');
365     my $user_id = $self->{user}->id;
366
367     my $e = $self->{editor};
368     $e->xact_begin;
369     my $summary = $e->retrieve_money_open_user_summary($user_id);
370     $e->rollback; # xact_rollback + disconnect
371
372     my $total = ($summary) ? $summary->balance_owed : 0;
373     syslog('LOG_INFO', "User ".$self->{id} .":$user_id has a fee amount of \$$total");
374     return $total;
375 }
376
377 sub screen_msg {
378     my $self = shift;
379     my $u = $self->{user};
380
381     return 'barred' if $u->barred eq 't';
382
383     my $b = 'blocked';
384
385     return $b if $u->active eq 'f';
386     return $b if $u->card->active eq 'f';
387
388     # if we have any penalties at this point, they are blocking penalties
389     return $b if $u->standing_penalties and @{$u->standing_penalties};
390
391     # has the patron account expired?
392     my $expire = DateTime::Format::ISO8601->new->parse_datetime(cleanse_ISO8601($u->expire_date));
393     return $b if CORE::time > $expire->epoch;
394
395     return 'OK';
396 }
397
398 sub print_line {            # not implemented
399     my $self = shift;
400     return '';
401 }
402
403 sub too_many_charged {      # not implemented
404     my $self = shift;
405     return 0;
406 }
407
408 sub too_many_overdue { 
409     my $self = shift;
410     return scalar( # PATRON_EXCEEDS_OVERDUE_COUNT
411         grep { $_->standing_penalty == 2 } @{$self->{user}->standing_penalties}
412     );
413 }
414
415 # not completely sure what this means
416 sub too_many_renewal {
417     my $self = shift;
418     return 0;
419 }
420
421 # not relevant, handled by fines/fees
422 sub too_many_claim_return {
423     my $self = shift;
424     return 0;
425 }
426
427 # not relevant, handled by fines/fees
428 sub too_many_lost {
429     my $self = shift;
430     return 0;
431 }
432
433 sub excessive_fines { 
434     my $self = shift;
435     return scalar( # PATRON_EXCEEDS_FINES
436         grep { $_->standing_penalty == 1 } @{$self->{user}->standing_penalties}
437     );
438 }
439
440 # Until someone suggests otherwise, fees and fines are the same
441
442 sub excessive_fees {
443     my $self = shift;
444     return $self->excessive_fines;
445 }
446
447 # not relevant, handled by fines/fees
448 sub too_many_billed {
449     my $self = shift;
450     return 0;
451 }
452
453
454
455 #
456 # List of outstanding holds placed
457 #
458 sub hold_items {
459     my ($self, $start, $end, $ids_only) = @_;
460     syslog('LOG_DEBUG', 'OILS: Patron->hold_items()');
461
462
463     # all of my open holds
464     my $holds = $self->{editor}->search_action_hold_request({ 
465         usr => $self->{user}->id, 
466         fulfillment_time => undef, 
467         cancel_time => undef 
468     });
469
470     return $holds if $ids_only;
471     return $self->__format_holds($holds, $start, $end);
472 }
473
474 sub unavail_holds {
475      my ($self, $start, $end, $ids_only) = @_;
476      syslog('LOG_DEBUG', 'OILS: Patron->unavail_holds()');
477
478      my $holds = $self->{editor}->search_action_hold_request({
479         usr => $self->{user}->id,
480         fulfillment_time => undef,
481         cancel_time => undef,
482         '-or' => [
483             {current_shelf_lib => undef},
484             {current_shelf_lib => {'!=' => {'+ahr' => 'pickup_lib'}}}
485         ]
486     });
487
488     return $holds if $ids_only;
489     return $self->__format_holds($holds, $start, $end);
490 }
491
492
493
494 sub __format_holds {
495     my ($self, $holds, $start, $end) = @_;
496
497     return [] unless @$holds;
498
499     my $return_datatype = 
500         OpenILS::SIP->get_option_value('msg64_hold_datatype') || '';
501
502     my @response;
503
504     for my $hold (@$holds) {
505
506         if ($return_datatype eq 'barcode') {
507
508             if (my $copy = $self->find_copy_for_hold($hold)) {
509                 push(@response, $copy->barcode);
510
511             } else {
512                 syslog('LOG_WARNING', 
513                     'OILS: No representative copy found for hold ' . $hold->id);
514             }
515
516         } else {
517             push(@response, 
518                 OpenILS::SIP::clean_text($self->__hold_to_title($hold)));
519         }
520     }
521
522     return (defined $start and defined $end) ? 
523         [ @response[($start-1)..($end-1)] ] :
524         \@response;
525 }
526
527 # Finds a representative copy for the given hold.
528 # If no copy exists at all, undef is returned.
529 # The only limit placed on what constitutes a 
530 # "representative" copy is that it cannot be deleted.
531 # Otherwise, any copy that allows us to find the hold
532 # later is good enough.
533 sub find_copy_for_hold {
534     my ($self, $hold) = @_;
535     my $e = $self->{editor};
536
537     return $e->retrieve_asset_copy($hold->current_copy)
538         if $hold->current_copy; 
539
540     return $e->retrieve_asset_copy($hold->target)
541         if $hold->hold_type =~ /C|R|F/;
542
543     return $e->search_asset_copy([
544         {call_number => $hold->target, deleted => 'f'}, 
545         {limit => 1}])->[0] if $hold->hold_type eq 'V';
546
547     my $bre_ids = [$hold->target];
548
549     if ($hold->hold_type eq 'M') {
550         # find all of the bibs that link to the target metarecord
551         my $maps = $e->search_metabib_metarecord_source_map(
552             {metarecord => $hold->target});
553         $bre_ids = [map {$_->record} @$maps];
554     }
555
556     my $vol_ids = $e->search_asset_call_number( 
557         {record => $bre_ids, deleted => 'f'}, 
558         {idlist => 1}
559     );
560
561     return $e->search_asset_copy([
562         {call_number => $vol_ids, deleted => 'f'}, 
563         {limit => 1}
564     ])->[0];
565 }
566
567 # Given a "representative" copy, finds a matching hold
568 sub find_hold_from_copy {
569     my ($self, $barcode) = @_;
570     my $e = $self->{editor};
571     my $hold;
572
573     my $copy = $e->search_asset_copy([
574         {barcode => $barcode, deleted => 'f'},
575         {flesh => 1, flesh_fields => {acp => ['call_number']}}
576     ])->[0];
577
578     return undef unless $copy;
579
580     my $run_hold_query = sub {
581         my %filter = @_;
582         return $e->search_action_hold_request([
583             {   usr => $self->{user}->id,
584                 cancel_time => undef,
585                 fulfillment_time => undef,
586                 %filter
587             }, {
588                 limit => 1,
589                 order_by => {ahr => 'request_time DESC'}
590             }
591         ])->[0];
592     };
593
594     # first see if there is a match on current_copy
595     return $hold if $hold = 
596         $run_hold_query->(current_copy => $copy->id);
597
598     # next, assume bib-level holds are the most common
599     return $hold if $hold = $run_hold_query->(
600         target => $copy->call_number->record, hold_type => 'T');
601
602     # next try metarecord holds
603     my $map = $e->search_metabib_metarecord_source_map(
604         {source => $copy->call_number->record})->[0];
605
606     return $hold if $hold = $run_hold_query->(
607         target => $map->metarecord, hold_type => 'M');
608
609     # volume holds
610     return $hold if $hold = $run_hold_query->(
611         target => $copy->call_number->id, hold_type => 'V');
612
613     # copy holds
614     return $run_hold_query->(
615         target => $copy->id, hold_type => ['C', 'F', 'R']);
616 }
617
618 sub __hold_to_title {
619     my $self = shift;
620     my $hold = shift;
621     my $e = $self->{editor};
622
623     my( $id, $mods, $title, $volume, $copy );
624
625     return __copy_to_title($e, 
626         $e->retrieve_asset_copy($hold->target)) 
627         if $hold->hold_type eq 'C' or $hold->hold_type eq 'F' or $hold->hold_type eq 'R';
628
629     return __volume_to_title($e, 
630         $e->retrieve_asset_call_number($hold->target))
631         if $hold->hold_type eq 'V';
632
633     return __record_to_title(
634         $e, $hold->target) if $hold->hold_type eq 'T';
635
636     return __metarecord_to_title(
637         $e, $hold->target) if $hold->hold_type eq 'M';
638 }
639
640 sub __copy_to_title {
641     my( $e, $copy ) = @_;
642     #syslog('LOG_DEBUG', "OILS: copy_to_title(%s)", $copy->id);
643     return $copy->dummy_title if $copy->call_number == -1;    
644
645     my $vol = (ref $copy->call_number) ?
646         $copy->call_number :
647         $e->retrieve_asset_call_number($copy->call_number);
648
649     return __volume_to_title($e, $vol);
650 }
651
652
653 sub __volume_to_title {
654     my( $e, $volume ) = @_;
655     #syslog('LOG_DEBUG', "OILS: volume_to_title(%s)", $volume->id);
656     return __record_to_title($e, $volume->record);
657 }
658
659
660 sub __record_to_title {
661     my( $e, $title_id ) = @_;
662     #syslog('LOG_DEBUG', "OILS: record_to_title($title_id)");
663     my $mods = $U->simplereq(
664         'open-ils.search',
665         'open-ils.search.biblio.record.mods_slim.retrieve', $title_id );
666     return ($mods) ? $mods->title : "";
667 }
668
669 sub __metarecord_to_title {
670     my( $e, $m_id ) = @_;
671     #syslog('LOG_DEBUG', "OILS: metarecord_to_title($m_id)");
672     my $mods = $U->simplereq(
673         'open-ils.search',
674         'open-ils.search.biblio.metarecord.mods_slim.retrieve', $m_id);
675     return ($U->event_code($mods)) ? "<unknown>" : $mods->title;
676 }
677
678
679 #
680 # remove the hold on item item_id from my hold queue.
681 # return true if I was holding the item, false otherwise.
682
683 sub drop_hold {
684     my ($self, $item_id) = @_;
685     return 0;
686 }
687
688 sub __patron_items_info {
689     my $self = shift;
690     return if $self->{item_info};
691     $self->{item_info} = 
692         OpenILS::Application::Actor::_checked_out(
693             0, $self->{editor}, $self->{user}->id);;
694 }
695
696
697
698 sub overdue_items {
699     my ($self, $start, $end, $ids_only) = @_;
700
701     $self->__patron_items_info();
702     my @overdues = @{$self->{item_info}->{overdue}};
703     #$overdues[$_] = __circ_to_title($self->{editor}, $overdues[$_]) for @overdues;
704
705     return \@overdues if $ids_only;
706
707     my @o;
708     syslog('LOG_DEBUG', "OILS: overdue_items() fleshing circs @overdues");
709
710     my $return_datatype = OpenILS::SIP->get_option_value('msg64_summary_datatype') || '';
711     
712     for my $circid (@overdues) {
713         next unless $circid;
714         if($return_datatype eq 'barcode') {
715             push( @o, __circ_to_barcode($self->{editor}, $circid));
716         } else {
717             push( @o, OpenILS::SIP::clean_text(__circ_to_title($self->{editor}, $circid)));
718         }
719     }
720     @overdues = @o;
721
722     return (defined $start and defined $end) ? 
723         [ @overdues[($start-1)..($end-1)] ] : \@overdues;
724 }
725
726 sub __circ_to_barcode {
727     my ($e, $circ) = @_;
728     return unless $circ;
729     $circ = $e->retrieve_action_circulation($circ);
730     my $copy = $e->retrieve_asset_copy($circ->target_copy);
731     return $copy->barcode;
732 }
733
734 sub __circ_to_title {
735     my( $e, $circ ) = @_;
736     return unless $circ;
737     $circ = $e->retrieve_action_circulation($circ);
738     return __copy_to_title( $e, 
739         $e->retrieve_asset_copy($circ->target_copy) );
740 }
741
742 # force_bc -- return barcode data regardless of msg64_summary_datatype
743 sub charged_items {
744     my ($self, $start, $end, $ids_only, $force_bc) = shift;
745
746     $self->__patron_items_info();
747
748     my @charges = (
749         @{$self->{item_info}->{out}},
750         @{$self->{item_info}->{overdue}}
751         );
752
753     #$charges[$_] = __circ_to_title($self->{editor}, $charges[$_]) for @charges;
754
755     return \@charges if $ids_only;
756
757     my @c;
758     syslog('LOG_DEBUG', "OILS: charged_items() fleshing circs @charges");
759
760     my $return_datatype = OpenILS::SIP->get_option_value('msg64_summary_datatype') || '';
761
762     for my $circid (@charges) {
763         next unless $circid;
764         if($return_datatype eq 'barcode' or $force_bc) {
765             push( @c, __circ_to_barcode($self->{editor}, $circid));
766         } else {
767             push( @c, OpenILS::SIP::clean_text(__circ_to_title($self->{editor}, $circid)));
768         }
769     }
770
771     @charges = @c;
772
773     return (defined $start and defined $end) ? 
774         [ @charges[($start-1)..($end-1)] ] :
775         \@charges;
776 }
777
778 sub fine_items {
779     my ($self, $start, $end, $ids_only) = @_;
780     my @fines;
781     eval {
782        my $xacts = $U->simplereq('open-ils.actor', 'open-ils.actor.user.transactions.history.have_balance', $self->{authtoken}, $self->{user}->id);
783        foreach my $xact (@{$xacts}) {
784            if ($ids_only) {
785                push @fines, $xact;
786                next;
787            }
788            my $line = $xact->balance_owed . " " . $xact->last_billing_type . " ";
789            if ($xact->xact_type eq 'circulation') {
790                my $mods = $U->simplereq('open-ils.circ', 'open-ils.circ.circ_transaction.find_title', $self->{authtoken}, $xact->id);
791                $line .= $mods->title . ' / ' . $mods->author;
792            } else {
793                $line .= $xact->last_billing_note;
794            }
795            push @fines, OpenILS::SIP::clean_text($line);
796        }
797     };
798     my $log_status = $@ ? 'ERROR: ' . $@ : 'OK';
799     syslog('LOG_DEBUG', 'OILS: Patron->fine_items() ' . $log_status);
800     return (defined $start and defined $end) ? 
801         [ @fines[($start-1)..($end-1)] ] : \@fines;
802 }
803
804 # not currently supported
805 sub recall_items {
806     my ($self, $start, $end, $ids_only) = @_;
807     return [];
808 }
809
810 sub block {
811     my ($self, $card_retained, $blocked_card_msg) = @_;
812     $blocked_card_msg ||= '';
813
814     my $e = $self->{editor};
815     my $u = $self->{user};
816
817     syslog('LOG_INFO', "OILS: Blocking user %s", $u->card->barcode );
818
819     return $self if $u->card->active eq 'f';
820
821     $e->xact_begin;    # connect and start a new transaction
822
823     $u->card->active('f');
824     if( ! $e->update_actor_card($u->card) ) {
825         syslog('LOG_ERR', "OILS: Block card update failed: %s", $e->event->{textcode});
826         $e->rollback; # rollback + disconnect
827         return $self;
828     }
829
830     # retrieve the un-fleshed user object for update
831     $u = $e->retrieve_actor_user($u->id);
832     my $note = OpenILS::SIP::clean_text($u->alert_message) || "";
833     $note = "<sip> CARD BLOCKED BY SELF-CHECK MACHINE. $blocked_card_msg</sip>\n$note"; # XXX Config option
834     $note =~ s/\s*$//;  # kill trailng whitespace
835     $u->alert_message($note);
836
837     if( ! $e->update_actor_user($u) ) {
838         syslog('LOG_ERR', "OILS: Block: patron alert update failed: %s", $e->event->{textcode});
839         $e->rollback; # rollback + disconnect
840         return $self;
841     }
842
843     # stay in synch
844     $self->{user}->alert_message( $note );
845
846     $e->commit; # commits and disconnects
847     return $self;
848 }
849
850 # Testing purposes only
851 sub enable {
852     my ($self, $card_retained) = @_;
853     $self->{screen_msg} = "All privileges restored.";
854
855     # Un-mark card as inactive, grep out the patron alert
856     my $e = $self->{editor};
857     my $u = $self->{user};
858
859     syslog('LOG_INFO', "OILS: Unblocking user %s", $u->card->barcode );
860
861     return $self if $u->card->active eq 't';
862
863     $e->xact_begin;    # connect and start a new transaction
864
865     $u->card->active('t');
866     if( ! $e->update_actor_card($u->card) ) {
867         syslog('LOG_ERR', "OILS: Unblock card update failed: %s", $e->event->{textcode});
868         $e->rollback; # rollback + disconnect
869         return $self;
870     }
871
872     # retrieve the un-fleshed user object for update
873     $u = $e->retrieve_actor_user($u->id);
874     my $note = OpenILS::SIP::clean_text($u->alert_message) || "";
875     $note =~ s#<sip>.*</sip>##;
876     $note =~ s/^\s*//;  # kill leading whitespace
877     $note =~ s/\s*$//;  # kill trailng whitespace
878     $u->alert_message($note);
879
880     if( ! $e->update_actor_user($u) ) {
881         syslog('LOG_ERR', "OILS: Unblock: patron alert update failed: %s", $e->event->{textcode});
882         $e->rollback; # rollback + disconnect
883         return $self;
884     }
885
886     # stay in synch
887     $self->{user}->alert_message( $note );
888
889     $e->commit; # commits and disconnects
890     return $self;
891 }
892
893 #
894 # Messages
895 #
896
897 sub invalid_patron {
898     return "Please contact library staff";
899 }
900
901 sub charge_denied {
902     return "Please contact library staff";
903 }
904
905 sub inet_privileges {
906     my( $self ) = @_;
907     my $e = OpenILS::SIP->editor();
908     $INET_PRIVS = $e->retrieve_all_config_net_access_level() unless $INET_PRIVS;
909     my ($level) = grep { $_->id eq $self->{user}->net_access_level } @$INET_PRIVS;
910     my $name = OpenILS::SIP::clean_text($level->name);
911     syslog('LOG_DEBUG', "OILS: Patron inet_privs = $name");
912     return $name;
913 }
914
915 sub extra_fields {
916     my( $self ) = @_;
917     my $extra_fields = {};
918     my $u = $self->{user};
919     foreach my $stat_cat_entry (@{$u->stat_cat_entries}) {
920         my $stat_cat = $stat_cat_entry->stat_cat;
921         next unless ($stat_cat->sip_field);
922         my $value = $stat_cat_entry->stat_cat_entry;
923         if(defined $stat_cat->sip_format && length($stat_cat->sip_format) > 0) { # Has a format string?
924             if($stat_cat->sip_format =~ /^\|(.*)\|$/) { # Regex match?
925                 if($value =~ /($1)/) { # If we have a match
926                     if(defined $2) { # Check to see if they embedded a capture group
927                         $value = $2; # If so, use it
928                     }
929                     else { # No embedded capture group?
930                         $value = $1; # Use our outer one
931                     }
932                 }
933                 else { # No match?
934                     $value = ''; # Empty string. Will be checked for below.
935                 }
936             }
937             else { # Not a regex match - Try sprintf match (looking for a %s, if any)
938                 $value = sprintf($stat_cat->sip_format, $value);
939             }
940         }
941         next unless length($value) > 0; # No value = no export
942         $value =~ s/\|//g; # Remove all lingering pipe chars for sane output purposes
943         $extra_fields->{ $stat_cat->sip_field } = [] unless (defined $extra_fields->{$stat_cat->sip_field});
944         push(@{$extra_fields->{ $stat_cat->sip_field}}, $value);
945     }
946     return $extra_fields;
947 }
948
949 1;