source: protocols/jabber/message.c @ daae10f

Last change on this file since daae10f was daae10f, checked in by Wilmer van der Gaast <wilmer@…>, at 2010-08-07T16:33:02Z

OpenSolaris (non-gcc) fixes, patches from Dagobert Michelsen <dam@…>
with some changes.

  • Property mode set to 100644
File size: 5.0 KB
RevLine 
[f06894d]1/***************************************************************************\
2*                                                                           *
3*  BitlBee - An IRC to IM gateway                                           *
[21167d2]4*  Jabber module - Handling of message(s) (tags), etc                       *
[f06894d]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{
[0da65d5]28        struct im_connection *ic = data;
[f06894d]29        char *from = xt_find_attr( node, "from" );
[dd788bb]30        char *type = xt_find_attr( node, "type" );
[f0071b7]31        struct xt_node *body = xt_find_node( node->children, "body" ), *c;
[e35d1a1]32        struct jabber_buddy *bud = NULL;
[788a1af]33        char *s;
[f06894d]34       
[e35d1a1]35        if( !from )
36                return XT_HANDLED; /* Consider this packet corrupted. */
37       
38        bud = jabber_buddy_by_jid( ic, from, GET_BUDDY_EXACT );
39       
[f0071b7]40        if( type && strcmp( type, "error" ) == 0 )
41        {
42                /* Handle type=error packet. */
43        }
[e35d1a1]44        else if( type && from && strcmp( type, "groupchat" ) == 0 )
[f0071b7]45        {
[e35d1a1]46                jabber_chat_pkt_message( ic, bud, node );
[f0071b7]47        }
48        else /* "chat", "normal", "headline", no-type or whatever. Should all be pretty similar. */
[dd788bb]49        {
[f0071b7]50                GString *fullmsg = g_string_new( "" );
[5ec4129]51
52                for( c = node->children; ( c = xt_find_node( c, "x" ) ); c = c->next )
53                {
54                        char *ns = xt_find_attr( c, "xmlns" ), *room;
55                        struct xt_node *inv, *reason;
56                       
[90ba416]57                        if( ns && strcmp( ns, XMLNS_MUC_USER ) == 0 &&
[5ec4129]58                            ( inv = xt_find_node( c->children, "invite" ) ) )
59                        {
60                                room = from;
[daae10f]61                                if( ( from = xt_find_attr( inv, "from" ) ) == NULL )
62                                        from = room;
[5ec4129]63
64                                g_string_append_printf( fullmsg, "<< \002BitlBee\002 - Invitation to chatroom %s >>\n", room );
65                                if( ( reason = xt_find_node( inv->children, "reason" ) ) && reason->text_len > 0 )
66                                        g_string_append( fullmsg, reason->text );
67                        }
68                }
[dd788bb]69               
[f0071b7]70                if( ( s = strchr( from, '/' ) ) )
[a21a8ac]71                {
[e35d1a1]72                        if( bud )
[b9f8b87]73                        {
[76c85b4c]74                                bud->last_msg = time( NULL );
[daae10f]75                                from = bud->ext_jid ? bud->ext_jid : bud->bare_jid;
[b9f8b87]76                        }
[f0071b7]77                        else
78                                *s = 0; /* We need to generate a bare JID now. */
[a21a8ac]79                }
[dd788bb]80               
[62d0c14]81                if( type && strcmp( type, "headline" ) == 0 )
[f0071b7]82                {
[c4bc92a]83                        if( ( c = xt_find_node( node->children, "subject" ) ) && c->text_len > 0 )
84                                g_string_append_printf( fullmsg, "Headline: %s\n", c->text );
[f0071b7]85                       
86                        /* <x xmlns="jabber:x:oob"><url>http://....</url></x> can contain a URL, it seems. */
87                        for( c = node->children; c; c = c->next )
88                        {
89                                struct xt_node *url;
90                               
91                                if( ( url = xt_find_node( c->children, "url" ) ) && url->text_len > 0 )
92                                        g_string_append_printf( fullmsg, "URL: %s\n", url->text );
93                        }
94                }
95                else if( ( c = xt_find_node( node->children, "subject" ) ) && c->text_len > 0 )
96                {
97                        g_string_append_printf( fullmsg, "<< \002BitlBee\002 - Message with subject: %s >>\n", c->text );
98                }
99               
100                if( body && body->text_len > 0 ) /* Could be just a typing notification. */
101                        fullmsg = g_string_append( fullmsg, body->text );
[dd788bb]102               
[f0071b7]103                if( fullmsg->len > 0 )
[b9f8b87]104                        imcb_buddy_msg( ic, from, fullmsg->str,
[43671b9]105                                        0, jabber_get_timestamp( node ) );
[f0071b7]106               
107                g_string_free( fullmsg, TRUE );
[a21a8ac]108               
[788a1af]109                /* Handling of incoming typing notifications. */
[82135c7]110                if( bud == NULL )
111                {
112                        /* Can't handle these for unknown buddies. */
113                }
114                else if( xt_find_node( node->children, "composing" ) )
[a21a8ac]115                {
[788a1af]116                        bud->flags |= JBFLAG_DOES_XEP85;
[b9f8b87]117                        imcb_buddy_typing( ic, from, OPT_TYPING );
[a21a8ac]118                }
[788a1af]119                /* No need to send a "stopped typing" signal when there's a message. */
120                else if( xt_find_node( node->children, "active" ) && ( body == NULL ) )
[a21a8ac]121                {
[788a1af]122                        bud->flags |= JBFLAG_DOES_XEP85;
[b9f8b87]123                        imcb_buddy_typing( ic, from, 0 );
[a21a8ac]124                }
[788a1af]125                else if( xt_find_node( node->children, "paused" ) )
126                {
127                        bud->flags |= JBFLAG_DOES_XEP85;
[b9f8b87]128                        imcb_buddy_typing( ic, from, OPT_THINKING );
[788a1af]129                }
130               
131                if( s )
132                        *s = '/'; /* And convert it back to a full JID. */
[dd788bb]133        }
[f06894d]134       
135        return XT_HANDLED;
136}
Note: See TracBrowser for help on using the repository browser.