]> git.evergreen-ils.org Git - OpenSRF.git/blob - src/javascript/opensrf.js
LP#1268619: JS libs capture all method errors
[OpenSRF.git] / src / javascript / opensrf.js
1 /* -----------------------------------------------------------------------
2  * Copyright (C) 2008  Georgia Public Library Service
3  * Bill Erickson <erickson@esilibrary.com>
4  *  
5  * This program is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU General Public License
7  * as published by the Free Software Foundation; either version 2
8  * of the License, or (at your option) any later version.
9  * 
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  * ----------------------------------------------------------------------- */
15
16 /* session states */
17 var OSRF_APP_SESSION_CONNECTED = 0;
18 var OSRF_APP_SESSION_CONNECTING = 1;
19 var OSRF_APP_SESSION_DISCONNECTED = 2;
20
21 /* types of transport layers */
22 var OSRF_TRANSPORT_TYPE_XHR = 1;
23 var OSRF_TRANSPORT_TYPE_XMPP = 2;
24 var OSRF_TRANSPORT_TYPE_WS = 3;
25 var OSRF_TRANSPORT_TYPE_WS_SHARED = 4;
26
27 /* message types */
28 var OSRF_MESSAGE_TYPE_REQUEST = 'REQUEST';
29 var OSRF_MESSAGE_TYPE_STATUS = 'STATUS';
30 var OSRF_MESSAGE_TYPE_RESULT = 'RESULT';
31 var OSRF_MESSAGE_TYPE_CONNECT = 'CONNECT';
32 var OSRF_MESSAGE_TYPE_DISCONNECT = 'DISCONNECT';
33
34 /* message statuses */
35 var OSRF_STATUS_CONTINUE = 100;
36 var OSRF_STATUS_OK = 200;
37 var OSRF_STATUS_ACCEPTED = 202;
38 var OSRF_STATUS_COMPLETE = 205;
39 var OSRF_STATUS_REDIRECTED = 307;
40 var OSRF_STATUS_BADREQUEST = 400;
41 var OSRF_STATUS_UNAUTHORIZED = 401;
42 var OSRF_STATUS_FORBIDDEN = 403;
43 var OSRF_STATUS_NOTFOUND = 404;
44 var OSRF_STATUS_NOTALLOWED = 405;
45 var OSRF_STATUS_TIMEOUT = 408;
46 var OSRF_STATUS_EXPFAILED = 417;
47 var OSRF_STATUS_INTERNALSERVERERROR = 500;
48 var OSRF_STATUS_NOTIMPLEMENTED = 501;
49 var OSRF_STATUS_VERSIONNOTSUPPORTED = 505;
50
51 // TODO: get path from ./configure prefix
52 var SHARED_WORKER_LIB = '/js/dojo/opensrf/opensrf_ws_shared.js'; 
53
54 /* The following classes map directly to network-serializable opensrf objects */
55
56 function osrfMessage(hash) {
57     this.hash = hash;
58     if(!this.hash.locale)
59         this.hash.locale = OpenSRF.locale || 'en-US';
60     this._encodehash = true;
61 }
62 osrfMessage.prototype.threadTrace = function(d) { 
63     if(arguments.length == 1) 
64         this.hash.threadTrace = d; 
65     return this.hash.threadTrace; 
66 };
67 osrfMessage.prototype.type = function(d) { 
68     if(arguments.length == 1) 
69         this.hash.type = d; 
70     return this.hash.type; 
71 };
72 osrfMessage.prototype.payload = function(d) { 
73     if(arguments.length == 1) 
74         this.hash.payload = d; 
75     return this.hash.payload; 
76 };
77 osrfMessage.prototype.locale = function(d) { 
78     if(arguments.length == 1) 
79         this.hash.locale = d; 
80     return this.hash.locale; 
81 };
82 osrfMessage.prototype.api_level = function(d) { 
83     if(arguments.length == 1) 
84         this.hash.api_level = d; 
85     return this.hash.api_level; 
86 };
87 osrfMessage.prototype.serialize = function() {
88     return {
89         "__c":"osrfMessage",
90         "__p": {
91             'threadTrace' : this.hash.threadTrace,
92             'type' : this.hash.type,
93             'payload' : (this.hash.payload) ? this.hash.payload.serialize() : 'null',
94             'locale' : this.hash.locale,
95             'api_level' : this.hash.api_level
96         }
97     };
98 };
99
100 function osrfMethod(hash) {
101     this.hash = hash;
102     this._encodehash = true;
103 }
104 osrfMethod.prototype.method = function(d) {
105     if(arguments.length == 1) 
106         this.hash.method = d; 
107     return this.hash.method; 
108 };
109 osrfMethod.prototype.params = function(d) {
110     if(arguments.length == 1) 
111         this.hash.params = d; 
112     return this.hash.params; 
113 };
114 osrfMethod.prototype.serialize = function() {
115     return {
116         "__c":"osrfMethod",
117         "__p": {
118             'method' : this.hash.method,
119             'params' : this.hash.params
120         }
121     };
122 };
123
124 function osrfMethodException(hash) {
125     this.hash = hash;
126     this._encodehash = true;
127 }
128 osrfMethodException.prototype.status = function(d) {
129     if(arguments.length == 1) 
130         this.hash.status = d; 
131     return this.hash.status; 
132 };
133 osrfMethodException.prototype.statusCode = function(d) {
134     if(arguments.length == 1) 
135         this.hash.statusCode = d; 
136     return this.hash.statusCode; 
137 };
138 function osrfConnectStatus(hash) { 
139     this.hash = hash;
140     this._encodehash = true;
141 }
142 osrfConnectStatus.prototype.status = function(d) {
143     if(arguments.length == 1) 
144         this.hash.status = d; 
145     return this.hash.status; 
146 };
147 osrfConnectStatus.prototype.statusCode = function(d) {
148     if(arguments.length == 1) 
149         this.hash.statusCode = d; 
150     return this.hash.statusCode; 
151 };
152 function osrfResult(hash) {
153     this.hash = hash;
154     this._encodehash = true;
155 }
156 osrfResult.prototype.status = function(d) {
157     if(arguments.length == 1) 
158         this.hash.status = d; 
159     return this.hash.status; 
160 };
161 osrfResult.prototype.statusCode = function(d) {
162     if(arguments.length == 1) 
163         this.hash.statusCode = d; 
164     return this.hash.statusCode; 
165 };
166 osrfResult.prototype.content = function(d) {
167     if(arguments.length == 1) 
168         this.hash.content = d; 
169     return this.hash.content; 
170 };
171 function osrfServerError(hash) { 
172     this.hash = hash;
173     this._encodehash = true;
174 }
175 osrfServerError.prototype.status = function(d) {
176     if(arguments.length == 1) 
177         this.hash.status = d; 
178     return this.hash.status; 
179 };
180 osrfServerError.prototype.statusCode = function(d) {
181     if(arguments.length == 1) 
182         this.hash.statusCode = d; 
183     return this.hash.statusCode; 
184 };
185 function osrfContinueStatus(hash) { 
186     this.hash = hash;
187     this._encodehash = true;
188 }
189 osrfContinueStatus.prototype.status = function(d) {
190     if(arguments.length == 1) 
191         this.hash.status = d; 
192     return this.hash.status; 
193 };
194 osrfContinueStatus.prototype.statusCode = function(d) {
195     if(arguments.length == 1) 
196         this.hash.statusCode = d; 
197     return this.hash.statusCode; 
198 };
199
200 OpenSRF = {};
201 OpenSRF.locale = null;
202 OpenSRF.api_level = 1;
203
204 /* makes cls a subclass of pcls */
205 OpenSRF.set_subclass = function(cls, pcls) {
206     var str = cls+'.prototype = new '+pcls+'();';
207     str += cls+'.prototype.constructor = '+cls+';';
208     str += cls+'.baseClass = '+pcls+'.prototype.constructor;';
209     str += cls+'.prototype["super"] = '+pcls+'.prototype;';
210     eval(str);
211 };
212
213
214 /* general session superclass */
215 OpenSRF.Session = function() {
216     this.remote_id = null;
217     this.state = OSRF_APP_SESSION_DISCONNECTED;
218 };
219
220 OpenSRF.Session.transport = OSRF_TRANSPORT_TYPE_XHR;
221 OpenSRF.Session.cache = {};
222
223 OpenSRF.Session.find_session = function(thread_trace) {
224     return OpenSRF.Session.cache[thread_trace];
225 };
226 OpenSRF.Session.prototype.cleanup = function() {
227     delete OpenSRF.Session.cache[this.thread];
228 };
229
230 OpenSRF.Session.prototype.send = function(osrf_msg, args) {
231     args = (args) ? args : {};
232     switch(OpenSRF.Session.transport) {
233         case OSRF_TRANSPORT_TYPE_WS:
234             return this.send_ws(osrf_msg);
235         case OSRF_TRANSPORT_TYPE_WS_SHARED:
236             return this.send_ws_shared(osrf_msg);
237         case OSRF_TRANSPORT_TYPE_XHR:
238             return this.send_xhr(osrf_msg, args);
239         case OSRF_TRANSPORT_TYPE_XMPP:
240             return this.send_xmpp(osrf_msg, args);
241     }
242 };
243
244 OpenSRF.Session.prototype.send_xhr = function(osrf_msg, args) {
245     args.thread = this.thread;
246     args.rcpt = this.remote_id;
247     args.rcpt_service = this.service;
248     new OpenSRF.XHRequest(osrf_msg, args).send();
249 };
250
251 OpenSRF.websocketConnected = function() {
252     return OpenSRF.sharedWebsocketConnected || (
253         OpenSRF.websocketConnection && 
254         OpenSRF.websocketConnection.connected()
255     );
256 }
257
258 OpenSRF.Session.prototype.send_ws = function(osrf_msg) {
259
260     if (typeof SharedWorker == 'function' 
261
262         /*
263          * https://bugzilla.mozilla.org/show_bug.cgi?id=504553#c73
264          * Firefox does not yet support WebSockets in worker threads
265          */
266         && !navigator.userAgent.match(/Firefox/)
267     ) {
268         // vanilla websockets requested, but this browser supports
269         // shared workers, so use those instead.
270         return this.send_ws_shared(osrf_msg);
271     }
272
273     // otherwise, use a per-tab connection
274
275     if (!OpenSRF.websocketConnection) {
276         this.setup_single_ws();
277     }
278
279     var json = js2JSON({
280         service : this.service,
281         thread : this.thread,
282         osrf_msg : [message.serialize()]
283     });
284
285     OpenSRF.websocketConnection.send(json);
286 };
287
288 OpenSRF.Session.prototype.setup_single_ws = function() {
289     OpenSRF.websocketConnection = new OpenSRF.WebSocket();
290
291     OpenSRF.websocketConnection.onmessage = function(msg) {
292         try {
293             var msg = JSON2js(msg);
294         } catch(E) {
295             console.error(
296                 "Error parsing JSON in shared WS response: " + msg);
297             throw E;
298         }
299         OpenSRF.Stack.push(                                                        
300             new OpenSRF.NetMessage(                                                
301                null, null, msg.thread, null, msg.osrf_msg)                        
302         ); 
303
304         return;
305     }
306 }
307
308 OpenSRF.Session.setup_shared_ws = function() {
309     OpenSRF.Session.transport = OSRF_TRANSPORT_TYPE_WS_SHARED;
310
311     OpenSRF.sharedWSWorker = new SharedWorker(SHARED_WORKER_LIB);
312
313     OpenSRF.sharedWSWorker.port.addEventListener('message', function(e) {                          
314         var data = e.data;
315
316         if (data.action == 'message') {
317             // pass all inbound message up the opensrf stack
318
319             OpenSRF.sharedWebsocketConnected = true;
320             var msg;
321             try {
322                 msg = JSON2js(data.message);
323             } catch(E) {
324                 console.error(
325                     "Error parsing JSON in shared WS response: " + msg);
326                 throw E;
327             }
328             OpenSRF.Stack.push(                                                        
329                 new OpenSRF.NetMessage(                                                
330                    null, null, msg.thread, null, msg.osrf_msg)                        
331             ); 
332
333             return;
334         }
335
336
337         if (data.action == 'event') {
338             if (data.type.match(/onclose|onerror/)) {
339                 OpenSRF.sharedWebsocketConnected = false;
340                 if (OpenSRF.onWebSocketClosed)
341                     OpenSRF.onWebSocketClosed();
342                 if (data.type.match(/onerror/)) 
343                     throw new Error(data.message);
344             }
345         }
346     });
347
348     OpenSRF.sharedWSWorker.port.start();   
349 }
350
351 OpenSRF.Session.prototype.send_ws_shared = function(message) {
352
353     if (!OpenSRF.sharedWSWorker) 
354         OpenSRF.Session.setup_shared_ws();
355
356     var json = js2JSON({
357         service : this.service,
358         thread : this.thread,
359         osrf_msg : [message.serialize()]
360     });
361
362     OpenSRF.sharedWSWorker.port.postMessage({
363         action : 'message', 
364         // pass the thread additionally as a stand-alone value so the
365         // worker can more efficiently inspect it.
366         thread : this.thread,
367         message : json
368     });
369 }
370
371
372 OpenSRF.Session.prototype.send_xmpp = function(osrf_msg, args) {
373     alert('xmpp transport not implemented');
374 };
375
376
377 /* client sessions make requests */
378 OpenSRF.ClientSession = function(service) {
379     this.service = service;
380     this.remote_id = null;
381     this.locale = OpenSRF.locale || 'en-US';
382     this.last_id = 0;
383     this.requests = [];
384     this.onconnect = null;
385     this.thread = Math.random() + '' + new Date().getTime();
386     OpenSRF.Session.cache[this.thread] = this;
387 };
388 OpenSRF.set_subclass('OpenSRF.ClientSession', 'OpenSRF.Session');
389
390
391 OpenSRF.ClientSession.prototype.connect = function(args) {
392     args = (args) ? args : {};
393     this.remote_id = null;
394
395     if (this.state == OSRF_APP_SESSION_CONNECTED) {
396         if (args.onconnect) args.onconnect();
397         return true;
398     }
399
400     if(args.onconnect) {
401         this.onconnect = args.onconnect;
402
403     } else {
404         /* if no handler is provided, make this a synchronous call */
405         this.timeout = (args.timeout) ? args.timeout : 5;
406     }
407
408     message = new osrfMessage({
409         'threadTrace' : this.last_id++, 
410         'type' : OSRF_MESSAGE_TYPE_CONNECT
411     });
412
413     this.send(message, {'timeout' : this.timeout});
414
415     if(this.onconnect || this.state == OSRF_APP_SESSION_CONNECTED)
416         return true;
417
418     return false;
419 };
420
421 OpenSRF.ClientSession.prototype.disconnect = function(args) {
422
423     if (this.state == OSRF_APP_SESSION_CONNECTED) {
424         this.send(
425             new osrfMessage({
426                 'threadTrace' : this.last_id++,
427                 'type' : OSRF_MESSAGE_TYPE_DISCONNECT
428             })
429         );
430     }
431
432     this.remote_id = null;
433     this.state = OSRF_APP_SESSION_DISCONNECTED;
434 };
435
436
437 OpenSRF.ClientSession.prototype.request = function(args) {
438     
439     if(this.state != OSRF_APP_SESSION_CONNECTED)
440         this.remote_id = null;
441         
442     if(typeof args == 'string') { 
443         params = [];
444         for(var i = 1; i < arguments.length; i++)
445             params.push(arguments[i]);
446
447         args = {
448             method : args, 
449             params : params
450         };
451     } else {
452         if(typeof args == 'undefined')
453             args = {};
454     }
455
456     var req = new OpenSRF.Request(this, this.last_id++, args);
457     this.requests.push(req);
458     return req;
459 };
460
461 OpenSRF.ClientSession.prototype.find_request = function(reqid) {
462     for(var i = 0; i < this.requests.length; i++) {
463         var req = this.requests[i];
464         if(req.reqid == reqid)
465             return req;
466     }
467     return null;
468 };
469
470 OpenSRF.Request = function(session, reqid, args) {
471     this.session = session;
472     this.reqid = reqid;
473
474     /* callbacks */
475     this.onresponse = args.onresponse;
476     this.oncomplete = args.oncomplete;
477     this.onerror = args.onerror;
478     this.onmethoderror = args.onmethoderror;
479     this.ontransporterror = args.ontransporterror;
480
481     this.method = args.method;
482     this.params = args.params;
483     this.timeout = args.timeout;
484     this.api_level = args.api_level || OpenSRF.api_level;
485     this.response_queue = [];
486     this.complete = false;
487 };
488
489 OpenSRF.Request.prototype.peek_last = function(timeout) {
490     if(this.response_queue.length > 0) {
491         var x = this.response_queue.pop();
492         this.response_queue.push(x);
493         return x;
494     }
495     return null;
496 };
497
498 OpenSRF.Request.prototype.peek = function(timeout) {
499     if(this.response_queue.length > 0)
500         return this.response_queue[0];
501     return null;
502 };
503
504 OpenSRF.Request.prototype.recv = function(timeout) {
505     if(this.response_queue.length > 0)
506         return this.response_queue.shift();
507     return null;
508 };
509
510 OpenSRF.Request.prototype.send = function() {
511     method = new osrfMethod({'method':this.method, 'params':this.params});
512     message = new osrfMessage({
513         'threadTrace' : this.reqid, 
514         'type' : OSRF_MESSAGE_TYPE_REQUEST, 
515         'payload' : method, 
516         'locale' : this.session.locale,
517         'api_level' : this.api_level
518     });
519
520     this.session.send(message, {
521         'timeout' : this.timeout,
522         'onresponse' : this.onresponse,
523         'oncomplete' : this.oncomplete,
524         'onerror' : this.onerror,
525         'onmethoderror' : this.onmethoderror,
526         'ontransporterror' : this.ontransporterror
527     });
528 };
529
530 OpenSRF.NetMessage = function(to, from, thread, body, osrf_msg) {
531     this.to = to;
532     this.from = from;
533     this.thread = thread;
534     this.body = body;
535     this.osrf_msg = osrf_msg;
536 };
537
538 OpenSRF.Stack = function() {
539 };
540
541 // global inbound message queue
542 OpenSRF.Stack.queue = [];
543
544 // XXX testing
545 function log(msg) {
546     try {
547         dump(msg + '\n'); // xulrunner
548     } catch(E) {
549         console.log(msg);
550     }
551 }
552
553 // ses may be passed to us by the network handler
554 OpenSRF.Stack.push = function(net_msg, callbacks) {
555     var ses = OpenSRF.Session.find_session(net_msg.thread); 
556     if (!ses) return;
557     ses.remote_id = net_msg.from;
558
559     // NetMessage's from websocket connections are parsed before they get here
560     osrf_msgs = net_msg.osrf_msg;
561
562     if (!osrf_msgs) {
563
564         try {
565             osrf_msgs = JSON2js(net_msg.body);
566
567             // TODO: pretty sure we don't need this..
568             if (OpenSRF.Session.transport == OSRF_TRANSPORT_TYPE_WS) {
569                 // WebSocketRequests wrap the content
570                 osrf_msgs = osrf_msgs.osrf_msg;
571             }
572
573         } catch(E) {
574             log('Error parsing OpenSRF message body as JSON: ' + net_msg.body + '\n' + E);
575
576             /** UGH
577               * For unknown reasons, the Content-Type header will occasionally
578               * be included in the XHR.responseText for multipart/mixed messages.
579               * When this happens, strip the header and newlines from the message
580               * body and re-parse.
581               */
582             net_msg.body = net_msg.body.replace(/^.*\n\n/, '');
583             log('Cleaning up and retrying...');
584
585             try {
586                 osrf_msgs = JSON2js(net_msg.body);
587             } catch(E2) {
588                 log('Unable to clean up message, giving up: ' + net_msg.body);
589                 return;
590             }
591         }
592     }
593
594     // push the latest responses onto the end of the inbound message queue
595     for(var i = 0; i < osrf_msgs.length; i++)
596         OpenSRF.Stack.queue.push({msg : osrf_msgs[i], ses : ses});
597
598     // continue processing responses, oldest to newest
599     while(OpenSRF.Stack.queue.length) {
600         var data = OpenSRF.Stack.queue.shift();
601         OpenSRF.Stack.handle_message(data.ses, data.msg);
602     }
603 };
604
605 OpenSRF.Stack.handle_message = function(ses, osrf_msg) {
606     
607     var req = ses.find_request(osrf_msg.threadTrace());
608
609     if(osrf_msg.type() == OSRF_MESSAGE_TYPE_STATUS) {
610
611         var payload = osrf_msg.payload();
612         var status = payload.statusCode();
613         var status_text = payload.status();
614
615         if(status == OSRF_STATUS_COMPLETE) {
616             if(req) {
617                 req.complete = true;
618                 if(req.oncomplete && !req.oncomplete_called) {
619                     req.oncomplete_called = true;
620                     return req.oncomplete(req);
621                 }
622             }
623         }
624
625         if(status == OSRF_STATUS_OK) {
626             ses.state = OSRF_APP_SESSION_CONNECTED;
627
628             /* call the connect callback */
629             if(ses.onconnect && !ses.onconnect_called) {
630                 ses.onconnect_called = true;
631                 return ses.onconnect();
632             }
633         }
634
635         // capture all 400's and 500's as method errors
636         if (status.match(/^4/) || status.match(/^5/)) {
637             if(req && req.onmethoderror) 
638                 return req.onmethoderror(req, status, status_text);
639         }
640     }
641
642     if(osrf_msg.type() == OSRF_MESSAGE_TYPE_RESULT) {
643         if(req) {
644             req.response_queue.push(osrf_msg.payload());
645             if(req.onresponse) {
646                 return req.onresponse(req);
647             }
648         }
649     }
650 };
651
652