Mercurial > eldonilo > lightstring
changeset 42:ee874d064650
Check iq sending.
author | Emmanuel Gil Peyrot <linkmauve@linkmauve.fr> |
---|---|
date | Tue, 31 Jan 2012 17:40:06 +0100 |
parents | 2895891f19bb |
children | 136df1708856 |
files | lightstring.js |
diffstat | 1 files changed, 14 insertions(+), 9 deletions(-) [+] |
line wrap: on
line diff
--- a/lightstring.js +++ b/lightstring.js @@ -334,16 +334,21 @@ Lightstring.Connection.prototype = { return; if (stanza.DOM.tagName === 'iq') { - var id = stanza.DOM.getAttribute('id'); - //TODO: This should be done by a plugin - if (!id) - stanza.DOM.setAttribute('id', Lightstring.newId('sendiq:')); - if (aCallback) - this.on(stanza.DOM.getAttribute('id'), aCallback); + var type = stanza.DOM.getAttributeNS(null, 'type'); + if (type !== 'get' || type !== 'set') + ; //TODO: emit an error. + + var id = stanza.DOM.getAttributeNS(null, 'id'); + if (!id) { + if (aCallback) + ; //TODO: emit an error. + else + ; //TODO: emit an warning. + } else if (aCallback) + this.on(id, aCallback); } - else if (aCallback) { - this.emit('warning', 'Callback can\'t be called with non-iq stanza.'); - } + else if (aCallback) + ; //TODO: callback can’t be called with non-iq stanza. //TODO this.socket.send(stanza.XML); (need some work on Lightstring.Stanza)