]> git.evergreen-ils.org Git - working/Evergreen.git/blob - docs/admin/sip_server.txt
Documentation: updated some SIP content
[working/Evergreen.git] / docs / admin / sip_server.txt
1 SIP Server
2 ----------
3
4 indexterm:[Automated Circulation System]
5 indexterm:[SelfCheck]
6 indexterm:[Automated Material Handling]
7
8 +SIP+, standing for +Standard Interchange Protocol+, was developed by the +3M corporation+ to be a common 
9 protocol for data transfer between ILS' (referred to in +SIP+ as an _ACS_, or _Automated Circulation System_)  and a 
10 third party device. Originally, the protocol was developed for use with _3M SelfCheck_ (often abbreviated SC, not to 
11 be confused with Staff Client) systems, but has since expanded to other companies and devices. It is now common 
12 to find +SIP+ in use in several other vendors' SelfCheck systems, as well as other non-SelfCheck devices. Some 
13 examples include:
14
15 * Patron Authentication (computer access, subscription databases) 
16 * Automated Material Handling (AMH) 
17 ** The automated sorting of items, often to bins or book carts, based on shelving location or other programmable 
18 criteria
19
20 Installing the SIP Server
21 ~~~~~~~~~~~~~~~~~~~~~~~~~
22
23
24
25 This is a rough intro to installing the +SIP+ server for Evergreen. 
26
27 Getting the code 
28 ^^^^^^^^^^^^^^^^
29
30 Current +SIP+ server code lives at in the Evergreen git repository:
31
32    cd /opt 
33    git clone git://git.evergreen-ils.org/SIPServer.git SIPServer 
34
35
36 Configuring the Server 
37 ^^^^^^^^^^^^^^^^^^^^^^
38
39 indexterm:[configuration files, oils_sip.xml]
40
41 . Type the following commands from the command prompt: 
42
43    $ sudo su opensrf 
44    $ cd /openils/conf 
45    $ cp oils_sip.xml.example oils_sip.xml 
46
47 . Edit oils_sip.xml. Change the commented out <server-params> section to this: 
48
49    <server-params
50       min_spare_servers='1' 
51       max_spare_servers='2' 
52       min_servers='3'
53       max_servers='25' 
54                 />
55
56 . max_servers will directly correspond to the number of allowed +SIP+ clients. Set the number accordingly, but 
57 bear in mind that too many connections can exhaust memory. On a 4G RAM/4 CPU server (that is also running 
58 evergreen), it is not recommended to exceed 100 +SIP+ client connections. 
59
60 Adding SIP Users
61 ^^^^^^^^^^^^^^^^
62
63 indexterm:[configuration files, oils_sip.xml]
64
65 . Type the following commands from the command prompt: 
66
67   $ sudo su opensrf 
68   $ cd /openils/conf
69
70 . In the +<accounts>+ section, add +SIP+ client login information. Make sure that all +<logins>+ use the same 
71 institution attribute, and make sure the institution is listed in +<institutions>+. All attributes in the 
72 +<login>+ section will be used by the +SIP+ client. 
73
74 . In Evergreen, create a new profile group called +SIP+. This group should be a sub-group of +Users+ (not +Staff+ 
75 or +Patrons+). Set _Editing Permission_ as *group_application.user.sip_client* and give the group the following 
76 permissions: 
77 +
78      COPY_CHECKIN 
79      COPY_CHECKOUT 
80      CREATE_PAYMENT
81      RENEW_CIRC 
82      VIEW_CIRCULATIONS 
83      VIEW_COPY_CHECKOUT_HISTORY 
84      VIEW_PERMIT_CHECKOUT 
85      VIEW_USER 
86      VIEW_USER_FINES_SUMMARY 
87      VIEW_USER_TRANSACTIONS 
88 +
89 OR use SQL like: 
90 +
91    
92    INSERT INTO permission.grp_tree (name,parent,description,application_perm) 
93    VALUES ('SIP', 1, 'SIP2 Client Systems', 'group_application.user.sip_client'); 
94   
95    INSERT INTO 
96      permission.grp_perm_map (grp, perm, depth, grantable) 
97    SELECT 
98      g.id, p.id, 0, FALSE 
99    FROM 
100      permission.grp_tree g, 
101      permission.perm_list p 
102    WHERE 
103      g.name = 'SIP' AND 
104      p.code IN ( 
105        'COPY_CHECKIN', 
106        'COPY_CHECKOUT', 
107        'RENEW_CIRC', 
108        'VIEW_CIRCULATIONS', 
109        'VIEW_COPY_CHECKOUT_HISTORY', 
110        'VIEW_PERMIT_CHECKOUT', 
111        'VIEW_USER', 
112        'VIEW_USER_FINES_SUMMARY', 
113        'VIEW_USER_TRANSACTIONS' 
114     ); 
115 +
116 Verify:
117 +
118     
119     SELECT * 
120     FROM permission.grp_perm_map pgpm 
121         INNER JOIN permission.perm_list ppl ON pgpm.perm = ppl.id 
122         INNER JOIN permission.grp_tree pgt ON pgt.id = pgpm.grp 
123     WHERE pgt.name = 'SIP';
124     
125  
126     
127 . For each account created in the +<login>+ section of oils_sip.xml, create a user (via the staff client user 
128 editor) that has the same username and password and put that user into the +SIP+ group. 
129
130 [NOTE]
131 ===================
132 The expiration date will affect the +SIP+ users' connection so you might want to make a note of this 
133 somewhere. 
134 ===================
135
136 Running the server 
137 ^^^^^^^^^^^^^^^^^^
138
139 To start the +SIP+ server type the following commands from the command prompt: 
140
141
142    $ sudo su opensrf 
143
144    $ oils_ctl.sh -a [start|stop|restart]_sip 
145
146 indexterm:[SIP]
147
148
149 Logging-SIP 
150 ^^^^^^^^^^^
151
152 Syslog
153 ++++++
154
155 indexterm:[syslog]
156
157
158 It is useful to log +SIP+ requests to a separate file especially during initial setup by modifying your syslog config file. 
159
160 . Edit syslog.conf. 
161
162    $ sudo vi /etc/syslog.conf  # maybe /etc/rsyslog.conf
163
164
165 . Add this: 
166
167    local6.*                -/var/log/SIP_evergreen.log 
168  
169 . Syslog expects the logfile to exist so create the file. 
170
171    $ sudo touch /var/log/SIP_evergreen.log 
172
173 . Restart sysklogd. 
174
175    $ sudo /etc/init.d/sysklogd restart 
176
177
178 Syslog-NG
179 +++++++++
180
181 indexterm:[syslog-NG]
182
183 . Edit logging config. 
184
185    sudo vi /etc/syslog-ng/syslog-ng.conf 
186
187 . Add: 
188
189    # +SIP2+ for Evergreen 
190    filter    f_eg_sip { level(warn, err, crit) and facility(local6); }; 
191    destination eg_sip { file("var/log/SIP_evergreen.log"); }; 
192    log { source(s_all); filter(f_eg_sip); destination(eg_sip); }; 
193
194 . Syslog-ng expects the logfile to exist so create the file. 
195
196    $ sudo touch /var/log/SIP_evergreen.log
197
198 . Restart syslog-ng 
199
200    $ sudo /etc/init.d/syslog-ng restart 
201
202
203 indexterm:[SIP]
204
205
206 Testing Your SIP Connection 
207 ^^^^^^^^^^^^^^^^^^^^^^^^^^^
208
209 * In the root directory of the SIPServer code: 
210
211    $ cd SIPServer/t 
212
213 * Edit SIPtest.pm, change the $instid, $server, $username, and $password variables. This will be 
214 enough to test connectivity. To run all tests, you'll need to change all the variables in the _Configuration_ section. 
215
216    $ PERL5LIB=../ perl 00sc_status.t 
217 +
218 This should produce something like:
219 +
220
221    1..4 
222    ok 1 - Invalid username 
223    ok 2 - Invalid username 
224    ok 3 - login 
225    ok 4 - SC status 
226
227 * Don't be dismayed at *Invalid Username*. That's just one of the many tests that are run. 
228
229 More Testing
230 ^^^^^^^^^^^^
231
232 . Once you have opened up either the +SIP+ OR +SIP2+ ports to be accessible from outside you can do some testing 
233 via +telnet+. You can try this with localhost if you so wish, but we want to prove that +SIP2+ works from 
234 non-localhost. Replace +$instid+, +$server+, +$barcode+, +$username+, and +$password+ variables below 
235 as necessary.
236 +
237 [NOTE]
238 ======================
239 We are using 6001 here which is associated with +SIP2+ as per our configuration. 
240 ======================
241 +
242    $ telnet $server 6001 
243    Connected to $server. 
244    Escape character is '^]'. 
245    9300CN**$username**|CO**$password**|CP**$instid** 
246 +
247 You should get back. 
248 +
249    941 
250
251 . Now just copy in the following line (with variables replaced) you don't need to hit enter, just paste!
252 +
253     2300120080623    172148AO**$instid**|AA**$barcode**|AC$password|AD**$password** 
254 +   
255 You will get back the patron information for $barcode (something similar to the what's below). 
256 +
257    24  Y           00120100113    170738AEFirstName MiddleName LastName|AA**$barcode**|BLY|CQY 
258    |BHUSD|BV0.00|AFOK|AO**$instid**| 
259 +
260 The response declares it is a valid patron BLY with a valid password CQY and shows the user's +$name+.
261
262
263 indexterm:[SIP]
264
265 SIP Communication
266 ~~~~~~~~~~~~~~~~~
267
268 indexterm:[SIP Server, SIP Communication]
269
270 +SIP+ generally communicates over a +TCP+ connection (either raw sockets or over +telnet+), but can also 
271 communicate via serial connections and other methods. In Evergreen, the most common deployment is a +RAW+ socket 
272 connection on port 6001.
273
274 +SIP+ communication consists of strings of messages, each message request and response begin with a 2-digit 
275 ``command'' - Requests usually being an odd number and responses usually increased by 1 to be an even number. The 
276 combination numbers for the request command and response is often referred to as a _Message Pair_ (for example, 
277 a 23 command is a request for patron status, a 24 response is a patron status, and the message pair 23/24 is patron 
278 status message pair). The table in the next section shows the message pairs and a description of them. 
279
280 For clarification, the ``Request'' is from the device (selfcheck or otherwise) to the ILS/ACS. The response is… the 
281 response to the request ;). 
282
283 Within each request and response, a number of fields (either a fixed width or separated with a | [pipe symbol] and 
284 preceeded with a 2-character field identifier) are used. The fields vary between message pairs. 
285
286 |===========================================================================
287 | *Pair* | *Name*              | *Supported?*          |*Details* 
288 | 01     | Block Patron        | Yes                   |<<01_block_patron, 01/Block_Patron>> - ACS responds with 24 Patron Status Response 
289 | 09-10  | Checkin             | Yes (with extensions) |<<09-10_checkin, 09/10_Checkin>> 
290 | 11-12  | Checkout            | Yes (no renewals)     |<<11-12_checkout, 11/12_Checkout>> 
291 | 15-16  | Hold                | Partially supported   |<<15-16_hold, 15/16_Hold>>  
292 | 17-18  | Item Information    | Yes (no extensions)   |<<17-18_item_information, 17/18_Item_Information>> 
293 | 19-20  | Item Status Update  | No                    |<<19-20_item_status_update, 19/20_Item_Status_Update>> - Returns Patron Enable response, but doesn't make any changes in EG  
294 | 23-24  | Patron Status       | Yes                   |<<23-24_patron_status, 23/24_Patron_Status>> - 63/64 ``Patron Information'' preferred 
295 | 25-26  | Patron Enable       | No                    |<<25-26_patron_enable, 25/26_Patron_Enable>> - Used during system testing and validation 
296 | 29-30  | Renew               | Yes                   |<<29-30_renew, 29/30_Renew>> 
297 | 35-36  | End Session         | Yes                   |<<35-36_end_session, 35/36_End_Session>>
298 | 37-38  | Fee Paid            | Yes                   |<<37-38_fee_paid, 37/38_Fee_Paid>> 
299 | 63-64  | Patron Information  | Yes (no extensions)   |<<63-64_patron_information, 63/64_Patron_Information>> 
300 | 65-66  | Renew All           | Yes                   |<<65-66_renew_all, 65/66_Renew_All>> 
301 | 93-94  | Login               | Yes                   |<<93-94_login, 93/94_Login>> - Must be first command to Evergreen ACS (via socket) or +SIP+ will terminate 
302 | 97-96  | Resend last message | Yes                   |<<97-96_resend, 97/96_Resend>> 
303 | 99-98  | SC-ACS Status       | Yes                   |<<99-98_sc_and_acs_status, 99/98_SC_and_ACS_Status>> 
304 |===========================================================================
305
306 anchor:01_block_patron[]
307
308 01 Block Patron
309 ^^^^^^^^^^^^^^^
310
311 indexterm:[SelfCheck]
312
313 A selfcheck will issue a *Block Patron* command if a patron leaves their card in a selfcheck machine or if the 
314 selfcheck detects tampering (such as attempts to disable multiple items during a single item checkout, multiple failed 
315 pin entries, etc). 
316
317 In Evergreen, this command does the following:
318
319 * User alert message: _CARD BLOCKED BY SELF-CHECK MACHINE_ (this is independent of the AL _Blocked 
320 Card Message_ field). 
321
322 * Card is marked inactive. 
323
324 The request looks like: 
325
326    01<card retained><date>[fields AO, AL, AA, AC] 
327
328 _Card Retained_: A single character field of Y or N - tells the ACS whether the SC has retained the card (ex: left in 
329 the machine) or not. 
330
331 _Date_: An 18 character field for the date/time when the block occurred. 
332
333 _Format_: YYYYMMDDZZZZHHMMSS (ZZZZ being zone - 4 blanks when local time, ``Z'' (3 blanks and a Z) 
334 represents UTC(GMT/Zulu) 
335
336 _Fields_: See <<fields, Fields>> for more details.
337
338 The response is a 24 ``Patron Status Response'' with the following: 
339
340 * Charge privileges denied 
341 * Renewal privileges denied 
342 * Recall privileges denied (hard-coded in every 24 or 64 response) 
343 * hold privileges denied 
344 * Screen Message 1 (AF): _blocked_ 
345 * Patron 
346
347 anchor:09-10_checkin[]
348
349 09/10 Checkin
350 ^^^^^^^^^^^^^
351
352 ~The request looks like: 
353
354    09<No block (Offline)><xact date><return date>[Fields AP,AO,AB,AC,CH,BI] 
355
356 _No Block (Offline)_: A single character field of _Y_ or _N_ - Offline transactions are not currently supported so send _N_. 
357
358 _xact date_: an 18 character field for the date/time when the checkin occurred. Format: 
359 YYYYMMDDZZZZHHMMSS (ZZZZ being zone - 4 blanks when local time, ``Z'' (3 blanks and a Z) represents 
360 UTC(GMT/Zulu) 
361
362 _Fields_: See <<fields, Fields>> for more details. 
363
364 The response is a 10 ``Checkin Response'' with the following: 
365
366    10<resensitize><magnetic media><alert><xact date>[Fields AO,AB,AQ,AJ,CL,AA,CK,CH,CR,CS,CT,CV,CY,DA,AF,AG] 
367
368 Example (with a remote hold): 
369
370   09N20100507    16593720100507    165937APCheckin Bin 5|AOBR1|AB1565921879|ACsip_01| 
371
372   101YNY20100623    165731AOBR1|AB1565921879|AQBR1|AJPerl 5 desktop reference|CK001|CSQA76.73.P33V76 1996 
373   |CTBR3|CY373827|DANicholas Richard Woodard|CV02|
374
375 Here you can see a hold alert for patron CY _373827_, named DA _Nicholas Richard Woodard_, to be picked up at CT 
376 ``BR3''. Since the transaction is happening at AO ``BR1'', the alert type CV is 02 for _hold at remote library_. The 
377 possible values for CV are: 
378
379 * 00: unknown 
380
381 * 01: local hold 
382
383 * 02: remote hold 
384
385 * 03: ILL transfer (not used by EG) 
386
387 * 04: transfer 
388
389 * 99: other 
390
391 indexterm:[magnetic media]
392
393 [NOTE]
394 ===============
395 The logic for Evergreen to determine whether the content is magnetic_media comes from either legacy circ 
396 scripts or search_config_circ_modifier. The default is non-magnetic. The same is true for media_type (default 
397 001). Evergreen does not populate the collection_code because it does not really have any, but it will provide 
398 the call_number where available.
399
400 Unlike the +item_id+ (barcode), the +title_id+ is actually a title string, unless the configuration forces the 
401 return of the bib ID. 
402
403 Don't be confused by the different branches that can show up in the same response line. 
404
405 * AO is where the transaction took place, 
406
407 * AQ is the ``permanent location'', and 
408
409 * CT is the _destination location_ (i.e., pickup lib for a hold or target lib for a transfer). 
410 ================
411
412 anchor:11-12_checkout[]
413
414 11/12 Checkout
415 ^^^^^^^^^^^^^^
416
417
418 anchor:15-16_hold[]
419
420 15/16 Hold
421 ^^^^^^^^^^
422
423 Evergreen supports the Hold message for the purpose of canceling
424 holds.  It does not currently support creating hold requests via SIP2.
425
426
427 anchor:17-18_item_information[]
428
429 17/18 Item Information 
430 ^^^^^^^^^^^^^^^^^^^^^^
431
432 The request looks like: 
433
434     17<xact_date>[fields: AO,AB,AC] 
435
436 The request is very terse. AC is optional. 
437
438 The following response structure is for +SIP2+. (Version 1 of the protocol had only 6 total fields.) 
439
440     18<circulation_status><security_marker><fee_type><xact_date> 
441     [fields: CF,AH,CJ,CM,AB,AJ,BG,BH,BV,CK,AQ,AP,CH,AF,AG,+CT,+CS] 
442
443 Example:
444
445    1720060110    215612AOBR1|ABno_such_barcode| 
446
447    1801010120100609    162510ABno_such_barcode|AJ| 
448
449    1720060110    215612AOBR1|AB1565921879| 
450
451    1810020120100623    171415AB1565921879|AJPerl 5 desktop reference|CK001|AQBR1|APBR1|BGBR1 
452    |CTBR3|CSQA76.73.P33V76 1996| 
453
454 The first case is with a bogus barcode. The latter shows an item with a circulation_status of _10_ for _in transit between 
455 libraries_. The known values of +circulation_status+ are enumerated in the spec. 
456
457 indexterm:[Automated Material Handling (AMH)]
458
459 EXTENSIONS: The CT field for _destination location_ and CS _call number_ are used by Automated Material Handling 
460 systems. 
461
462
463 anchor:19-20_item_status_update[]
464
465 19/20 Item Status Update
466 ^^^^^^^^^^^^^^^^^^^^^^^^
467
468
469 anchor:23-24_patron_status[]
470
471 23/24 Patron Status 
472 ^^^^^^^^^^^^^^^^^^^
473
474 Example: 
475
476    2300120060101    084235AOUWOLS|AAbad_barcode|ACsip_01|ADbad_password| 
477
478    24YYYY          00120100507    013934AE|AAbad_barcode|BLN|AOUWOLS|
479
480    2300120060101    084235AOCONS|AA999999|ACsip_01|ADbad_password| 
481
482    24  Y           00120100507    022318AEDoug Fiander|AA999999|BLY|CQN|BHUSD|BV0.00|AFOK|AOCONS| 
483
484    2300120060101    084235AOCONS|AA999999|ACsip_01|ADuserpassword|LY|CQN|BHUSD|BV0.00|AFOK|AOCONS| 
485
486    24  Y           00120100507    022803AEDoug Fiander|AA999999|BLY|CQY|BHUSD|BV0.00|AFOK|AOCONS| 
487
488 . The BL field (+SIP2+, optional) is _valid patron_, so the _N_ value means _bad_barcode_ doesn't match a patron, the 
489 _Y_ value means 999999 does. 
490
491 . The CQ field (+SIP2+, optional) is _valid password_, so the _N_ value means _bad_password_ doesn't match 999999's 
492 password, the _Y_ means _userpassword_ does. 
493
494 So if you were building the most basic +SIP2+ authentication client, you would check for _|CQY|_ in the response to 
495 know the user's barcode and password are correct (|CQY| implies |BLY|, since you cannot check the password 
496 unless the barcode exists). However, in practice, depending on the application, there are other factors to consider in 
497 authentication, like whether the user is blocked from checkout, owes excessive fines, reported their card lost, etc. 
498 These limitations are reflected in the 14-character _patron status_ string immediately following the _24_ code. See the 
499 field definitions in your copy of the spec. 
500
501
502 anchor:25-26_patron_enable[]
503
504 25/26 Patron Enable 
505 ^^^^^^^^^^^^^^^^^^^
506
507 Not yet supported. 
508
509
510 anchor:29-30_renew[]
511
512 29/30 Renew
513 ^^^^^^^^^^^
514
515 Evergreen supports the Renew message.
516
517
518 anchor:35-36_end_session[]
519
520 35/36 End Session
521 ^^^^^^^^^^^^^^^^^
522
523    3520100505    115901AOBR1|AA999999|
524
525    36Y20100507    161213AOCONS|AA999999|AFThank you!| 
526    
527 The _Y/N_ code immediately after the 36 indicates _success/failure_. Failure is not particularly meaningful or important 
528 in this context, and for evergreen it is hardcoded _Y_. 
529
530
531
532 anchor:37-38_fee_paid[]
533
534 37/38 Fee Paid 
535 ^^^^^^^^^^^^^^
536
537 Evergreen supports the Fee Paid message.
538
539
540 anchor:63-64_patron_information[]
541
542 63/64 Patron Information 
543 ^^^^^^^^^^^^^^^^^^^^^^^^
544
545 Attempting to retrieve patron info with a bad barcode:
546
547    6300020060329    201700          AOBR1|AAbad_barcode| 
548    
549    64YYYY          00020100623    141130000000000000000000000000AE|AAbad_barcode|BLN|AOBR1| 
550
551 Attempting to retrieve patron info with a good barcode (but bad patron password): 
552
553    6300020060329    201700          AOBR1|AA999999|ADbadpwd| 
554
555    64  Y           00020100623    141130000000000000000000000000AA999999|AEDavid J. Fiander|BHUSD|BV0.00 
556    |BD2 Meadowvale Dr. St Thomas, ON Canada 
557
558    90210|BEdjfiander@somemail.com|BF(519) 555 1234|AQBR1|BLY|CQN|PB19640925|PCPatrons 
559    |PIUnfiltered|AFOK|AOBR1| 
560
561 See <<23-24_patron_status, 23/24 Patron Status>> for info on +BL+ and +CQ+ fields. 
562
563
564
565 anchor:65-66_renew_all[]
566
567 65/66 Renew All
568 ^^^^^^^^^^^^^^^
569
570 Evergreen supports the Renew All message.
571
572
573 anchor:93-94_login[]
574
575 93/94 Login 
576 ^^^^^^^^^^^
577
578 Example: 
579
580    9300CNsip_01|CObad_value|CPBR1| 
581   
582    [Connection closed by foreign host.] 
583    ... 
584
585    9300CNsip_01|COsip_01|CPBR1|
586
587    941 
588
589 _941_ means successful terminal login. _940_ or getting dropped means failure.
590
591
592 anchor:97-96_resend[]
593
594 97/96 Resend
595 ^^^^^^^^^^^^
596
597
598 anchor:99-98_sc_and_acs_status[]
599
600 99/98 SC and ACS Status
601 ^^^^^^^^^^^^^^^^^^^^^^^
602
603    99<status code><max print width><protocol version> 
604  
605 All 3 fields are required:
606
607 * 0: SC is OK
608
609 * 1: SC is out of paper 
610
611 * 2: SC shutting down
612
613 * status code - 1 character 
614
615 * max print width - 3 characters - the integer number of characters the client can print 
616
617 * protocol version - 4 characters - x.xx 
618
619   98<on-line status><checkin ok><checkout ok><ACS renewal policy>
620   <status update ok><offline ok><timeout period> 
621
622   <retries allowed><date/time sync><protocol version><institution id> 
623   <library name><supported messages><terminal 
624
625   location><screen message><print line> 
626
627 Example: 
628
629   9910302.00 
630
631   98YYYYNN60000320100510    1717202.00AOCONS|BXYYYYYYYYYNYNNNYN|
632
633 The Supported Messages field +BX+ appears only in +SIP2+, and specifies whether 16 different +SIP+ commands are 
634 supported by the +ACS+ or not. 
635
636
637 anchor:fields[]
638
639 Fields
640 ^^^^^^
641
642 All fixed-length fields in a communication will appear before the first variable-length field. This allows for simple 
643 parsing. Variable-length fields are by definition delimited, though there will not necessarily be an initial delimiter 
644 between the last fixed-length field and the first variable-length one. It would be unnecessary, since you should know 
645 the exact position where that field begins already.