-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathstrophe.message-carbons.js
73 lines (61 loc) · 1.81 KB
/
strophe.message-carbons.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
/**
* Message Carbons (XEP 0280) plugin
* @see http://xmpp.org/extensions/xep-0280.html
*/
(function () {
function CarbonMessage() {
this.direction = '';
this.type = '';
this.to = '';
this.from = '';
this.innerMessage = null
}
Strophe.addConnectionPlugin('messageCarbons', {
_connection: null,
_onCarbon: null,
init: function (conn) {
this._connection = conn;
Strophe.addNamespace('CARBONS', 'urn:xmpp:carbons:2');
Strophe.addNamespace('FORWARD', 'urn:xmpp:forward:0');
this._connection.addHandler(this._messageHandler.bind(this), null, "message");
},
enable: function (onCarbon) {
_onCarbon = onCarbon;
var id = this._connection.getUniqueId('carbons');
var iq = $iq({ type: "set", id: id })
.c("enable", { xmlns: Strophe.NS.CARBONS });
this._connection.sendIQ(iq);
},
disable: function () {
var id = this._connection.getUniqueId('carbons');
var iq = $iq({ type: "set", id: id })
.c("disable", { xmlns: Strophe.NS.CARBONS });
this._connection.sendIQ(iq);
},
_messageHandler: function (msg) {
if (typeof _onCarbon !== "function")
return true;
var subMessage = $(msg).find("sent > forwarded > message");
if (subMessage) {
var item = new CarbonMessage();
item.direction = "sent";
item.type = $(subMessage).attr('type')
item.to = $(subMessage).attr('to');
item.from = $(subMessage).attr('from');
item.innerMessage = subMessage;
_onCarbon(item);
}
var subMessage = $(msg).find("received > forwarded > message");
if (subMessage) {
var item = new CarbonMessage();
item.direction = "received";
item.type = $(subMessage).attr('type')
item.to = $(subMessage).attr('to');
item.from = $(subMessage).attr('from');
item.innerMessage = subMessage;
_onCarbon(item);
}
return true;
}
});
})();