-
Notifications
You must be signed in to change notification settings - Fork 219
/
Copy pathqbStrophe.js
47 lines (40 loc) · 1.12 KB
/
qbStrophe.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
'use strict';
/** JSHint inline rules */
/* globals Strophe */
/**
* QuickBlox JavaScript SDK
* Strophe Connection Object
*/
require('strophe.js');
var config = require('./qbConfig');
var chatPRTCL = config.chatProtocol;
var Utils = require('./qbUtils');
function Connection() {
var protocol = chatPRTCL.active === 1 ? chatPRTCL.bosh : chatPRTCL.websocket;
var conn = new Strophe.Connection(protocol);
if (chatPRTCL.active === 1) {
conn.xmlInput = function(data) {
if (data.childNodes[0]) {
for (var i = 0, len = data.childNodes.length; i < len; i++) {
Utils.QBLog('[QBChat]', 'RECV:', data.childNodes[i]);
}
}
};
conn.xmlOutput = function(data) {
if (data.childNodes[0]) {
for (var i = 0, len = data.childNodes.length; i < len; i++) {
Utils.QBLog('[QBChat]', 'SENT:', data.childNodes[i]);
}
}
};
} else {
conn.xmlInput = function(data) {
Utils.QBLog('[QBChat]', 'RECV:', data);
};
conn.xmlOutput = function(data) {
Utils.QBLog('[QBChat]', 'SENT:', data);
};
}
return conn;
}
module.exports = Connection;