diff options
author | dequis <dx@dxzone.com.ar> | 2015-08-26 02:58:54 -0300 |
---|---|---|
committer | dequis <dx@dxzone.com.ar> | 2015-08-26 02:58:54 -0300 |
commit | 3c23681f0207e715b38ef2202c62df7cf3fca418 (patch) | |
tree | d4eb96457f2c9b4cb511b2350d80cce32e348a57 /protocols/jabber/conference.c | |
parent | 06054980118d193c902ae60b0ae7f33271159396 (diff) |
jabber: Improvements to the MUC part reason handling
- Look for a status message right inside <presence> (seen with ejabberd
as a result of a s2s connection error)
- Check status codes in a while loop, skipping unknown ones (such as
110, which means "Inform user that presence refers to itself")
Diffstat (limited to 'protocols/jabber/conference.c')
-rw-r--r-- | protocols/jabber/conference.c | 41 |
1 files changed, 26 insertions, 15 deletions
diff --git a/protocols/jabber/conference.c b/protocols/jabber/conference.c index dffc0a14..6af9e5ec 100644 --- a/protocols/jabber/conference.c +++ b/protocols/jabber/conference.c @@ -331,35 +331,46 @@ void jabber_chat_pkt_presence(struct im_connection *ic, struct jabber_buddy *bud } else if (type) { /* type can only be NULL or "unavailable" in this function */ if ((bud->flags & JBFLAG_IS_CHATROOM) && bud->ext_jid) { char *reason = NULL; + char *status = NULL; + char *status_text = NULL; if ((c = xt_find_node_by_attr(node->children, "x", "xmlns", XMLNS_MUC_USER))) { - struct xt_node *c2; - char *status = NULL; - - if ((c2 = xt_find_node(c->children, "status"))) { - status = xt_find_attr(c2, "code"); - if (g_strcmp0(status, "301") == 0) { + struct xt_node *c2 = c->children; + + while ((c2 = xt_find_node(c2, "status"))) { + char *code = xt_find_attr(c2, "code"); + if (g_strcmp0(code, "301") == 0) { status = "Banned"; - } else if (g_strcmp0(status, "303") == 0) { + break; + } else if (g_strcmp0(code, "303") == 0) { /* This could be handled in a cleverer way, * but let's just show a literal part/join for now */ status = "Changing nicks"; - } else if (g_strcmp0(status, "307") == 0) { + break; + } else if (g_strcmp0(code, "307") == 0) { status = "Kicked"; + break; } + c2 = c2->next; } + /* Sometimes the status message is in presence/x/item/reason */ if ((c2 = xt_find_path(c, "item/reason")) && c2->text && c2->text_len) { - if (status) { - reason = g_strdup_printf("%s: %s", status, c2->text); - } else { - reason = g_strdup(c2->text); - } - } else { - reason = g_strdup(status); + status_text = c2->text; } } + /* Sometimes the status message is right inside <presence> */ + if ((c = xt_find_node(node->children, "status")) && c->text && c->text_len) { + status_text = c->text; + } + + if (status_text && status) { + reason = g_strdup_printf("%s: %s", status, status_text); + } else { + reason = g_strdup(status_text ? : status); + } + s = strchr(bud->ext_jid, '/'); if (s) { *s = 0; |