about summary refs log tree commit diff stats
path: root/src/xmpp/stanza.c
diff options
context:
space:
mode:
authorJames Booth <boothj5@gmail.com>2013-08-05 22:55:11 +0100
committerJames Booth <boothj5@gmail.com>2013-08-05 22:55:11 +0100
commit1525be613303e0682a6fb78c5457d53207b05936 (patch)
treecfdee68cffb1034b572c5c4a65952b3c4be973af /src/xmpp/stanza.c
parent55282e063dacfa041083d878c69c7d37b0e36ed7 (diff)
downloadprofani-tty-1525be613303e0682a6fb78c5457d53207b05936.tar.gz
Refactor MUC self presence checks
Diffstat (limited to 'src/xmpp/stanza.c')
-rw-r--r--src/xmpp/stanza.c30
1 files changed, 18 insertions, 12 deletions
diff --git a/src/xmpp/stanza.c b/src/xmpp/stanza.c
index c03aa398..f4259d6f 100644
--- a/src/xmpp/stanza.c
+++ b/src/xmpp/stanza.c
@@ -511,24 +511,30 @@ stanza_is_muc_self_presence(xmpp_stanza_t * const stanza,
     }
 
     // for servers that don't send status 110 or Jid property
+
+    // first check if 'from' attribute identifies this user
     char *from = xmpp_stanza_get_attribute(stanza, STANZA_ATTR_FROM);
     if (from != NULL) {
         Jid *jidp = jid_create(from);
         if (muc_room_is_active(jidp)) {
             char *nick = muc_get_room_nick(jidp->barejid);
-            if (nick != NULL) {
-                if (strcmp(jidp->resourcepart, nick) == 0) {
+            if (g_strcmp0(jidp->resourcepart, nick) == 0) {
+                return TRUE;
+            }
+        }
+        jid_destroy(jidp);
+    }
+
+    // secondly check if the new nickname maps to a pending nick change for this user
+    if (from != NULL) {
+        Jid *jidp = jid_create(from);
+        if (muc_is_room_pending_nick_change(jidp->barejid)) {
+            char *new_nick = jidp->resourcepart;
+            if (new_nick != NULL) {
+                char *nick = muc_get_room_nick(jidp->barejid);
+                char *old_nick = muc_get_old_nick(jidp->barejid, new_nick);
+                if (g_strcmp0(old_nick, nick) == 0) {
                     return TRUE;
-                } else if (muc_is_room_pending_nick_change(jidp->barejid)) {
-                    char *new_nick = jidp->resourcepart;
-                    if (new_nick != NULL) {
-                        char *old_nick = muc_get_old_nick(jidp->barejid, new_nick);
-                        if (old_nick != NULL) {
-                            if (strcmp(old_nick, nick) == 0) {
-                                return TRUE;
-                            }
-                        }
-                    }
                 }
             }
         }