source: protocols/jabber/message.c @ 8eb10c9

Last change on this file since 8eb10c9 was a21a8ac, checked in by Wilmer van der Gaast <wilmer@…>, at 2006-10-10T12:05:42Z

Added resource selection (based on priority or time of last message) to
budd_by_jid(), added a full_jid property to easily address that resource
without having to rebuild the full JID every time and implemented typing
notification shite.

  • Property mode set to 100644
File size: 2.8 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 gaim_connection *gc = 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" );
32       
33        if( !type )
34                return XT_HANDLED;      /* Grmbl... FIXME */
35       
36        if( strcmp( type, "chat" ) == 0 )
37        {
38                struct jabber_buddy *bud = NULL;
39               
40                if( strchr( from, '/' ) == NULL )
41                {
42                        /* It just shouldn't happen. */
43                        hide_login_progress( gc, "Received message packet from bare JID" );
44                        signoff( gc );
45                        return XT_ABORT;
46                }
47               
48                bud = jabber_buddy_by_jid( gc, from );
49                bud->last_act = time( NULL );
50               
51                if( body ) /* Could be just a typing notification. */
52                        serv_got_im( gc, bud->handle, body->text, 0, 0, 0 );
53               
54                if( xt_find_node( node->children, "composing" ) )
55                {
56                        bud->flags |= JBFLAG_DOES_JEP85;
57                        serv_got_typing( gc, bud->handle, 0, 1 );
58                }
59                else if( xt_find_node( node->children, "active" ) )
60                {
61                        bud->flags |= JBFLAG_DOES_JEP85;
62                }
63        }
64        else
65        {
66                printf( "Received MSG from %s:\n", from );
67                xt_print( node );
68        }
69       
70        return XT_HANDLED;
71}
72
Note: See TracBrowser for help on using the repository browser.