2 # ILS.pm: Koha ILS interface module
9 use Sys
::Syslog
qw(syslog);
12 use C4
::SIP
::ILS
::Item
;
13 use C4
::SIP
::ILS
::Patron
;
14 use C4
::SIP
::ILS
::Transaction
;
15 use C4
::SIP
::ILS
::Transaction
::Checkout
;
16 use C4
::SIP
::ILS
::Transaction
::Checkin
;
17 use C4
::SIP
::ILS
::Transaction
::FeePayment
;
18 use C4
::SIP
::ILS
::Transaction
::Hold
;
19 use C4
::SIP
::ILS
::Transaction
::Renew
;
20 use C4
::SIP
::ILS
::Transaction
::RenewAll
;
25 'magnetic media' => 1,
26 'security inhibit' => 0,
27 'offline operation' => 0,
28 "patron status request" => 1,
34 "patron information" => 1,
35 "end patron session" => 1,
37 "item information" => 1,
38 "item status update" => 0,
46 my ($class, $institution) = @_;
47 my $type = ref($class) || $class;
49 $debug and warn "new ILS: INSTITUTION: " . Dumper
($institution);
50 syslog
("LOG_DEBUG", "new ILS '%s'", $institution->{id
});
51 $self->{institution
} = $institution;
52 return bless $self, $type;
57 $debug and warn "ILS: finding patron";
58 return C4
::SIP
::ILS
::Patron
->new(@_);
63 $debug and warn "ILS: finding item";
64 return C4
::SIP
::ILS
::Item
->new(@_);
69 return $self->{institution
}->{id
}; # consider making this return the whole institution
74 return $self->{institution
}->{id
};
79 return (exists($supports{$op}) && $supports{$op});
83 my ($self, $id, $whence) = @_;
84 if ($id ne $self->{institution
}->{id
}) {
85 syslog
("LOG_WARNING", "%s: received institution '%s', expected '%s'", $whence, $id, $self->{institution
}->{id
});
86 # Just an FYI check, we don't expect the user to change location from that in SIPconfig.xml
92 # If it's defined, and matches a true sort of string, or is
93 # a non-zero number, then it's true.
94 defined($bool) or return; # false
95 ($bool =~ /true|y|yes/i) and return 1; # true
96 return ($bool =~ /^\d+$/ and $bool != 0); # true for non-zero numbers, false otherwise
101 return (exists($self->{institution
}->{policy
}->{checkout
})
102 && to_bool
($self->{institution
}->{policy
}->{checkout
}));
106 return (exists($self->{institution
}->{policy
}->{checkin
})
107 && to_bool
($self->{institution
}->{policy
}->{checkin
}));
109 sub status_update_ok
{
111 return (exists($self->{institution
}->{policy
}->{status_update
})
112 && to_bool
($self->{institution
}->{policy
}->{status_update
}));
116 return (exists($self->{institution
}->{policy
}->{offline
})
117 && to_bool
($self->{institution
}->{policy
}->{offline
}));
121 # Checkout(patron_id, item_id, sc_renew):
122 # patron_id & item_id are the identifiers send by the terminal
123 # sc_renew is the renewal policy configured on the terminal
124 # returns a status opject that can be queried for the various bits
125 # of information that the protocol (SIP or NCIP) needs to generate
129 my ( $self, $patron_id, $item_id, $sc_renew, $fee_ack ) = @_;
130 my ( $patron, $item, $circ );
132 $circ = C4
::SIP
::ILS
::Transaction
::Checkout
->new();
135 $circ->patron( $patron = C4
::SIP
::ILS
::Patron
->new($patron_id) );
136 $circ->item( $item = C4
::SIP
::ILS
::Item
->new($item_id) );
138 $circ->fee_ack($fee_ack);
142 $circ->screen_msg("Invalid Patron");
144 elsif ( !$patron->charge_ok ) {
145 $circ->screen_msg("Patron Blocked");
148 $circ->screen_msg("Invalid Item");
150 elsif ( $item->{patron
}
151 && !_ci_cardnumber_cmp
( $item->{patron
}, $patron_id ) )
153 $circ->screen_msg("Item checked out to another patron");
156 $circ->do_checkout();
158 $debug and warn "circ is ok";
160 # If the item is already associated with this patron, then
162 $circ->renew_ok( $item->{patron
}
163 && _ci_cardnumber_cmp
( $item->{patron
}, $patron_id ) );
165 $item->{patron
} = $patron_id;
166 $item->{due_date
} = $circ->{due
};
167 push( @
{ $patron->{items
} }, $item_id );
168 $circ->desensitize( !$item->magnetic_media );
171 "LOG_DEBUG", "ILS::Checkout: patron %s has checked out %s",
172 $patron_id, join( ', ', @
{ $patron->{items
} } )
176 syslog
( "LOG_ERR", "ILS::Checkout Issue failed" );
185 sub _ci_cardnumber_cmp
{
187 # As the database is case insensitive we need to normalize two strings
188 # before comparing them
189 return ( uc($s1) eq uc($s2) );
192 # wrapper which allows above to be called for testing
194 sub test_cardnumber_compare
{
195 my ($self, $str1, $str2) = @_;
196 return _ci_cardnumber_cmp
($str1, $str2);
200 my ( $self, $item_id, $trans_date, $return_date, $current_loc, $item_props, $cancel, $checked_in_ok ) = @_;
201 my ( $patron, $item, $circ );
203 $circ = C4
::SIP
::ILS
::Transaction
::Checkin
->new();
206 $circ->item( $item = C4
::SIP
::ILS
::Item
->new($item_id) );
209 $circ->do_checkin( $current_loc, $return_date );
213 $circ->alert_type(99);
215 $circ->screen_msg('Invalid Item');
219 if( !$circ->ok && $circ->alert_type && $circ->alert_type == 98 ) { # data corruption
220 $circ->screen_msg("Checkin failed: data problem");
221 syslog
( "LOG_WARNING", "Problem with issue_id in issues and old_issues; check the about page" );
222 } elsif( !$item->{patron
} ) {
223 if( $checked_in_ok ) { # Mark checkin ok although book not checked out
225 syslog
("LOG_DEBUG", "C4::SIP::ILS::Checkin - using checked_in_ok");
227 $circ->screen_msg("Item not checked out");
228 syslog
("LOG_DEBUG", "C4::SIP::ILS::Checkin - item not checked out");
230 } elsif( $circ->ok ) {
231 $circ->patron( $patron = C4
::SIP
::ILS
::Patron
->new( $item->{patron
} ) );
232 delete $item->{patron
};
233 delete $item->{due_date
};
234 $patron->{items
} = [ grep { $_ ne $item_id } @
{ $patron->{items
} } ];
236 $circ->screen_msg("Checkin failed");
237 syslog
( "LOG_WARNING", "Checkin failed: probably for Wrongbranch or withdrawn" );
243 # If the ILS caches patron information, this lets it free
245 sub end_patron_session
{
246 my ($self, $patron_id) = @_;
248 # success?, screen_msg, print_line
249 return (1, 'Thank you !', '');
253 my ($self, $patron_id, $patron_pwd, $fee_amt, $fee_type, $pay_type, $fee_id, $trans_id, $currency, $is_writeoff) = @_;
255 my $trans = C4
::SIP
::ILS
::Transaction
::FeePayment
->new();
257 $trans->transaction_id($trans_id);
259 $trans->patron($patron = C4
::SIP
::ILS
::Patron
->new($patron_id));
261 $trans->screen_msg('Invalid patron barcode.');
264 my $ok = $trans->pay( $patron->{borrowernumber
}, $fee_amt, $pay_type, $fee_id, $is_writeoff );
271 my ($self, $patron_id, $patron_pwd, $item_id, $title_id,
272 $expiry_date, $pickup_location, $hold_type, $fee_ack) = @_;
275 my $trans = C4
::SIP
::ILS
::Transaction
::Hold
->new();
277 $patron = C4
::SIP
::ILS
::Patron
->new( $patron_id);
279 || (defined($patron_pwd) && !$patron->check_password($patron_pwd))) {
280 $trans->screen_msg("Invalid Patron.");
284 unless ($item = C4
::SIP
::ILS
::Item
->new($item_id || $title_id)) {
285 $trans->screen_msg("No such item.");
289 if ( $patron->holds_blocked_by_excessive_fees() ) {
290 $trans->screen_msg("Excessive fees blocking placement of hold.");
293 if ($item->fee and $fee_ack ne 'Y') {
294 $trans->screen_msg = "Fee required to place hold.";
299 item_id
=> $item->id,
300 patron_id
=> $patron->id,
301 expiration_date
=> $expiry_date,
302 pickup_location
=> $pickup_location,
303 hold_type
=> $hold_type,
307 $trans->patron($patron);
309 $trans->pickup_location($pickup_location);
312 push(@
{$item->hold_queue}, $hold);
313 push(@
{$patron->{hold_items
}}, $hold);
319 my ($self, $patron_id, $patron_pwd, $item_id, $title_id) = @_;
320 my ($patron, $item, $hold);
322 my $trans = C4
::SIP
::ILS
::Transaction
::Hold
->new();
324 $patron = C4
::SIP
::ILS
::Patron
->new( $patron_id );
326 $trans->screen_msg("Invalid patron barcode.");
328 } elsif (defined($patron_pwd) && !$patron->check_password($patron_pwd)) {
329 $trans->screen_msg('Invalid patron password.');
333 unless ($item = C4
::SIP
::ILS
::Item
->new($item_id || $title_id)) {
334 $trans->screen_msg("No such item.");
338 $trans->patron($patron);
341 unless ($trans->ok) {
342 $trans->screen_msg("Error with transaction drop_hold: " . $trans->screen_msg);
345 # Remove the hold from the patron's record first
346 $trans->ok($patron->drop_hold($item_id)); # different than the transaction drop!
348 unless ($trans->ok) {
349 # We didn't find it on the patron record
350 $trans->screen_msg("No such hold on patron record.");
354 # Now, remove it from the item record. If it was on the patron
355 # record but not on the item record, we'll treat that as success.
356 foreach my $i (0 .. scalar @
{$item->hold_queue}) {
357 $hold = $item->hold_queue->[$i];
358 if ($item->barcode_is_borrowernumber($patron->id, $hold->{borrowernumber
})) {
359 # found it: delete it.
360 splice @
{$item->hold_queue}, $i, 1;
361 last; # ?? should we keep going, in case there are multiples
365 $trans->screen_msg("Hold Cancelled.");
371 # The patron and item id's can't be altered, but the
372 # date, location, and type can.
374 my ($self, $patron_id, $patron_pwd, $item_id, $title_id,
375 $expiry_date, $pickup_location, $hold_type, $fee_ack) = @_;
380 $trans = C4
::SIP
::ILS
::Transaction
::Hold
->new();
383 $patron = C4
::SIP
::ILS
::Patron
->new( $patron_id );
385 $trans->screen_msg("Invalid patron barcode: '$patron_id'.");
389 foreach my $i (0 .. scalar @
{$patron->{hold_items
}}) {
390 $hold = $patron->{hold_items
}[$i];
392 if ($hold->{item_id
} eq $item_id) {
393 # Found it. So fix it.
394 $hold->{expiration_date
} = $expiry_date if $expiry_date;
395 $hold->{pickup_location
} = $pickup_location if $pickup_location;
396 $hold->{hold_type
} = $hold_type if $hold_type;
397 $trans->change_hold();
399 $trans->screen_msg("Hold updated.");
400 $trans->patron($patron);
401 $trans->item(C4
::SIP
::ILS
::Item
->new( $hold->{item_id
}));
406 # The same hold structure is linked into both the patron's
407 # list of hold items and into the queue of outstanding holds
408 # for the item, so we don't need to search the hold queue for
409 # the item, since it's already been updated by the patron code.
412 $trans->screen_msg("No such outstanding hold.");
419 my ($self, $patron_id, $patron_pwd, $item_id, $title_id,
420 $no_block, $nb_due_date, $third_party,
421 $item_props, $fee_ack) = @_;
425 $trans = C4
::SIP
::ILS
::Transaction
::Renew
->new();
426 $trans->patron($patron = C4
::SIP
::ILS
::Patron
->new( $patron_id ));
429 $trans->screen_msg("Invalid patron barcode.");
431 } elsif (!$patron->renew_ok) {
432 $trans->screen_msg("Renewals not allowed.");
436 # Previously: renewing a title, rather than an item (sort of)
437 # This is gross, but in a real ILS it would be better
439 # if (defined($title_id)) {
440 # foreach my $i (@{$patron->{items}}) {
441 # $item = new ILS::Item $i;
442 # last if ($title_id eq $item->title_id);
447 my $count = scalar @
{$patron->{items
}};
448 foreach my $i (@
{$patron->{items
}}) {
449 unless (defined $i->{barcode
}) { # FIXME: using data instead of objects may violate the abstraction layer
450 syslog
("LOG_ERR", "No barcode for item %s of %s: $item_id", $j+1, $count);
453 syslog
("LOG_DEBUG", "checking item %s of %s: $item_id vs. %s", ++$j, $count, $i->{barcode
});
454 if ($i->{barcode
} eq $item_id) {
455 # We have it checked out
456 $item = C4
::SIP
::ILS
::Item
->new( $item_id );
464 if (!defined($item)) {
465 $trans->screen_msg("Item not checked out to " . $patron->name); # not checked out to $patron_id
469 if ($trans->renewal_ok()) {
470 $item->{due_date
} = $trans->{due
};
471 $trans->desensitize(0);
479 my ($self, $patron_id, $patron_pwd, $fee_ack) = @_;
480 my ($patron, $item_id);
483 $trans = C4
::SIP
::ILS
::Transaction
::RenewAll
->new();
485 $trans->patron($patron = C4
::SIP
::ILS
::Patron
->new( $patron_id ));
486 if (defined $patron) {
487 syslog
("LOG_DEBUG", "ILS::renew_all: patron '%s': renew_ok: %s", $patron->name, $patron->renew_ok);
489 syslog
("LOG_DEBUG", "ILS::renew_all: Invalid patron id: '%s'", $patron_id);
492 if (!defined($patron)) {
493 $trans->screen_msg("Invalid patron barcode.");
495 } elsif (!$patron->renew_ok) {
496 $trans->screen_msg("Renewals not allowed.");
498 } elsif (defined($patron_pwd) && !$patron->check_password($patron_pwd)) {
499 $trans->screen_msg("Invalid patron password.");
503 $trans->do_renew_all;