fix spelling
[Biblio-RFID.git] / examples / koha-rfid.js
1 /*
2  * RFID support for Koha
3  *
4  * Writtern by Dobrica Pavlinusic <dpavlin@rot13.org> under GPL v2 or later
5  *
6  * This provides example how to intergrate JSONP interface from
7  *
8  * scripts/RFID-JSONP-server.pl
9  *
10  * to provide overlay for tags in range and emulate form fill for Koha Library System
11  * which allows check-in and checkout-operations without touching html interface
12  *
13  * You will have to inject remote javascript in Koha intranetuserjs using:
14
15 // inject JavaScript RFID support
16 $.getScript('http://localhost:9000/examples/koha-rfid.js');
17
18  */
19
20 function barcode_on_screen(barcode) {
21         var found = 0;
22         $('table tr td a:contains(130)').each( function(i,o) {
23                 var possible = $(o).text();
24 console.debug(i,o,possible, barcode);
25                 if ( possible == barcode ) found++;
26         })
27         return found;
28 }
29
30 function rfid_secure(barcode,sid,val) {
31         console.debug('rfid_secure', barcode, sid, val);
32         if ( barcode_on_screen(barcode) ) 
33                 $.getJSON( 'http://localhost:9000/secure.js?' + sid + '=' + val + ';callback=?' )
34 }
35
36 var rfid_reset_field = false;
37
38 function rfid_scan(data,textStatus) {
39 //      console.debug( 'rfid_scan', data, textStatus );
40
41         var span = $('span#rfid');
42
43         if ( span.size() == 0 ) // insert last in language bar on bottom
44                 span = $('ul#i18nMenu').append('<li><span id=rfid>RFID reader found<span>');
45
46         if ( span.size() == 0 ) // or before login on top
47                 span = $('div#login').prepend('<span id=rfid>RFID reader found</span>');
48
49         span = $('span#rfid');
50
51
52         if ( data.tags ) {
53                 if ( data.tags.length === 1 ) {
54                         var t = data.tags[0];
55 //                      if ( span.text() != t.content ) {
56                         if ( 1 ) { // force update of security
57
58                                 var url = document.location.toString();
59                                 var circulation = url.substr(-14,14) == 'circulation.pl';
60                                 var returns = url.substr(-10,10) == 'returns.pl';
61
62                                 if ( t.content.length == 0 ) { // empty tag
63
64                                         span.text( t.sid + ' empty' ).css('color', 'red' );
65
66                                 } else if ( t.content.substr(0,3) == '130' ) { // books
67
68                                         if ( circulation )
69                                                  rfid_secure( t.content, t.sid, 'D7' );
70                                         if ( returns )
71                                                  rfid_secure( t.content, t.sid, 'DA' );
72
73                                         var color = 'blue';
74                                         if ( t.security.toUpperCase() == 'DA' ) color = 'red';
75                                         if ( t.security.toUpperCase() == 'D7' ) color = 'green';
76                                         span.text( t.content ).css('color', color);
77
78                                         if ( ! barcode_on_screen( t.content ) ) {
79                                                 rfid_reset_field = 'barcode';
80                                                 var i = $('input[name=barcode]:last');
81                                                 if ( i.val() != t.content ) 
82                                                         i.val( t.content )
83                                                         .closest('form').submit();
84                                         }
85
86                                 } else {
87                                         span.text( t.content ).css('color', 'blue' );
88
89                                         if ( url.substr(-14,14) != 'circulation.pl' || $('form[name=mainform]').size() == 0 ) {
90                                                 rfid_reset_field = 'findborrower';
91                                                 $('input[name=findborrower]').val( t.content )
92                                                         .parent().submit();
93                                         }
94                                 }
95                         }
96                 } else {
97                         var error = data.tags.length + ' tags near reader: ';
98                         $.each( data.tags, function(i,tag) { error += tag.content + ' '; } );
99                         span.text( error ).css( 'color', 'red' );
100                 }
101
102         } else {
103                 span.text( 'no tags in range' ).css('color','gray');
104                 if ( rfid_reset_field ) {
105                         $('input[name='+rfid_reset_field+']').val( '' );
106                         rfid_reset_field = false;
107                 }
108         }
109
110         window.setTimeout( function() {
111                 $.getJSON("http://localhost:9000/scan?callback=?", rfid_scan);
112         }, 1000 ); // 1000ms
113 }
114
115 $(document).ready( function() {
116         $.getJSON("http://localhost:9000/scan?callback=?", rfid_scan);
117 });