]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/src/perlmods/OpenILS/SIP/Patron.pm
add passive event validator to stop events that are too far past the delay_field...
[working/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 home_library {
100     my $self = shift;
101     my $lib = $self->{editor}->retrieve_actor_org_unit($self->{user}->home_ou)->shortname;
102         syslog('LOG_DEBUG', "OILS: Patron->home_library() = $lib");
103     return $lib;
104 }
105
106 sub __addr_string {
107         my $addr = shift;
108         return "" unless $addr;
109         return $addr->street1 .' '. 
110                 $addr->street2 .' '.
111                 $addr->city .' '.
112                 $addr->county .' '.
113                 $addr->state .' '.
114                 $addr->country .' '.
115                 $addr->post_code;
116 }
117
118 sub address {
119         my $self = shift;
120         my $u = $self->{user};
121         my $addr = $u->billing_address;
122         $addr = $u->mailing_address unless $addr;
123         my $str = __addr_string($addr);
124         syslog('LOG_DEBUG', "OILS: Patron address: $str");
125         return $str;
126 }
127
128 sub email_addr {
129     my $self = shift;
130         return $self->{user}->email;
131 }
132
133 sub home_phone {
134     my $self = shift;
135         return $self->{user}->day_phone;
136 }
137
138 sub sip_birthdate {
139         my $self = shift;
140         my $dob = OpenILS::SIP->format_date($self->{user}->dob);
141         syslog('LOG_DEBUG', "OILS: Patron DOB = $dob");
142         return $dob;
143 }
144
145 sub ptype {
146     my $self = shift;
147         return $self->{user}->profile->name;
148 }
149
150 sub language {
151     my $self = shift;
152     return '000'; # Unspecified
153 }
154
155 # How much more detail do we need to check here?
156 sub charge_ok {
157     my $self = shift;
158          my $u = $self->{user};
159          return (($u->barred eq 'f') and ($u->card->active eq 't'));
160 }
161
162 # How much more detail do we need to check here?
163 sub renew_ok {
164     my $self = shift;
165          return $self->charge_ok;
166 }
167
168 sub recall_ok {
169     my $self = shift;
170     return 0;
171 }
172
173 sub hold_ok {
174     my $self = shift;
175          return $self->charge_ok;
176 }
177
178 # return true if the card provided is marked as lost
179 sub card_lost {
180     my $self = shift;
181          return $self->{user}->card->active eq 'f';
182 }
183
184 sub recall_overdue {
185     my $self = shift;
186     return 0;
187 }
188
189
190 sub check_password {
191         my ($self, $pwd) = @_;
192         syslog('LOG_DEBUG', 'OILS: Patron->check_password()');
193         return md5_hex($pwd) eq $self->{user}->passwd;
194 }
195
196
197 sub currency {
198         my $self = shift;
199         syslog('LOG_DEBUG', 'OILS: Patron->currency()');
200         return 'USD';
201 }
202
203 sub fee_amount {
204         my $self = shift;
205         syslog('LOG_DEBUG', 'OILS: Patron->fee_amount()');
206
207         my $ses = $U->start_db_session();
208         my $summary = $ses->request(
209                 'open-ils.storage.money.open_user_summary.search', $self->{user}->id )->gather(1);
210         $U->rollback_db_session($ses);
211
212         my $total = $summary->balance_owed;
213         syslog('LOG_INFO', "User ".$self->{id} .':'.$self->{user}->id." has a fee amount of \$$total");
214         return $total;
215 }
216
217 sub screen_msg {
218         my $self = shift;
219         my $u = $self->{user};
220         return 'barred' if $u->barred eq 't';
221
222         my $b = 'blocked';
223
224         return $b if $u->active eq 'f';
225         return $b if $u->card->active eq 'f';
226
227         if( $u->standing_penalties ) {
228                 return $b if 
229                         grep { $_->penalty_type eq 'PATRON_EXCEEDS_OVERDUE_COUNT' } 
230                                 @{$u->standing_penalties};
231
232                 return $b if 
233                         grep { $_->penalty_type eq 'PATRON_EXCEEDS_FINES' } 
234                                 @{$u->standing_penalties};
235         }
236
237         my $expire = DateTime::Format::ISO8601->new->parse_datetime(
238                 clense_ISO8601($u->expire_date));
239
240         return $b if CORE::time > $expire->epoch;
241
242         return 'OK';
243 }
244
245 sub print_line {
246     my $self = shift;
247         return '';
248 }
249
250 sub too_many_charged {
251     my $self = shift;
252         return 0;
253 }
254
255 sub too_many_overdue {
256         my $self = shift;
257         if( $self->{user}->standing_penalties ) {
258                 return grep { $_->penalty_type eq 'PATRON_EXCEEDS_OVERDUE_COUNT' } 
259                         @{$self->{user}->standing_penalties};
260         }
261         return 0;
262 }
263
264 # not completely sure what this means
265 sub too_many_renewal {
266     my $self = shift;
267         return 0;
268 }
269
270 # not relevant, handled by fines/fees
271 sub too_many_claim_return {
272     my $self = shift;
273         return 0;
274 }
275
276 # not relevant, handled by fines/fees
277 sub too_many_lost {
278     my $self = shift;
279         return 0;
280 }
281
282 sub excessive_fines {
283     my $self = shift;
284         syslog('LOG_DEBUG', 'OILS: Patron->excessive_fines()');
285         if( $self->{user}->standing_penalties ) {
286                 return grep { $_->penalty_type eq 'PATRON_EXCEEDS_FINES' } 
287                         @{$self->{user}->standing_penalties};
288         }
289         return 0;
290 }
291
292
293 # Until someone suggests otherwise, fees and fines are the same
294
295 sub excessive_fees {
296         my $self = shift;
297         syslog('LOG_DEBUG', 'OILS: Patron->excessive_fees()');
298         if( $self->{user}->standing_penalties ) {
299                 return grep { $_->penalty_type eq 'PATRON_EXCEEDS_FINES' } 
300                         @{$self->{user}->standing_penalties};
301         }
302         return 0;
303 }
304
305 # not relevant, handled by fines/fees
306 sub too_many_billed {
307     my $self = shift;
308         return 0;
309 }
310
311
312
313 #
314 # List of outstanding holds placed
315 #
316 sub hold_items {
317     my ($self, $start, $end) = @_;
318         syslog('LOG_DEBUG', 'OILS: Patron->hold_items()');
319
320          my $holds = $self->{editor}->search_action_hold_request(
321                 { usr => $self->{user}->id, fulfillment_time => undef, cancel_time => undef }
322          );
323
324         my @holds;
325         push( @holds, $self->__hold_to_title($_) ) for @$holds;
326
327         return (defined $start and defined $end) ? 
328                 [ $holds[($start-1)..($end-1)] ] : 
329                 \@holds;
330 }
331
332 sub __hold_to_title {
333         my $self = shift;
334         my $hold = shift;
335         my $e = $self->{editor};
336
337         my( $id, $mods, $title, $volume, $copy );
338
339         return __copy_to_title($e, 
340                 $e->retrieve_asset_copy($hold->target)) 
341                 if $hold->hold_type eq 'C';
342
343         return __volume_to_title($e, 
344                 $e->retrieve_asset_call_number($hold->target))
345                 if $hold->hold_type eq 'V';
346
347         return __record_to_title(
348                 $e, $hold->target) if $hold->hold_type eq 'T';
349
350         return __metarecord_to_title(
351                 $e, $hold->target) if $hold->hold_type eq 'M';
352 }
353
354 sub __copy_to_title {
355         my( $e, $copy ) = @_;
356         #syslog('LOG_DEBUG', "OILS: copy_to_title(%s)", $copy->id);
357         return $copy->dummy_title if $copy->call_number == -1;  
358
359         my $vol = (ref $copy->call_number) ?
360                 $copy->call_number :
361                 $e->retrieve_asset_call_number($copy->call_number);
362
363         return __volume_to_title($e, $vol);
364 }
365
366
367 sub __volume_to_title {
368         my( $e, $volume ) = @_;
369         #syslog('LOG_DEBUG', "OILS: volume_to_title(%s)", $volume->id);
370         return __record_to_title($e, $volume->record);
371 }
372
373
374 sub __record_to_title {
375         my( $e, $title_id ) = @_;
376         #syslog('LOG_DEBUG', "OILS: record_to_title($title_id)");
377         my $mods = $U->simplereq(
378                 'open-ils.search',
379                 'open-ils.search.biblio.record.mods_slim.retrieve', $title_id );
380         return ($mods) ? $mods->title : "";
381 }
382
383 sub __metarecord_to_title {
384         my( $e, $m_id ) = @_;
385         #syslog('LOG_DEBUG', "OILS: metarecord_to_title($m_id)");
386         my $mods = $U->simplereq(
387                 'open-ils.search',
388                 'open-ils.search.biblio.metarecord.mods_slim.retrieve', $m_id);
389         return ($U->event_code($mods)) ? "<unknown>" : $mods->title;
390 }
391
392
393 #
394 # remove the hold on item item_id from my hold queue.
395 # return true if I was holding the item, false otherwise.
396
397 sub drop_hold {
398     my ($self, $item_id) = @_;
399     return 0;
400 }
401
402 sub __patron_items_info {
403         my $self = shift;
404         return if $self->{items_info};
405         $self->{item_info} = 
406                 OpenILS::Application::Actor::_checked_out(
407                         0, $self->{editor}, $self->{user}->id);;
408 }
409
410 sub overdue_items {
411         my ($self, $start, $end) = @_;
412
413         $self->__patron_items_info();
414         my @overdues = @{$self->{item_info}->{overdue}};
415         #$overdues[$_] = __circ_to_title($self->{editor}, $overdues[$_]) for @overdues;
416
417         my @o;
418         syslog('LOG_DEBUG', "OILS: overdue_items() fleshing circs @overdues");
419         
420         
421         my @return_datatype = grep { $_->{name} eq 'msg64_summary_datatype' } @{$self->{config}->{implementation_config}->{options}->{option}};
422         
423         for my $circid (@overdues) {
424                 next unless $circid;
425                 if(@return_datatype and $return_datatype[0]->{value} eq 'barcode') {
426                         push( @o, __circ_to_barcode($self->{editor}, $circid));
427                 } else {
428                         push( @o, __circ_to_title($self->{editor}, $circid));
429                 }
430         }
431         @overdues = @o;
432
433         return (defined $start and defined $end) ? 
434                 [ $overdues[($start-1)..($end-1)] ] : \@overdues;
435 }
436
437 sub __circ_to_barcode {
438         my ($e, $circ) = @_;
439         return unless $circ;
440         $circ = $e->retrieve_action_circulation($circ);
441         my $copy = $e->retrieve_asset_copy($circ->target_copy);
442         return $copy->barcode;
443 }
444
445 sub __circ_to_title {
446         my( $e, $circ ) = @_;
447         return unless $circ;
448         $circ = $e->retrieve_action_circulation($circ);
449         return __copy_to_title( $e, 
450                 $e->retrieve_asset_copy($circ->target_copy) );
451 }
452
453 sub charged_items {
454         my ($self, $start, $end) = shift;
455
456         $self->__patron_items_info();
457
458         my @charges = (
459                 @{$self->{item_info}->{out}},
460                 @{$self->{item_info}->{overdue}}
461                 );
462
463         #$charges[$_] = __circ_to_title($self->{editor}, $charges[$_]) for @charges;
464
465         my @c;
466         syslog('LOG_DEBUG', "OILS: charged_items() fleshing circs @charges");
467
468         my @return_datatype = grep { $_->{name} eq 'msg64_summary_datatype' } @{$self->{config}->{implementation_config}->{options}->{option}};
469
470         for my $circid (@charges) {
471                 next unless $circid;
472                 if(@return_datatype and $return_datatype[0]->{value} eq 'barcode') {
473                         push( @c, __circ_to_barcode($self->{editor}, $circid));
474                 } else {
475                         push( @c, __circ_to_title($self->{editor}, $circid));
476                 }
477         }
478
479         @charges = @c;
480
481         return (defined $start and defined $end) ? 
482                 [ $charges[($start-1)..($end-1)] ] : 
483                 \@charges;
484 }
485
486 sub fine_items {
487         my ($self, $start, $end) = @_;
488         my @fines;
489         syslog('LOG_DEBUG', 'OILS: Patron->fine_items()');
490         return (defined $start and defined $end) ? 
491                 [ $fines[($start-1)..($end-1)] ] : \@fines;
492 }
493
494 # not currently supported
495 sub recall_items {
496     my ($self, $start, $end) = @_;
497          return [];
498 }
499
500 sub unavail_holds {
501         my ($self, $start, $end) = @_;
502         my @holds;
503         syslog('LOG_DEBUG', 'OILS: Patron->unavail_holds()');
504         return (defined $start and defined $end) ? 
505                 [ $holds[($start-1)..($end-1)] ] : \@holds;
506 }
507
508 sub block {
509         my ($self, $card_retained, $blocked_card_msg) = @_;
510
511         my $u = $self->{user};
512         my $e = $self->{editor} = OpenILS::SIP->reset_editor();
513
514         syslog('LOG_INFO', "OILS: Blocking user %s", $u->card->barcode );
515
516         return $self if $u->card->active eq 'f';
517
518         $u->card->active('f');
519         if( ! $e->update_actor_card($u->card) ) {
520                 syslog('LOG_ERR', "OILS: Block card update failed: %s", $e->event->{textcode});
521                 $e->xact_rollback;
522                 return $self;
523         }
524
525         # retrieve the un-fleshed user object for update
526         $u = $e->retrieve_actor_user($u->id);
527         my $note = $u->alert_message || "";
528         $note = "CARD BLOCKED BY SELF-CHECK MACHINE\n$note"; # XXX Config option
529
530         $u->alert_message($note);
531
532         if( ! $e->update_actor_user($u) ) {
533                 syslog('LOG_ERR', "OILS: Block: patron alert update failed: %s", $e->event->{textcode});
534                 $e->xact_rollback;
535                 return $self;
536         }
537
538         # stay in synch
539         $self->{user}->alert_message( $note );
540
541         $e->commit; # commits and resets
542         $self->{editor} = OpenILS::SIP->reset_editor();
543         return $self;
544 }
545
546 # Testing purposes only
547 sub enable {
548     my $self = shift;
549          # Un-mark card as inactive, grep out the patron alert
550     $self->{screen_msg} = "All privileges restored.";
551     return $self;
552 }
553
554 #
555 # Messages
556 #
557
558 sub invalid_patron {
559     return "Please contact library staff";
560 }
561
562 sub charge_denied {
563     return "Please contact library staff";
564 }
565
566 sub inet_privileges {
567         my( $self ) = @_;
568         my $e = OpenILS::SIP->editor();
569         $INET_PRIVS = $e->retrieve_all_config_net_access_level() unless $INET_PRIVS;
570         my ($level) = grep { $_->id eq $self->{user}->net_access_level } @$INET_PRIVS;
571         my $name = $level->name;
572         syslog('LOG_DEBUG', "OILS: Patron inet_privs = $name");
573         return $name;
574 }
575
576
577 1;