about summary refs log tree commit diff stats
path: root/src/xmpp
diff options
context:
space:
mode:
authorKristofer M White <me@kmwhite.net>2014-02-27 05:31:10 +0000
committerKristofer M White <me@kmwhite.net>2014-02-27 05:31:10 +0000
commit8a54c5895dc4c989322611f2bdddf6b593b917d4 (patch)
treeef22b7681a7b2b040de8b8d744dc277115987b77 /src/xmpp
parent79d55a4668e7ae703ee551ad9a14109e084f872d (diff)
downloadprofani-tty-8a54c5895dc4c989322611f2bdddf6b593b917d4.tar.gz
Adding password handling for joining chatrooms
Diffstat (limited to 'src/xmpp')
-rw-r--r--src/xmpp/bookmark.c2
-rw-r--r--src/xmpp/presence.c4
-rw-r--r--src/xmpp/stanza.c15
-rw-r--r--src/xmpp/stanza.h2
-rw-r--r--src/xmpp/xmpp.h2
5 files changed, 19 insertions, 6 deletions
diff --git a/src/xmpp/bookmark.c b/src/xmpp/bookmark.c
index 1bc102a3..27a768be 100644
--- a/src/xmpp/bookmark.c
+++ b/src/xmpp/bookmark.c
@@ -301,7 +301,7 @@ _bookmark_handle_result(xmpp_conn_t * const conn,
                 log_debug("Autojoin %s with nick=%s", jid, name);
                 room_jid = jid_create_from_bare_and_resource(jid, name);
                 if (!muc_room_is_active(room_jid)) {
-                    presence_join_room(room_jid);
+                    presence_join_room(room_jid, NULL);
                     /* TODO: this should be removed after fixing #195 */
                     ui_room_join(room_jid);
                 }
diff --git a/src/xmpp/presence.c b/src/xmpp/presence.c
index ae392ad9..3098e6e4 100644
--- a/src/xmpp/presence.c
+++ b/src/xmpp/presence.c
@@ -260,7 +260,7 @@ _send_room_presence(xmpp_conn_t *conn, xmpp_stanza_t *presence)
 }
 
 static void
-_presence_join_room(Jid *jid)
+_presence_join_room(Jid *jid, char * passwd)
 {
     assert(jid != NULL);
     assert(jid->fulljid != NULL);
@@ -275,7 +275,7 @@ _presence_join_room(Jid *jid)
     int pri = accounts_get_priority_for_presence_type(jabber_get_account_name(),
         presence_type);
 
-    xmpp_stanza_t *presence = stanza_create_room_join_presence(ctx, jid->fulljid);
+    xmpp_stanza_t *presence = stanza_create_room_join_presence(ctx, jid->fulljid, passwd);
     stanza_attach_show(ctx, presence, show);
     stanza_attach_status(ctx, presence, status);
     stanza_attach_priority(ctx, presence, pri);
diff --git a/src/xmpp/stanza.c b/src/xmpp/stanza.c
index c37ab124..b89b164b 100644
--- a/src/xmpp/stanza.c
+++ b/src/xmpp/stanza.c
@@ -249,7 +249,7 @@ stanza_create_invite(xmpp_ctx_t *ctx, const char * const room,
 
 xmpp_stanza_t *
 stanza_create_room_join_presence(xmpp_ctx_t * const ctx,
-    const char * const full_room_jid)
+    const char * const full_room_jid, const char * const passwd)
 {
     xmpp_stanza_t *presence = xmpp_stanza_new(ctx);
     xmpp_stanza_set_name(presence, STANZA_NAME_PRESENCE);
@@ -260,6 +260,19 @@ stanza_create_room_join_presence(xmpp_ctx_t * const ctx,
     xmpp_stanza_t *x = xmpp_stanza_new(ctx);
     xmpp_stanza_set_name(x, STANZA_NAME_X);
     xmpp_stanza_set_ns(x, STANZA_NS_MUC);
+
+    // if a password was given
+    if (passwd != NULL) {
+        xmpp_stanza_t *pass = xmpp_stanza_new(ctx);
+        xmpp_stanza_set_name(pass, "password");
+        xmpp_stanza_t *text = xmpp_stanza_new(ctx);
+	xmpp_stanza_set_text(text, strdup(passwd));
+        xmpp_stanza_add_child(pass, text);
+        xmpp_stanza_add_child(x, pass);
+        xmpp_stanza_release(text);
+        xmpp_stanza_release(pass);
+    }
+
     xmpp_stanza_add_child(presence, x);
     xmpp_stanza_release(x);
 
diff --git a/src/xmpp/stanza.h b/src/xmpp/stanza.h
index 471a9f76..28f12a32 100644
--- a/src/xmpp/stanza.h
+++ b/src/xmpp/stanza.h
@@ -158,7 +158,7 @@ xmpp_stanza_t* stanza_create_message(xmpp_ctx_t *ctx,
     const char * const message, const char * const state);
 
 xmpp_stanza_t* stanza_create_room_join_presence(xmpp_ctx_t * const ctx,
-    const char * const full_room_jid);
+    const char * const full_room_jid, const char * const passwd);
 
 xmpp_stanza_t* stanza_create_room_newnick_presence(xmpp_ctx_t *ctx,
     const char * const full_room_jid);
diff --git a/src/xmpp/xmpp.h b/src/xmpp/xmpp.h
index fdbcb500..3ef9c93c 100644
--- a/src/xmpp/xmpp.h
+++ b/src/xmpp/xmpp.h
@@ -114,7 +114,7 @@ GSList* (*presence_get_subscription_requests)(void);
 gint (*presence_sub_request_count)(void);
 void (*presence_reset_sub_request_search)(void);
 char * (*presence_sub_request_find)(char * search_str);
-void (*presence_join_room)(Jid *jid);
+void (*presence_join_room)(Jid *jid, char * passwd);
 void (*presence_change_room_nick)(const char * const room, const char * const nick);
 void (*presence_leave_chat_room)(const char * const room_jid);
 void (*presence_update)(resource_presence_t status, const char * const msg,