Bug 13947: Correct call to GetBiblio to receive correct return value
[koha.git] / C4 / SIP / Sip.pm
blobddd08c9c4866ed3505a5058aebfbcc0db2448641
2 # Sip.pm: General Sip utility functions
5 package C4::SIP::Sip;
7 use strict;
8 use warnings;
9 use Exporter;
10 use Encode;
11 use Sys::Syslog qw(syslog);
12 use POSIX qw(strftime);
13 use Socket qw(:crlf);
14 use IO::Handle;
16 use C4::SIP::Sip::Constants qw(SIP_DATETIME FID_SCREEN_MSG);
17 use C4::SIP::Sip::Checksum qw(checksum);
19 use vars qw($VERSION @ISA @EXPORT_OK %EXPORT_TAGS);
21 BEGIN {
22 $VERSION = 3.07.00.049;
23 @ISA = qw(Exporter);
25 @EXPORT_OK = qw(y_or_n timestamp add_field maybe_add add_count
26 denied sipbool boolspace write_msg read_SIP_packet
27 $error_detection $protocol_version $field_delimiter
28 $last_response);
30 %EXPORT_TAGS = (
31 all => [qw(y_or_n timestamp add_field maybe_add
32 add_count denied sipbool boolspace write_msg
33 read_SIP_packet
34 $error_detection $protocol_version
35 $field_delimiter $last_response)]);
38 our $error_detection = 0;
39 our $protocol_version = 1;
40 our $field_delimiter = '|'; # Protocol Default
42 # We need to keep a copy of the last message we sent to the SC,
43 # in case there's a transmission error and the SC sends us a
44 # REQUEST_ACS_RESEND. If we receive a REQUEST_ACS_RESEND before
45 # we've ever sent anything, then we are to respond with a
46 # REQUEST_SC_RESEND (p.16)
48 our $last_response = '';
50 sub timestamp {
51 my $time = $_[0] || time();
52 if ( ref $time eq 'DateTime') {
53 return $time->strftime(SIP_DATETIME);
54 } elsif ($time=~m/^(\d{4})\-(\d{2})\-(\d{2})/) {
55 # passing a db returned date as is + bogus time
56 return sprintf( '%04d%02d%02d 235900', $1, $2, $3);
58 return strftime(SIP_DATETIME, localtime($time));
62 # add_field(field_id, value)
63 # return constructed field value
65 sub add_field {
66 my ($field_id, $value) = @_;
67 my ($i, $ent);
69 if (!defined($value)) {
70 syslog("LOG_DEBUG", "add_field: Undefined value being added to '%s'",
71 $field_id);
72 $value = '';
74 $value=~s/\r/ /g; # CR terminates a sip message
75 # Protect against them in sip text fields
77 # Replace any occurences of the field delimiter in the
78 # field value with the HTML character entity
79 $ent = sprintf("&#%d;", ord($field_delimiter));
81 while (($i = index($value, $field_delimiter)) != ($[-1)) {
82 substr($value, $i, 1) = $ent;
85 return $field_id . $value . $field_delimiter;
88 # maybe_add(field_id, value):
89 # If value is defined and non-empty, then return the
90 # constructed field value, otherwise return the empty string.
91 # NOTE: if zero is a valid value for your field, don't use maybe_add!
93 sub maybe_add {
94 my ($fid, $value, $server) = @_;
96 if ( $fid eq FID_SCREEN_MSG && $server->{account}->{screen_msg_regex} ) {
97 foreach my $regex (
98 ref $server->{account}->{screen_msg_regex} eq "ARRAY"
99 ? @{ $server->{account}->{screen_msg_regex} }
100 : $server->{account}->{screen_msg_regex} )
102 $value =~ s/$regex->{find}/$regex->{replace}/g;
106 return (defined($value) && $value) ? add_field($fid, $value) : '';
110 # add_count() produce fixed four-character count field,
111 # or a string of four spaces if the count is invalid for some
112 # reason
114 sub add_count {
115 my ($label, $count) = @_;
117 # If the field is unsupported, it will be undef, return blanks
118 # as per the spec.
119 if (!defined($count)) {
120 return ' ' x 4;
123 $count = sprintf("%04d", $count);
124 if (length($count) != 4) {
125 syslog("LOG_WARNING", "handle_patron_info: %s wrong size: '%s'",
126 $label, $count);
127 $count = ' ' x 4;
129 return $count;
133 # denied($bool)
134 # if $bool is false, return true. This is because SIP statuses
135 # are inverted: we report that something has been denied, not that
136 # it's permitted. For example, 'renewal priv. denied' of 'Y' means
137 # that the user's not permitted to renew. I assume that the ILS has
138 # real positive tests.
140 sub denied {
141 my $bool = shift;
142 return boolspace(!$bool);
145 sub sipbool {
146 my $bool = shift;
147 return $bool ? 'Y' : 'N';
151 # boolspace: ' ' is false, 'Y' is true. (don't ask)
153 sub boolspace {
154 my $bool = shift;
155 return $bool ? 'Y' : ' ';
159 # read_SIP_packet($file)
161 # Read a packet from $file, using the correct record separator
163 sub read_SIP_packet {
164 my $record;
165 my $fh = shift or syslog("LOG_ERR", "read_SIP_packet: no filehandle argument!");
166 my $len1 = 999;
168 # local $/ = "\r"; # don't need any of these here. use whatever the prevailing $/ is.
169 local $/ = "\015"; # proper SPEC: (octal) \015 = (hex) x0D = (dec) 13 = (ascii) carriage return
170 { # adapted from http://perldoc.perl.org/5.8.8/functions/readline.html
171 undef $!;
172 $record = readline($fh);
173 if ( defined($record) ) {
174 while ( chomp($record) ) { 1; }
175 $len1 = length($record);
176 syslog( "LOG_DEBUG", "read_SIP_packet, INPUT MSG: '$record'" );
177 $record =~ s/^\s*[^A-z0-9]+//s; # Every line must start with a "real" character. Not whitespace, control chars, etc.
178 $record =~ s/[^A-z0-9]+$//s; # Same for the end. Note this catches the problem some clients have sending empty fields at the end, like |||
179 $record =~ s/\015?\012//g; # Extra line breaks must die
180 $record =~ s/\015?\012//s; # Extra line breaks must die
181 $record =~ s/\015*\012*$//s; # treat as one line to include the extra linebreaks we are trying to remove!
182 while ( chomp($record) ) { 1; }
184 $record and last; # success
187 if ($record) {
188 my $len2 = length($record);
189 syslog("LOG_INFO", "read_SIP_packet, INPUT MSG: '$record'") if $record;
190 ($len1 != $len2) and syslog("LOG_DEBUG", "read_SIP_packet, trimmed %s character(s) (after chomps).", $len1-$len2);
191 } else {
192 syslog("LOG_WARNING", "read_SIP_packet input %s, end of input.", (defined($record) ? "empty ($record)" : 'undefined'));
195 # Cen-Tec self-check terminals transmit '\r\n' line terminators.
196 # This is actually very hard to deal with in perl in a reasonable
197 # since every OTHER piece of hardware out there gets the protocol
198 # right.
200 # The incorrect line terminator presents as a \r at the end of the
201 # first record, and then a \n at the BEGINNING of the next record.
202 # So, the simplest thing to do is just throw away a leading newline
203 # on the input.
205 # This is now handled by the vigorous cleansing above.
206 # syslog("LOG_INFO", encode_utf8("INPUT MSG: '$record'")) if $record;
207 syslog("LOG_INFO", "INPUT MSG: '$record'") if $record;
208 return $record;
212 # write_msg($msg, $file)
214 # Send $msg to the SC. If error detection is active, then
215 # add the sequence number (if $seqno is non-zero) and checksum
216 # to the message, and save the whole thing as $last_response
218 # If $file is set, then it's a file handle: write to it, otherwise
219 # just write to the default destination.
222 sub write_msg {
223 my ($self, $msg, $file, $terminator, $encoding) = @_;
225 $terminator ||= q{};
226 $terminator = ( $terminator eq 'CR' ) ? $CR : $CRLF;
228 $msg = encode($encoding, $msg) if ( $encoding );
230 my $cksum;
232 # $msg = encode_utf8($msg);
233 if ($error_detection) {
234 if (defined($self->{seqno})) {
235 $msg .= 'AY' . $self->{seqno};
237 $msg .= 'AZ';
238 $cksum = checksum($msg);
239 $msg .= sprintf('%04.4X', $cksum);
243 if ($file) {
244 $file->autoflush(1);
245 print $file $msg, $terminator;
246 } else {
247 STDOUT->autoflush(1);
248 print $msg, $terminator;
249 syslog("LOG_INFO", "OUTPUT MSG: '$msg'");
252 $last_response = $msg;