source: protocols/jabber/message.c @ 0e7ab64

Last change on this file since 0e7ab64 was 43671b9, checked in by Wilmer van der Gaast <wilmer@…>, at 2007-04-22T23:39:37Z

You can send messages too now. But it's still very kludgy and doesn't work
with anonymous rooms (ie about 95% of all available Jabber chatrooms?).

  • Property mode set to 100644
File size: 4.3 KB
Line 
1/***************************************************************************\
2*                                                                           *
3*  BitlBee - An IRC to IM gateway                                           *
4*  Jabber module - Handling of message(s) (tags), etc                       *
5*                                                                           *
6*  Copyright 2006 Wilmer van der Gaast <wilmer@gaast.net>                   *
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"
25
26xt_status jabber_pkt_message( struct xt_node *node, gpointer data )
27{
28        struct im_connection *ic = data;
29        char *from = xt_find_attr( node, "from" );
30        char *type = xt_find_attr( node, "type" );
31        struct xt_node *body = xt_find_node( node->children, "body" ), *c;
32        struct jabber_buddy *bud = NULL;
33        char *s;
34       
35        if( !from )
36                return XT_HANDLED; /* Consider this packet corrupted. */
37       
38        bud = jabber_buddy_by_jid( ic, from, GET_BUDDY_EXACT );
39       
40        if( type && strcmp( type, "error" ) == 0 )
41        {
42                /* Handle type=error packet. */
43        }
44        else if( type && from && strcmp( type, "groupchat" ) == 0 )
45        {
46                jabber_chat_pkt_message( ic, bud, node );
47        }
48        else /* "chat", "normal", "headline", no-type or whatever. Should all be pretty similar. */
49        {
50                GString *fullmsg = g_string_new( "" );
51               
52                if( ( s = strchr( from, '/' ) ) )
53                {
54                        if( bud )
55                                bud->last_act = time( NULL );
56                        else
57                                *s = 0; /* We need to generate a bare JID now. */
58                }
59               
60                if( type && strcmp( type, "headline" ) == 0 )
61                {
62                        c = xt_find_node( node->children, "subject" );
63                        g_string_append_printf( fullmsg, "Headline: %s\n", c && c->text_len > 0 ? c->text : "" );
64                       
65                        /* <x xmlns="jabber:x:oob"><url>http://....</url></x> can contain a URL, it seems. */
66                        for( c = node->children; c; c = c->next )
67                        {
68                                struct xt_node *url;
69                               
70                                if( ( url = xt_find_node( c->children, "url" ) ) && url->text_len > 0 )
71                                        g_string_append_printf( fullmsg, "URL: %s\n", url->text );
72                        }
73                }
74                else if( ( c = xt_find_node( node->children, "subject" ) ) && c->text_len > 0 )
75                {
76                        g_string_append_printf( fullmsg, "<< \002BitlBee\002 - Message with subject: %s >>\n", c->text );
77                }
78               
79                if( body && body->text_len > 0 ) /* Could be just a typing notification. */
80                        fullmsg = g_string_append( fullmsg, body->text );
81               
82                if( fullmsg->len > 0 )
83                        imcb_buddy_msg( ic, bud ? bud->bare_jid : from, fullmsg->str,
84                                        0, jabber_get_timestamp( node ) );
85               
86                g_string_free( fullmsg, TRUE );
87               
88                /* Handling of incoming typing notifications. */
89                if( xt_find_node( node->children, "composing" ) )
90                {
91                        bud->flags |= JBFLAG_DOES_XEP85;
92                        imcb_buddy_typing( ic, bud ? bud->bare_jid : from, OPT_TYPING );
93                }
94                /* No need to send a "stopped typing" signal when there's a message. */
95                else if( xt_find_node( node->children, "active" ) && ( body == NULL ) )
96                {
97                        bud->flags |= JBFLAG_DOES_XEP85;
98                        imcb_buddy_typing( ic, bud ? bud->bare_jid : from, 0 );
99                }
100                else if( xt_find_node( node->children, "paused" ) )
101                {
102                        bud->flags |= JBFLAG_DOES_XEP85;
103                        imcb_buddy_typing( ic, bud ? bud->bare_jid : from, OPT_THINKING );
104                }
105               
106                if( s )
107                        *s = '/'; /* And convert it back to a full JID. */
108        }
109       
110        return XT_HANDLED;
111}
Note: See TracBrowser for help on using the repository browser.