]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/web/js/ui/default/circ/selfcheck/selfcheck.js
implemented holds list and navigation links
[Evergreen.git] / Open-ILS / web / js / ui / default / circ / selfcheck / selfcheck.js
1 dojo.require('dojo.date.locale');
2 dojo.require('dojo.date.stamp');
3 dojo.require('openils.CGI');
4 dojo.require('openils.Util');
5 dojo.require('openils.User');
6 dojo.require('openils.Event');
7 dojo.require('openils.widget.ProgressDialog');
8
9 dojo.requireLocalization('openils.circ', 'selfcheck');
10 var localeStrings = dojo.i18n.getLocalization('openils.circ', 'selfcheck');
11
12
13 const SET_BARCODE_REGEX = 'opac.barcode_regex';
14 const SET_PATRON_TIMEOUT = 'circ.selfcheck.patron_login_timeout';
15 const SET_ALERT_ON_CHECKOUT_EVENT = 'circ.selfcheck.alert_on_checkout_event';
16 const SET_AUTO_OVERRIDE_EVENTS = 'circ.selfcheck.auto_override_checkout_events';
17 const SET_PATRON_PASSWORD_REQUIRED = 'circ.selfcheck.patron_password_required';
18
19 function SelfCheckManager() {
20
21     this.cgi = new openils.CGI();
22     this.staff = null; 
23     this.workstation = null;
24     this.authtoken = null;
25
26     this.patron = null; 
27     this.patronBarcodeRegex = null;
28
29     // current item barcode
30     this.itemBarcode = null; 
31
32     // are we currently performing a renewal?
33     this.isRenewal = false; 
34
35     // is a transaction pending?
36     this.pendingXact = false; 
37
38     // dict of org unit settings for "here"
39     this.orgSettings = {};
40
41
42     // Construct a mock checkout for debugging purposes
43     if(this.mockCheckouts = this.cgi.param('mock-circ')) {
44
45         this.mockCheckout = {
46             payload : {
47                 record : new fieldmapper.mvr(),
48                 copy : new fieldmapper.acp(),
49                 circ : new fieldmapper.circ()
50             }
51         };
52
53         this.mockCheckout.payload.record.title('Jazz improvisation for guitar');
54         this.mockCheckout.payload.record.author('Wise, Les');
55         this.mockCheckout.payload.record.isbn('0634033565');
56         this.mockCheckout.payload.copy.barcode('123456789');
57         this.mockCheckout.payload.circ.renewal_remaining(1);
58         this.mockCheckout.payload.circ.parent_circ(1);
59         this.mockCheckout.payload.circ.due_date('2012-12-21');
60     }
61 }
62
63
64
65 /**
66  * Fetch the org-unit settings, initialize the display, etc.
67  */
68 SelfCheckManager.prototype.init = function() {
69
70     this.staff = openils.User.user;
71     this.workstation = openils.User.workstation;
72     this.authtoken = openils.User.authtoken;
73     this.loadOrgSettings();
74
75     
76     var self = this;
77     // connect onclick handlers to the various navigation links
78     var linkHandlers = {
79         'oils-selfck-hold-details-link' : function() { self.drawHoldsPage(); },
80         'oils-selfck-nav-holds' : function() { self.drawHoldsPage(); },
81         'oils-selfck-pay-fines-link' : function() { self.drawFinesPage(); },
82         'oils-selfck-nav-fines' : function() { self.drawFinesPage(); },
83         'oils-selfck-nav-home' : function() { self.drawCircPage(); },
84         'oils-selfck-nav-logout' : function() { self.logoutPatron(); }
85     }
86
87     for(var id in linkHandlers) 
88         dojo.connect(dojo.byId(id), 'onclick', linkHandlers[id]);
89
90
91     if(this.cgi.param('patron')) {
92         
93         // Patron barcode via cgi param.  Mainly used for debugging and
94         // only works if password is not required by policy
95         this.loginPatron(this.cgi.param('patron'));
96
97     } else {
98         this.drawLoginPage();
99     }
100 }
101
102 /**
103  * Loads the org unit settings
104  */
105 SelfCheckManager.prototype.loadOrgSettings = function() {
106
107     var settings = fieldmapper.aou.fetchOrgSettingBatch(
108         this.staff.ws_ou(), [
109             SET_BARCODE_REGEX,
110             SET_PATRON_TIMEOUT,
111             SET_ALERT_ON_CHECKOUT_EVENT,
112             SET_AUTO_OVERRIDE_EVENTS,
113         ]
114     );
115
116     for(k in settings) {
117         if(settings[k])
118             this.orgSettings[k] = settings[k].value;
119     }
120
121     if(settings[SET_BARCODE_REGEX]) 
122         this.patronBarcodeRegex = new RegExp(settings[SET_BARCODE_REGEX].value);
123 }
124
125 SelfCheckManager.prototype.drawLoginPage = function() {
126     var self = this;
127
128     var bcHandler = function(barcode) {
129         // handle patron barcode entry
130
131         if(self.orgSettings[SET_PATRON_PASSWORD_REQUIRED]) {
132             
133             // password is required.  wire up the scan box to read it
134             self.updateScanBox({
135                 msg : 'Please enter your password', // TODO i18n 
136                 handler : function(pw) { self.loginPatron(barcode, ps); }
137             });
138
139             dojo.connect(selfckScanBox, 'onKeyDown', pwHandler);
140
141         } else {
142             // password is not required, go ahead and login
143             self.loginPatron(barcode);
144         }
145     };
146
147     this.updateScanBox({
148         msg : 'Please log in with your library barcode.', // TODO
149         handler : bcHandler
150     });
151 }
152
153 /**
154  * Login the patron.  
155  */
156 SelfCheckManager.prototype.loginPatron = function(barcode, passwd) {
157
158     if(this.orgSettings[SET_PATRON_PASSWORD_REQUIRED]) {
159
160         // patron password is required.  Verify it.
161
162         var res = fieldmapper.standardRequest(
163             ['open-ils.actor', 'open-ils.actor.verify_user_password'],
164             {params : [this.authtoken, barcode, null, hex_md5(passwd)]}
165         );
166
167         if(res == 0) {
168             return alert('login failed'); // TODO
169         }
170     } 
171
172     // retrieve the fleshed user by barcode
173     this.patron = fieldmapper.standardRequest(
174         ['open-ils.actor', 'open-ils.actor.user.fleshed.retrieve_by_barcode'],
175         {params : [this.authtoken, barcode]}
176     );
177
178     var evt = openils.Event.parse(this.patron);
179     if(evt) {
180
181         // User login failed, why?
182         
183         switch(evt.textcode) {
184
185             case 'ACTOR_USER_NOT_FOUND':
186                 return alert('user not found'); // TODO
187
188             case 'NO_SESSION':
189                 return alert('staff login timed out'); // TODO
190
191             default:
192                 return alert('unexpected patron login error occured: ' + evt.textcode); // TODO
193         }
194     }
195
196     // patron login succeeded
197     dojo.byId('oils-selfck-user-banner').innerHTML = 'Welcome, ' + this.patron.usrname(); // TODO i18n
198     this.drawCircPage();
199 }
200
201
202 /**
203  * Manages the main input box
204  * @param msg The context message to display with the box
205  * @param clearOnly Don't update the context message, just clear the value and re-focus
206  * @param handler Optional "on-enter" handler.  
207  */
208 SelfCheckManager.prototype.updateScanBox = function(args) {
209
210     selfckScanBox.attr('value', '');
211
212     if(args.value)
213         selfckScanBox.attr('value', args.value);
214
215     if(args.msg) 
216         dojo.byId('oils-selfck-scan-text').innerHTML = args.msg;
217
218     if(selfckScanBox._lastHandler && (args.handler || args.clearHandler)) {
219         dojo.disconnect(selfckScanBox._lastHandler);
220     }
221
222     if(args.handler) {
223         selfckScanBox._lastHandler = dojo.connect(
224             selfckScanBox, 
225             'onKeyDown', 
226             function(e) {
227                 if(e.keyCode != dojo.keys.ENTER) 
228                     return;
229                 args.handler(selfckScanBox.attr('value'));
230             }
231         );
232     }
233
234     selfckScanBox.focus();
235 }
236
237 /**
238  *  Sets up the checkout/renewal interface
239  */
240 SelfCheckManager.prototype.drawCircPage = function() {
241
242     var self = this;
243     this.updateScanBox({
244         msg : 'Please enter an item barcode', // TODO i18n
245         handler : function(barcode) { self.checkout(barcode); }
246     });
247
248     openils.Util.hide('oils-selfck-payment-page');
249     openils.Util.hide('oils-selfck-holds-page');
250     openils.Util.show('oils-selfck-circ-page');
251
252     this.circTbody = dojo.byId('oils-selfck-circ-tbody');
253     if(!this.circTemplate)
254         this.circTemplate = this.circTbody.removeChild(dojo.byId('oils-selfck-circ-row'));
255
256     // items out, holds, and fines summaries
257
258     // fines summary
259     fieldmapper.standardRequest(
260         ['open-ils.actor', 'open-ils.actor.user.fines.summary'],
261         {   async : true,
262             params : [this.authtoken, this.patron.id()],
263             oncomplete : function(r) {
264                 var summary = openils.Util.readResponse(r);
265                 dojo.byId('oils-selfck-fines-total').innerHTML = 
266                     dojo.string.substitute(
267                         localeStrings.TOTAL_FINES_ACCOUNT, 
268                         [summary.balance_owed()]
269                     );
270             }
271         }
272     );
273
274     // holds summary
275     this.updateHoldsSummary();
276
277     // items out summary
278     this.updateCircSummary();
279
280     // render mock checkouts for debugging?
281     if(this.mockCheckouts) {
282         for(var i in [1,2,3]) 
283             this.displayCheckout(this.mockCheckout);
284     }
285 }
286
287 SelfCheckManager.prototype.updateHoldsSummary = function(decrement) {
288
289     if(!this.holdsSummary) {
290         var summary = fieldmapper.standardRequest(
291             ['open-ils.circ', 'open-ils.circ.holds.user_summary'],
292             {params : [this.authtoken, this.patron.id()]}
293         );
294
295         this.holdsSummary = {};
296         this.holdsSummary.ready = Number(summary['4']);
297         this.holdsSummary.total = 0;
298
299         for(var i in summary) 
300             this.holdsSummary.total += Number(summary[i]);
301     }
302
303     if(this.decrement) 
304         this.holdsSummary.ready -= 1;
305
306     dojo.byId('oils-selfck-holds-total').innerHTML = 
307         dojo.string.substitute(
308             localeStrings.TOTAL_HOLDS, 
309             [this.holdsSummary.total]
310         );
311
312     dojo.byId('oils-selfck-holds-ready').innerHTML = 
313         dojo.string.substitute(
314             localeStrings.HOLDS_READY_FOR_PICKUP, 
315             [this.holdsSummary.ready]
316         );
317 }
318
319
320 SelfCheckManager.prototype.updateCircSummary = function(increment) {
321
322     if(!this.circSummary) {
323
324         var summary = fieldmapper.standardRequest(
325             ['open-ils.actor', 'open-ils.actor.user.checked_out.count'],
326             {params : [this.authtoken, this.patron.id()]}
327         );
328
329         this.circSummary = {
330             total : Number(summary.out) + Number(summary.overdue),
331             overdue : Number(summary.overdue),
332             session : 0
333         };
334     }
335
336     if(increment) {
337         // local checkout occurred.  Add to the total and the session.
338         this.circSummary.total += 1;
339         this.circSummary.session += 1;
340     }
341
342     dojo.byId('oils-selfck-circ-account-total').innerHTML = 
343         dojo.string.substitute(
344             localeStrings.TOTAL_ITEMS_ACCOUNT, 
345             [this.circSummary.total]
346         );
347
348     dojo.byId('oils-selfck-circ-session-total').innerHTML = 
349         dojo.string.substitute(
350             localeStrings.TOTAL_ITEMS_SESSION, 
351             [this.circSummary.session]
352         );
353 }
354
355
356 SelfCheckManager.prototype.drawHoldsPage = function() {
357
358     // TODO add option to hid scanBox
359     // this.updateScanBox(...)
360
361     openils.Util.hide('oils-selfck-circ-page');
362     openils.Util.hide('oils-selfck-payment-page');
363     openils.Util.show('oils-selfck-holds-page');
364
365     this.holdTbody = dojo.byId('oils-selfck-hold-tbody');
366     if(!this.holdTemplate)
367         this.holdTemplate = this.holdTbody.removeChild(dojo.byId('oils-selfck-hold-row'));
368     while(this.holdTbody.childNodes[0])
369         this.holdTbody.removeChild(this.holdTbody.childNodes[0]);
370
371     progressDialog.show(true);
372
373     var self = this;
374     fieldmapper.standardRequest( // fetch the hold IDs
375         ['open-ils.circ', 'open-ils.circ.holds.id_list.retrieve'],
376         {   async : true,
377             params : [this.authtoken, this.patron.id()],
378
379             oncomplete : function(r) { 
380                 var ids = openils.Util.readResponse(r);
381                 if(!ids || ids.length == 0) return;
382
383                 fieldmapper.standardRequest( // fetch the hold objects with fleshed details
384                     ['open-ils.circ', 'open-ils.circ.hold.details.batch.retrieve.atomic'],
385                     {   async : true,
386                         params : [self.authtoken, ids],
387                         oncomplete : function(rr) {
388                             self.drawHolds(openils.Util.readResponse(rr));
389                         }
390                     }
391                 );
392             }
393         }
394     );
395 }
396
397 /**
398  * Fetch and add a single hold to the list of holds
399  */
400 SelfCheckManager.prototype.drawHolds = function(holds) {
401
402     holds = holds.sort(
403         // sort available holds to the top of the list
404         // followed by queue position order
405         function(a, b) {
406             if(a.status == 4) return -1;
407             if(a.queue_position < b.queue_position) return -1;
408             return 1;
409         }
410     );
411
412     progressDialog.hide();
413
414     for(var i in holds) {
415
416         var data = holds[i];
417         var row = this.holdTemplate.cloneNode(true);
418
419         if(data.mvr.isbn()) {
420             this.byName(row, 'jacket').setAttribute('src', '/opac/extras/ac/jacket/small/' + data.mvr.isbn());
421         }
422
423         this.byName(row, 'title').innerHTML = data.mvr.title();
424         this.byName(row, 'author').innerHTML = data.mvr.author();
425
426         if(data.status == 4) {
427
428             // hold is ready for pickup
429             this.byName(row, 'status').innerHTML = localeStrings.HOLD_STATUS_READY;
430
431         } else {
432
433             // hold is still pending
434             this.byName(row, 'status').innerHTML = 
435                 dojo.string.substitute(
436                     localeStrings.HOLD_STATUS_WAITING,
437                     [data.queue_position, data.potential_copies]
438                 );
439         }
440
441         this.holdTbody.appendChild(row);
442     }
443 }
444
445
446
447 /**
448  * Check out a single item.  If the item is already checked 
449  * out to the patron, redirect to renew()
450  */
451 SelfCheckManager.prototype.checkout = function(barcode, override) {
452
453     if(!barcode) {
454         this.updateScanbox(null, true);
455         return;
456     }
457
458     if(this.mockCheckouts) {
459         // if we're in mock-checkout mode, just insert another
460         // fake circ into the table and get out of here.
461         this.displayCheckout(this.mockCheckout);
462         return;
463     }
464
465     // TODO see if it's a patron barcode
466     // TODO see if this item has already been checked out in this session
467
468     var method = 'open-ils.circ.checkout.full';
469     if(override) method += '.override';
470
471     var result = fieldmapper.standardRequest(
472         ['open-ils.circ', 'open-ils.circ.checkout.full'],
473         {params: [
474             this.authtoken, {
475                 patron_id : this.patron.id(),
476                 copy_barcode : barcode
477             }
478         ]}
479     );
480
481
482     if(dojo.isArray(result)) {
483         // list of results.  See if we can override all of them.
484
485     } else {
486         var evt = openils.Event.parse(result);
487
488         switch(evt.textcode) {
489             // standard result events
490             
491             case 'SUCCESS':
492                 this.displayCheckout(evt);
493                 break;
494
495             case 'OPEN_CIRCULATION_EXISTS':
496                 // TODO renewal
497                 break;
498
499             case 'NO_SESSION':
500                 // TODO logout staff
501                 break;
502         }
503     }
504
505     console.log("Circ resulted in " + js2JSON(result));
506 }
507
508 /**
509  * Renew an item
510  */
511 SelfCheckManager.prototype.renew = function() {
512 }
513
514 /**
515  * Display the result of a checkout or renewal in the items out table
516  */
517 SelfCheckManager.prototype.displayCheckout = function(evt) {
518
519     var copy = evt.payload.copy;
520     var record = evt.payload.record;
521     var circ = evt.payload.circ;
522     var row = this.circTemplate.cloneNode(true);
523
524     if(record.isbn()) {
525         this.byName(row, 'jacket').setAttribute('src', '/opac/extras/ac/jacket/small/' + record.isbn());
526     }
527
528     this.byName(row, 'barcode').innerHTML = copy.barcode();
529     this.byName(row, 'title').innerHTML = record.title();
530     this.byName(row, 'author').innerHTML = record.author();
531     this.byName(row, 'remaining').innerHTML = circ.renewal_remaining();
532
533     var date = dojo.date.stamp.fromISOString(circ.due_date());
534     this.byName(row, 'due_date').innerHTML = 
535         dojo.date.locale.format(date, {selector : 'date'});
536
537     // put new circs at the top of the list
538     this.circTbody.insertBefore(row, this.circTbody.getElementsByTagName('tr')[0]);
539 }
540
541
542 SelfCheckManager.prototype.byName = function(node, name) {
543     return dojo.query('[name=' + name+']', node)[0];
544 }
545
546
547 SelfCheckManager.prototype.drawFinesPage = function() {
548
549     openils.Util.hide('oils-selfck-circ-page');
550     openils.Util.hide('oils-selfck-holds-page');
551     openils.Util.show('oils-selfck-payment-page');
552
553 }
554
555 /**
556  * Print a receipt
557  */
558 SelfCheckManager.prototype.printReceipt = function() {
559 }
560
561
562 /**
563  * Logout the patron and return to the login page
564  */
565 SelfCheckManager.prototype.logoutPatron = function() {
566 }
567
568
569 /**
570  * Fire up the manager on page load
571  */
572 openils.Util.addOnLoad(
573     function() {
574         new SelfCheckManager().init();
575     }
576 );