-
Notifications
You must be signed in to change notification settings - Fork 6
/
xmlrpc-client.js
643 lines (589 loc) · 17.4 KB
/
xmlrpc-client.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
/*
* XML-RPC Client is lightly based on mimic xmlrpc lib
* Author: Danilo Ercoli - [email protected] - [email protected]
*
*
* Mimic (XML-RPC Client for JavaScript) v2.0.1
* Copyright (C) 2005-2009 Carlos Eduardo Goncalves ([email protected])
* Mimic is dual licensed under the MIT (http://opensource.org/licenses/mit-license.php)
* and GPLv3 (http://opensource.org/licenses/gpl-3.0.html) licenses.
*/
/**
* XmlRpc
*/
function XmlRpc(){
};
/** <p>XML-RPC document prolog.</p> */
XmlRpc.PROLOG = "<?xml version=\"1.0\"?>\n";
/** <p>XML-RPC methodCall node template.</p> */
XmlRpc.REQUEST = "<methodCall>\n<methodName>${METHOD}</methodName>\n<params>\n${DATA}</params>\n</methodCall>";
/** <p>XML-RPC param node template.</p> */
XmlRpc.PARAM = "<param>\n<value>\n${DATA}</value>\n</param>\n";
/** <p>XML-RPC array node template.</p> */
XmlRpc.ARRAY = "<array>\n<data>\n${DATA}</data>\n</array>\n";
/** <p>XML-RPC struct node template.</p> */
XmlRpc.STRUCT = "<struct>\n${DATA}</struct>\n";
/** <p>XML-RPC member node template.</p> */
XmlRpc.MEMBER = "<member>\n${DATA}</member>\n";
/** <p>XML-RPC name node template.</p> */
XmlRpc.NAME = "<name>${DATA}</name>\n";
/** <p>XML-RPC value node template.</p> */
XmlRpc.VALUE = "<value>\n${DATA}</value>\n";
/** <p>XML-RPC scalar node template (int, i4, double, string, boolean, base64, dateTime.iso8601).</p> */
XmlRpc.SCALAR = "<${TYPE}>${DATA}</${TYPE}>\n";
/**
* <p>Get the tag name used to represent a JavaScript
* object in the XMLRPC protocol.</p>
* @param data
* A JavaScript object.
* @return
* <code>String</code> with XMLRPC object type.
*/
XmlRpc.getDataTag = function(data) {
try {
var tag = typeof data;
switch(tag.toLowerCase()) {
case "number":
tag = (Math.round(data) == data) ? "int" : "double";
break;
case "object":
if(data.constructor == Base64)
tag = "base64";
else
if(data.constructor == String)
tag = "string";
else
if(data.constructor == Boolean)
tag = "boolean";
else
if(data.constructor == Array)
tag = "array";
else
if(data.constructor == Date)
tag = "dateTime.iso8601";
else
if(data.constructor == Number)
tag = (Math.round(data) == data) ? "int" : "double";
else
tag = "struct";
break;
}
return tag;
}
catch(e) {
EW.LogSystem.error("There was an error during marshalling data: "+ err.description);
throw e;
}
};
/**
* <p>Get JavaScript object type represented by
* XMLRPC protocol tag.<p>
* @param tag
* A XMLRPC tag name.
* @return
* A JavaScript object.
*/
XmlRpc.getTagData = function(tag) {
var data = null;
switch(tag) {
case "struct":
data = new Object();
break;
case "array":
data = new Array();
break;
case "datetime.iso8601":
data = new Date();
break;
case "boolean":
data = new Boolean();
break;
case "int":
case "i4":
case "double":
data = new Number();
break;
case "string":
data = new String();
break;
case "base64":
data = new Base64();
break;
}
return data;
};
/**
* XmlRpcRequest
* @param url
* Server url.
* @param method
* Server side method do call.
*/
function XmlRpcRequest(url, method) {
this.serviceUrl = url;
this.methodName = method;
this.params = [];
this.listeners = [];
this.xhr = null; //obj richiesta ajax
};
/**
* <p> Add a new request listener.</p>
* @param data
* New listener.
*/
XmlRpcRequest.prototype.addListener = function(data) {
var type = typeof data;
switch(type.toLowerCase()) {
case "function":
return;
case "object":
this.listeners.push(data);
}
};
/**
* <p> Add a new request parameter.</p>
* @param data
* New parameter value.
*/
XmlRpcRequest.prototype.addParam = function(data) {
/* var type = typeof data;
switch(type.toLowerCase()) {
case "function":
return;
case "object":
if(!data.constructor.name) return;
}*/
this.params.push(data);
};
/**
* <p>Clear all request parameters.</p>
* @param data
* New parameter value.
*/
XmlRpcRequest.prototype.clearParams = function() {
this.params.splice(0, this.params.length);
};
/**
* <p>Remove all request listeners.</p>
*/
XmlRpcRequest.prototype.clearListeners = function() {
this.listeners.splice(0, this.listeners.length);
};
/**
* <p> A function to be called if the request succeeds.
* The function gets passed two arguments: The data returned from the server,
* formatted according to the 'dataType' parameter, and a string describing the status. </p>
*
*/
XmlRpcRequest.prototype.successCallback = function(xmlhttp) {
EW.LogSystem.debug("XmlRpcRequest.prototype.successCallback: "+ xmlhttp.status);
//controlliamo prima che la connessione ajax non sia andata in errore
// I believe the error code indicates that the response was empty, (as not even headers were returned). This means the connection was accepted and then closed gracefully (TCP FIN).
if(xmlhttp.status == 0) {
EW.LogSystem.debug("XmlRpcRequest.prototype.successCallback - No response from server");
for(var i = 0; i < this.listeners.length; i++) {
try {
this.listeners[i].errorCallback("0", "No response from server"); //ai listener arriva un oggetto JS
} catch(e) {
EW.LogSystem.error(e.message);
}
}
return;
} else if(xmlhttp.status == 200) {
var resp = new XmlRpcResponse(xmlhttp.responseText);
var respoObj = resp.parseXML();
EW.LogSystem.debug(respoObj);
//se si è verificato un errore nello strato xmlrpc (errore riportato dal server WP)
if(resp.isFault()) {
EW.LogSystem.error("XmlRpcRequest.prototype.successCallback - XMLRPC response isFault");
var faultCode = respoObj.faultCode;
var faultString = respoObj.faultString;
for(var i = 0; i < this.listeners.length; i++) {
try {
this.listeners[i].errorCallback(faultCode, faultString);
} catch(e) {
EW.LogSystem.error(e.message);
}
}
return;
}
//notifico i listener della risposta della connessione
for(var i = 0; i < this.listeners.length; i++) {
try {
this.listeners[i].successCallback(resp, respoObj);
} catch(e) {
EW.LogSystem.error(e.message);
}
}
} else {
EW.LogSystem.debug("XmlRpcRequest.prototype.successCallback - Something went wrong");
for(var i = 0; i < this.listeners.length; i++) {
try {
this.listeners[i].errorCallback(xmlhttp.status, "Something went wrong");
} catch(e) {
EW.LogSystem.error(e.message);
}
}
return;
}
};
/**
* A function to be called if a Network Error occurs
*
*/
XmlRpcRequest.prototype.errorCallback = function (error) {
//abbiamo un oggetto del tipo AjaxException
EW.LogSystem.error("XmlRpcRequest.prototype.errorCallback "+error.status+" "+error.statusText);
for(var i = 0; i < this.listeners.length; i++) {
try {
this.listeners[i].errorCallback( error.status , error.statusText);
} catch(e) {
EW.LogSystem.error(e.message);
}
}
};
/**
* <p>Execute a synchronous XML-RPC request.</p>
* @return
* XmlRpcResponse object.
*/
XmlRpcRequest.prototype.send = function() {
EW.LogSystem.debug("parameter lenght" + this.params.length);
var xml_params = "";
for(var i = 0; i < this.params.length; i++) {
xml_params += XmlRpc.PARAM.replace("${DATA}", this.marshal(this.params[i]));
}
var xml_call = XmlRpc.REQUEST.replace("${METHOD}", this.methodName);
xml_call = XmlRpc.PROLOG + xml_call.replace("${DATA}", xml_params);
EW.LogSystem.debug("XMLRPC request: "+xml_call.substring(0,400));
try
{
netscape.security.PrivilegeManager.enablePrivilege("UniversalBrowserRead");
}
catch(e)
{
}
this.xhr = new Opera.Net.Ajax();
this.xhr.Post(this.serviceUrl, xml_call, EW.Utils.createMethodReference(this, "successCallback") );
this.xhr.NetworkError = EW.Utils.createMethodReference(this, "errorCallback");
};
XmlRpcRequest.prototype.stop = function(){
try {
if(this.xhr !== null)
this.xhr.abort();
}
catch (e) {
EW.LogSystem.debug("errore nello stop della connessione ajax");
}
};
/**
* <p>Marshal request parameters.</p>
* @param data
* A request parameter.
* @return
* String with XML-RPC element notation.
*/
XmlRpcRequest.prototype.marshal = function(data) {
var type = XmlRpc.getDataTag(data);
var scalar_type = XmlRpc.SCALAR.replace(/\$\{TYPE\}/g, type);
var xml = "";
switch(type) {
case "struct":
var member = "";
for(var i in data) {
var value = "";
value += XmlRpc.NAME.replace("${DATA}", i);
value += XmlRpc.VALUE.replace("${DATA}", this.marshal(data[i]));
member += XmlRpc.MEMBER.replace("${DATA}", value);
}
xml = XmlRpc.STRUCT.replace("${DATA}", member);
break;
case "array":
var value = "";
for(var i = 0; i < data.length; i++) {
value += XmlRpc.VALUE.replace("${DATA}", this.marshal(data[i]));
}
xml = XmlRpc.ARRAY.replace("${DATA}", value);
break;
case "dateTime.iso8601":
xml = scalar_type.replace("${DATA}", data.toIso8601());
break;
case "boolean":
xml = scalar_type.replace("${DATA}", (data == true) ? 1 : 0);
break;
case "base64":
xml = scalar_type.replace("${DATA}", data.encode());
break;
case "string":
xml = scalar_type.replace("${DATA}", xmlrpc_encode_entities(data));
break;
default :
xml = scalar_type.replace("${DATA}", data);
break;
}
return xml;
};
/**
* @private
*/
function xmlrpc_encode_entities(data, src_encoding, dest_encoding)
{
return new String(data).replace(/&/g, '&').replace(/</g, '<').replace(/>/g, '>').replace(/"/g, '"').replace(/'/g, ''');
//return data.replace(/&/g, "&").replace(/</g, "<");
}
/**
* XmlRpcResponse
* @param xml
* Response XML document.
*/
function XmlRpcResponse(string) {
var cleaned = XmlRpcResponse.cleanBOM(XmlRpcResponse.cleanDocument(string));
this.xmlData = new DOMParser().parseFromString(cleaned, 'text/xml');
};
//prevents empty text nodes. and garbage between non-content XML-RPC nodes
XmlRpcResponse.cleanDocument = function(string){
var open, pairs = [
['methodResponse', 'params'],
['params', 'param'],
['param', 'value'],
['array', 'data'],
['struct', 'member']
], open;
var values = ['array','string', 'i4', 'int', 'dateTime\\.iso8601', 'double', 'struct'];
pairs.push(['value', values.join("|")]);
var pair, reg;
for (var i=0; i < pairs.length; i++) {
pair = pairs[i];
open = new RegExp("<" + pair[0] + ">.*?<(" + pair[1] + ")>",'gmi');
string = string.replace(open,"<"+pair[0]+"><$1>");
};
return string.replace(/>\n[\s]+\n</g, '><');
};
//Removes all characters before the opening XLM declaration
XmlRpcResponse.cleanBOM = function(string){
var leading_removed = string.substring(string.indexOf("<"));
return leading_removed.replace(/^[^<]{0,}<\?xml([^>]+)>[^<]+<methodResponse/, "<?xml version=\"1.0\" ?>\n<methodResponse");
};
/**
* <p>Indicate if response is a fault.</p>
* @return
* Boolean flag indicating fault status.
*/
XmlRpcResponse.prototype.isFault = function() {
return this.faultValue;
};
/**
* <p>Parse XML response to JavaScript.</p>
* @return
* JavaScript object parsed from XML-RPC document.
*/
XmlRpcResponse.prototype.parseXML = function() {
EW.LogSystem.debug(" >>> parseXML");
this.faultValue = undefined;
this.currentIsName = false;
this.propertyName = "";
this.params = [];
try{
for(var i = 0; i < this.xmlData.childNodes.length; i++)
this.unmarshal(this.xmlData.childNodes[i], 0);
} catch(err){
throw{
name: "Malformed Blog Response",
message: err.message
};
}
EW.LogSystem.debug(" <<< parseXML");
return this.params[0];
};
/**
* <p>Unmarshal response parameters.</p>
* @param node
* Current document node under processing.
* @param parent
* Current node' parent node.
*/
XmlRpcResponse.prototype.unmarshal = function(node, parent) {
if(node.nodeType == 1) {
var obj = null;
var tag = node.tagName.toLowerCase();
switch(tag) {
case "fault":
this.faultValue = true;
break;
case "name":
this.currentIsName = true;
break;
default:
obj = XmlRpc.getTagData(tag);
break;
}
if(obj != null) {
this.params.push(obj);
if(tag == "struct" || tag == "array") {
if(this.params.length > 1) {
switch(XmlRpc.getDataTag(this.params[parent])) {
case "struct":
this.params[parent][this.propertyName] = this.params[this.params.length - 1];
break;
case "array":
this.params[parent].push(this.params[this.params.length - 1]);
break;
}
}
var parent = this.params.length - 1;
}
}
for(var i = 0; i < node.childNodes.length; i++) {
this.unmarshal(node.childNodes[i], parent);
}
}
if( (node.nodeType == 3) && (/[^\t\n\r ]/.test(node.nodeValue)) ) {
if(this.currentIsName == true) {
this.propertyName = node.nodeValue;
this.currentIsName = false;
}
else {
switch(XmlRpc.getDataTag(this.params[this.params.length - 1])) {
case "dateTime.iso8601":
this.params[this.params.length - 1] = Date.fromIso8601(node.nodeValue);
break;
case "boolean":
this.params[this.params.length - 1] = (node.nodeValue == "1") ? true : false;
break;
case "int":
case "double":
this.params[this.params.length - 1] = new Number(node.nodeValue);
break;
case "string":
this.params[this.params.length - 1] = new String(node.nodeValue);
break;
case "base64":
this.params[this.params.length - 1] = new Base64(node.nodeValue);
break;
}
if(this.params.length > 1) {
switch(XmlRpc.getDataTag(this.params[parent])) {
case "struct":
this.params[parent][this.propertyName] = this.params[this.params.length - 1];
break;
case "array":
this.params[parent].push(this.params[this.params.length - 1]);
break;
}
}
}
}
};
/**
* Date
*/
/**
* <p>Convert a GMT date to ISO8601.</p>
* @return
* <code>String</code> with an ISO8601 date.
*/
Date.prototype.toIso8601 = function() {
year = this.getYear();
if (year < 1900) year += 1900;
month = this.getMonth() + 1;
if (month < 10) month = "0" + month;
day = this.getDate();
if (day < 10) day = "0" + day;
time = this.toTimeString().substr(0,8);
return year + month + day + "T" + time;
};
/**
* <p>Convert ISO8601 date to GMT.</p>
* @param value
* ISO8601 date.
* @return
* GMT date.
*/
Date.fromIso8601 = function(value) {
year = value.substr(0,4);
month = value.substr(4,2);
day = value.substr(6,2);
hour = value.substr(9,2);
minute = value.substr(12,2);
sec = value.substr(15,2);
return new Date(year, month - 1, day, hour, minute, sec, 0);
};
/**
* Base64
*/
function Base64(value) {
Base64.prototype.bytes = value;
};
/* When you pass as pass as parameter an already base64 encoded object */
function Base64(value, alreadyEncoded) {
Base64.prototype.alreadyEncoded = true;
Base64.prototype.bytes = value;
};
/** <p>Base64 characters map.</p> */
Base64.CHAR_MAP = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=";
/**
* <p>Encode the object bytes using base64 algorithm.</p>
* @return
* Encoded string.
*/
Base64.prototype.encode = function() {
if( this.alreadyEncoded === true ) {
EW.LogSystem.debug("Data already encoded. Do not re-encode the media file.");
return this.bytes;
}
if(typeof btoa == "function")
this.bytes = btoa(this.bytes);
else {
var _byte = new Array(), _char = new Array(), _result = new Array();
var j = 0;
for (var i = 0; i < this.bytes.length; i += 3) {
_byte[0] = this.bytes.charCodeAt(i);
_byte[1] = this.bytes.charCodeAt(i + 1);
_byte[2] = this.bytes.charCodeAt(i + 2);
_char[0] = _byte[0] >> 2;
_char[1] = ((_byte[0] & 3) << 4) | (_byte[1] >> 4);
_char[2] = ((_byte[1] & 15) << 2) | (_byte[2] >> 6);
_char[3] = _byte[2] & 63;
if(isNaN(_byte[1]))
_char[2] = _char[3] = 64;
else
if(isNaN(_byte[2]))
_char[3] = 64;
_result[j++] = Base64.CHAR_MAP.charAt(_char[0]) + Base64.CHAR_MAP.charAt(_char[1])
+ Base64.CHAR_MAP.charAt(_char[2]) + Base64.CHAR_MAP.charAt(_char[3]);
}
this.bytes = _result.join("");
}
return this.bytes;
};
/**
* <p>Decode the object bytes using base64 algorithm.</p>
* @return
* Decoded string.
*/
Base64.prototype.decode = function() {
if(typeof atob == "function")
this.bytes = atob(this.bytes);
else {
var _byte = new Array(), _char = new Array(), _result = new Array();
var j = 0;
while ((this.bytes.length % 4) != 0)
this.bytes += "=";
for (var i = 0; i < this.bytes.length; i += 4) {
_char[0] = Base64.CHAR_MAP.indexOf(this.bytes.charAt(i));
_char[1] = Base64.CHAR_MAP.indexOf(this.bytes.charAt(i + 1));
_char[2] = Base64.CHAR_MAP.indexOf(this.bytes.charAt(i + 2));
_char[3] = Base64.CHAR_MAP.indexOf(this.bytes.charAt(i + 3));
_byte[0] = (_char[0] << 2) | (_char[1] >> 4);
_byte[1] = ((_char[1] & 15) << 4) | (_char[2] >> 2);
_byte[2] = ((_char[2] & 3) << 6) | _char[3];
_result[j++] = String.fromCharCode(_byte[0]);
if(_char[2] != 64)
_result[j++] = String.fromCharCode(_byte[1]);
if(_char[3] != 64)
_result[j++] = String.fromCharCode(_byte[2]);
}
this.bytes = _result.join("");
}
return this.bytes;
};