]> git.evergreen-ils.org Git - OpenSRF.git/blob - src/javascript/opensrf.js
7718d927d4fba055fd1ff6ba763e371ab62450a6
[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 OpenSRF.Stack.push = function(net_msg, callbacks) {
249     var ses = OpenSRF.Session.find_session(net_msg.thread); 
250     if(!ses) return;
251     ses.remote_id = net_msg.from;
252     osrf_msgs = JSON2js(net_msg.body);
253     for(var i = 0; i < osrf_msgs.length; i++) 
254         OpenSRF.Stack.handle_message(ses, osrf_msgs[i], callbacks);        
255 }
256
257 OpenSRF.Stack.handle_message = function(ses, osrf_msg, callbacks) {
258     
259     var req = null;
260
261     if(osrf_msg.type() == OSRF_MESSAGE_TYPE_STATUS) {
262
263         var payload = osrf_msg.payload();
264         var status = payload.statusCode();
265         var status_text = payload.status();
266
267         if(status == OSRF_STATUS_COMPLETE) {
268             req = ses.find_request(osrf_msg.threadTrace());
269             if(req) {
270                 req.complete = true;
271                 if(callbacks.oncomplete && !req.oncomplete_called) {
272                     req.oncomplete_called = true;
273                     return callbacks.oncomplete(req);
274                 }
275             }
276         }
277
278         if(status == OSRF_STATUS_OK) {
279             ses.state = OSRF_APP_SESSION_CONNECTED;
280
281             /* call the connect callback */
282             if(ses.onconnect && !ses.onconnect_called) {
283                 ses.onconnect_called = true;
284                 return ses.onconnect();
285             }
286         }
287
288         if(status == OSRF_STATUS_NOTFOUND || status == OSRF_STATUS_INTERNALSERVERERROR) {
289             req = ses.find_request(osrf_msg.threadTrace());
290             if(callbacks.onmethoderror) 
291                 return callbacks.onmethoderror(req, status, status_text);
292         }
293     }
294
295     if(osrf_msg.type() == OSRF_MESSAGE_TYPE_RESULT) {
296         req = ses.find_request(osrf_msg.threadTrace());
297         if(req) {
298             req.response_queue.push(osrf_msg.payload());
299             if(callbacks.onresponse) 
300                 return callbacks.onresponse(req);
301         }
302     }
303 }
304
305 /* The following classes map directly to network-serializable opensrf objects */
306
307 function osrfMessage(hash) {
308     this.hash = hash;
309     if(!this.hash.locale)
310         this.hash.locale = OpenSRF.locale || 'en-US';
311     this._encodehash = true;
312 }
313 osrfMessage.prototype.threadTrace = function(d) { 
314     if(arguments.length == 1) 
315         this.hash.threadTrace = d; 
316     return this.hash.threadTrace; 
317 }
318 osrfMessage.prototype.type = function(d) { 
319     if(arguments.length == 1) 
320         this.hash.type = d; 
321     return this.hash.type; 
322 }
323 osrfMessage.prototype.payload = function(d) { 
324     if(arguments.length == 1) 
325         this.hash.payload = d; 
326     return this.hash.payload; 
327 }
328 osrfMessage.prototype.locale = function(d) { 
329     if(arguments.length == 1) 
330         this.hash.locale = d; 
331     return this.hash.locale; 
332 }
333 osrfMessage.prototype.serialize = function() {
334     return {
335         "__c":"osrfMessage",
336         "__p": {
337             'threadTrace' : this.hash.threadTrace,
338             'type' : this.hash.type,
339             'payload' : (this.hash.payload) ? this.hash.payload.serialize() : 'null',
340             'locale' : this.hash.locale
341         }
342     };
343 }
344
345 function osrfMethod(hash) {
346     this.hash = hash;
347     this._encodehash = true;
348
349 osrfMethod.prototype.method = function() {
350     if(arguments.length == 1) 
351         this.hash.method = d; 
352     return this.hash.method; 
353 }
354 osrfMethod.prototype.params = function() {
355     if(arguments.length == 1) 
356         this.hash.params = d; 
357     return this.hash.params; 
358 }
359 osrfMethod.prototype.serialize = function() {
360     return {
361         "__c":"osrfMethod",
362         "__p": {
363             'method' : this.hash.method,
364             'params' : this.hash.params
365         }
366     };
367 }
368
369 function osrfMethodException(hash) {
370     this.hash = hash;
371     this._encodehash = true;
372 }
373 osrfMethodException.prototype.status = function() {
374     if(arguments.length == 1) 
375         this.hash.status = d; 
376     return this.hash.status; 
377 }
378 osrfMethodException.prototype.statusCode = function() {
379     if(arguments.length == 1) 
380         this.hash.statusCode = d; 
381     return this.hash.statusCode; 
382 }
383 function osrfConnectStatus(hash) { 
384     this.hash = hash;
385     this._encodehash = true;
386 }
387 osrfConnectStatus.prototype.status = function() {
388     if(arguments.length == 1) 
389         this.hash.status = d; 
390     return this.hash.status; 
391 }
392 osrfConnectStatus.prototype.statusCode = function() {
393     if(arguments.length == 1) 
394         this.hash.statusCode = d; 
395     return this.hash.statusCode; 
396 }
397 function osrfResult(hash) {
398     this.hash = hash;
399     this._encodehash = true;
400 }
401 osrfResult.prototype.status = function() {
402     if(arguments.length == 1) 
403         this.hash.status = d; 
404     return this.hash.status; 
405 }
406 osrfResult.prototype.statusCode = function() {
407     if(arguments.length == 1) 
408         this.hash.statusCode = d; 
409     return this.hash.statusCode; 
410 }
411 osrfResult.prototype.content = function() {
412     if(arguments.length == 1) 
413         this.hash.content = d; 
414     return this.hash.content; 
415 }
416 function osrfServerError(hash) { 
417     this.hash = hash;
418     this._encodehash = true;
419 }
420 osrfServerError.prototype.status = function() {
421     if(arguments.length == 1) 
422         this.hash.status = d; 
423     return this.hash.status; 
424 }
425 osrfServerError.prototype.statusCode = function() {
426     if(arguments.length == 1) 
427         this.hash.statusCode = d; 
428     return this.hash.statusCode; 
429 }
430
431