diff --git a/estos_log.js b/estos_log.js new file mode 100644 index 000000000..b7e049b4a --- /dev/null +++ b/estos_log.js @@ -0,0 +1,23 @@ +Strophe.addConnectionPlugin('logger', { + // logs raw stanzas and makes them available for download as JSON + connection: null, + log: [], + init: function (conn) { + this.connection = conn; + this.connection.rawInput = this.log_incoming.bind(this);; + this.connection.rawOutput = this.log_outgoing.bind(this);; + }, + log_incoming: function (stanza) { + this.log.push([new Date().getTime(), 'incoming', stanza]); + }, + log_outgoing: function (stanza) { + this.log.push([new Date().getTime(), 'outgoing', stanza]); + }, + // my download button + dump: function (what, filename){ + what.download = filename || 'xmpplog.json'; + what.href = 'data:application/json;charset=utf-8,\n'; + what.href += encodeURIComponent(JSON.stringify(this.log, null, ' ')); + return true; + } +}); diff --git a/index.html b/index.html index 0c5f2dc7c..6e34a230d 100644 --- a/index.html +++ b/index.html @@ -5,6 +5,7 @@ +