From b2b2b2bbc062efa4dbd80f13524a61a99cd379c3 Mon Sep 17 00:00:00 2001 From: JC Brand Date: Sun, 22 Mar 2015 13:20:24 +0100 Subject: [PATCH] Enable automatic anonymous login. --- converse.js | 15 +++++++++++---- dev.html | 2 ++ src/templates/login_panel.html | 29 +++++++++++++++++------------ 3 files changed, 30 insertions(+), 16 deletions(-) diff --git a/converse.js b/converse.js index 8429dff92..c272db95b 100644 --- a/converse.js +++ b/converse.js @@ -244,6 +244,7 @@ allow_registration: true, animate: true, auto_list_rooms: false, + auto_login: false, // Currently only used in connection with anonymous login auto_reconnect: false, auto_subscribe: false, bosh_service_url: undefined, // The BOSH connection manager URL. @@ -292,6 +293,13 @@ // BBB if (this.prebind === true) { this.authentication = PREBIND; } + if (this.authentication === ANONYMOUS) { + if (!this.jid) { + throw("Config Error: you need to provide the server's domain via the " + + "'jid' option when using anonymous authentication."); + } + } + if (settings.visible_toolbar_buttons) { _.extend( this.visible_toolbar_buttons, @@ -5160,6 +5168,7 @@ 'MANUAL': MANUAL, 'ANONYMOUS': ANONYMOUS, 'PREBIND': PREBIND, + 'auto_login': converse.auto_login, 'authentication': converse.authentication, 'label_username': __('XMPP Username:'), 'label_password': __('Password:'), @@ -5183,10 +5192,6 @@ if (ev && ev.preventDefault) { ev.preventDefault(); } var $form = $(ev.target); if (converse.authentication === ANONYMOUS) { - if (!converse.jid) { - throw("Config Error: you need to provide the server's domain via the " + - "'jid' option when using anonymous authentication."); - } this.connect($form, converse.jid, null); return; } @@ -5379,6 +5384,8 @@ if (rid && sid && jid) { this.session.save({rid: rid}); // The RID needs to be increased with each request. this.connection.attach(jid, sid, rid, this.onConnect); + } else if (this.authentication === ANONYMOUS && this.auto_login) { + this.connection.connect(this.jid, null, this.onConnect); } } } else if (this.authentication == "prebind") { diff --git a/dev.html b/dev.html index d8060c78d..82eb6c41e 100644 --- a/dev.html +++ b/dev.html @@ -52,7 +52,9 @@