Bug 25548: Remove Apache rewrite directives that trigger redirects
[koha.git] / C4 / SIP / Sip.pm
blob3d68f9765c775f8a70f5a1fdf1cbb09aace468fd
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 POSIX qw(strftime);
12 use Socket qw(:crlf);
13 use IO::Handle;
14 use List::Util qw(first);
16 use C4::SIP::Sip::Constants qw(SIP_DATETIME FID_SCREEN_MSG);
17 use C4::SIP::Sip::Checksum qw(checksum);
18 use C4::SIP::Logger qw(get_logger);
20 use base qw(Exporter);
22 our @EXPORT_OK = qw(y_or_n timestamp add_field maybe_add add_count
23 denied sipbool boolspace write_msg
24 $error_detection $protocol_version $field_delimiter
25 $last_response siplog);
27 our %EXPORT_TAGS = (
28 all => [qw(y_or_n timestamp add_field maybe_add
29 add_count denied sipbool boolspace write_msg
30 $error_detection $protocol_version
31 $field_delimiter $last_response siplog)]);
33 our $error_detection = 0;
34 our $protocol_version = 1;
35 our $field_delimiter = '|'; # Protocol Default
37 # We need to keep a copy of the last message we sent to the SC,
38 # in case there's a transmission error and the SC sends us a
39 # REQUEST_ACS_RESEND. If we receive a REQUEST_ACS_RESEND before
40 # we've ever sent anything, then we are to respond with a
41 # REQUEST_SC_RESEND (p.16)
43 our $last_response = '';
45 sub timestamp {
46 my $time = $_[0] || time();
47 if ( ref $time eq 'DateTime') {
48 return $time->strftime(SIP_DATETIME);
49 } elsif ($time=~m/^(\d{4})\-(\d{2})\-(\d{2})/) {
50 # passing a db returned date as is + bogus time
51 return sprintf( '%04d%02d%02d 235900', $1, $2, $3);
53 return strftime(SIP_DATETIME, localtime($time));
57 # add_field(field_id, value)
58 # return constructed field value
60 sub add_field {
61 my ($field_id, $value, $server) = @_;
63 if ( my $hide_fields = $server->{account}->{hide_fields} ) {
64 my @fields = split( ',', $hide_fields );
65 return q{} if first { $_ eq $field_id } @fields;
68 my ($i, $ent);
70 if (!defined($value)) {
71 siplog("LOG_DEBUG", "add_field: Undefined value being added to '%s'",
72 $field_id);
73 $value = '';
75 $value=~s/\r/ /g; # CR terminates a sip message
76 # Protect against them in sip text fields
78 # Replace any occurrences of the field delimiter in the
79 # field value with the HTML character entity
80 $ent = sprintf("&#%d;", ord($field_delimiter));
82 while (($i = index($value, $field_delimiter)) != ($[-1)) {
83 substr($value, $i, 1) = $ent;
86 return $field_id . $value . $field_delimiter;
89 # maybe_add(field_id, value):
90 # If value is defined and non-empty, then return the
91 # constructed field value, otherwise return the empty string.
92 # NOTE: if zero is a valid value for your field, don't use maybe_add!
94 sub maybe_add {
95 my ($fid, $value, $server) = @_;
97 if ( my $hide_fields = $server->{account}->{hide_fields} ) {
98 my @fields = split( ',', $hide_fields );
99 return q{} if first { $_ eq $fid } @fields;
102 if ( $fid eq FID_SCREEN_MSG && $server->{account}->{screen_msg_regex} ) {
103 foreach my $regex (
104 ref $server->{account}->{screen_msg_regex} eq "ARRAY"
105 ? @{ $server->{account}->{screen_msg_regex} }
106 : $server->{account}->{screen_msg_regex} )
108 $value =~ s/$regex->{find}/$regex->{replace}/g;
111 return (defined($value) && $value) ? add_field($fid, $value) : '';
115 # add_count() produce fixed four-character count field,
116 # or a string of four spaces if the count is invalid for some
117 # reason
119 sub add_count {
120 my ($label, $count) = @_;
122 # If the field is unsupported, it will be undef, return blanks
123 # as per the spec.
124 if (!defined($count)) {
125 return ' ' x 4;
128 $count = sprintf("%04d", $count);
129 if (length($count) != 4) {
130 siplog("LOG_WARNING", "handle_patron_info: %s wrong size: '%s'",
131 $label, $count);
132 $count = ' ' x 4;
134 return $count;
138 # denied($bool)
139 # if $bool is false, return true. This is because SIP statuses
140 # are inverted: we report that something has been denied, not that
141 # it's permitted. For example, 'renewal priv. denied' of 'Y' means
142 # that the user's not permitted to renew. I assume that the ILS has
143 # real positive tests.
145 sub denied {
146 my $bool = shift;
147 return boolspace(!$bool);
150 sub sipbool {
151 my $bool = shift;
152 return $bool ? 'Y' : 'N';
156 # boolspace: ' ' is false, 'Y' is true. (don't ask)
158 sub boolspace {
159 my $bool = shift;
160 return $bool ? 'Y' : ' ';
164 # write_msg($msg, $file)
166 # Send $msg to the SC. If error detection is active, then
167 # add the sequence number (if $seqno is non-zero) and checksum
168 # to the message, and save the whole thing as $last_response
170 # If $file is set, then it's a file handle: write to it, otherwise
171 # just write to the default destination.
174 sub write_msg {
175 my ($self, $msg, $file, $terminator, $encoding) = @_;
177 $terminator ||= q{};
178 $terminator = ( $terminator eq 'CR' ) ? $CR : $CRLF;
180 $msg = encode($encoding, $msg) if ( $encoding );
182 my $cksum;
184 # $msg = encode_utf8($msg);
185 if ($error_detection) {
186 if (defined($self->{seqno})) {
187 $msg .= 'AY' . $self->{seqno};
189 $msg .= 'AZ';
190 $cksum = checksum($msg);
191 $msg .= sprintf('%04.4X', $cksum);
195 if ($file) {
196 $file->autoflush(1);
197 print $file $msg, $terminator;
198 } else {
199 STDOUT->autoflush(1);
200 print $msg, $terminator;
201 siplog("LOG_INFO", "OUTPUT MSG: '$msg'");
204 $last_response = $msg;
207 sub siplog {
208 my ( $level, $mask, @args ) = @_;
210 my $method =
211 $level eq 'LOG_ERR' ? 'error'
212 : $level eq 'LOG_DEBUG' ? 'debug'
213 : $level eq 'LOG_INFO' ? 'info'
214 : $level eq 'LOG_WARNING' ? 'warn'
215 : 'error';
217 my $message = @args ? sprintf($mask, @args) : $mask;
219 my $logger = C4::SIP::Logger::get_logger();
220 $logger->$method($message) if $logger;