source: protocols/jabber/conference.c @ 8f8a56f

Last change on this file since 8f8a56f was 8f8a56f, checked in by dequis <dx@…>, at 2016-03-20T03:58:05Z

jabber: Check for other resources before removing someone from a chat

So if someone has several connections with several clients to a chat,
they won't appear as leaving from the chat until they leave from the
last client.

  • Property mode set to 100644
File size: 14.2 KB
RevLine 
[e35d1a1]1/***************************************************************************\
2*                                                                           *
3*  BitlBee - An IRC to IM gateway                                           *
4*  Jabber module - Conference rooms                                         *
5*                                                                           *
[0e788f5]6*  Copyright 2007-2012 Wilmer van der Gaast <wilmer@gaast.net>              *
[e35d1a1]7*                                                                           *
8*  This program is free software; you can redistribute it and/or modify     *
9*  it under the terms of the GNU General Public License as published by     *
10*  the Free Software Foundation; either version 2 of the License, or        *
11*  (at your option) any later version.                                      *
12*                                                                           *
13*  This program is distributed in the hope that it will be useful,          *
14*  but WITHOUT ANY WARRANTY; without even the implied warranty of           *
15*  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the            *
16*  GNU General Public License for more details.                             *
17*                                                                           *
18*  You should have received a copy of the GNU General Public License along  *
19*  with this program; if not, write to the Free Software Foundation, Inc.,  *
20*  51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.              *
21*                                                                           *
22\***************************************************************************/
23
24#include "jabber.h"
[fc0640e]25#include "sha1.h"
[e35d1a1]26
[5ebff60]27static xt_status jabber_chat_join_failed(struct im_connection *ic, struct xt_node *node, struct xt_node *orig);
[fb2338d]28static xt_status jabber_chat_self_message(struct im_connection *ic, struct xt_node *node, struct xt_node *orig);
[5bd21df]29
[5ebff60]30struct groupchat *jabber_chat_join(struct im_connection *ic, const char *room, const char *nick, const char *password)
[e35d1a1]31{
32        struct jabber_chat *jc;
33        struct xt_node *node;
34        struct groupchat *c;
35        char *roomjid;
[5ebff60]36
37        roomjid = g_strdup_printf("%s/%s", room, nick);
38        node = xt_new_node("x", NULL, NULL);
39        xt_add_attr(node, "xmlns", XMLNS_MUC);
40        if (password) {
41                xt_add_child(node, xt_new_node("password", password, NULL));
42        }
43        node = jabber_make_packet("presence", NULL, roomjid, node);
44        jabber_cache_add(ic, node, jabber_chat_join_failed);
45
46        if (!jabber_write_packet(ic, node)) {
47                g_free(roomjid);
[e35d1a1]48                return NULL;
49        }
[5ebff60]50
51        jc = g_new0(struct jabber_chat, 1);
52        jc->name = jabber_normalize(room);
53
54        if ((jc->me = jabber_buddy_add(ic, roomjid)) == NULL) {
55                g_free(roomjid);
56                g_free(jc->name);
57                g_free(jc);
[e35d1a1]58                return NULL;
59        }
[5ebff60]60
[9c9b37c]61        /* roomjid isn't normalized yet, and we need an original version
62           of the nick to send a proper presence update. */
63        jc->my_full_jid = roomjid;
[5ebff60]64
65        c = imcb_chat_new(ic, room);
[e35d1a1]66        c->data = jc;
[5ebff60]67
[e35d1a1]68        return c;
69}
70
[5ebff60]71struct groupchat *jabber_chat_with(struct im_connection *ic, char *who)
[fc0640e]72{
73        struct jabber_data *jd = ic->proto_data;
74        struct jabber_chat *jc;
75        struct groupchat *c;
76        sha1_state_t sum;
77        double now = gettime();
78        char *uuid, *rjid, *cserv;
[5ebff60]79
80        sha1_init(&sum);
81        sha1_append(&sum, (uint8_t *) ic->acc->user, strlen(ic->acc->user));
82        sha1_append(&sum, (uint8_t *) &now, sizeof(now));
83        sha1_append(&sum, (uint8_t *) who, strlen(who));
84        uuid = sha1_random_uuid(&sum);
85
86        if (jd->flags & JFLAG_GTALK) {
87                cserv = g_strdup("groupchat.google.com");
88        } else {
[fc0640e]89                /* Guess... */
[5ebff60]90                cserv = g_strdup_printf("conference.%s", jd->server);
91        }
92
93        rjid = g_strdup_printf("private-chat-%s@%s", uuid, cserv);
94        g_free(uuid);
95        g_free(cserv);
96
97        c = jabber_chat_join(ic, rjid, jd->username, NULL);
98        g_free(rjid);
99        if (c == NULL) {
[fc0640e]100                return NULL;
[5ebff60]101        }
102
[fc0640e]103        jc = c->data;
[5ebff60]104        jc->invite = g_strdup(who);
105
[fc0640e]106        return c;
107}
108
[5ebff60]109static xt_status jabber_chat_join_failed(struct im_connection *ic, struct xt_node *node, struct xt_node *orig)
[5bd21df]110{
111        struct jabber_error *err;
112        struct jabber_buddy *bud;
113        char *room;
[5ebff60]114
115        room = xt_find_attr(orig, "to");
116        bud = jabber_buddy_by_jid(ic, room, 0);
117        err = jabber_error_parse(xt_find_node(node->children, "error"), XMLNS_STANZA_ERROR);
118        if (err) {
119                imcb_error(ic, "Error joining groupchat %s: %s%s%s", room, err->code,
120                           err->text ? ": " : "", err->text ? err->text : "");
121                jabber_error_free(err);
[5bd21df]122        }
[5ebff60]123        if (bud) {
[c34247d]124                struct groupchat *c = jabber_chat_by_jid(ic, bud->bare_jid);
125                if (c) {
126                        jabber_chat_free(c);
127                }
[5ebff60]128        }
129
[80e9db9]130        return XT_HANDLED;
[5bd21df]131}
132
[fb2338d]133static xt_status jabber_chat_self_message(struct im_connection *ic, struct xt_node *node, struct xt_node *orig)
134{
135        /* This is a self message sent by this bitlbee - just drop it */
136        return XT_ABORT;
137}
138
[5ebff60]139struct groupchat *jabber_chat_by_jid(struct im_connection *ic, const char *name)
[5bd21df]140{
[5ebff60]141        char *normalized = jabber_normalize(name);
[aea8b68]142        GSList *l;
[5bd21df]143        struct groupchat *ret;
144        struct jabber_chat *jc;
[5ebff60]145
146        for (l = ic->groupchats; l; l = l->next) {
[aea8b68]147                ret = l->data;
[5bd21df]148                jc = ret->data;
[5ebff60]149                if (strcmp(normalized, jc->name) == 0) {
[5bd21df]150                        break;
[5ebff60]151                }
[5bd21df]152        }
[5ebff60]153        g_free(normalized);
154
[58f5ef7]155        return l ? ret : NULL;
[5bd21df]156}
157
[5ebff60]158void jabber_chat_free(struct groupchat *c)
[9da0bbf]159{
160        struct jabber_chat *jc = c->data;
[5ebff60]161
162        jabber_buddy_remove_bare(c->ic, jc->name);
163
164        g_free(jc->my_full_jid);
165        g_free(jc->name);
166        g_free(jc->invite);
167        g_free(jc);
168
169        imcb_chat_free(c);
[9da0bbf]170}
171
[5ebff60]172int jabber_chat_msg(struct groupchat *c, char *message, int flags)
[43671b9]173{
174        struct im_connection *ic = c->ic;
175        struct jabber_chat *jc = c->data;
176        struct xt_node *node;
[5ebff60]177
[63075d7]178        jc->flags |= JCFLAG_MESSAGE_SENT;
[5ebff60]179
180        node = xt_new_node("body", message, NULL);
181        node = jabber_make_packet("message", "groupchat", jc->name, node);
182
[fb2338d]183        jabber_cache_add(ic, node, jabber_chat_self_message);
[5ebff60]184
[fb2338d]185        return !jabber_write_packet(ic, node);
[43671b9]186}
187
[5ebff60]188int jabber_chat_topic(struct groupchat *c, char *topic)
[ef5c185]189{
190        struct im_connection *ic = c->ic;
191        struct jabber_chat *jc = c->data;
192        struct xt_node *node;
[5ebff60]193
194        node = xt_new_node("subject", topic, NULL);
195        node = jabber_make_packet("message", "groupchat", jc->name, node);
196
197        if (!jabber_write_packet(ic, node)) {
198                xt_free_node(node);
[ef5c185]199                return 0;
200        }
[5ebff60]201        xt_free_node(node);
202
[ef5c185]203        return 1;
204}
205
[5ebff60]206int jabber_chat_leave(struct groupchat *c, const char *reason)
[e35d1a1]207{
208        struct im_connection *ic = c->ic;
209        struct jabber_chat *jc = c->data;
210        struct xt_node *node;
[5ebff60]211
212        node = xt_new_node("x", NULL, NULL);
213        xt_add_attr(node, "xmlns", XMLNS_MUC);
214        node = jabber_make_packet("presence", "unavailable", jc->my_full_jid, node);
215
216        if (!jabber_write_packet(ic, node)) {
217                xt_free_node(node);
[e35d1a1]218                return 0;
219        }
[5ebff60]220        xt_free_node(node);
221
[e35d1a1]222        return 1;
223}
224
[5ebff60]225void jabber_chat_invite(struct groupchat *c, char *who, char *message)
[c058ff9]226{
227        struct xt_node *node;
228        struct im_connection *ic = c->ic;
229        struct jabber_chat *jc = c->data;
230
[5ebff60]231        node = xt_new_node("reason", message, NULL);
232
233        node = xt_new_node("invite", NULL, node);
234        xt_add_attr(node, "to", who);
[c058ff9]235
[5ebff60]236        node = xt_new_node("x", NULL, node);
237        xt_add_attr(node, "xmlns", XMLNS_MUC_USER);
[c058ff9]238
[5ebff60]239        node = jabber_make_packet("message", NULL, jc->name, node);
[c058ff9]240
[5ebff60]241        jabber_write_packet(ic, node);
[c058ff9]242
[5ebff60]243        xt_free_node(node);
[c058ff9]244}
245
[8f8a56f]246static int jabber_chat_has_other_resources(struct im_connection *ic, struct jabber_buddy *bud)
247{
248        struct jabber_buddy *cur;
249
250        for (cur = jabber_buddy_by_jid(ic, bud->bare_jid, GET_BUDDY_FIRST); cur; cur = cur->next) {
251                if (cur != bud && jabber_compare_jid(cur->ext_jid, bud->ext_jid)) {
252                        return TRUE;
253                }
254        }
255       
256        return FALSE;
257}
258
[e35d1a1]259/* Not really the same syntax as the normal pkt_ functions, but this isn't
[0e7ab64]260   called by the xmltree parser directly and this way I can add some extra
[e35d1a1]261   parameters so we won't have to repeat too many things done by the caller
262   already. */
[5ebff60]263void jabber_chat_pkt_presence(struct im_connection *ic, struct jabber_buddy *bud, struct xt_node *node)
[e35d1a1]264{
265        struct groupchat *chat;
266        struct xt_node *c;
[5ebff60]267        char *type = xt_find_attr(node, "type");
[68286eb]268        struct jabber_data *jd = ic->proto_data;
[e35d1a1]269        struct jabber_chat *jc;
270        char *s;
[5ebff60]271
272        if ((chat = jabber_chat_by_jid(ic, bud->bare_jid)) == NULL) {
[e35d1a1]273                /* How could this happen?? We could do kill( self, 11 )
274                   now or just wait for the OS to do it. :-) */
275                return;
276        }
[5ebff60]277
[e35d1a1]278        jc = chat->data;
[5ebff60]279
280        if (type == NULL && !(bud->flags & JBFLAG_IS_CHATROOM)) {
[e35d1a1]281                bud->flags |= JBFLAG_IS_CHATROOM;
282                /* If this one wasn't set yet, this buddy just joined the chat.
283                   Slightly hackish way of finding out eh? ;-) */
[5ebff60]284
[b9f8b87]285                /* This is pretty messy... Here it sets ext_jid to the real
286                   JID of the participant. Works for non-anonymized channels.
287                   Might break if someone joins a chat twice, though. */
[5ebff60]288                for (c = node->children; (c = xt_find_node(c, "x")); c = c->next) {
289                        if ((s = xt_find_attr(c, "xmlns")) &&
290                            (strcmp(s, XMLNS_MUC_USER) == 0)) {
[19176513]291                                struct xt_node *item;
[5ebff60]292
293                                item = xt_find_node(c->children, "item");
294                                if ((s = xt_find_attr(item, "jid"))) {
[e35d1a1]295                                        /* Yay, found what we need. :-) */
[5ebff60]296                                        bud->ext_jid = jabber_normalize(s);
[e35d1a1]297                                        break;
298                                }
299                        }
[5ebff60]300                }
301
[6286f80]302                /* Make up some other handle, if necessary. */
[5ebff60]303                if (bud->ext_jid == NULL) {
304                        if (bud == jc->me) {
305                                bud->ext_jid = g_strdup(jd->me);
306                        } else {
[5d7dc00]307                                int i;
[5ebff60]308
[54f2f55]309                                /* Don't want the nick to be at the end, so let's
310                                   think of some slightly different notation to use
311                                   for anonymous groupchat participants in BitlBee. */
[5ebff60]312                                bud->ext_jid = g_strdup_printf("%s=%s", bud->resource, bud->bare_jid);
313
[5d7dc00]314                                /* And strip any unwanted characters. */
[5ebff60]315                                for (i = 0; bud->resource[i]; i++) {
316                                        if (bud->ext_jid[i] == '=' || bud->ext_jid[i] == '@') {
[5d7dc00]317                                                bud->ext_jid[i] = '_';
[5ebff60]318                                        }
319                                }
[5d7dc00]320                        }
[6286f80]321                        bud->flags |= JBFLAG_IS_ANONYMOUS;
322                }
[5ebff60]323
324                if (bud != jc->me && bud->flags & JBFLAG_IS_ANONYMOUS) {
[e73a501]325                        /* If JIDs are anonymized, add them to the local
326                           list for the duration of this chat. */
[5ebff60]327                        imcb_add_buddy(ic, bud->ext_jid, NULL);
328                        imcb_buddy_nick_hint(ic, bud->ext_jid, bud->resource);
[c570c86]329                }
[5ebff60]330
331                if (bud == jc->me && jc->invite != NULL) {
332                        char *msg = g_strdup_printf("Please join me in room %s", jc->name);
333                        jabber_chat_invite(chat, jc->invite, msg);
334                        g_free(jc->invite);
335                        g_free(msg);
[fc0640e]336                        jc->invite = NULL;
337                }
[5ebff60]338
339                s = strchr(bud->ext_jid, '/');
340                if (s) {
341                        *s = 0; /* Should NEVER be NULL, but who knows... */
342                }
343                imcb_chat_add_buddy(chat, bud->ext_jid);
344                if (s) {
345                        *s = '/';
346                }
347        } else if (type) { /* type can only be NULL or "unavailable" in this function */
[8f8a56f]348                if ((bud->flags & JBFLAG_IS_CHATROOM) && bud->ext_jid && !jabber_chat_has_other_resources(ic, bud)) {
[83f179d6]349                        char *reason = NULL;
[3c23681]350                        char *status = NULL;
351                        char *status_text = NULL;
[83f179d6]352                       
353                        if ((c = xt_find_node_by_attr(node->children, "x", "xmlns", XMLNS_MUC_USER))) {
[3c23681]354                                struct xt_node *c2 = c->children;
355
356                                while ((c2 = xt_find_node(c2, "status"))) {
357                                        char *code = xt_find_attr(c2, "code");
358                                        if (g_strcmp0(code, "301") == 0) {
[83f179d6]359                                                status = "Banned";
[3c23681]360                                                break;
361                                        } else if (g_strcmp0(code, "303") == 0) {
[83f179d6]362                                                /* This could be handled in a cleverer way,
363                                                 * but let's just show a literal part/join for now */
364                                                status = "Changing nicks";
[3c23681]365                                                break;
366                                        } else if (g_strcmp0(code, "307") == 0) {
[83f179d6]367                                                status = "Kicked";
[3c23681]368                                                break;
[83f179d6]369                                        }
[3c23681]370                                        c2 = c2->next;
[83f179d6]371                                }
372
[3c23681]373                                /* Sometimes the status message is in presence/x/item/reason */
[83f179d6]374                                if ((c2 = xt_find_path(c, "item/reason")) && c2->text && c2->text_len) {
[3c23681]375                                        status_text = c2->text;
[83f179d6]376                                }
377                        }
378
[3c23681]379                        /* Sometimes the status message is right inside <presence> */
380                        if ((c = xt_find_node(node->children, "status")) && c->text && c->text_len) {
381                                status_text = c->text;
382                        }
383
384                        if (status_text && status) {
385                                reason = g_strdup_printf("%s: %s", status, status_text);
386                        } else {
387                                reason = g_strdup(status_text ? : status);
388                        }
389
[5ebff60]390                        s = strchr(bud->ext_jid, '/');
391                        if (s) {
392                                *s = 0;
393                        }
[83f179d6]394                        imcb_chat_remove_buddy(chat, bud->ext_jid, reason);
[5ebff60]395                        if (bud != jc->me && bud->flags & JBFLAG_IS_ANONYMOUS) {
[83f179d6]396                                imcb_remove_buddy(ic, bud->ext_jid, reason);
[5ebff60]397                        }
398                        if (s) {
399                                *s = '/';
400                        }
[83f179d6]401
402                        g_free(reason);
[5ebff60]403                }
404
405                if (bud == jc->me) {
406                        jabber_chat_free(chat);
[bdad407]407                }
[e35d1a1]408        }
409}
410
[5ebff60]411void jabber_chat_pkt_message(struct im_connection *ic, struct jabber_buddy *bud, struct xt_node *node)
[e35d1a1]412{
[5ebff60]413        struct xt_node *subject = xt_find_node(node->children, "subject");
414        struct xt_node *body = xt_find_node(node->children, "body");
[3d31618]415        struct groupchat *chat = NULL;
416        struct jabber_chat *jc = NULL;
417        char *from = NULL;
418        char *nick = NULL;
419        char *final_from = NULL;
420        char *bare_jid = NULL;
[fb2338d]421        guint32 flags = 0;
[5ebff60]422
[3d31618]423        from = (bud) ? bud->full_jid : xt_find_attr(node, "from");
424
425        if (from) {
426                nick = strchr(from, '/');
427                if (nick) {
428                        *nick = 0;
[5ebff60]429                }
[3d31618]430                chat = jabber_chat_by_jid(ic, from);
431                if (nick) {
432                        *nick = '/';
433                        nick++;
[5ebff60]434                }
[41e0c00]435        }
[5ebff60]436
[3d31618]437        jc = (chat) ? chat->data : NULL;
[5ebff60]438
[3d31618]439        if (!bud) {
440                struct xt_node *c;
441                char *s;
442
443                /* Try some clever stuff to find out the real JID here */
444                c = xt_find_node_by_attr(node->children, "delay", "xmlns", XMLNS_DELAY);
445
446                if (c && ((s = xt_find_attr(c, "from")) ||
447                          (s = xt_find_attr(c, "from_jid")))) {
448                        /* This won't be useful if it's the MUC JID */
449                        if (!(jc && jabber_compare_jid(s, jc->name))) {
450                                /* Hopefully this one makes more sense! */
451                                bud = jabber_buddy_by_jid(ic, s, GET_BUDDY_FIRST | GET_BUDDY_CREAT);
452                        }
[5ebff60]453                }
454
[3d31618]455        }
[5ebff60]456
[3d31618]457        if (subject && chat) {
[3cbf71d]458                char *subject_text = subject->text_len > 0 ? subject->text : "";
[3d31618]459                if (g_strcmp0(chat->topic, subject_text) != 0) {
460                        bare_jid = (bud) ? jabber_get_bare_jid(bud->ext_jid) : NULL;
461                        imcb_chat_topic(chat, bare_jid, subject_text,
462                                        jabber_get_timestamp(node));
463                        g_free(bare_jid);
[3cbf71d]464                        bare_jid = NULL;
[a882d6c]465                }
[3d31618]466        }
[5ebff60]467
[3d31618]468        if (body == NULL || body->text_len == 0) {
469                /* Meh. Empty messages aren't very interesting, no matter
470                   how much some servers love to send them. */
471                return;
472        }
473
474        if (chat == NULL) {
[5ebff60]475                if (nick == NULL) {
[3d31618]476                        imcb_log(ic, "System message from unknown groupchat %s: %s", from, body->text);
[5ebff60]477                } else {
[3d31618]478                        imcb_log(ic, "Groupchat message from unknown JID %s: %s", from, body->text);
[a882d6c]479                }
[5ebff60]480
[e35d1a1]481                return;
[3d31618]482        } else if (chat != NULL && bud == NULL && nick == NULL) {
483                imcb_chat_log(chat, "From conference server: %s", body->text);
484                return;
[fb2338d]485        } else if (jc && jc->flags & JCFLAG_MESSAGE_SENT && bud == jc->me &&
486                   (jabber_cache_handle_packet(ic, node) == XT_ABORT)) {
487                /* Self message marked by this bitlbee, don't show it */
[e35d1a1]488                return;
489        }
[3d31618]490
[fb2338d]491        if (bud) {
[3d31618]492                bare_jid = jabber_get_bare_jid(bud->ext_jid ? bud->ext_jid : bud->full_jid);
493                final_from = bare_jid;
[eee7294]494                if (bud == jc->me || (g_strcasecmp(final_from, ic->acc->user) == 0)) {
495                        flags = OPT_SELFMESSAGE;
496                }
[3d31618]497        } else {
498                final_from = nick;
[e35d1a1]499        }
[3d31618]500
[fb2338d]501        imcb_chat_msg(chat, final_from, body->text, flags, jabber_get_timestamp(node));
[3d31618]502
503        g_free(bare_jid);
[e35d1a1]504}
Note: See TracBrowser for help on using the repository browser.