]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/src/perlmods/lib/OpenILS/SIP/Patron.pm
a3b0f85aaa12c84fa51bf477319e656baa326504
[working/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) = @_;
460     syslog('LOG_DEBUG', 'OILS: Patron->hold_items()');
461
462      my $holds = $self->{editor}->search_action_hold_request(
463         { usr => $self->{user}->id, fulfillment_time => undef, cancel_time => undef }
464      );
465
466     my @holds;
467     push( @holds, OpenILS::SIP::clean_text($self->__hold_to_title($_)) ) for @$holds;
468
469     return (defined $start and defined $end) ? 
470         [ @holds[($start-1)..($end-1)] ] :
471         \@holds;
472 }
473
474 sub __hold_to_title {
475     my $self = shift;
476     my $hold = shift;
477     my $e = $self->{editor};
478
479     my( $id, $mods, $title, $volume, $copy );
480
481     return __copy_to_title($e, 
482         $e->retrieve_asset_copy($hold->target)) 
483         if $hold->hold_type eq 'C' or $hold->hold_type eq 'F' or $hold->hold_type eq 'R';
484
485     return __volume_to_title($e, 
486         $e->retrieve_asset_call_number($hold->target))
487         if $hold->hold_type eq 'V';
488
489     return __record_to_title(
490         $e, $hold->target) if $hold->hold_type eq 'T';
491
492     return __metarecord_to_title(
493         $e, $hold->target) if $hold->hold_type eq 'M';
494 }
495
496 sub __copy_to_title {
497     my( $e, $copy ) = @_;
498     #syslog('LOG_DEBUG', "OILS: copy_to_title(%s)", $copy->id);
499     return $copy->dummy_title if $copy->call_number == -1;    
500
501     my $vol = (ref $copy->call_number) ?
502         $copy->call_number :
503         $e->retrieve_asset_call_number($copy->call_number);
504
505     return __volume_to_title($e, $vol);
506 }
507
508
509 sub __volume_to_title {
510     my( $e, $volume ) = @_;
511     #syslog('LOG_DEBUG', "OILS: volume_to_title(%s)", $volume->id);
512     return __record_to_title($e, $volume->record);
513 }
514
515
516 sub __record_to_title {
517     my( $e, $title_id ) = @_;
518     #syslog('LOG_DEBUG', "OILS: record_to_title($title_id)");
519     my $mods = $U->simplereq(
520         'open-ils.search',
521         'open-ils.search.biblio.record.mods_slim.retrieve', $title_id );
522     return ($mods) ? $mods->title : "";
523 }
524
525 sub __metarecord_to_title {
526     my( $e, $m_id ) = @_;
527     #syslog('LOG_DEBUG', "OILS: metarecord_to_title($m_id)");
528     my $mods = $U->simplereq(
529         'open-ils.search',
530         'open-ils.search.biblio.metarecord.mods_slim.retrieve', $m_id);
531     return ($U->event_code($mods)) ? "<unknown>" : $mods->title;
532 }
533
534
535 #
536 # remove the hold on item item_id from my hold queue.
537 # return true if I was holding the item, false otherwise.
538
539 sub drop_hold {
540     my ($self, $item_id) = @_;
541     return 0;
542 }
543
544 sub __patron_items_info {
545     my $self = shift;
546     return if $self->{item_info};
547     $self->{item_info} = 
548         OpenILS::Application::Actor::_checked_out(
549             0, $self->{editor}, $self->{user}->id);;
550 }
551
552
553
554 sub overdue_items {
555     my ($self, $start, $end) = @_;
556
557     $self->__patron_items_info();
558     my @overdues = @{$self->{item_info}->{overdue}};
559     #$overdues[$_] = __circ_to_title($self->{editor}, $overdues[$_]) for @overdues;
560
561     my @o;
562     syslog('LOG_DEBUG', "OILS: overdue_items() fleshing circs @overdues");
563
564     my $return_datatype = OpenILS::SIP->get_option_value('msg64_summary_datatype') || '';
565     
566     for my $circid (@overdues) {
567         next unless $circid;
568         if($return_datatype eq 'barcode') {
569             push( @o, __circ_to_barcode($self->{editor}, $circid));
570         } else {
571             push( @o, OpenILS::SIP::clean_text(__circ_to_title($self->{editor}, $circid)));
572         }
573     }
574     @overdues = @o;
575
576     return (defined $start and defined $end) ? 
577         [ @overdues[($start-1)..($end-1)] ] : \@overdues;
578 }
579
580 sub __circ_to_barcode {
581     my ($e, $circ) = @_;
582     return unless $circ;
583     $circ = $e->retrieve_action_circulation($circ);
584     my $copy = $e->retrieve_asset_copy($circ->target_copy);
585     return $copy->barcode;
586 }
587
588 sub __circ_to_title {
589     my( $e, $circ ) = @_;
590     return unless $circ;
591     $circ = $e->retrieve_action_circulation($circ);
592     return __copy_to_title( $e, 
593         $e->retrieve_asset_copy($circ->target_copy) );
594 }
595
596 # force_bc -- return barcode data regardless of msg64_summary_datatype
597 sub charged_items {
598     my ($self, $start, $end, $force_bc) = shift;
599
600     $self->__patron_items_info();
601
602     my @charges = (
603         @{$self->{item_info}->{out}},
604         @{$self->{item_info}->{overdue}}
605         );
606
607     #$charges[$_] = __circ_to_title($self->{editor}, $charges[$_]) for @charges;
608
609     my @c;
610     syslog('LOG_DEBUG', "OILS: charged_items() fleshing circs @charges");
611
612     my $return_datatype = OpenILS::SIP->get_option_value('msg64_summary_datatype') || '';
613
614     for my $circid (@charges) {
615         next unless $circid;
616         if($return_datatype eq 'barcode' or $force_bc) {
617             push( @c, __circ_to_barcode($self->{editor}, $circid));
618         } else {
619             push( @c, OpenILS::SIP::clean_text(__circ_to_title($self->{editor}, $circid)));
620         }
621     }
622
623     @charges = @c;
624
625     return (defined $start and defined $end) ? 
626         [ @charges[($start-1)..($end-1)] ] :
627         \@charges;
628 }
629
630 sub fine_items {
631     my ($self, $start, $end) = @_;
632     my @fines;
633     eval {
634        my $xacts = $U->simplereq('open-ils.actor', 'open-ils.actor.user.transactions.history.have_balance', $self->{authtoken}, $self->{user}->id);
635        foreach my $xact (@{$xacts}) {
636            my $line = $xact->balance_owed . " " . $xact->last_billing_type . " ";
637            if ($xact->xact_type eq 'circulation') {
638                my $mods = $U->simplereq('open-ils.circ', 'open-ils.circ.circ_transaction.find_title', $self->{authtoken}, $xact->id);
639                $line .= $mods->title . ' / ' . $mods->author;
640            } else {
641                $line .= $xact->last_billing_note;
642            }
643            push @fines, OpenILS::SIP::clean_text($line);
644        }
645     };
646     my $log_status = $@ ? 'ERROR: ' . $@ : 'OK';
647     syslog('LOG_DEBUG', 'OILS: Patron->fine_items() ' . $log_status);
648     return (defined $start and defined $end) ? 
649         [ @fines[($start-1)..($end-1)] ] : \@fines;
650 }
651
652 # not currently supported
653 sub recall_items {
654     my ($self, $start, $end) = @_;
655     return [];
656 }
657
658 sub unavail_holds {
659      my ($self, $start, $end) = @_;
660      syslog('LOG_DEBUG', 'OILS: Patron->unavail_holds()');
661
662      my $ids = $self->{editor}->json_query({
663         select => {ahr => ['id']},
664         from => 'ahr',
665         where => {
666             usr => $self->{user}->id,
667             fulfillment_time => undef,
668             cancel_time => undef,
669             '-or' => [
670                 {current_shelf_lib => undef},
671                 {current_shelf_lib => {'!=' => {'+ahr' => 'pickup_lib'}}}
672             ]
673         }
674     });
675  
676      my @holds_sip_output;
677      @holds_sip_output = map {
678         OpenILS::SIP::clean_text($self->__hold_to_title($_))
679      } @{
680         $self->{editor}->search_action_hold_request(
681             {id => [map {$_->{id}} @$ids]}
682         )
683      } if (@$ids > 0);
684  
685      return (defined $start and defined $end) ?
686          [ @holds_sip_output[($start-1)..($end-1)] ] :
687          \@holds_sip_output;
688 }
689
690 sub block {
691     my ($self, $card_retained, $blocked_card_msg) = @_;
692     $blocked_card_msg ||= '';
693
694     my $e = $self->{editor};
695     my $u = $self->{user};
696
697     syslog('LOG_INFO', "OILS: Blocking user %s", $u->card->barcode );
698
699     return $self if $u->card->active eq 'f';
700
701     $e->xact_begin;    # connect and start a new transaction
702
703     $u->card->active('f');
704     if( ! $e->update_actor_card($u->card) ) {
705         syslog('LOG_ERR', "OILS: Block card update failed: %s", $e->event->{textcode});
706         $e->rollback; # rollback + disconnect
707         return $self;
708     }
709
710     # retrieve the un-fleshed user object for update
711     $u = $e->retrieve_actor_user($u->id);
712     my $note = OpenILS::SIP::clean_text($u->alert_message) || "";
713     $note = "<sip> CARD BLOCKED BY SELF-CHECK MACHINE. $blocked_card_msg</sip>\n$note"; # XXX Config option
714     $note =~ s/\s*$//;  # kill trailng whitespace
715     $u->alert_message($note);
716
717     if( ! $e->update_actor_user($u) ) {
718         syslog('LOG_ERR', "OILS: Block: patron alert update failed: %s", $e->event->{textcode});
719         $e->rollback; # rollback + disconnect
720         return $self;
721     }
722
723     # stay in synch
724     $self->{user}->alert_message( $note );
725
726     $e->commit; # commits and disconnects
727     return $self;
728 }
729
730 # Testing purposes only
731 sub enable {
732     my ($self, $card_retained) = @_;
733     $self->{screen_msg} = "All privileges restored.";
734
735     # Un-mark card as inactive, grep out the patron alert
736     my $e = $self->{editor};
737     my $u = $self->{user};
738
739     syslog('LOG_INFO', "OILS: Unblocking user %s", $u->card->barcode );
740
741     return $self if $u->card->active eq 't';
742
743     $e->xact_begin;    # connect and start a new transaction
744
745     $u->card->active('t');
746     if( ! $e->update_actor_card($u->card) ) {
747         syslog('LOG_ERR', "OILS: Unblock card update failed: %s", $e->event->{textcode});
748         $e->rollback; # rollback + disconnect
749         return $self;
750     }
751
752     # retrieve the un-fleshed user object for update
753     $u = $e->retrieve_actor_user($u->id);
754     my $note = OpenILS::SIP::clean_text($u->alert_message) || "";
755     $note =~ s#<sip>.*</sip>##;
756     $note =~ s/^\s*//;  # kill leading whitespace
757     $note =~ s/\s*$//;  # kill trailng whitespace
758     $u->alert_message($note);
759
760     if( ! $e->update_actor_user($u) ) {
761         syslog('LOG_ERR', "OILS: Unblock: patron alert update failed: %s", $e->event->{textcode});
762         $e->rollback; # rollback + disconnect
763         return $self;
764     }
765
766     # stay in synch
767     $self->{user}->alert_message( $note );
768
769     $e->commit; # commits and disconnects
770     return $self;
771 }
772
773 #
774 # Messages
775 #
776
777 sub invalid_patron {
778     return "Please contact library staff";
779 }
780
781 sub charge_denied {
782     return "Please contact library staff";
783 }
784
785 sub inet_privileges {
786     my( $self ) = @_;
787     my $e = OpenILS::SIP->editor();
788     $INET_PRIVS = $e->retrieve_all_config_net_access_level() unless $INET_PRIVS;
789     my ($level) = grep { $_->id eq $self->{user}->net_access_level } @$INET_PRIVS;
790     my $name = OpenILS::SIP::clean_text($level->name);
791     syslog('LOG_DEBUG', "OILS: Patron inet_privs = $name");
792     return $name;
793 }
794
795 sub extra_fields {
796     my( $self ) = @_;
797     my $extra_fields = {};
798     my $u = $self->{user};
799     foreach my $stat_cat_entry (@{$u->stat_cat_entries}) {
800         my $stat_cat = $stat_cat_entry->stat_cat;
801         next unless ($stat_cat->sip_field);
802         my $value = $stat_cat_entry->stat_cat_entry;
803         if(defined $stat_cat->sip_format && length($stat_cat->sip_format) > 0) { # Has a format string?
804             if($stat_cat->sip_format =~ /^\|(.*)\|$/) { # Regex match?
805                 if($value =~ /($1)/) { # If we have a match
806                     if(defined $2) { # Check to see if they embedded a capture group
807                         $value = $2; # If so, use it
808                     }
809                     else { # No embedded capture group?
810                         $value = $1; # Use our outer one
811                     }
812                 }
813                 else { # No match?
814                     $value = ''; # Empty string. Will be checked for below.
815                 }
816             }
817             else { # Not a regex match - Try sprintf match (looking for a %s, if any)
818                 $value = sprintf($stat_cat->sip_format, $value);
819             }
820         }
821         next unless length($value) > 0; # No value = no export
822         $value =~ s/\|//g; # Remove all lingering pipe chars for sane output purposes
823         $extra_fields->{ $stat_cat->sip_field } = [] unless (defined $extra_fields->{$stat_cat->sip_field});
824         push(@{$extra_fields->{ $stat_cat->sip_field}}, $value);
825     }
826     return $extra_fields;
827 }
828
829 1;