f363d42c559d9b47a4fcc036bdc4a07f837d50b4
[Biblio-RFID.git] / scripts / RFID-JSONP-server.pl
1 #!/usr/bin/perl
2
3 =head1 NAME
4
5 RFID-JSONP-server - simpliest possible JSONP server which provides local web interface to RFID readers
6
7 =head1 USAGE
8
9   ./scripts/RFID-JSONP-server.pl [--debug] [--listen=127.0.0.1:9000] [--reader=filter]
10
11 =cut
12
13 use strict;
14 use warnings;
15
16 use Data::Dump qw/dump/;
17
18 use JSON::XS;
19 use IO::Socket::INET;
20 use LWP::UserAgent;
21 use URI;
22 use POSIX qw(strftime);
23 use Encode;
24
25 my $debug = 0;
26 my $listen = '127.0.0.1:9000';
27 $listen = ':9000';
28 my $reader;
29 my $koha_url = $ENV{KOHA_URL};
30 warn "$koha_url";
31 # internal URL so we can find local address of machine and vmware NAT
32 my $rfid_url = $ENV{RFID_URL};
33 my $sip2 = {
34         server   => $ENV{SIP2_SERVER}, # '10.60.0.11:6002' must be IP!
35         user     => $ENV{SIP2_USER},
36         password => $ENV{SIP2_PASSWORD},
37         loc      => $ENV{SIP2_LOC},
38 };
39 my $afi = {
40         secure   => 0xDA,
41         unsecure => 0xD7,
42 };
43
44 use Getopt::Long;
45
46 GetOptions(
47         'debug!'    => \$debug,
48         'listen=s', => \$listen,
49         'reader=s', => \$reader,
50 ) || die $!;
51
52 die "need KOHA_URL, eg. http://ffzg.koha-dev.rot13.org:8080" unless $koha_url;
53
54 our $rfid_sid_cache;
55
56 sub rfid_borrower {
57         my $hash = shift;
58         if ( my $json = $rfid_sid_cache->{ $hash->{sid} } ) {
59                 return $json;
60         }
61         my $ua = LWP::UserAgent->new;
62         my $url = URI->new( $koha_url . '/cgi-bin/koha/ffzg/rfid/borrower.pl');
63         $url->query_form(
64                   RFID_SID => $hash->{sid}
65                 , OIB => $hash->{OIB}
66                 , JMBAG => $hash->{JMBAG}
67         );
68         warn "GET ",$url->as_string;
69         my $response = $ua->get($url);
70         if ( $response->is_success ) {
71                 my $json = decode_json $response->decoded_content;
72                 $rfid_sid_cache->{ $hash->{sid} } = $json;
73                 return $json;
74         } else {
75                 warn "ERROR ", $response->status_line;
76         }
77 }
78
79
80 sub sip2_message {
81         my $send = shift;
82
83         my $sock = $sip2->{sock} || die "no sip2 socket";
84
85         local $/ = "\r";
86
87         $send .= "\r" unless $send =~ m/\r$/;
88         warn "SIP2 >>>> ",dump($send), "\n";
89         print $sock $send;
90         $sock->flush;
91         
92         my $expect = substr($send,0,2) | 0x01;
93
94         my $in = <$sock>;
95         $in =~ s/^\n//;
96         warn "SIP2 <<<< ",dump($in), "\n";
97
98         die "expected $expect" unless substr($in,0,2) != $expect;
99
100         $in =~ s/\r$//;
101
102         my $hash;
103         if ( $in =~ s/^([0-9\s]+)// ) {
104                 $hash->{fixed} = $1;
105         }
106         foreach ( split(/\|/, $in ) ) {
107                 my ( $f, $v ) = ( $1, $2 ) if m/([A-Z]{2})(.+)/;
108                 $hash->{$f} = decode('utf-8',$v);
109         }
110
111         warn "# sip2 hash response ",dump($hash);
112
113         return $hash;
114 }
115
116 if ( my $server = $sip2->{server} ) {
117         my $sock = $sip2->{sock} = IO::Socket::INET->new( $server ) || die "can't connect to $server: $!";
118         warn "SIP2 server ", $sock->peerhost, ":", $sock->peerport, "\n";
119
120         # login
121         if ( sip2_message("9300CN$sip2->{user}|CO$sip2->{password}|")->{fixed} !~ m/^941/ ) {
122                 die "SIP2 login failed";
123         }
124
125 }
126
127 use lib 'lib';
128 use Biblio::RFID::RFID501;
129 use Biblio::RFID::Reader;
130 my $rfid = Biblio::RFID::Reader->new( shift @ARGV );
131 $rfid->debug( $debug );
132
133 my $index_html;
134 {
135         local $/ = undef;
136         $index_html = <DATA>;
137         $index_html =~ s{http://koha.example.com:8080}{$koha_url}sg;
138 }
139
140 my $server_url;
141
142 sub http_server {
143
144         my $server = IO::Socket::INET->new(
145                 Proto     => 'tcp',
146                 LocalAddr => $listen,
147                 Listen    => SOMAXCONN,
148                 Reuse     => 1
149         );
150                                                                   
151         die "can't setup server: $!" unless $server;
152
153         $server_url = 'http://' . $listen;
154         print "Server $0 ready at $server_url\n";
155
156         while (my $client = $server->accept()) {
157
158             eval { # don't die inside here!
159
160                 $client->autoflush(1);
161                 my $request = <$client>;
162
163                 warn "WEB << $request\n" if $debug;
164                 my $path;
165
166                 if ($request =~ m{^GET (/.*) HTTP/1.[01]}) {
167                         my $method = $1;
168                         my $param;
169                         if ( $method =~ s{\?(.+)}{} ) {
170                                 foreach my $p ( split(/[&;]/, $1) ) {
171                                         my ($n,$v) = split(/=/, $p, 2);
172                                         $param->{$n} = $v;
173                                 }
174                                 warn "WEB << param: ",dump( $param ) if $debug;
175                         }
176                         $path = $method;
177
178                         if ( $path eq '/' ) {
179                                 print $client "HTTP/1.0 200 OK\r\nContent-Type: text/html\r\n\r\n$index_html";
180                         } elsif ( $path =~ m{^/(examples/.+)} ) {
181                                 $path = $1; # FIXME prefix with dir for installation
182                                 my $size = -s $path;
183                                 warn "static $path $size bytes\n";
184                                 my $content_type = 'text/plain';
185                                 $content_type = 'application/javascript' if $path =~ /\.js$/;
186                                 $content_type = 'text/html' if $path =~ /\.html$/;
187                                 print $client "HTTP/1.0 200 OK\r\nContent-Type: $content_type\r\nContent-Length: $size\r\n\r\n";
188                                 {
189                                         local $/ = undef;
190                                         open(my $fh, '<', $path) || die "can't open $path: $!";
191                                         while(<$fh>) {
192                                                 print $client $_;
193                                         }
194                                         close($fh);
195                                 }
196                         } elsif ( $method =~ m{/scan(/only/(.+))?} ) {
197                                 my $only = $2;
198                                 my @tags = $rfid->tags( reader => sub {
199                                         my $reader = shift;
200                                         return 1 unless $only;
201                                         if ( ref $reader =~ m/\Q$only\E/i ) {
202                                                 return 1;
203                                         }
204                                         return 0;
205                                 });
206                                 my $json = { time => time() };
207                                 foreach my $tag ( @tags ) {
208                                         my $hash = $rfid->to_hash( $tag );
209                                         $hash->{sid}  = $tag;
210                                         $hash->{reader} = $rfid->from_reader( $tag );
211                                         if ( $hash->{tag_type} eq 'SmartX' ) {
212                                                 my $borrower = rfid_borrower $hash;
213                                                 if ( exists $borrower->{error} ) {
214                                                         warn "ERROR ", dump($borrower);
215                                                 } else {
216                                                         $hash->{borrower} = $borrower->{borrower};
217                                                         $hash->{content}  = $borrower->{borrower}->{cardnumber}; # compatibile with 3M tags
218                                                 }
219                                         } else {
220                                                 $hash->{security} = uc unpack 'H*', $rfid->afi( $tag );
221                                         }
222                                         push @{ $json->{tags} }, $hash;
223                                 };
224                                 warn "#### ", encode_json($json);
225                                 print $client "HTTP/1.0 200 OK\r\nContent-Type: application/json\r\n\r\n",
226                                         $param->{callback}, "(", encode_json($json), ")\r\n";
227                         } elsif ( $method =~ m{/program} ) {
228
229                                 my $status = 501; # Not implementd
230
231                                 foreach my $p ( keys %$param ) {
232                                         next unless $p =~ m/^(E[0-9A-F]{15})$/;
233                                         my $tag = $1;
234                                         my $content = Biblio::RFID::RFID501->from_hash({ content => $param->{$p} });
235                                         $content    = Biblio::RFID::RFID501->blank if $param->{$p} eq 'blank';
236                                         $status = 302;
237
238                                         warn "PROGRAM $tag $content\n";
239                                         $rfid->write_blocks( $tag => $content );
240                                         $rfid->write_afi(    $tag => chr( $param->{$p} =~ /^130/ ? $afi->{secure} : $afi->{unsecure} ) );
241                                 }
242
243                                 print $client "HTTP/1.0 $status $method\r\nLocation: $server_url\r\n\r\n";
244
245                         } elsif ( $method =~ m{/secure(.js)} ) {
246
247                                 my $json = $1;
248
249                                 my $status = 501; # Not implementd
250
251                                 foreach my $p ( keys %$param ) {
252                                         next unless $p =~ m/^(E[0-9A-F]{15})$/;
253                                         my $tag = $1;
254                                         my $data = $param->{$p};
255                                         $status = 302;
256
257                                         warn "SECURE $tag $data\n";
258                                         $rfid->write_afi( $tag => chr(hex($data)) );
259                                 }
260
261                                 if ( $json ) {
262                                         print $client "HTTP/1.0 200 OK\r\nContent-Type: application/json\r\n\r\n",
263                                                 $param->{callback}, "({ ok: 1 })\r\n";
264                                 } else {
265                                         print $client "HTTP/1.0 $status $method\r\nLocation: $server_url\r\n\r\n";
266                                 }
267
268                         } elsif ( $method =~ m{/sip2/(\w+)/(.+)} ) {
269                                 my ( $method, $args ) = ( $1, $2 );
270                                 warn "SIP2: $method [$args]";
271
272                                 my $ts = strftime('%Y%m%d    %H%M%S', localtime());
273                                 my $loc      = $sip2->{loc} || die "missing sip->{loc}";
274                                 my $password = $sip2->{password} || die "missing sip->{password}";
275
276                                 my $hash;
277
278                                 if ( $method eq 'patron_info' ) {
279                                         my $patron = $args;
280                                         $hash = sip2_message("63000${ts}          AO$loc|AA$patron|AC$password|");
281
282                                 } elsif ( $method eq 'checkout' ) {
283                                         my ($patron,$barcode,$sid) = split(/\//, $args, 3);
284                                         $hash = sip2_message("11YN${ts}                  AO$loc|AA$patron|AB$barcode|AC$password|BON|BIN|");
285                                         if ( substr( $hash->{fixed}, 2, 1 ) == 1 ) {
286                                                 $rfid->write_afi( $sid => chr( $afi->{unsecure} ) );
287                                         }
288
289                                 } elsif ( $method eq 'checkin' ) {
290                                         my ($patron,$barcode,$sid) = split(/\//, $args, 3);
291                                         $hash = sip2_message("09N${ts}${ts}AP|AO${loc}|AB$barcode|AC|BIN|");
292                                         if ( substr( $hash->{fixed}, 2, 1 ) == 1 ) {
293                                                 $rfid->write_afi( $sid => chr( $afi->{secure} ) );
294                                         }
295                                 } else {
296                                         print $client "HTTP/1.0 500 $method not implemented\r\n\r\n";
297                                 }
298
299                                 if ( $hash ) {
300                                         print $client "HTTP/1.0 200 OK\r\nContent-Type: application/json\r\n\r\n",
301                                                 encode_json( $hash );
302                                 }
303
304                         } else {
305                                 print $client "HTTP/1.0 404 Unkown method\r\n\r\n";
306                         }
307                 } else {
308                         print $client "HTTP/1.0 500 No method\r\n\r\n";
309                 }
310                 close $client;
311
312             }; # end of eval
313             if ( $@ ) {
314                 print $client "HTTP/1.0 500 Error\r\n\r\nContent-Type: text/plain\r\n$@";
315                 warn "ERROR: $@";
316             }
317
318         }
319
320         die "server died";
321 }
322
323 sub rfid_register {
324         my $ip;
325
326         foreach ( split(/\n/, `ip addr` ) ) {
327                 if ( /^\d:\s(\w+):\s/ ) {
328                         $ip->{_last} = $1;
329                 } elsif ( /^\s+inet\s((\d+)\.(\d+)\.(\d+)\.(\d+))\/(\d+)/ ) {
330                         $ip->{ $ip->{_last} } = $1;
331                 } else {
332                         #warn "# SKIP [$_]\n";
333                 }
334         }
335
336         warn dump($ip);
337
338         my $ua = LWP::UserAgent->new;
339         my $url = URI->new( $rfid_url . '/register.pl');
340         $url->query_form(
341                 local_ip => $ip->{eth0} || $ip->{ (keys %$ip)[0] },
342         );
343         warn "GET ",$url->as_string;
344         my $response = $ua->get($url);
345         if ( $response->is_success ) {
346                 warn "# ", $response->decoded_content;
347                 my $json = decode_json $response->decoded_content;
348                 warn "REGISTER: ",dump($json);
349                 return $json;
350         } else {
351                 warn "ERROR ", $response->status_line;
352         }
353 }
354
355 rfid_register if $rfid_url;
356 http_server;
357
358 __DATA__
359 <html>
360 <head>
361 <title>RFID JSONP</title>
362 <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
363 <style type="text/css">
364 .status {
365         background: #ff8;
366 }
367
368 .da {
369         background: #fcc;
370 }
371
372 .d7 {
373         background: #cfc;
374 }
375
376 label[for=pull-reader] {
377         position: absolute;
378         top: 1em;
379         right: 1em;
380         background: #eee;
381 }
382
383 </style>
384 <script type="text/javascript">
385
386 // mock console
387 if(!window.console) {
388         window.console = new function() {
389                 this.info = function(str) {};
390                 this.debug = function(str) {};
391         };
392 }
393
394
395 function got_visible_tags(data,textStatus) {
396         var html = 'No tags in range';
397         if ( data.tags ) {
398                 html = '<ul class="tags">';
399                 $.each(data.tags, function(i,tag) {
400                         console.debug( i, tag );
401                         html += '<li><tt class="' + tag.security + '">' + tag.sid;
402                         var content = tag.content || tag.borrower.cardnumber;
403
404                         if ( content ) {
405                                 html += ' <a href="http://koha.example.com:8080/cgi-bin/koha/';
406                                 if ( tag.type == 1 ) { // book
407                                         html += 'catalogue/search.pl?q=';
408                                 } else {
409                                         html += 'members/member.pl?member=';
410                                 }
411                                 html += content + '" title="lookup in Koha" target="koha-lookup">' + content + '</a>';
412                                 html += '</tt>';
413 /*
414                                 html += '<form method=get action=program style="display:inline">'
415                                         + '<input type=hidden name='+tag.sid+' value="blank">'
416                                         + '<input type=submit value="Blank" onclick="return confirm(\'Blank tag '+tag.sid+'\')">'
417                                         + '</form>'
418                                 ;
419 */
420                         } else {
421                                 html += '</tt>';
422                                 html += ' <form method=get action=program style="display:inline">'
423                                         + '<!-- <input type=checkbox name=secure value='+tag.sid+' title="secure tag"> -->'
424                                         + '<input type=text name='+tag.sid+' size=12>'
425                                         + '<input type=submit value="Program">'
426                                         + '</form>'
427                                 ;
428                         }
429                 });
430                 html += '</ul>';
431         }
432
433         var arrows = Array( 8592, 8598, 8593, 8599, 8594, 8600, 8595, 8601 );
434
435         html = '<div class=status>'
436                 + textStatus
437                 + ' &#' + arrows[ data.time % arrows.length ] + ';'
438                 + '</div>'
439                 + html
440                 ;
441         $('#tags').html( html );
442         window.setTimeout(function(){
443                 scan_tags();
444         },200); // re-scan every 200ms
445 };
446
447 function scan_tags() {
448         console.info('scan_tags');
449         if ( $('input#pull-reader').attr('checked') )
450                 $.getJSON("/scan?callback=?", got_visible_tags);
451 }
452
453 $(document).ready(function() {
454                 $('input#pull-reader').click( function() {
455                         scan_tags();
456                 });
457                 $('input#pull-reader').attr('checked', true); // force check on load
458
459                 $('div#tags').click( function() {
460                         $('input#pull-reader').attr('checked', false);
461                 } );
462
463                 scan_tags();
464 });
465 </script>
466 </head>
467 <body>
468
469 <h1>RFID tags in range</h1>
470
471 <label for=pull-reader>
472 <input id=pull-reader type=checkbox checked=1>
473 active
474 </label>
475
476 <div id="tags">
477 RFID reader not found or driver program not started.
478 </div>
479
480 </body>
481 </html>