4 # A Class for hiding the ILS's concept of the patron from the OpenSIP
8 package C4
::SIP
::ILS
::Patron
;
15 use Sys
::Syslog
qw(syslog);
23 use C4
::Branch
qw(GetBranchName);
24 use C4
::Items
qw( GetBarcodeFromItemnumber GetItemnumbersForBiblio);
25 use C4
::Auth
qw(checkpw);
27 our $VERSION = 3.07.00.049;
29 our $kp; # koha patron
32 my ($class, $patron_id) = @_;
33 my $type = ref($class) || $class;
35 $kp = GetMember
(cardnumber
=>$patron_id) || GetMember
(userid
=>$patron_id);
36 $debug and warn "new Patron (GetMember): " . Dumper
($kp);
37 unless (defined $kp) {
38 syslog
("LOG_DEBUG", "new ILS::Patron(%s): no such patron", $patron_id);
41 $kp = GetMemberDetails
($kp->{borrowernumber
});
42 $debug and warn "new Patron (GetMemberDetails): " . Dumper
($kp);
43 my $pw = $kp->{password
};
44 my $flags = $kp->{flags
}; # or warn "Warning: No flags from patron object for '$patron_id'";
45 my $debarred = defined($kp->{flags
}->{DBARRED
});
46 $debug and warn sprintf("Debarred = %s : ", ($debarred||'undef')) . Dumper
(%{$kp->{flags
}});
47 my ($day, $month, $year) = (localtime)[3,4,5];
48 my $today = sprintf '%04d-%02d-%02d', $year+1900, $month+1, $day;
49 my $expired = ($today gt $kp->{dateexpiry
}) ?
1 : 0;
51 if ($kp->{opacnote
} ) {
52 $kp->{opacnote
} .= q{ };
54 $kp->{opacnote
} .= 'PATRON EXPIRED';
57 my $adr = _get_address
($kp);
58 my $dob = $kp->{dateofbirth
};
59 $dob and $dob =~ s/-//g; # YYYYMMDD
60 my $dexpiry = $kp->{dateexpiry
};
61 $dexpiry and $dexpiry =~ s/-//g; # YYYYMMDD
62 my $fines_amount = $flags->{CHARGES
}->{amount
};
63 $fines_amount = ($fines_amount and $fines_amount > 0) ?
$fines_amount : 0;
64 my $fee_limit = _fee_limit
();
65 my $fine_blocked = $fines_amount > $fee_limit;
67 no warnings
; # any of these $kp->{fields} being concat'd could be undef
69 getmemberdetails_object
=> $kp,
70 name
=> $kp->{firstname
} . " " . $kp->{surname
},
71 id
=> $kp->{cardnumber
}, # to SIP, the id is the BARCODE, not userid
73 ptype
=> $kp->{categorycode
}, # 'A'dult. Whatever.
74 dateexpiry
=> $dexpiry,
75 dateexpiry_iso
=> $kp->{dateexpiry
},
77 birthdate_iso
=> $kp->{dateofbirth
},
78 branchcode
=> $kp->{branchcode
},
79 library_name
=> "", # only populated if needed, cached here
80 borrowernumber
=> $kp->{borrowernumber
},
82 home_phone
=> $kp->{phone
},
83 email_addr
=> $kp->{email
},
84 charge_ok
=> ( !$debarred && !$expired && !$fine_blocked),
85 renew_ok
=> ( !$debarred && !$expired && !$fine_blocked),
86 recall_ok
=> ( !$debarred && !$expired && !$fine_blocked),
87 hold_ok
=> ( !$debarred && !$expired && !$fine_blocked),
88 card_lost
=> ( $kp->{lost
} || $kp->{gonenoaddress
} || $flags->{LOST
} ),
90 fines
=> $fines_amount, # GetMemberAccountRecords($kp->{borrowernumber})
91 fees
=> 0, # currently not distinct from fines
94 screen_msg
=> 'Greetings from Koha. ' . $kp->{opacnote
},
97 hold_items
=> $flags->{WAITING
}->{itemlist
},
98 overdue_items
=> $flags->{ODUES
}->{itemlist
},
102 inet
=> ( !$debarred && !$expired ),
104 fee_limit
=> $fee_limit,
105 userid
=> $kp->{userid
},
108 $debug and warn "patron fines: $ilspatron{fines} ... amountoutstanding: $kp->{amountoutstanding} ... CHARGES->amount: $flags->{CHARGES}->{amount}";
109 for (qw(EXPIRED CHARGES CREDITS GNA LOST DBARRED NOTES)) {
110 ($flags->{$_}) or next;
111 if ($_ ne 'NOTES' and $flags->{$_}->{message
}) {
112 $ilspatron{screen_msg
} .= " -- " . $flags->{$_}->{message
}; # show all but internal NOTES
114 if ($flags->{$_}->{noissues
}) {
115 foreach my $toggle (qw(charge_ok renew_ok recall_ok hold_ok inet)) {
116 $ilspatron{$toggle} = 0; # if we get noissues, disable everything
121 # FIXME: populate fine_items recall_items
122 $ilspatron{unavail_holds
} = _get_outstanding_holds
($kp->{borrowernumber
});
123 $ilspatron{items
} = GetPendingIssues
($kp->{borrowernumber
});
125 $debug and warn Dumper
($self);
126 syslog
("LOG_DEBUG", "new ILS::Patron(%s): found patron '%s'", $patron_id,$self->{id
});
146 charge_ok
=> 0, # for patron_status[0] (inverted)
147 renew_ok
=> 0, # for patron_status[1] (inverted)
148 recall_ok
=> 0, # for patron_status[2] (inverted)
149 hold_ok
=> 0, # for patron_status[3] (inverted)
150 card_lost
=> 0, # for patron_status[4]
156 too_many_charged
=> 0, # for patron_status[5]
157 too_many_overdue
=> 0, # for patron_status[6]
158 too_many_renewal
=> 0, # for patron_status[7]
159 too_many_claim_return
=> 0, # for patron_status[8]
160 too_many_lost
=> 0, # for patron_status[9]
161 # excessive_fines => 0, # for patron_status[10]
162 # excessive_fees => 0, # for patron_status[11]
163 recall_overdue
=> 0, # for patron_status[12]
164 too_many_billed
=> 0, # for patron_status[13]
165 inet
=> 0, # EnvisionWare extension
166 getmemberdetails_object
=> 0,
172 # be cool. needed for AUTOLOAD(?)
177 my $class = ref($self) or croak
"$self is not an object";
178 my $name = $AUTOLOAD;
182 unless (exists $fields{$name}) {
183 croak
"Cannot access '$name' field of class '$class'";
187 $fields{$name} or croak
"Field '$name' of class '$class' is READ ONLY.";
188 return $self->{$name} = shift;
190 return $self->{$name};
195 my ( $self, $pwd ) = @_;
197 # you gotta give me something (at least ''), or no deal
198 return 0 unless defined $pwd;
200 # If the record has a NULL password, accept '' as match
201 return $pwd eq q{} unless $self->{password
};
203 my $dbh = C4
::Context
->dbh;
205 ($ret) = checkpw
( $dbh, $self->{userid
}, $pwd );
209 # A few special cases, not in AUTOLOADed %fields
212 if ( $self->{fines
} ) {
213 return $self->{fines
};
220 return $self->fee_amount;
225 return $self->{language
} || '000'; # Unspecified
230 return $self->{expired
};
234 # remove the hold on item item_id from my hold queue.
235 # return true if I was holding the item, false otherwise.
238 my ($self, $item_id) = @_;
241 foreach (qw(hold_items unavail_holds)) {
243 for (my $i = 0; $i < scalar @
{$self->{$_}}; $i++) {
244 my $held_item = $self->{$_}[$i]->{item_id
} or next;
245 if ($held_item eq $item_id) {
246 splice @
{$self->{$_}}, $i, 1;
254 # Accessor method for array_ref values, designed to get the "start" and "end" values
255 # from the SIP request. Note those incoming values are 1-indexed, not 0-indexed.
259 my $array_var = shift or return;
260 my ($start, $end) = @_;
263 if ($self->{$array_var}) {
264 if ($start && $start > 1) {
270 if ( $end && $end < @
{$self->{$array_var}} ) {
273 $end = @
{$self->{$array_var}};
276 @
{$item_list} = @
{$self->{$array_var}}[ $start .. $end ];
283 # List of outstanding holds placed
287 my $item_arr = $self->x_items('hold_items', @_);
288 foreach my $item (@
{$item_arr}) {
289 $item->{barcode
} = GetBarcodeFromItemnumber
($item->{itemnumber
});
296 return $self->x_items('overdue_items', @_);
300 return $self->x_items('items', @_);
304 return $self->x_items('fine_items', @_);
308 return $self->x_items('recall_items', @_);
312 return $self->x_items('unavail_holds', @_);
316 my ($self, $card_retained, $blocked_card_msg) = @_;
317 foreach my $field ('charge_ok', 'renew_ok', 'recall_ok', 'hold_ok', 'inet') {
320 $self->{screen_msg
} = "Block feature not implemented"; # $blocked_card_msg || "Card Blocked. Please contact library staff";
321 # TODO: not really affecting patron record
327 foreach my $field ('charge_ok', 'renew_ok', 'recall_ok', 'hold_ok', 'inet') {
330 syslog
("LOG_DEBUG", "Patron(%s)->enable: charge: %s, renew:%s, recall:%s, hold:%s",
331 $self->{id
}, $self->{charge_ok
}, $self->{renew_ok
},
332 $self->{recall_ok
}, $self->{hold_ok
});
333 $self->{screen_msg
} = "Enable feature not implemented."; # "All privileges restored."; # TODO: not really affecting patron record
337 sub inet_privileges
{
339 return $self->{inet
} ?
'Y' : 'N';
343 return C4
::Context
->preference('noissuescharge') || 5;
348 return ($self->fee_amount and $self->fee_amount > $self->fee_limit);
351 sub excessive_fines
{
353 return $self->excessive_fees; # excessive_fines is the same thing as excessive_fees for Koha
356 sub holds_blocked_by_excessive_fees
{
358 return ( $self->fee_amount
359 && $self->fee_amount > C4
::Context
->preference("maxoutstanding") );
364 unless ($self->{library_name
}) {
365 $self->{library_name
} = GetBranchName
($self->{branchcode
});
367 return $self->{library_name
};
375 return "Please contact library staff";
380 return "Please contact library staff";
386 my $address = $patron->{streetnumber
} || q{};
387 for my $field (qw( roaddetails address address2 city state zipcode country))
389 next unless $patron->{$field};
392 $address .= $patron->{$field};
395 $address .= $patron->{$field};
401 sub _get_outstanding_holds
{
402 my $borrowernumber = shift;
403 my @hold_array = grep { !defined $_->{found
} || $_->{found
} ne 'W'} GetReservesFromBorrowernumber
($borrowernumber);
404 foreach my $h (@hold_array) {
406 if ($h->{itemnumber
}) {
407 $item = $h->{itemnumber
};
410 # We need to return a barcode for the biblio so the client
411 # can request the biblio info
412 $item = ( GetItemnumbersForBiblio
($h->{biblionumber
}) )->[0];
414 $h->{barcode
} = GetBarcodeFromItemnumber
($item);
424 our %patron_example = (
426 name => "David J. Fiander",
429 ptype => 'A', # 'A'dult. Whatever.
430 birthdate => '19640925',
431 address => '2 Meadowvale Dr. St Thomas, ON',
432 home_phone => '(519) 555 1234',
433 email_addr => 'djfiander@hotmail.com',
439 claims_returned => 0,
449 fine_items => ['Computer Time'],
456 From borrowers table:
457 +---------------------+--------------+------+-----+---------+----------------+
458 | Field | Type | Null | Key | Default | Extra |
459 +---------------------+--------------+------+-----+---------+----------------+
460 | borrowernumber | int(11) | NO | PRI | NULL | auto_increment |
461 | cardnumber | varchar(16) | YES | UNI | NULL | |
462 | surname | mediumtext | NO | | NULL | |
463 | firstname | text | YES | | NULL | |
464 | title | mediumtext | YES | | NULL | |
465 | othernames | mediumtext | YES | | NULL | |
466 | initials | text | YES | | NULL | |
467 | streetnumber | varchar(10) | YES | | NULL | |
468 | streettype | varchar(50) | YES | | NULL | |
469 | address | mediumtext | NO | | NULL | |
470 | address2 | text | YES | | NULL | |
471 | city | mediumtext | NO | | NULL | |
472 | state | mediumtext | YES | | NULL | |
473 | zipcode | varchar(25) | YES | | NULL | |
474 | country | text | YES | | NULL | |
475 | email | mediumtext | YES | | NULL | |
476 | phone | text | YES | | NULL | |
477 | mobile | varchar(50) | YES | | NULL | |
478 | fax | mediumtext | YES | | NULL | |
479 | emailpro | text | YES | | NULL | |
480 | phonepro | text | YES | | NULL | |
481 | B_streetnumber | varchar(10) | YES | | NULL | |
482 | B_streettype | varchar(50) | YES | | NULL | |
483 | B_address | varchar(100) | YES | | NULL | |
484 | B_address2 | text | YES | | NULL | |
485 | B_city | mediumtext | YES | | NULL | |
486 | B_state | mediumtext | YES | | NULL | |
487 | B_zipcode | varchar(25) | YES | | NULL | |
488 | B_country | text | YES | | NULL | |
489 | B_email | text | YES | | NULL | |
490 | B_phone | mediumtext | YES | | NULL | |
491 | dateofbirth | date | YES | | NULL | |
492 | branchcode | varchar(10) | NO | MUL | | |
493 | categorycode | varchar(10) | NO | MUL | | |
494 | dateenrolled | date | YES | | NULL | |
495 | dateexpiry | date | YES | | NULL | |
496 | gonenoaddress | tinyint(1) | YES | | NULL | |
497 | lost | tinyint(1) | YES | | NULL | |
498 | debarred | tinyint(1) | YES | | NULL | |
499 | contactname | mediumtext | YES | | NULL | |
500 | contactfirstname | text | YES | | NULL | |
501 | contacttitle | text | YES | | NULL | |
502 | guarantorid | int(11) | YES | MUL | NULL | |
503 | borrowernotes | mediumtext | YES | | NULL | |
504 | relationship | varchar(100) | YES | | NULL | |
505 | ethnicity | varchar(50) | YES | | NULL | |
506 | ethnotes | varchar(255) | YES | | NULL | |
507 | sex | varchar(1) | YES | | NULL | |
508 | password | varchar(30) | YES | | NULL | |
509 | flags | int(11) | YES | | NULL | |
510 | userid | varchar(30) | YES | MUL | NULL | |
511 | opacnote | mediumtext | YES | | NULL | |
512 | contactnote | varchar(255) | YES | | NULL | |
513 | sort1 | varchar(80) | YES | | NULL | |
514 | sort2 | varchar(80) | YES | | NULL | |
515 | altcontactfirstname | varchar(255) | YES | | NULL | |
516 | altcontactsurname | varchar(255) | YES | | NULL | |
517 | altcontactaddress1 | varchar(255) | YES | | NULL | |
518 | altcontactaddress2 | varchar(255) | YES | | NULL | |
519 | altcontactaddress3 | varchar(255) | YES | | NULL | |
520 | altcontactstate | mediumtext | YES | | NULL | |
521 | altcontactzipcode | varchar(50) | YES | | NULL | |
522 | altcontactcountry | text | YES | | NULL | |
523 | altcontactphone | varchar(50) | YES | | NULL | |
524 | smsalertnumber | varchar(50) | YES | | NULL | |
525 | privacy | int(11) | NO | | 1 | |
526 +---------------------+--------------+------+-----+---------+----------------+
533 {message} Message showing patron's credit or debt
534 {noissues} Set if patron owes >$5.00
535 {GNA} Set if patron gone w/o address
536 {message} "Borrower has no valid address"
538 {LOST} Set if patron's card reported lost
539 {message} Message to this effect
541 {DBARRED} Set if patron is debarred
542 {message} Message to this effect
544 {NOTES} Set if patron has notes
545 {message} Notes about patron
546 {ODUES} Set if patron has overdue books
548 {itemlist} ref-to-array: list of overdue books
549 {itemlisttext} Text list of overdue items
550 {WAITING} Set if there are items available that the patron reserved
551 {message} Message to this effect
552 {itemlist} ref-to-array: list of available items