| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385 | 
							- /* jshint -W117 */
 - /* a simple MUC connection plugin
 -  * can only handle a single MUC room
 -  */
 - Strophe.addConnectionPlugin('emuc', {
 -     connection: null,
 -     roomjid: null,
 -     myroomjid: null,
 -     members: {},
 -     list_members: [], // so we can elect a new focus
 -     presMap: {},
 -     preziMap: {},
 -     joined: false,
 -     isOwner: false,
 -     init: function (conn) {
 -         this.connection = conn;
 -     },
 -     initPresenceMap: function (myroomjid) {
 -         this.presMap['to'] = myroomjid;
 -         this.presMap['xns'] = 'http://jabber.org/protocol/muc';
 -     },
 -     doJoin: function (jid, password) {
 -         this.myroomjid = jid;
 - 
 -         console.info("Joined MUC as " + this.myroomjid);
 - 
 -         this.initPresenceMap(this.myroomjid);
 - 
 -         if (!this.roomjid) {
 -             this.roomjid = Strophe.getBareJidFromJid(jid);
 -             // add handlers (just once)
 -             this.connection.addHandler(this.onPresence.bind(this), null, 'presence', null, null, this.roomjid, {matchBare: true});
 -             this.connection.addHandler(this.onPresenceUnavailable.bind(this), null, 'presence', 'unavailable', null, this.roomjid, {matchBare: true});
 -             this.connection.addHandler(this.onPresenceError.bind(this), null, 'presence', 'error', null, this.roomjid, {matchBare: true});
 -             this.connection.addHandler(this.onMessage.bind(this), null, 'message', null, null, this.roomjid, {matchBare: true});
 -         }
 -         if (password !== undefined) {
 -             this.presMap['password'] = password;
 -         }
 -         this.sendPresence();
 -     },
 -     doLeave: function() {
 -         console.log("do leave", this.myroomjid);
 -         var pres = $pres({to: this.myroomjid, type: 'unavailable' });
 -         this.presMap.length = 0;
 -         this.connection.send(pres);
 -     },
 -     onPresence: function (pres) {
 -         var from = pres.getAttribute('from');
 -         var type = pres.getAttribute('type');
 -         if (type != null) {
 -             return true;
 -         }
 - 
 -         // Parse etherpad tag.
 -         var etherpad = $(pres).find('>etherpad');
 -         if (etherpad.length) {
 -             $(document).trigger('etherpadadded.muc', [from, etherpad.text()]);
 -         }
 - 
 -         // Parse prezi tag.
 -         var presentation = $(pres).find('>prezi');
 -         if (presentation.length)
 -         {
 -             var url = presentation.attr('url');
 -             var current = presentation.find('>current').text();
 - 
 -             console.log('presentation info received from', from, url);
 - 
 -             if (this.preziMap[from] == null) {
 -                 this.preziMap[from] = url;
 - 
 -                 $(document).trigger('presentationadded.muc', [from, url, current]);
 -             }
 -             else {
 -                 $(document).trigger('gotoslide.muc', [from, url, current]);
 -             }
 -         }
 -         else if (this.preziMap[from] != null) {
 -             var url = this.preziMap[from];
 -             delete this.preziMap[from];
 -             $(document).trigger('presentationremoved.muc', [from, url]);
 -         }
 - 
 -         // Parse audio info tag.
 -         var audioMuted = $(pres).find('>audiomuted');
 -         if (audioMuted.length) {
 -             $(document).trigger('audiomuted.muc', [from, audioMuted.text()]);
 -         }
 - 
 -         // Parse video info tag.
 -         var videoMuted = $(pres).find('>videomuted');
 -         if (videoMuted.length) {
 -             $(document).trigger('videomuted.muc', [from, videoMuted.text()]);
 -         }
 - 
 -         // Parse status.
 -         if ($(pres).find('>x[xmlns="http://jabber.org/protocol/muc#user"]>status[code="201"]').length) {
 -             // http://xmpp.org/extensions/xep-0045.html#createroom-instant
 -             this.isOwner = true;
 -             var create = $iq({type: 'set', to: this.roomjid})
 -                     .c('query', {xmlns: 'http://jabber.org/protocol/muc#owner'})
 -                     .c('x', {xmlns: 'jabber:x:data', type: 'submit'});
 -             this.connection.send(create); // fire away
 -         }
 - 
 -         // 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');
 - 
 -         var nicktag = $(pres).find('>nick[xmlns="http://jabber.org/protocol/nick"]');
 -         member.displayName = (nicktag.length > 0 ? nicktag.text() : null);
 - 
 -         if (from == this.myroomjid) {
 -             if (member.affiliation == 'owner') this.isOwner = true;
 -             if (!this.joined) {
 -                 this.joined = true;
 -                 $(document).trigger('joined.muc', [from, member]);
 -                 this.list_members.push(from);
 -             }
 -         } else if (this.members[from] === undefined) {
 -             // new participant
 -             this.members[from] = member;
 -             this.list_members.push(from);
 -             $(document).trigger('entered.muc', [from, member, pres]);
 -         }
 -         // Always trigger presence to update bindings
 -         console.log('presence change from', from);
 -         $(document).trigger('presence.muc', [from, member, pres]);
 - 
 -         // Trigger status message update
 -         if (member.status) {
 -             $(document).trigger('presence.status.muc', [from, member, pres]);
 -         }
 - 
 -         return true;
 -     },
 -     onPresenceUnavailable: function (pres) {
 -         var from = pres.getAttribute('from');
 -         // 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.list_members.splice(this.list_members.indexOf(from), 1);
 -             $(document).trigger('left.muc', [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 (this.list_members.length > 1) {
 -             for (var i = 0; i < this.list_members.length; i++) {
 -                 var member = this.list_members[i];
 -                 delete this.members[i];
 -                 this.list_members.splice(i, 1);
 -                 $(document).trigger('left.muc', member);
 -             }
 -         }
 -         return true;
 -     },
 -     onPresenceError: function (pres) {
 -         var from = pres.getAttribute('from');
 -         if ($(pres).find('>error[type="auth"]>not-authorized[xmlns="urn:ietf:params:xml:ns:xmpp-stanzas"]').length) {
 -             $(document).trigger('passwordrequired.muc', [from]);
 -         } 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 === config.hosts.anonymousdomain) {
 -                 // we are connected with anonymous domain and only non anonymous users can create rooms
 -                 // we must authorize the user
 -                 $(document).trigger('passwordrequired.main');
 -             }
 -             else
 -                 console.warn('onPresError ', pres);
 - 
 -         } else {
 -             console.warn('onPresError ', pres);
 -         }
 -         return true;
 -     },
 -     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);
 -     },
 -     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);
 -     },
 -     onMessage: function (msg) {
 -         // FIXME: this is a hack. but jingle on muc makes nickchanges hard
 -         var from = msg.getAttribute('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")
 -         {
 -             Chat.chatAddError($(msg).find('>text').text(), txt);
 -             return true;
 -         }
 - 
 -         var subject = $(msg).find('>subject');
 -         if(subject.length)
 -         {
 -             var subjectText = subject.text();
 -             if(subjectText || subjectText == "") {
 -                 Chat.chatSetSubject(subjectText);
 -                 console.log("Subject is changed to " + subjectText);
 -             }
 -         }
 - 
 - 
 -         if (txt) {
 -             console.log('chat', nick, txt);
 - 
 -             Chat.updateChatConversation(from, nick, txt);
 -         }
 -         return true;
 -     },
 -     lockRoom: function (key) {
 -         //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();
 -                     // FIXME: is muc#roomconfig_passwordprotectedroom required?
 -                     this.connection.sendIQ(formsubmit,
 -                         function (res) {
 -                             console.log('set room password');
 -                         },
 -                         function (err) {
 -                             console.warn('setting password failed', err);
 -                         }
 -                     );
 -                 } else {
 -                     console.warn('room passwords not supported');
 -                 }
 -             },
 -             function (err) {
 -                 console.warn('setting password failed', err);
 -             }
 -         );
 -     },
 -     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);
 -                 });
 -     },
 -     sendPresence: function () {
 -         var pres = $pres({to: this.presMap['to'] });
 -         pres.c('x', {xmlns: this.presMap['xns']});
 - 
 -         if (this.presMap['password']) {
 -             pres.c('password').t(this.presMap['password']).up();
 -         }
 - 
 -         pres.up();
 - 
 -         if (this.presMap['displayName']) {
 -             // XEP-0172
 -             pres.c('nick', {xmlns: 'http://jabber.org/protocol/nick'})
 -                 .t(this.presMap['displayName']).up();
 -         }
 - 
 -         if (this.presMap['audions']) {
 -             pres.c('audiomuted', {xmlns: this.presMap['audions']})
 -                 .t(this.presMap['audiomuted']).up();
 -         }
 - 
 -         if (this.presMap['videons']) {
 -             pres.c('videomuted', {xmlns: this.presMap['videons']})
 -                 .t(this.presMap['videomuted']).up();
 -         }
 - 
 -         if (this.presMap['prezins']) {
 -             pres.c('prezi',
 -                     {xmlns: this.presMap['prezins'],
 -                     'url': this.presMap['preziurl']})
 -                     .c('current').t(this.presMap['prezicurrent']).up().up();
 -         }
 - 
 -         if (this.presMap['etherpadns']) {
 -             pres.c('etherpad', {xmlns: this.presMap['etherpadns']})
 -                 .t(this.presMap['etherpadname']).up();
 -         }
 - 
 -         if (this.presMap['medians'])
 -         {
 -             pres.c('media', {xmlns: this.presMap['medians']});
 -             var sourceNumber = 0;
 -             Object.keys(this.presMap).forEach(function (key) {
 -                 if (key.indexOf('source') >= 0) {
 -                      sourceNumber++;
 -                 }
 -             });
 -             if (sourceNumber > 0)
 -                 for (var i = 1; i <= sourceNumber/3; i ++) {
 -                     pres.c('source',
 -                            {type: this.presMap['source' + i + '_type'],
 -                            ssrc: this.presMap['source' + i + '_ssrc'],
 -                            direction: this.presMap['source'+ i + '_direction']
 -                                                     || 'sendrecv' }
 -                     ).up();
 -                 }
 -         }
 -         pres.up();
 -         connection.send(pres);
 -     },
 -     addDisplayNameToPresence: function (displayName) {
 -         this.presMap['displayName'] = displayName;
 -     },
 -     addMediaToPresence: function (sourceNumber, mtype, ssrcs, direction) {
 -         if (!this.presMap['medians'])
 -             this.presMap['medians'] = 'http://estos.de/ns/mjs';
 - 
 -         this.presMap['source' + sourceNumber + '_type'] = mtype;
 -         this.presMap['source' + sourceNumber + '_ssrc'] = ssrcs;
 -         this.presMap['source' + sourceNumber + '_direction'] = direction;
 -     },
 -     clearPresenceMedia: function () {
 -         var self = this;
 -         Object.keys(this.presMap).forEach( function(key) {
 -             if(key.indexOf('source') != -1) {
 -                 delete self.presMap[key];
 -             }
 -         });
 -     },
 -     addPreziToPresence: function (url, currentSlide) {
 -         this.presMap['prezins'] = 'http://jitsi.org/jitmeet/prezi';
 -         this.presMap['preziurl'] = url;
 -         this.presMap['prezicurrent'] = currentSlide;
 -     },
 -     removePreziFromPresence: function () {
 -         delete this.presMap['prezins'];
 -         delete this.presMap['preziurl'];
 -         delete this.presMap['prezicurrent'];
 -     },
 -     addCurrentSlideToPresence: function (currentSlide) {
 -         this.presMap['prezicurrent'] = currentSlide;
 -     },
 -     getPrezi: function (roomjid) {
 -         return this.preziMap[roomjid];
 -     },
 -     addEtherpadToPresence: function(etherpadName) {
 -         this.presMap['etherpadns'] = 'http://jitsi.org/jitmeet/etherpad';
 -         this.presMap['etherpadname'] = etherpadName;
 -     },
 -     addAudioInfoToPresence: function(isMuted) {
 -         this.presMap['audions'] = 'http://jitsi.org/jitmeet/audio';
 -         this.presMap['audiomuted'] = isMuted.toString();
 -     },
 -     addVideoInfoToPresence: function(isMuted) {
 -         this.presMap['videons'] = 'http://jitsi.org/jitmeet/video';
 -         this.presMap['videomuted'] = isMuted.toString();
 -     },
 -     findJidFromResource: function(resourceJid) {
 -         var peerJid = null;
 -         Object.keys(this.members).some(function (jid) {
 -             peerJid = jid;
 -             return Strophe.getResourceFromJid(jid) === resourceJid;
 -         });
 -         return peerJid;
 -     }
 - });
 
 
  |