| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616 | 
							- var XMPPEvents = require("../../service/xmpp/XMPPEvents");
 - var Moderator = require("./moderator");
 - var EventEmitter = require("events");
 - 
 - var parser = {
 -     packet2JSON: function (packet, nodes) {
 -         var self = this;
 -         $(packet).children().each(function (index) {
 -             var tagName = $(this).prop("tagName");
 -             var node = {}
 -             node["tagName"] = tagName;
 -             node.attributes = {};
 -             $($(this)[0].attributes).each(function( index, attr ) {
 -                 node.attributes[ attr.name ] = attr.value;
 -             } );
 -             var text = Strophe.getText($(this)[0]);
 -             if(text)
 -                 node.value = text;
 -             node.children = [];
 -             nodes.push(node);
 -             self.packet2JSON($(this), node.children);
 -         })
 -     },
 -     JSON2packet: function (nodes, packet) {
 -         for(var i = 0; i < nodes.length; i++)
 -         {
 -             var node = nodes[i];
 -             if(!node || node === null){
 -                 continue;
 -             }
 -             packet.c(node.tagName, node.attributes);
 -             if(node.value)
 -                 packet.t(node.value);
 -             if(node.children)
 -                 this.JSON2packet(node.children, packet);
 -             packet.up();
 -         }
 -         packet.up();
 -     }
 - };
 - 
 - /**
 -  * Returns array of JS objects from the presence JSON associated with the passed nodeName
 -  * @param pres the presence JSON
 -  * @param nodeName the name of the node (videomuted, audiomuted, etc)
 -  */
 - function filterNodeFromPresenceJSON(pres, nodeName){
 -     var res = [];
 -     for(var i = 0; i < pres.length; i++)
 -         if(pres[i].tagName === nodeName)
 -             res.push(pres[i]);
 - 
 -     return res;
 - }
 - 
 - function ChatRoom(connection, jid, password, XMPP, options) {
 -     this.eventEmitter = new EventEmitter();
 -     this.xmpp = XMPP;
 -     this.connection = connection;
 -     this.roomjid = Strophe.getBareJidFromJid(jid);
 -     this.myroomjid = jid;
 -     this.password = password;
 -     console.info("Joined MUC as " + this.myroomjid);
 -     this.members = {};
 -     this.presMap = {};
 -     this.presHandlers = {};
 -     this.joined = false;
 -     this.role = null;
 -     this.focusMucJid = null;
 -     this.bridgeIsDown = false;
 -     this.options = options || {};
 -     this.moderator = new Moderator(this.roomjid, this.xmpp, this.eventEmitter);
 -     this.initPresenceMap();
 -     this.session = null;
 -     var self = this;
 -     this.lastPresences = {};
 - }
 - 
 - ChatRoom.prototype.initPresenceMap = function () {
 -     this.presMap['to'] = this.myroomjid;
 -     this.presMap['xns'] = 'http://jabber.org/protocol/muc';
 -     this.presMap["nodes"] = [];
 -     this.presMap["nodes"].push( {
 -         "tagName": "user-agent",
 -         "value": navigator.userAgent,
 -         "attributes": {xmlns: 'http://jitsi.org/jitmeet/user-agent'}
 -     });
 - };
 - 
 - ChatRoom.prototype.join = function (password) {
 -     if(password)
 -         this.password = password;
 -     this.moderator.allocateConferenceFocus(function()
 -     {
 -         this.sendPresence();
 -     }.bind(this));
 - }
 - 
 - ChatRoom.prototype.sendPresence = function () {
 -     if (!this.presMap['to']) {
 -         // Too early to send presence - not initialized
 -         return;
 -     }
 -     var pres = $pres({to: this.presMap['to'] });
 -     pres.c('x', {xmlns: this.presMap['xns']});
 - 
 -     if (this.password) {
 -         pres.c('password').t(this.password).up();
 -     }
 - 
 -     pres.up();
 - 
 -     // Send XEP-0115 'c' stanza that contains our capabilities info
 -     if (this.connection.caps) {
 -         this.connection.caps.node = this.xmpp.options.clientNode;
 -         pres.c('c', this.connection.caps.generateCapsAttrs()).up();
 -     }
 - 
 -     parser.JSON2packet(this.presMap.nodes, pres);
 -     this.connection.send(pres);
 - };
 - 
 - 
 - ChatRoom.prototype.doLeave = function () {
 -     console.log("do leave", this.myroomjid);
 -     var pres = $pres({to: this.myroomjid, type: 'unavailable' });
 -     this.presMap.length = 0;
 -     this.connection.send(pres);
 - };
 - 
 - 
 - ChatRoom.prototype.createNonAnonymousRoom = function () {
 -     // http://xmpp.org/extensions/xep-0045.html#createroom-reserved
 - 
 -     var getForm = $iq({type: 'get', to: this.roomjid})
 -         .c('query', {xmlns: 'http://jabber.org/protocol/muc#owner'})
 -         .c('x', {xmlns: 'jabber:x:data', type: 'submit'});
 - 
 -     var self = this;
 - 
 -     this.connection.sendIQ(getForm, function (form) {
 - 
 -         if (!$(form).find(
 -                 '>query>x[xmlns="jabber:x:data"]' +
 -                 '>field[var="muc#roomconfig_whois"]').length) {
 - 
 -             console.error('non-anonymous rooms not supported');
 -             return;
 -         }
 - 
 -         var formSubmit = $iq({to: this.roomjid, type: 'set'})
 -             .c('query', {xmlns: 'http://jabber.org/protocol/muc#owner'});
 - 
 -         formSubmit.c('x', {xmlns: 'jabber:x:data', type: 'submit'});
 - 
 -         formSubmit.c('field', {'var': 'FORM_TYPE'})
 -             .c('value')
 -             .t('http://jabber.org/protocol/muc#roomconfig').up().up();
 - 
 -         formSubmit.c('field', {'var': 'muc#roomconfig_whois'})
 -             .c('value').t('anyone').up().up();
 - 
 -         self.connection.sendIQ(formSubmit);
 - 
 -     }, function (error) {
 -         console.error("Error getting room configuration form");
 -     });
 - };
 - 
 - ChatRoom.prototype.onPresence = function (pres) {
 -     var from = pres.getAttribute('from');
 -     // Parse roles.
 -     var member = {};
 -     member.show = $(pres).find('>show').text();
 -     member.status = $(pres).find('>status').text();
 -     var tmp = $(pres).find('>x[xmlns="http://jabber.org/protocol/muc#user"]>item');
 -     member.affiliation = tmp.attr('affiliation');
 -     member.role = tmp.attr('role');
 - 
 -     // Focus recognition
 -     member.jid = tmp.attr('jid');
 -     member.isFocus = false;
 -     if (member.jid
 -         && member.jid.indexOf(this.moderator.getFocusUserJid() + "/") == 0) {
 -         member.isFocus = true;
 -     }
 - 
 -     $(pres).find(">x").remove();
 -     var nodes = [];
 -     parser.packet2JSON(pres, nodes);
 -     this.lastPresences[from] = nodes;
 -     for(var i = 0; i < nodes.length; i++)
 -     {
 -         var node = nodes[i];
 -         switch(node.tagName)
 -         {
 -             case "nick":
 -                 member.nick = node.value;
 -                 if(!member.isFocus) {
 -                     var displayName = !this.xmpp.options.displayJids
 -                         ? member.nick : Strophe.getResourceFromJid(from);
 - 
 -                     if (displayName && displayName.length > 0) {
 -                         this.eventEmitter.emit(XMPPEvents.DISPLAY_NAME_CHANGED, from, displayName);
 -                     }
 -                     console.info("Display name: " + displayName, pres);
 -                 }
 -                 break;
 -             case "userId":
 -                 member.id = node.value;
 -                 break;
 -             case "email":
 -                 member.email = node.value;
 -                 break;
 -             case "bridgeIsDown":
 -                 if(!this.bridgeIsDown) {
 -                     this.bridgeIsDown = true;
 -                     this.eventEmitter.emit(XMPPEvents.BRIDGE_DOWN);
 -                 }
 -                 break;
 -             default :
 -                 this.processNode(node, from);
 -         }
 - 
 -     }
 - 
 -     if (from == this.myroomjid) {
 -         if (member.affiliation == 'owner')
 - 
 -             if (this.role !== member.role) {
 -                 this.role = member.role;
 - 
 -                 this.eventEmitter.emit(XMPPEvents.LOCAL_ROLE_CHANGED,
 -                     member, this.isModerator());
 -             }
 -         if (!this.joined) {
 -             this.joined = true;
 -             this.eventEmitter.emit(XMPPEvents.MUC_JOINED, from, member);
 -         }
 -     } else if (this.members[from] === undefined) {
 -         // new participant
 -         this.members[from] = member;
 -         console.log('entered', from, member);
 -         if (member.isFocus) {
 -             this.focusMucJid = from;
 -             console.info("Ignore focus: " + from + ", real JID: " + member.jid);
 -         }
 -         else {
 -             this.eventEmitter.emit(XMPPEvents.MUC_MEMBER_JOINED, from, member.id || member.email, member.nick);
 -         }
 -     } else {
 -         // Presence update for existing participant
 -         // Watch role change:
 -         if (this.members[from].role != member.role) {
 -             this.members[from].role = member.role;
 -             this.eventEmitter.emit(XMPPEvents.MUC_ROLE_CHANGED,
 -                 member.role, member.nick);
 -         }
 -     }
 - 
 - 
 - 
 -     if(!member.isFocus)
 -         this.eventEmitter.emit(XMPPEvents.USER_ID_CHANGED, from, member.id || member.email);
 - 
 -     // Trigger status message update
 -     if (member.status) {
 -         this.eventEmitter.emit(XMPPEvents.PRESENCE_STATUS, from, member);
 -     }
 - 
 - };
 - 
 - ChatRoom.prototype.processNode = function (node, from) {
 -     if(this.presHandlers[node.tagName])
 -         this.presHandlers[node.tagName](node, from);
 - };
 - 
 - ChatRoom.prototype.sendMessage = function (body, nickname) {
 -     var msg = $msg({to: this.roomjid, type: 'groupchat'});
 -     msg.c('body', body).up();
 -     if (nickname) {
 -         msg.c('nick', {xmlns: 'http://jabber.org/protocol/nick'}).t(nickname).up().up();
 -     }
 -     this.connection.send(msg);
 -     this.eventEmitter.emit(XMPPEvents.SENDING_CHAT_MESSAGE, body);
 - };
 - 
 - ChatRoom.prototype.setSubject = function (subject) {
 -     var msg = $msg({to: this.roomjid, type: 'groupchat'});
 -     msg.c('subject', subject);
 -     this.connection.send(msg);
 -     console.log("topic changed to " + subject);
 - };
 - 
 - 
 - ChatRoom.prototype.onParticipantLeft = function (jid) {
 - 
 -     delete this.lastPresences[jid];
 -     this.eventEmitter.emit(XMPPEvents.MUC_MEMBER_LEFT, jid);
 - 
 -     this.moderator.onMucMemberLeft(jid);
 - };
 - 
 - ChatRoom.prototype.onPresenceUnavailable = function (pres, from) {
 -     // room destroyed ?
 -     if ($(pres).find('>x[xmlns="http://jabber.org/protocol/muc#user"]' +
 -         '>destroy').length) {
 -         var reason;
 -         var reasonSelect = $(pres).find(
 -                 '>x[xmlns="http://jabber.org/protocol/muc#user"]' +
 -                 '>destroy>reason');
 -         if (reasonSelect.length) {
 -             reason = reasonSelect.text();
 -         }
 - 
 -         this.xmpp.disposeConference(false);
 -         this.eventEmitter.emit(XMPPEvents.MUC_DESTROYED, reason);
 -         delete this.connection.emuc.rooms[Strophe.getBareJidFromJid(jid)];
 -         return true;
 -     }
 - 
 -     // Status code 110 indicates that this notification is "self-presence".
 -     if (!$(pres).find('>x[xmlns="http://jabber.org/protocol/muc#user"]>status[code="110"]').length) {
 -         delete this.members[from];
 -         this.onParticipantLeft(from);
 -     }
 -     // If the status code is 110 this means we're leaving and we would like
 -     // to remove everyone else from our view, so we trigger the event.
 -     else if (Object.keys(this.members).length > 1) {
 -         for (var i in this.members) {
 -             var member = this.members[i];
 -             delete this.members[i];
 -             this.onParticipantLeft(member);
 -         }
 -     }
 -     if ($(pres).find('>x[xmlns="http://jabber.org/protocol/muc#user"]>status[code="307"]').length) {
 -         if (this.myroomjid === from) {
 -             this.xmpp.disposeConference(false);
 -             this.eventEmitter.emit(XMPPEvents.KICKED);
 -         }
 -     }
 - };
 - 
 - ChatRoom.prototype.onMessage = function (msg, from) {
 -     var nick =
 -         $(msg).find('>nick[xmlns="http://jabber.org/protocol/nick"]')
 -             .text() ||
 -         Strophe.getResourceFromJid(from);
 - 
 -     var txt = $(msg).find('>body').text();
 -     var type = msg.getAttribute("type");
 -     if (type == "error") {
 -         this.eventEmitter.emit(XMPPEvents.CHAT_ERROR_RECEIVED,
 -             $(msg).find('>text').text(), txt);
 -         return true;
 -     }
 - 
 -     var subject = $(msg).find('>subject');
 -     if (subject.length) {
 -         var subjectText = subject.text();
 -         if (subjectText || subjectText == "") {
 -             this.eventEmitter.emit(XMPPEvents.SUBJECT_CHANGED, subjectText);
 -             console.log("Subject is changed to " + subjectText);
 -         }
 -     }
 - 
 -     // xep-0203 delay
 -     var stamp = $(msg).find('>delay').attr('stamp');
 - 
 -     if (!stamp) {
 -         // or xep-0091 delay, UTC timestamp
 -         stamp = $(msg).find('>[xmlns="jabber:x:delay"]').attr('stamp');
 - 
 -         if (stamp) {
 -             // the format is CCYYMMDDThh:mm:ss
 -             var dateParts = stamp.match(/(\d{4})(\d{2})(\d{2}T\d{2}:\d{2}:\d{2})/);
 -             stamp = dateParts[1] + "-" + dateParts[2] + "-" + dateParts[3] + "Z";
 -         }
 -     }
 - 
 -     if (txt) {
 -         console.log('chat', nick, txt);
 -         this.eventEmitter.emit(XMPPEvents.MESSAGE_RECEIVED,
 -             from, nick, txt, this.myroomjid, stamp);
 -     }
 - }
 - 
 - ChatRoom.prototype.onPresenceError = function (pres, from) {
 -     if ($(pres).find('>error[type="auth"]>not-authorized[xmlns="urn:ietf:params:xml:ns:xmpp-stanzas"]').length) {
 -         console.log('on password required', from);
 -         this.eventEmitter.emit(XMPPEvents.PASSWORD_REQUIRED);
 -     } else if ($(pres).find(
 -         '>error[type="cancel"]>not-allowed[xmlns="urn:ietf:params:xml:ns:xmpp-stanzas"]').length) {
 -         var toDomain = Strophe.getDomainFromJid(pres.getAttribute('to'));
 -         if (toDomain === this.xmpp.options.hosts.anonymousdomain) {
 -             // enter the room by replying with 'not-authorized'. This would
 -             // result in reconnection from authorized domain.
 -             // We're either missing Jicofo/Prosody config for anonymous
 -             // domains or something is wrong.
 -             this.eventEmitter.emit(XMPPEvents.ROOM_JOIN_ERROR, pres);
 - 
 -         } else {
 -             console.warn('onPresError ', pres);
 -             this.eventEmitter.emit(XMPPEvents.ROOM_CONNECT_ERROR, pres);
 -         }
 -     } else {
 -         console.warn('onPresError ', pres);
 -         this.eventEmitter.emit(XMPPEvents.ROOM_CONNECT_ERROR, pres);
 -     }
 - };
 - 
 - ChatRoom.prototype.kick = function (jid) {
 -     var kickIQ = $iq({to: this.roomjid, type: 'set'})
 -         .c('query', {xmlns: 'http://jabber.org/protocol/muc#admin'})
 -         .c('item', {nick: Strophe.getResourceFromJid(jid), role: 'none'})
 -         .c('reason').t('You have been kicked.').up().up().up();
 - 
 -     this.connection.sendIQ(
 -         kickIQ,
 -         function (result) {
 -             console.log('Kick participant with jid: ', jid, result);
 -         },
 -         function (error) {
 -             console.log('Kick participant error: ', error);
 -         });
 - };
 - 
 - ChatRoom.prototype.lockRoom = function (key, onSuccess, onError, onNotSupported) {
 -     //http://xmpp.org/extensions/xep-0045.html#roomconfig
 -     var ob = this;
 -     this.connection.sendIQ($iq({to: this.roomjid, type: 'get'}).c('query', {xmlns: 'http://jabber.org/protocol/muc#owner'}),
 -         function (res) {
 -             if ($(res).find('>query>x[xmlns="jabber:x:data"]>field[var="muc#roomconfig_roomsecret"]').length) {
 -                 var formsubmit = $iq({to: ob.roomjid, type: 'set'}).c('query', {xmlns: 'http://jabber.org/protocol/muc#owner'});
 -                 formsubmit.c('x', {xmlns: 'jabber:x:data', type: 'submit'});
 -                 formsubmit.c('field', {'var': 'FORM_TYPE'}).c('value').t('http://jabber.org/protocol/muc#roomconfig').up().up();
 -                 formsubmit.c('field', {'var': 'muc#roomconfig_roomsecret'}).c('value').t(key).up().up();
 -                 // Fixes a bug in prosody 0.9.+ https://code.google.com/p/lxmppd/issues/detail?id=373
 -                 formsubmit.c('field', {'var': 'muc#roomconfig_whois'}).c('value').t('anyone').up().up();
 -                 // FIXME: is muc#roomconfig_passwordprotectedroom required?
 -                 ob.connection.sendIQ(formsubmit,
 -                     onSuccess,
 -                     onError);
 -             } else {
 -                 onNotSupported();
 -             }
 -         }, onError);
 - };
 - 
 - ChatRoom.prototype.addToPresence = function (key, values) {
 -     values.tagName = key;
 -     this.presMap["nodes"].push(values);
 - };
 - 
 - ChatRoom.prototype.removeFromPresence = function (key) {
 -     for(var i = 0; i < this.presMap.nodes.length; i++)
 -     {
 -         if(key === this.presMap.nodes[i].tagName)
 -             this.presMap.nodes.splice(i, 1);
 -     }
 - };
 - 
 - ChatRoom.prototype.addPresenceListener = function (name, handler) {
 -     this.presHandlers[name] = handler;
 - }
 - 
 - ChatRoom.prototype.removePresenceListener = function (name) {
 -     delete this.presHandlers[name];
 - }
 - 
 - ChatRoom.prototype.isModerator = function (jid) {
 -     return this.role === 'moderator';
 - };
 - 
 - ChatRoom.prototype.getMemberRole = function (peerJid) {
 -     if (this.members[peerJid]) {
 -         return this.members[peerJid].role;
 -     }
 -     return null;
 - };
 - 
 - ChatRoom.prototype.setJingleSession = function(session){
 -     this.session = session;
 -     this.session.room = this;
 - };
 - 
 - 
 - ChatRoom.prototype.removeStream = function (stream) {
 -     if(!this.session)
 -         return;
 -     this.session.peerconnection.removeStream(stream)
 - }
 - 
 - ChatRoom.prototype.switchStreams = function (stream, oldStream, callback, isAudio) {
 -     if(this.session) {
 -         // FIXME: will block switchInProgress on true value in case of exception
 -         this.session.switchStreams(stream, oldStream, callback, isAudio);
 -     } else {
 -         // We are done immediately
 -         console.warn("No conference handler or conference not started yet");
 -         callback();
 -     }
 - };
 - 
 - ChatRoom.prototype.addStream = function (stream, callback) {
 -     if(this.session) {
 -         // FIXME: will block switchInProgress on true value in case of exception
 -         this.session.addStream(stream, callback);
 -     } else {
 -         // We are done immediately
 -         console.warn("No conference handler or conference not started yet");
 -         callback();
 -     }
 - }
 - 
 - ChatRoom.prototype.setVideoMute = function (mute, callback, options) {
 -     var self = this;
 -     var localCallback = function (mute) {
 -         self.sendVideoInfoPresence(mute);
 -         if(callback)
 -             callback(mute)
 -     };
 - 
 -     if(this.session)
 -     {
 -         this.session.setVideoMute(
 -             mute, localCallback, options);
 -     }
 -     else {
 -         localCallback(mute);
 -     }
 - 
 - };
 - 
 - ChatRoom.prototype.setAudioMute = function (mute, callback) {
 -     //This will be for remote streams only
 - //    if (this.forceMuted && !mute) {
 - //        console.info("Asking focus for unmute");
 - //        this.connection.moderate.setMute(this.connection.emuc.myroomjid, mute);
 - //        // FIXME: wait for result before resetting muted status
 - //        this.forceMuted = false;
 - //    }
 - 
 - 
 -     return this.sendAudioInfoPresence(mute, callback);
 - };
 - 
 - ChatRoom.prototype.addAudioInfoToPresence = function (mute) {
 -     this.removeFromPresence("audiomuted");
 -     this.addToPresence("audiomuted",
 -         {attributes:
 -         {"audions": "http://jitsi.org/jitmeet/audio"},
 -             value: mute.toString()});
 - }
 - 
 - ChatRoom.prototype.sendAudioInfoPresence = function(mute, callback) {
 -     this.addAudioInfoToPresence(mute);
 -     if(this.connection) {
 -         this.sendPresence();
 -     }
 -     if(callback)
 -         callback();
 - };
 - 
 - ChatRoom.prototype.addVideoInfoToPresence = function (mute) {
 -     this.removeFromPresence("videomuted");
 -     this.addToPresence("videomuted",
 -         {attributes:
 -         {"videons": "http://jitsi.org/jitmeet/video"},
 -             value: mute.toString()});
 - }
 - 
 - 
 - ChatRoom.prototype.sendVideoInfoPresence = function (mute) {
 -     this.addVideoInfoToPresence(mute);
 -     if(!this.connection)
 -         return;
 -     this.sendPresence();
 - };
 - 
 - ChatRoom.prototype.addListener = function(type, listener) {
 -     this.eventEmitter.on(type, listener);
 - };
 - 
 - ChatRoom.prototype.removeListener = function (type, listener) {
 -     this.eventEmitter.removeListener(type, listener);
 - };
 - 
 - ChatRoom.prototype.remoteStreamAdded = function(data, sid, thessrc) {
 -     if(this.lastPresences[data.peerjid])
 -     {
 -         var pres = this.lastPresences[data.peerjid];
 -         var audiomuted = filterNodeFromPresenceJSON(pres, "audiomuted");
 -         var videomuted = filterNodeFromPresenceJSON(pres, "videomuted");
 -         data.videomuted = ((videomuted.length > 0
 -             && videomuted[0]
 -             && videomuted[0]["value"] === "true")? true : false);
 -         data.audiomuted = ((audiomuted.length > 0
 -             && audiomuted[0]
 -             && audiomuted[0]["value"] === "true")? true : false);
 -     }
 - 
 -     this.eventEmitter.emit(XMPPEvents.REMOTE_STREAM_RECEIVED, data, sid, thessrc);
 - }
 - 
 - ChatRoom.prototype.addLocalStreams = function (localStreams) {
 -     this.session.addLocalStreams(localStreams);
 - }
 - 
 - ChatRoom.prototype.getJidBySSRC = function (ssrc) {
 -     if (!this.session)
 -         return null;
 -     return this.session.getSsrcOwner(ssrc);
 - };
 - 
 - module.exports = ChatRoom;
 
 
  |