]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/src/perlmods/OpenILS/SIP/Patron.pm
added more penalty checks
[Evergreen.git] / Open-ILS / src / perlmods / 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, $patron_id) = @_;
34     my $type = ref($class) || $class;
35     my $self = {};
36
37         syslog("LOG_DEBUG", "OILS: new OpenILS Patron(%s): searching...", $patron_id);
38
39         my $e = OpenILS::SIP->editor();
40
41         my $c = $e->search_actor_card({barcode => $patron_id}, {idlist=>1});
42         my $user;
43
44         if( @$c ) {
45
46                 $user = $e->search_actor_user(
47                         [
48                                 { card => $$c[0] },
49                                 {
50                                         flesh => 1,
51                                         flesh_fields => {
52                                                 "au" => [
53                                                         #"cards",
54                                                         "card",
55                                                         "standing_penalties",
56                                                         "addresses",
57                                                         "billing_address",
58                                                         "mailing_address",
59                                                         #"stat_cat_entries",
60                                                         'profile',
61                                                 ]
62                                         }
63                                 }
64                         ]
65                 );
66
67                 $user = (@$user) ? $$user[0] : undef;
68          }
69
70          if(!$user) {
71                 syslog("LOG_WARNING", "OILS: Unable to find patron %s", $patron_id);
72                 return undef;
73          }
74
75         $self->{user}           = $user;
76         $self->{id}                     = $patron_id;
77         $self->{editor} = $e;
78
79         syslog("LOG_DEBUG", "OILS: new OpenILS Patron(%s): found patron : barred=%s, card:active=%s", 
80                 $patron_id, $self->{user}->barred, $self->{user}->card->active );
81
82
83         bless $self, $type;
84         return $self;
85 }
86
87 sub id {
88     my $self = shift;
89     return $self->{id};
90 }
91
92 sub name {
93     my $self = shift;
94          my $u = $self->{user};
95          return $u->first_given_name . ' ' . 
96                 $u->second_given_name . ' ' . $u->family_name;
97 }
98
99 sub __addr_string {
100         my $addr = shift;
101         return "" unless $addr;
102         return $addr->street1 .' '. 
103                 $addr->street2 .' '.
104                 $addr->city .' '.
105                 $addr->county .' '.
106                 $addr->state .' '.
107                 $addr->country .' '.
108                 $addr->post_code;
109 }
110
111 sub address {
112         my $self = shift;
113         my $u = $self->{user};
114         my $addr = $u->billing_address;
115         $addr = $u->mailing_address unless $addr;
116         my $str = __addr_string($addr);
117         syslog('LOG_DEBUG', "OILS: Patron address: $str");
118         return $str;
119 }
120
121 sub email_addr {
122     my $self = shift;
123         return $self->{user}->email;
124 }
125
126 sub home_phone {
127     my $self = shift;
128         return $self->{user}->day_phone;
129 }
130
131 sub sip_birthdate {
132         my $self = shift;
133         my $dob = OpenILS::SIP->format_date($self->{user}->dob);
134         syslog('LOG_DEBUG', "OILS: Patron DOB = $dob");
135         return $dob;
136 }
137
138 sub ptype {
139     my $self = shift;
140         return $self->{user}->profile->name;
141 }
142
143 sub language {
144     my $self = shift;
145     return '000'; # Unspecified
146 }
147
148 # How much more detail do we need to check here?
149 sub charge_ok {
150     my $self = shift;
151          my $u = $self->{user};
152          return (($u->barred eq 'f') and ($u->card->active eq 't'));
153 }
154
155 # How much more detail do we need to check here?
156 sub renew_ok {
157     my $self = shift;
158          return $self->charge_ok;
159 }
160
161 sub recall_ok {
162     my $self = shift;
163     return 0;
164 }
165
166 sub hold_ok {
167     my $self = shift;
168          return $self->charge_ok;
169 }
170
171 # return true if the card provided is marked as lost
172 sub card_lost {
173     my $self = shift;
174          return $self->{user}->card->active eq 'f';
175 }
176
177 sub recall_overdue {
178     my $self = shift;
179     return 0;
180 }
181
182
183 sub check_password {
184         my ($self, $pwd) = @_;
185         return md5_hex($pwd) eq $self->{user}->passwd;
186 }
187
188
189 sub currency {
190         my $self = shift;
191         return 'USD';
192 }
193
194 sub fee_amount {
195         my $self = shift;
196
197         my $total = 0;
198         my $e = OpenILS::SIP->editor();
199         my $xacts = $e->search_money_open_billable_transaction_summary( 
200                 { usr => $self->{user}->id, balance_owed => { '!=' => 0 } } );
201         
202         $total += $_->balance_owed for @$xacts;
203         return $total;
204 }
205
206 sub screen_msg {
207         my $self = shift;
208         my $u = $self->{user};
209         return 'barred' if $u->barred eq 't';
210
211         my $b = 'blocked';
212         return $b if $u->card->active eq 'f';
213
214         if( $u->standing_penalties ) {
215                 return $b if 
216                         grep { $_->penalty_type eq 'PATRON_EXCEEDS_OVERDUE_COUNT' } 
217                                 @{$u->standing_penalties};
218
219                 return $b if 
220                         grep { $_->penalty_type eq 'PATRON_EXCEEDS_FINES' } 
221                                 @{$u->standing_penalties};
222         }
223
224         return '';
225 }
226
227 sub print_line {
228     my $self = shift;
229         return '';
230 }
231
232 sub too_many_charged {
233     my $self = shift;
234         return 0;
235 }
236
237 sub too_many_overdue {
238         my $self = shift;
239         if( $self->{user}->standing_penalties ) {
240                 return grep { $_->penalty_type eq 'PATRON_EXCEEDS_OVERDUE_COUNT' } 
241                         @{$self->{user}->standing_penalties};
242         }
243         return 0;
244 }
245
246 # not completely sure what this means
247 sub too_many_renewal {
248     my $self = shift;
249         return 0;
250 }
251
252 # not relevant, handled by fines/fees
253 sub too_many_claim_return {
254     my $self = shift;
255         return 0;
256 }
257
258 # not relevant, handled by fines/fees
259 sub too_many_lost {
260     my $self = shift;
261         return 0;
262 }
263
264 sub excessive_fines {
265     my $self = shift;
266         if( $self->{user}->standing_penalties ) {
267                 return grep { $_->penalty_type eq 'PATRON_EXCEEDS_FINES' } 
268                         @{$self->{user}->standing_penalties};
269         }
270         return 0;
271 }
272
273
274 # Until someone suggests otherwise, fees and fines are the same
275
276 sub excessive_fees {
277         my $self = shift;
278         if( $self->{user}->standing_penalties ) {
279                 return grep { $_->penalty_type eq 'PATRON_EXCEEDS_FINES' } 
280                         @{$self->{user}->standing_penalties};
281         }
282         return 0;
283 }
284
285 # not relevant, handled by fines/fees
286 sub too_many_billed {
287     my $self = shift;
288         return 0;
289 }
290
291
292
293 #
294 # List of outstanding holds placed
295 #
296 sub hold_items {
297     my ($self, $start, $end) = @_;
298
299          my $holds = $self->{editor}->search_action_hold_request(
300                 { usr => $self->{user}->id, fulfillment_time => undef }
301          );
302
303         my @holds;
304         push( @holds, $self->__hold_to_title($_) ) for @$holds;
305
306         return (defined $start and defined $end) ? 
307                 [ $holds[($start-1)..($end-1)] ] : 
308                 \@holds;
309 }
310
311 sub __hold_to_title {
312         my $self = shift;
313         my $hold = shift;
314         my $e = $self->{editor};
315
316         my( $id, $mods, $title, $volume, $copy );
317
318         return __copy_to_title($e, 
319                 $e->retrieve_asset_copy($hold->target)) 
320                 if $hold->hold_type eq 'C';
321
322         return __volume_to_title($e, 
323                 $e->retrieve_asset_call_number($hold->target))
324                 if $hold->hold_type eq 'V';
325
326         return __record_to_title(
327                 $e, $hold->target) if $hold->hold_type eq 'T';
328
329         return __metarecord_to_title(
330                 $e, $hold->target) if $hold->hold_type eq 'M';
331 }
332
333 sub __copy_to_title {
334         my( $e, $copy ) = @_;
335         #syslog('LOG_DEBUG', "OILS: copy_to_title(%s)", $copy->id);
336         return $copy->dummy_title if $copy->call_number == -1;  
337         my $vol = $e->retrieve_asset_call_number($copy->call_number);
338         return __volume_to_title($e, $vol);
339 }
340
341
342 sub __volume_to_title {
343         my( $e, $volume ) = @_;
344         #syslog('LOG_DEBUG', "OILS: volume_to_title(%s)", $volume->id);
345         return __record_to_title($e, $volume->record);
346 }
347
348
349 sub __record_to_title {
350         my( $e, $title_id ) = @_;
351         #syslog('LOG_DEBUG', "OILS: record_to_title($title_id)");
352         my $mods = $U->simplereq(
353                 'open-ils.search',
354                 'open-ils.search.biblio.record.mods_slim.retrieve', $title_id );
355         return ($mods) ? $mods->title : "";
356 }
357
358 sub __metarecord_to_title {
359         my( $e, $m_id ) = @_;
360         #syslog('LOG_DEBUG', "OILS: metarecord_to_title($m_id)");
361         my $mods = $U->simplereq(
362                 'open-ils.search',
363                 'open-ils.search.biblio.metarecord.mods_slim.retrieve', $m_id);
364         return ($U->event_code($mods)) ? "<unknown>" : $mods->title;
365 }
366
367
368 #
369 # remove the hold on item item_id from my hold queue.
370 # return true if I was holding the item, false otherwise.
371
372 sub drop_hold {
373     my ($self, $item_id) = @_;
374     return 0;
375 }
376
377 sub __patron_items_info {
378         my $self = shift;
379         return if $self->{items_info};
380         $self->{item_info} = 
381                 OpenILS::Application::Actor::_checked_out(
382                         0, $self->{editor}, $self->{user}->id);;
383 }
384
385 sub overdue_items {
386         my ($self, $start, $end) = @_;
387
388         $self->__patron_items_info();
389         my @overdues = @{$self->{item_info}->{overdue}};
390         #$overdues[$_] = __circ_to_title($self->{editor}, $overdues[$_]) for @overdues;
391
392         my @o;
393         syslog('LOG_DEBUG', "OILS: overdue_items() fleshing circs @overdues");
394         for my $circid (@overdues) {
395                 next unless $circid;
396                 push( @o, __circ_to_title($self->{editor}, $circid) );
397         }
398         @overdues = @o;
399
400         return (defined $start and defined $end) ? 
401                 [ $overdues[($start-1)..($end-1)] ] : \@overdues;
402 }
403
404 sub __circ_to_title {
405         my( $e, $circ ) = @_;
406         return unless $circ;
407         $circ = $e->retrieve_action_circulation($circ);
408         return __copy_to_title( $e, 
409                 $e->retrieve_asset_copy($circ->target_copy) );
410 }
411
412 sub charged_items {
413         my ($self, $start, $end) = shift;
414
415         $self->__patron_items_info();
416
417         my @charges = (
418                 @{$self->{item_info}->{out}},
419                 @{$self->{item_info}->{overdue}}
420                 );
421
422         #$charges[$_] = __circ_to_title($self->{editor}, $charges[$_]) for @charges;
423
424         my @c;
425         syslog('LOG_DEBUG', "OILS: charged_items() fleshing circs @charges");
426         for my $circid (@charges) {
427                 next unless $circid;
428                 push( @c, __circ_to_title($self->{editor}, $circid) );
429         }
430         @charges = @c;
431
432         return (defined $start and defined $end) ? 
433                 [ $charges[($start-1)..($end-1)] ] : 
434                 \@charges;
435 }
436
437 sub fine_items {
438         my ($self, $start, $end) = @_;
439         my @fines;
440         return (defined $start and defined $end) ? 
441                 [ $fines[($start-1)..($end-1)] ] : \@fines;
442 }
443
444 # not currently supported
445 sub recall_items {
446     my ($self, $start, $end) = @_;
447          return [];
448 }
449
450 sub unavail_holds {
451         my ($self, $start, $end) = @_;
452         my @holds;
453         return (defined $start and defined $end) ? 
454                 [ $holds[($start-1)..($end-1)] ] : \@holds;
455 }
456
457 sub block {
458         my ($self, $card_retained, $blocked_card_msg) = @_;
459
460         my $u = $self->{user};
461         my $e = $self->{editor} = OpenILS::SIP->reset_editor();
462
463         syslog('LOG_INFO', "OILS: Blocking user %s", $u->card->barcode );
464
465         return $self if $u->card->active eq 'f';
466
467         $u->card->active('f');
468         if( ! $e->update_actor_card($u->card) ) {
469                 syslog('LOG_ERR', "OILS: Block card update failed: %s", $e->event->{textcode});
470                 $e->xact_rollback;
471                 return $self;
472         }
473
474         # retrieve the un-fleshed user object for update
475         $u = $e->retrieve_actor_user($u->id);
476         my $note = $u->alert_message || "";
477         $note = "CARD BLOCKED BY SELF-CHECK MACHINE\n$note"; # XXX Config option
478
479         $u->alert_message($note);
480
481         if( ! $e->update_actor_user($u) ) {
482                 syslog('LOG_ERR', "OILS: Block: patron alert update failed: %s", $e->event->{textcode});
483                 $e->xact_rollback;
484                 return $self;
485         }
486
487         # stay in synch
488         $self->{user}->alert_message( $note );
489
490         $e->commit; # commits and resets
491         $self->{editor} = OpenILS::SIP->reset_editor();
492         return $self;
493 }
494
495 # Testing purposes only
496 sub enable {
497     my $self = shift;
498          # Un-mark card as inactive, grep out the patron alert
499     $self->{screen_msg} = "All privileges restored.";
500     return $self;
501 }
502
503 #
504 # Messages
505 #
506
507 sub invalid_patron {
508     return "Please contact library staff";
509 }
510
511 sub charge_denied {
512     return "Please contact library staff";
513 }
514
515 sub inet_privileges {
516         my( $self ) = @_;
517         my $e = OpenILS::SIP->editor();
518         $INET_PRIVS = $e->retrieve_all_config_net_access_level() unless $INET_PRIVS;
519         my ($level) = grep { $_->id eq $self->{user}->net_access_level } @$INET_PRIVS;
520         my $name = $level->name;
521         syslog('LOG_DEBUG', "OILS: Patron inet_privs = $name");
522         return $name;
523 }
524
525
526 1;