]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/src/perlmods/OpenILS/SIP/Patron.pm
88259f28e6b2e2deed8b284fbf17ddc22daf2aa5
[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 't';
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         return '';
209 }
210
211 sub print_line {
212     my $self = shift;
213         return '';
214 }
215
216 sub too_many_charged {
217     my $self = shift;
218         return 0;
219 }
220
221 sub too_many_overdue {
222         my $self = shift;
223         if( $self->{user}->standing_penalties ) {
224                 return grep { $_->penalty_type eq 'PATRON_EXCEEDS_OVERDUE_COUNT' } 
225                         @{$self->{user}->standing_penalties};
226         }
227         return 0;
228 }
229
230 # not completely sure what this means
231 sub too_many_renewal {
232     my $self = shift;
233         return 0;
234 }
235
236 # not relevant, handled by fines/fees
237 sub too_many_claim_return {
238     my $self = shift;
239         return 0;
240 }
241
242 # not relevant, handled by fines/fees
243 sub too_many_lost {
244     my $self = shift;
245         return 0;
246 }
247
248 sub excessive_fines {
249     my $self = shift;
250         if( $self->{user}->standing_penalties ) {
251                 return grep { $_->penalty_type eq 'PATRON_EXCEEDS_FINES' } 
252                         @{$self->{user}->standing_penalties};
253         }
254         return 0;
255 }
256
257
258 # Until someone suggests otherwise, fees and fines are the same
259
260 sub excessive_fees {
261         my $self = shift;
262         if( $self->{user}->standing_penalties ) {
263                 return grep { $_->penalty_type eq 'PATRON_EXCEEDS_FINES' } 
264                         @{$self->{user}->standing_penalties};
265         }
266         return 0;
267 }
268
269 # not relevant, handled by fines/fees
270 sub too_many_billed {
271     my $self = shift;
272         return 0;
273 }
274
275
276
277 #
278 # List of outstanding holds placed
279 #
280 sub hold_items {
281     my ($self, $start, $end) = @_;
282
283          my $holds = $self->{editor}->search_action_hold_request(
284                 { usr => $self->{user}->id, fulfillment_time => undef }
285          );
286
287         my @holds;
288         push( @holds, $self->__hold_to_title($_) ) for @$holds;
289
290         return (defined $start and defined $end) ? 
291                 [ $holds[($start-1)..($end-1)] ] : 
292                 \@holds;
293 }
294
295 sub __hold_to_title {
296         my $self = shift;
297         my $hold = shift;
298         my $e = $self->{editor};
299
300         my( $id, $mods, $title, $volume, $copy );
301
302         return __copy_to_title($e, 
303                 $e->retrieve_asset_copy($hold->target)) 
304                 if $hold->hold_type eq 'C';
305
306         return __volume_to_title($e, 
307                 $e->retrieve_asset_call_number($hold->target))
308                 if $hold->hold_type eq 'V';
309
310         return __record_to_title(
311                 $e, $hold->target) if $hold->hold_type eq 'T';
312
313         return __metarecord_to_title(
314                 $e, $hold->target) if $hold->hold_type eq 'M';
315 }
316
317 sub __copy_to_title {
318         my( $e, $copy ) = @_;
319         #syslog('LOG_DEBUG', "OILS: copy_to_title(%s)", $copy->id);
320         return $copy->dummy_title if $copy->call_number == -1;  
321         my $vol = $e->retrieve_asset_call_number($copy->call_number);
322         return __volume_to_title($e, $vol);
323 }
324
325
326 sub __volume_to_title {
327         my( $e, $volume ) = @_;
328         #syslog('LOG_DEBUG', "OILS: volume_to_title(%s)", $volume->id);
329         return __record_to_title($e, $volume->record);
330 }
331
332
333 sub __record_to_title {
334         my( $e, $title_id ) = @_;
335         #syslog('LOG_DEBUG', "OILS: record_to_title($title_id)");
336         my $mods = $U->simplereq(
337                 'open-ils.search',
338                 'open-ils.search.biblio.record.mods_slim.retrieve', $title_id );
339         return ($mods) ? $mods->title : "";
340 }
341
342 sub __metarecord_to_title {
343         my( $e, $m_id ) = @_;
344         #syslog('LOG_DEBUG', "OILS: metarecord_to_title($m_id)");
345         my $mods = $U->simplereq(
346                 'open-ils.search',
347                 'open-ils.search.biblio.metarecord.mods_slim.retrieve', $m_id);
348         return ($U->event_code($mods)) ? "<unknown>" : $mods->title;
349 }
350
351
352 #
353 # remove the hold on item item_id from my hold queue.
354 # return true if I was holding the item, false otherwise.
355
356 sub drop_hold {
357     my ($self, $item_id) = @_;
358     return 0;
359 }
360
361 sub __patron_items_info {
362         my $self = shift;
363         return if $self->{items_info};
364         $self->{item_info} = 
365                 OpenILS::Application::Actor::_checked_out(
366                         0, $self->{editor}, $self->{user}->id);;
367 }
368
369 sub overdue_items {
370         my ($self, $start, $end) = @_;
371
372         $self->__patron_items_info();
373         my @overdues = @{$self->{item_info}->{overdue}};
374         #$overdues[$_] = __circ_to_title($self->{editor}, $overdues[$_]) for @overdues;
375
376         my @o;
377         syslog('LOG_DEBUG', "OILS: overdue_items() fleshing circs @overdues");
378         for my $circid (@overdues) {
379                 next unless $circid;
380                 push( @o, __circ_to_title($self->{editor}, $circid) );
381         }
382         @overdues = @o;
383
384         return (defined $start and defined $end) ? 
385                 [ $overdues[($start-1)..($end-1)] ] : \@overdues;
386 }
387
388 sub __circ_to_title {
389         my( $e, $circ ) = @_;
390         return unless $circ;
391         $circ = $e->retrieve_action_circulation($circ);
392         return __copy_to_title( $e, 
393                 $e->retrieve_asset_copy($circ->target_copy) );
394 }
395
396 sub charged_items {
397         my ($self, $start, $end) = shift;
398
399         $self->__patron_items_info();
400
401         my @charges = (
402                 @{$self->{item_info}->{out}},
403                 @{$self->{item_info}->{overdue}}
404                 );
405
406         #$charges[$_] = __circ_to_title($self->{editor}, $charges[$_]) for @charges;
407
408         my @c;
409         syslog('LOG_DEBUG', "OILS: charged_items() fleshing circs @charges");
410         for my $circid (@charges) {
411                 next unless $circid;
412                 push( @c, __circ_to_title($self->{editor}, $circid) );
413         }
414         @charges = @c;
415
416         return (defined $start and defined $end) ? 
417                 [ $charges[($start-1)..($end-1)] ] : 
418                 \@charges;
419 }
420
421 sub fine_items {
422         my ($self, $start, $end) = @_;
423         my @fines;
424         return (defined $start and defined $end) ? 
425                 [ $fines[($start-1)..($end-1)] ] : \@fines;
426 }
427
428 # not currently supported
429 sub recall_items {
430     my ($self, $start, $end) = @_;
431          return [];
432 }
433
434 sub unavail_holds {
435         my ($self, $start, $end) = @_;
436         my @holds;
437         return (defined $start and defined $end) ? 
438                 [ $holds[($start-1)..($end-1)] ] : \@holds;
439 }
440
441 sub block {
442         my ($self, $card_retained, $blocked_card_msg) = @_;
443
444         my $u = $self->{user};
445         my $e = $self->{editor} = OpenILS::SIP->reset_editor();
446
447         syslog('LOG_INFO', "OILS: Blocking user %s", $u->card->barcode );
448
449         return $self if $u->card->active eq 'f';
450
451         $u->card->active('f');
452         if( ! $e->update_actor_card($u->card) ) {
453                 syslog('LOG_ERR', "OILS: Block card update failed: %s", $e->event->{textcode});
454                 $e->xact_rollback;
455                 return $self;
456         }
457
458         # retrieve the un-fleshed user object for update
459         $u = $e->retrieve_actor_user($u->id);
460         my $note = $u->alert_message || "";
461         $note = "CARD BLOCKED BY SELF-CHECK MACHINE\n$note"; # XXX Config option
462
463         $u->alert_message($note);
464
465         if( ! $e->update_actor_user($u) ) {
466                 syslog('LOG_ERR', "OILS: Block: patron alert update failed: %s", $e->event->{textcode});
467                 $e->xact_rollback;
468                 return $self;
469         }
470
471         # stay in synch
472         $self->{user}->alert_message( $note );
473
474         $e->commit; # commits and resets
475         $self->{editor} = OpenILS::SIP->reset_editor();
476         return $self;
477 }
478
479 # Testing purposes only
480 sub enable {
481     my $self = shift;
482          # Un-mark card as inactive, grep out the patron alert
483     $self->{screen_msg} = "All privileges restored.";
484     return $self;
485 }
486
487 #
488 # Messages
489 #
490
491 sub invalid_patron {
492     return "Please contact library staff";
493 }
494
495 sub charge_denied {
496     return "Please contact library staff";
497 }
498
499 sub inet_privileges {
500         my( $self ) = @_;
501         my $e = OpenILS::SIP->editor();
502         $INET_PRIVS = $e->retrieve_all_config_net_access_level() unless $INET_PRIVS;
503         my ($level) = grep { $_->id eq $self->{user}->net_access_level } @$INET_PRIVS;
504         my $name = $level->name;
505         syslog('LOG_DEBUG', "OILS: Patron inet_privs = $name");
506         return $name;
507 }
508
509
510 1;