mirror of
https://git.jabber.space/devs/cproof.git
synced 2026-07-29 17:46:21 +00:00
Handle when servers dont send status 101 or jid for MUC nick changes
This commit is contained in:
16
src/muc.c
16
src/muc.c
@@ -167,17 +167,30 @@ muc_room_is_active(Jid *jid)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
char *
|
||||||
|
muc_get_old_nick(const char * const room, const char * const new_nick)
|
||||||
|
{
|
||||||
|
ChatRoom *chat_room = g_hash_table_lookup(rooms, room);
|
||||||
|
|
||||||
|
if ((chat_room != NULL) && (chat_room->pending_nick_change)) {
|
||||||
|
return g_hash_table_lookup(chat_room->nick_changes, new_nick);
|
||||||
|
}
|
||||||
|
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Flag that the user has sent a nick change to the service
|
* Flag that the user has sent a nick change to the service
|
||||||
* and is awaiting the response
|
* and is awaiting the response
|
||||||
*/
|
*/
|
||||||
void
|
void
|
||||||
muc_set_room_pending_nick_change(const char * const room)
|
muc_set_room_pending_nick_change(const char * const room, const char * const new_nick)
|
||||||
{
|
{
|
||||||
ChatRoom *chat_room = g_hash_table_lookup(rooms, room);
|
ChatRoom *chat_room = g_hash_table_lookup(rooms, room);
|
||||||
|
|
||||||
if (chat_room != NULL) {
|
if (chat_room != NULL) {
|
||||||
chat_room->pending_nick_change = TRUE;
|
chat_room->pending_nick_change = TRUE;
|
||||||
|
g_hash_table_insert(chat_room->nick_changes, strdup(new_nick), strdup(chat_room->nick));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -210,6 +223,7 @@ muc_complete_room_nick_change(const char * const room, const char * const nick)
|
|||||||
free(chat_room->nick);
|
free(chat_room->nick);
|
||||||
chat_room->nick = strdup(nick);
|
chat_room->nick = strdup(nick);
|
||||||
chat_room->pending_nick_change = FALSE;
|
chat_room->pending_nick_change = FALSE;
|
||||||
|
g_hash_table_remove(chat_room->nick_changes, nick);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -36,10 +36,11 @@ gboolean muc_room_is_active(Jid *jid);
|
|||||||
GList* muc_get_active_room_list(void);
|
GList* muc_get_active_room_list(void);
|
||||||
char * muc_get_room_nick(const char * const room);
|
char * muc_get_room_nick(const char * const room);
|
||||||
|
|
||||||
void muc_set_room_pending_nick_change(const char * const room);
|
void muc_set_room_pending_nick_change(const char * const room, const char * const new_nick);
|
||||||
gboolean muc_is_room_pending_nick_change(const char * const room);
|
gboolean muc_is_room_pending_nick_change(const char * const room);
|
||||||
void muc_complete_room_nick_change(const char * const room,
|
void muc_complete_room_nick_change(const char * const room,
|
||||||
const char * const nick);
|
const char * const nick);
|
||||||
|
char * muc_get_old_nick(const char * const room, const char * const new_nick);
|
||||||
|
|
||||||
gboolean muc_add_to_roster(const char * const room, const char * const nick,
|
gboolean muc_add_to_roster(const char * const room, const char * const nick,
|
||||||
const char * const show, const char * const status,
|
const char * const show, const char * const status,
|
||||||
|
|||||||
@@ -567,13 +567,13 @@ _room_presence_handler(xmpp_conn_t * const conn, xmpp_stanza_t * const stanza,
|
|||||||
// handle self presence
|
// handle self presence
|
||||||
if (stanza_is_muc_self_presence(stanza, jabber_get_fulljid())) {
|
if (stanza_is_muc_self_presence(stanza, jabber_get_fulljid())) {
|
||||||
char *type = xmpp_stanza_get_attribute(stanza, STANZA_ATTR_TYPE);
|
char *type = xmpp_stanza_get_attribute(stanza, STANZA_ATTR_TYPE);
|
||||||
gboolean nick_change = stanza_is_room_nick_change(stanza);
|
char *new_nick = stanza_is_room_nick_change(stanza);
|
||||||
|
|
||||||
if ((type != NULL) && (strcmp(type, STANZA_TYPE_UNAVAILABLE) == 0)) {
|
if ((type != NULL) && (strcmp(type, STANZA_TYPE_UNAVAILABLE) == 0)) {
|
||||||
|
|
||||||
// leave room if not self nick change
|
// leave room if not self nick change
|
||||||
if (nick_change) {
|
if (new_nick != NULL) {
|
||||||
muc_set_room_pending_nick_change(room);
|
muc_set_room_pending_nick_change(room, new_nick);
|
||||||
} else {
|
} else {
|
||||||
prof_handle_leave_room(room);
|
prof_handle_leave_room(room);
|
||||||
}
|
}
|
||||||
@@ -606,7 +606,7 @@ _room_presence_handler(xmpp_conn_t * const conn, xmpp_stanza_t * const stanza,
|
|||||||
if ((type != NULL) && (strcmp(type, STANZA_TYPE_UNAVAILABLE) == 0)) {
|
if ((type != NULL) && (strcmp(type, STANZA_TYPE_UNAVAILABLE) == 0)) {
|
||||||
|
|
||||||
// handle nickname change
|
// handle nickname change
|
||||||
if (stanza_is_room_nick_change(stanza)) {
|
if (stanza_is_room_nick_change(stanza) != NULL) {
|
||||||
char *new_nick = stanza_get_new_nick(stanza);
|
char *new_nick = stanza_get_new_nick(stanza);
|
||||||
muc_set_roster_pending_nick_change(room, new_nick, nick);
|
muc_set_roster_pending_nick_change(room, new_nick, nick);
|
||||||
} else {
|
} else {
|
||||||
|
|||||||
@@ -31,6 +31,8 @@
|
|||||||
#include "xmpp/stanza.h"
|
#include "xmpp/stanza.h"
|
||||||
#include "xmpp/capabilities.h"
|
#include "xmpp/capabilities.h"
|
||||||
|
|
||||||
|
#include "muc.h"
|
||||||
|
|
||||||
static int _field_compare(FormField *f1, FormField *f2);
|
static int _field_compare(FormField *f1, FormField *f2);
|
||||||
|
|
||||||
xmpp_stanza_t *
|
xmpp_stanza_t *
|
||||||
@@ -508,50 +510,89 @@ stanza_is_muc_self_presence(xmpp_stanza_t * const stanza,
|
|||||||
x_children = xmpp_stanza_get_next(x_children);
|
x_children = xmpp_stanza_get_next(x_children);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// for servers that don't send status 110 or Jid property
|
||||||
|
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) {
|
||||||
|
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;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
return FALSE;
|
return FALSE;
|
||||||
}
|
}
|
||||||
|
|
||||||
gboolean
|
char *
|
||||||
stanza_is_room_nick_change(xmpp_stanza_t * const stanza)
|
stanza_is_room_nick_change(xmpp_stanza_t * const stanza)
|
||||||
{
|
{
|
||||||
if (stanza == NULL) {
|
if (stanza == NULL) {
|
||||||
return FALSE;
|
return NULL;
|
||||||
}
|
}
|
||||||
if (strcmp(xmpp_stanza_get_name(stanza), STANZA_NAME_PRESENCE) != 0) {
|
if (strcmp(xmpp_stanza_get_name(stanza), STANZA_NAME_PRESENCE) != 0) {
|
||||||
return FALSE;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
xmpp_stanza_t *x = xmpp_stanza_get_child_by_name(stanza, STANZA_NAME_X);
|
xmpp_stanza_t *x = xmpp_stanza_get_child_by_name(stanza, STANZA_NAME_X);
|
||||||
|
|
||||||
if (x == NULL) {
|
if (x == NULL) {
|
||||||
return FALSE;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
char *ns = xmpp_stanza_get_ns(x);
|
char *ns = xmpp_stanza_get_ns(x);
|
||||||
if (ns == NULL) {
|
if (ns == NULL) {
|
||||||
return FALSE;
|
return NULL;
|
||||||
}
|
}
|
||||||
if (strcmp(ns, STANZA_NS_MUC_USER) != 0) {
|
if (strcmp(ns, STANZA_NS_MUC_USER) != 0) {
|
||||||
return FALSE;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
xmpp_stanza_t *x_children = xmpp_stanza_get_children(x);
|
xmpp_stanza_t *x_children = xmpp_stanza_get_children(x);
|
||||||
if (x_children == NULL) {
|
if (x_children == NULL) {
|
||||||
return FALSE;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
gboolean is_nick_change = FALSE;
|
||||||
while (x_children != NULL) {
|
while (x_children != NULL) {
|
||||||
if (strcmp(xmpp_stanza_get_name(x_children), STANZA_NAME_STATUS) == 0) {
|
if (strcmp(xmpp_stanza_get_name(x_children), STANZA_NAME_STATUS) == 0) {
|
||||||
char *code = xmpp_stanza_get_attribute(x_children, STANZA_ATTR_CODE);
|
char *code = xmpp_stanza_get_attribute(x_children, STANZA_ATTR_CODE);
|
||||||
if (strcmp(code, "303") == 0) {
|
if (strcmp(code, "303") == 0) {
|
||||||
return TRUE;
|
is_nick_change = TRUE;
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
x_children = xmpp_stanza_get_next(x_children);
|
x_children = xmpp_stanza_get_next(x_children);
|
||||||
}
|
}
|
||||||
|
|
||||||
return FALSE;
|
if (is_nick_change) {
|
||||||
|
xmpp_stanza_t *x_children = xmpp_stanza_get_children(x);
|
||||||
|
while (x_children != NULL) {
|
||||||
|
if (strcmp(xmpp_stanza_get_name(x_children), STANZA_NAME_ITEM) == 0) {
|
||||||
|
char *new_nick = xmpp_stanza_get_attribute(x_children, STANZA_ATTR_NICK);
|
||||||
|
if (new_nick != NULL) {
|
||||||
|
return new_nick;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
x_children = xmpp_stanza_get_next(x_children);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
char *
|
char *
|
||||||
|
|||||||
@@ -146,7 +146,7 @@ gboolean stanza_get_delay(xmpp_stanza_t * const stanza, GTimeVal *tv_stamp);
|
|||||||
gboolean stanza_is_muc_presence(xmpp_stanza_t * const stanza);
|
gboolean stanza_is_muc_presence(xmpp_stanza_t * const stanza);
|
||||||
gboolean stanza_is_muc_self_presence(xmpp_stanza_t * const stanza,
|
gboolean stanza_is_muc_self_presence(xmpp_stanza_t * const stanza,
|
||||||
const char * const self_jid);
|
const char * const self_jid);
|
||||||
gboolean stanza_is_room_nick_change(xmpp_stanza_t * const stanza);
|
char * stanza_is_room_nick_change(xmpp_stanza_t * const stanza);
|
||||||
|
|
||||||
char * stanza_get_new_nick(xmpp_stanza_t * const stanza);
|
char * stanza_get_new_nick(xmpp_stanza_t * const stanza);
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user