]> git.evergreen-ils.org Git - OpenSRF.git/blob - src/javascript/opensrf.js
c014cd73a663af96cf1cf3782566cc3dbfc1bb36
[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
25 /* message types */
26 var OSRF_MESSAGE_TYPE_REQUEST = 'REQUEST';
27 var OSRF_MESSAGE_TYPE_STATUS = 'STATUS';
28 var OSRF_MESSAGE_TYPE_RESULT = 'RESULT';
29 var OSRF_MESSAGE_TYPE_CONNECT = 'CONNECT';
30 var OSRF_MESSAGE_TYPE_DISCONNECT = 'DISCONNECT';
31
32 /* message statuses */
33 var OSRF_STATUS_CONTINUE = 100;
34 var OSRF_STATUS_OK = 200;
35 var OSRF_STATUS_ACCEPTED = 202;
36 var OSRF_STATUS_COMPLETE = 205;
37 var OSRF_STATUS_REDIRECTED = 307;
38 var OSRF_STATUS_BADREQUEST = 400;
39 var OSRF_STATUS_UNAUTHORIZED = 401;
40 var OSRF_STATUS_FORBIDDEN = 403;
41 var OSRF_STATUS_NOTFOUND = 404;
42 var OSRF_STATUS_NOTALLOWED = 405;
43 var OSRF_STATUS_TIMEOUT = 408;
44 var OSRF_STATUS_EXPFAILED = 417;
45 var OSRF_STATUS_INTERNALSERVERERROR = 500;
46 var OSRF_STATUS_NOTIMPLEMENTED = 501;
47 var OSRF_STATUS_VERSIONNOTSUPPORTED = 505;
48
49 OpenSRF = {};
50 OpenSRF.locale = null;
51
52 /* makes cls a subclass of pcls */
53 OpenSRF.set_subclass = function(cls, pcls) {
54     var str = cls+'.prototype = new '+pcls+'();';
55     str += cls+'.prototype.constructor = '+cls+';';
56     str += cls+'.baseClass = '+pcls+'.prototype.constructor;';
57     str += cls+'.prototype["super"] = '+pcls+'.prototype;';
58     eval(str);
59 }
60
61
62 /* general session superclass */
63 OpenSRF.Session = function() {
64     this.remote_id = null;
65     this.state = OSRF_APP_SESSION_DISCONNECTED;
66 }
67
68 OpenSRF.Session.transport = OSRF_TRANSPORT_TYPE_XHR; /* default to XHR */
69 OpenSRF.Session.cache = {};
70 OpenSRF.Session.find_session = function(thread_trace) {
71     return OpenSRF.Session.cache[thread_trace];
72 }
73 OpenSRF.Session.prototype.cleanup = function() {
74     delete OpenSRF.Session.cache[this.thread];
75 }
76
77 OpenSRF.Session.prototype.send = function(osrf_msg, args) {
78     args = (args) ? args : {};
79     switch(OpenSRF.Session.transport) {
80         case OSRF_TRANSPORT_TYPE_XHR:
81             return this.send_xhr(osrf_msg, args);
82         case OSRF_TRANSPORT_TYPE_XMPP:
83             return this.send_xmpp(osrf_msg, args);
84     }
85 }
86
87 OpenSRF.Session.prototype.send_xhr = function(osrf_msg, args) {
88     args.thread = this.thread;
89     args.rcpt = this.remote_id;
90     args.rcpt_service = this.service;
91     new OpenSRF.XHRequest(osrf_msg, args).send();
92 }
93
94 OpenSRF.Session.prototype.send_xmpp = function(osrf_msg, args) {
95     alert('xmpp transport not yet implemented');
96 }
97
98
99 /* client sessions make requests */
100 OpenSRF.ClientSession = function(service) {
101     this.service = service
102     this.remote_id = null;
103     this.locale = OpenSRF.locale || 'en-US';
104     this.last_id = 0;
105     this.thread = Math.random() + '' + new Date().getTime();
106     this.requests = [];
107     this.onconnect = null;
108     OpenSRF.Session.cache[this.thread] = this;
109 }
110 OpenSRF.set_subclass('OpenSRF.ClientSession', 'OpenSRF.Session');
111
112
113 OpenSRF.ClientSession.prototype.connect = function(args) {
114     args = (args) ? args : {};
115     this.remote_id = null;
116
117     if(args.onconnect)
118         this.onconnect = args.onconnect;
119
120     /* if no handler is provided, make this a synchronous call */
121     if(!this.onconnect) 
122         this.timeout = (args.timeout) ? args.timeout : 5;
123
124     message = new osrfMessage({
125         'threadTrace' : this.reqid, 
126         'type' : OSRF_MESSAGE_TYPE_CONNECT
127     });
128
129     this.send(message, {'timeout' : this.timeout});
130
131     if(this.onconnect || this.state == OSRF_APP_SESSION_CONNECTED)
132         return true;
133     return false;
134 }
135
136 OpenSRF.ClientSession.prototype.disconnect = function(args) {
137     this.send(
138         new osrfMessage({
139             'threadTrace' : this.reqid, 
140             'type' : OSRF_MESSAGE_TYPE_DISCONNECT
141         })
142     );
143     this.remote_id = null;
144 }
145
146
147 OpenSRF.ClientSession.prototype.request = function(args) {
148     
149     if(this.state != OSRF_APP_SESSION_CONNECTED)
150         this.remote_id = null;
151         
152     if(typeof args == 'string') { 
153         params = [];
154         for(var i = 1; i < arguments.length; i++)
155             params.push(arguments[i]);
156
157         args = {
158             method : args, 
159             params : params
160         };
161     } else {
162         if(typeof args == 'undefined')
163             args = {};
164     }
165
166     var req = new OpenSRF.Request(this, this.last_id++, args);
167     this.requests.push(req);
168     return req;
169 }
170
171 OpenSRF.ClientSession.prototype.find_request = function(reqid) {
172     for(var i = 0; i < this.requests.length; i++) {
173         var req = this.requests[i];
174         if(req.reqid == reqid)
175             return req;
176     }
177     return null;
178 }
179
180 OpenSRF.Request = function(session, reqid, args) {
181     this.session = session;
182     this.reqid = reqid;
183
184     /* callbacks */
185     this.onresponse = args.onresponse;
186     this.oncomplete = args.oncomplete;
187     this.onerror = args.onerror;
188     this.onmethoderror = args.onmethoderror;
189     this.ontransporterror = args.ontransporterror;
190
191     this.method = args.method;
192     this.params = args.params;
193     this.timeout = args.timeout;
194     this.response_queue = [];
195     this.complete = false;
196 }
197
198 OpenSRF.Request.prototype.peek_last = function(timeout) {
199     if(this.response_queue.length > 0) {
200         var x = this.response_queue.pop();
201         this.response_queue.push(x);
202         return x;
203     }
204     return null;
205 }
206
207 OpenSRF.Request.prototype.peek = function(timeout) {
208     if(this.response_queue.length > 0)
209         return this.response_queue[0];
210     return null;
211 }
212
213 OpenSRF.Request.prototype.recv = function(timeout) {
214     if(this.response_queue.length > 0)
215         return this.response_queue.shift();
216     return null;
217 }
218
219 OpenSRF.Request.prototype.send = function() {
220     method = new osrfMethod({'method':this.method, 'params':this.params});
221     message = new osrfMessage({
222         'threadTrace' : this.reqid, 
223         'type' : OSRF_MESSAGE_TYPE_REQUEST, 
224         'payload' : method, 
225         'locale' : this.session.locale
226     });
227
228     this.session.send(message, {
229         'timeout' : this.timeout,
230         'onresponse' : this.onresponse,
231         'oncomplete' : this.oncomplete,
232         'onerror' : this.onerror,
233         'onmethoderror' : this.onmethoderror,
234         'ontransporterror' : this.ontransporterror
235     });
236 }
237
238 OpenSRF.NetMessage = function(to, from, thread, body) {
239     this.to = to;
240     this.from = from;
241     this.thread = thread;
242     this.body = body;
243 }
244
245 OpenSRF.Stack = function() {
246 }
247
248 // global inbound message queue
249 OpenSRF.Stack.queue = [];
250
251 OpenSRF.Stack.push = function(net_msg, callbacks) {
252     var ses = OpenSRF.Session.find_session(net_msg.thread); 
253     if(!ses) return;
254     ses.remote_id = net_msg.from;
255     osrf_msgs = JSON2js(net_msg.body);
256
257     // push the latest responses onto the end of the inbound message queue
258     for(var i = 0; i < osrf_msgs.length; i++)
259         OpenSRF.Stack.queue.push({msg : osrf_msgs[i], callbacks : callbacks});
260
261     // continue processing responses, oldest to newest
262     while(OpenSRF.Stack.queue.length) {
263         var data = OpenSRF.Stack.queue.shift();
264         OpenSRF.Stack.handle_message(ses, data.msg, data.callbacks);
265     }
266 }
267
268 OpenSRF.Stack.handle_message = function(ses, osrf_msg, callbacks) {
269     
270     var req = null;
271
272     if(osrf_msg.type() == OSRF_MESSAGE_TYPE_STATUS) {
273
274         var payload = osrf_msg.payload();
275         var status = payload.statusCode();
276         var status_text = payload.status();
277
278         if(status == OSRF_STATUS_COMPLETE) {
279             req = ses.find_request(osrf_msg.threadTrace());
280             if(req) {
281                 req.complete = true;
282                 if(callbacks.oncomplete && !req.oncomplete_called) {
283                     req.oncomplete_called = true;
284                     return callbacks.oncomplete(req);
285                 }
286             }
287         }
288
289         if(status == OSRF_STATUS_OK) {
290             ses.state = OSRF_APP_SESSION_CONNECTED;
291
292             /* call the connect callback */
293             if(ses.onconnect && !ses.onconnect_called) {
294                 ses.onconnect_called = true;
295                 return ses.onconnect();
296             }
297         }
298
299         if(status == OSRF_STATUS_NOTFOUND || status == OSRF_STATUS_INTERNALSERVERERROR) {
300             req = ses.find_request(osrf_msg.threadTrace());
301             if(callbacks.onmethoderror) 
302                 return callbacks.onmethoderror(req, status, status_text);
303         }
304     }
305
306     if(osrf_msg.type() == OSRF_MESSAGE_TYPE_RESULT) {
307         req = ses.find_request(osrf_msg.threadTrace());
308         if(req) {
309             req.response_queue.push(osrf_msg.payload());
310             if(callbacks.onresponse) 
311                 return callbacks.onresponse(req);
312         }
313     }
314 }
315
316 /* The following classes map directly to network-serializable opensrf objects */
317
318 function osrfMessage(hash) {
319     this.hash = hash;
320     if(!this.hash.locale)
321         this.hash.locale = OpenSRF.locale || 'en-US';
322     this._encodehash = true;
323 }
324 osrfMessage.prototype.threadTrace = function(d) { 
325     if(arguments.length == 1) 
326         this.hash.threadTrace = d; 
327     return this.hash.threadTrace; 
328 }
329 osrfMessage.prototype.type = function(d) { 
330     if(arguments.length == 1) 
331         this.hash.type = d; 
332     return this.hash.type; 
333 }
334 osrfMessage.prototype.payload = function(d) { 
335     if(arguments.length == 1) 
336         this.hash.payload = d; 
337     return this.hash.payload; 
338 }
339 osrfMessage.prototype.locale = function(d) { 
340     if(arguments.length == 1) 
341         this.hash.locale = d; 
342     return this.hash.locale; 
343 }
344 osrfMessage.prototype.serialize = function() {
345     return {
346         "__c":"osrfMessage",
347         "__p": {
348             'threadTrace' : this.hash.threadTrace,
349             'type' : this.hash.type,
350             'payload' : (this.hash.payload) ? this.hash.payload.serialize() : 'null',
351             'locale' : this.hash.locale
352         }
353     };
354 }
355
356 function osrfMethod(hash) {
357     this.hash = hash;
358     this._encodehash = true;
359
360 osrfMethod.prototype.method = function() {
361     if(arguments.length == 1) 
362         this.hash.method = d; 
363     return this.hash.method; 
364 }
365 osrfMethod.prototype.params = function() {
366     if(arguments.length == 1) 
367         this.hash.params = d; 
368     return this.hash.params; 
369 }
370 osrfMethod.prototype.serialize = function() {
371     return {
372         "__c":"osrfMethod",
373         "__p": {
374             'method' : this.hash.method,
375             'params' : this.hash.params
376         }
377     };
378 }
379
380 function osrfMethodException(hash) {
381     this.hash = hash;
382     this._encodehash = true;
383 }
384 osrfMethodException.prototype.status = function() {
385     if(arguments.length == 1) 
386         this.hash.status = d; 
387     return this.hash.status; 
388 }
389 osrfMethodException.prototype.statusCode = function() {
390     if(arguments.length == 1) 
391         this.hash.statusCode = d; 
392     return this.hash.statusCode; 
393 }
394 function osrfConnectStatus(hash) { 
395     this.hash = hash;
396     this._encodehash = true;
397 }
398 osrfConnectStatus.prototype.status = function() {
399     if(arguments.length == 1) 
400         this.hash.status = d; 
401     return this.hash.status; 
402 }
403 osrfConnectStatus.prototype.statusCode = function() {
404     if(arguments.length == 1) 
405         this.hash.statusCode = d; 
406     return this.hash.statusCode; 
407 }
408 function osrfResult(hash) {
409     this.hash = hash;
410     this._encodehash = true;
411 }
412 osrfResult.prototype.status = function() {
413     if(arguments.length == 1) 
414         this.hash.status = d; 
415     return this.hash.status; 
416 }
417 osrfResult.prototype.statusCode = function() {
418     if(arguments.length == 1) 
419         this.hash.statusCode = d; 
420     return this.hash.statusCode; 
421 }
422 osrfResult.prototype.content = function() {
423     if(arguments.length == 1) 
424         this.hash.content = d; 
425     return this.hash.content; 
426 }
427 function osrfServerError(hash) { 
428     this.hash = hash;
429     this._encodehash = true;
430 }
431 osrfServerError.prototype.status = function() {
432     if(arguments.length == 1) 
433         this.hash.status = d; 
434     return this.hash.status; 
435 }
436 osrfServerError.prototype.statusCode = function() {
437     if(arguments.length == 1) 
438         this.hash.statusCode = d; 
439     return this.hash.statusCode; 
440 }
441
442