source: protocols/bee_chat.c @ 0ca1d79

Last change on this file since 0ca1d79 was be1efa3, checked in by dequis <dx@…>, at 2015-01-26T02:43:34Z

Add handle_is_self() prpl function to fix JID mismatch confusion bugs

When bee_chat needs to check for self messages, it can call this
function to let the protocol implementation do the comparison.

In the case of jabber, sometimes the server reports a different username
after login, this one is stored in jd->internal_jid, and the one that is
used for login isn't changed

  • Property mode set to 100644
File size: 6.8 KB
Line 
1  /********************************************************************\
2  * BitlBee -- An IRC to other IM-networks gateway                     *
3  *                                                                    *
4  * Copyright 2002-2010 Wilmer van der Gaast and others                *
5  \********************************************************************/
6
7/* Stuff to handle rooms                                                */
8
9/*
10  This program is free software; you can redistribute it and/or modify
11  it under the terms of the GNU General Public License as published by
12  the Free Software Foundation; either version 2 of the License, or
13  (at your option) any later version.
14
15  This program is distributed in the hope that it will be useful,
16  but WITHOUT ANY WARRANTY; without even the implied warranty of
17  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  GNU General Public License for more details.
19
20  You should have received a copy of the GNU General Public License with
21  the Debian GNU/Linux distribution in /usr/share/common-licenses/GPL;
22  if not, write to the Free Software Foundation, Inc., 51 Franklin St.,
23  Fifth Floor, Boston, MA  02110-1301  USA
24*/
25
26#define BITLBEE_CORE
27#include "bitlbee.h"
28
29struct groupchat *imcb_chat_new( struct im_connection *ic, const char *handle )
30{
31        struct groupchat *c = g_new0( struct groupchat, 1 );
32        bee_t *bee = ic->bee;
33       
34        /* This one just creates the conversation structure, user won't see
35           anything yet until s/he is joined to the conversation. (This
36           allows you to add other already present participants first.) */
37       
38        ic->groupchats = g_slist_prepend( ic->groupchats, c );
39        c->ic = ic;
40        c->title = g_strdup( handle );
41        c->topic = g_strdup_printf( "BitlBee groupchat: \"%s\". Please keep in mind that root-commands won't work here. Have fun!", c->title );
42       
43        if( set_getbool( &ic->bee->set, "debug" ) )
44                imcb_log( ic, "Creating new conversation: (id=%p,handle=%s)", c, handle );
45       
46        if( bee->ui->chat_new )
47                bee->ui->chat_new( bee, c );
48       
49        return c;
50}
51
52void imcb_chat_name_hint( struct groupchat *c, const char *name )
53{
54        bee_t *bee = c->ic->bee;
55       
56        if( bee->ui->chat_name_hint )
57                bee->ui->chat_name_hint( bee, c, name );
58}
59
60void imcb_chat_free( struct groupchat *c )
61{
62        struct im_connection *ic = c->ic;
63        bee_t *bee = ic->bee;
64        GList *ir;
65       
66        if( bee->ui->chat_free )
67                bee->ui->chat_free( bee, c );
68       
69        if( set_getbool( &ic->bee->set, "debug" ) )
70                imcb_log( ic, "You were removed from conversation %p", c );
71       
72        ic->groupchats = g_slist_remove( ic->groupchats, c );
73       
74        for( ir = c->in_room; ir; ir = ir->next )
75                g_free( ir->data );
76        g_list_free( c->in_room );
77        g_free( c->title );
78        g_free( c->topic );
79        g_free( c );
80}
81
82static gboolean handle_is_self( struct im_connection *ic, const char *handle )
83{
84        return ( ic->acc->prpl->handle_is_self ) ?
85                 ic->acc->prpl->handle_is_self( ic, handle ) :
86                 ( ic->acc->prpl->handle_cmp( ic->acc->user, handle ) == 0 );
87}
88
89void imcb_chat_msg( struct groupchat *c, const char *who, char *msg, uint32_t flags, time_t sent_at )
90{
91        struct im_connection *ic = c->ic;
92        bee_t *bee = ic->bee;
93        bee_user_t *bu;
94        gboolean temp;
95        char *s;
96       
97        /* Gaim sends own messages through this too. IRC doesn't want this, so kill them */
98        if( handle_is_self( ic, who ) )
99                return;
100       
101        bu = bee_user_by_handle( bee, ic, who );
102        temp = ( bu == NULL );
103       
104        if( temp )
105                bu = bee_user_new( bee, ic, who, BEE_USER_ONLINE );
106       
107        s = set_getstr( &ic->bee->set, "strip_html" );
108        if( ( g_strcasecmp( s, "always" ) == 0 ) ||
109            ( ( ic->flags & OPT_DOES_HTML ) && s ) )
110                strip_html( msg );
111       
112        if( bee->ui->chat_msg )
113                bee->ui->chat_msg( bee, c, bu, msg, sent_at );
114       
115        if( temp )
116                bee_user_free( bee, bu );
117}
118
119void imcb_chat_log( struct groupchat *c, char *format, ... )
120{
121        struct im_connection *ic = c->ic;
122        bee_t *bee = ic->bee;
123        va_list params;
124        char *text;
125       
126        if( !bee->ui->chat_log )
127                return;
128       
129        va_start( params, format );
130        text = g_strdup_vprintf( format, params );
131        va_end( params );
132       
133        bee->ui->chat_log( bee, c, text );
134        g_free( text );
135}
136
137void imcb_chat_topic( struct groupchat *c, char *who, char *topic, time_t set_at )
138{
139        struct im_connection *ic = c->ic;
140        bee_t *bee = ic->bee;
141        bee_user_t *bu;
142       
143        if( !bee->ui->chat_topic )
144                return;
145       
146        if( who == NULL)
147                bu = NULL;
148        else if( handle_is_self( ic, who ) )
149                bu = bee->user;
150        else
151                bu = bee_user_by_handle( bee, ic, who );
152       
153        if( ( g_strcasecmp( set_getstr( &ic->bee->set, "strip_html" ), "always" ) == 0 ) ||
154            ( ( ic->flags & OPT_DOES_HTML ) && set_getbool( &ic->bee->set, "strip_html" ) ) )
155                strip_html( topic );
156       
157        bee->ui->chat_topic( bee, c, topic, bu );
158}
159
160void imcb_chat_add_buddy( struct groupchat *c, const char *handle )
161{
162        struct im_connection *ic = c->ic;
163        bee_t *bee = ic->bee;
164        bee_user_t *bu = bee_user_by_handle( bee, ic, handle );
165        gboolean me;
166       
167        if( set_getbool( &c->ic->bee->set, "debug" ) )
168                imcb_log( c->ic, "User %s added to conversation %p", handle, c );
169       
170        me = handle_is_self( ic, handle );
171       
172        /* Most protocols allow people to join, even when they're not in
173           your contact list. Try to handle that here */
174        if( !me && !bu )
175                bu = bee_user_new( bee, ic, handle, BEE_USER_LOCAL );
176       
177        /* Add the handle to the room userlist */
178        /* TODO: Use bu instead of a string */
179        c->in_room = g_list_append( c->in_room, g_strdup( handle ) );
180       
181        if( bee->ui->chat_add_user )
182                bee->ui->chat_add_user( bee, c, me ? bee->user : bu );
183       
184        if( me )
185                c->joined = 1;
186}
187
188void imcb_chat_remove_buddy( struct groupchat *c, const char *handle, const char *reason )
189{
190        struct im_connection *ic = c->ic;
191        bee_t *bee = ic->bee;
192        bee_user_t *bu = NULL;
193       
194        if( set_getbool( &bee->set, "debug" ) )
195                imcb_log( ic, "User %s removed from conversation %p (%s)", handle, c, reason ? reason : "" );
196       
197        /* It might be yourself! */
198        if( handle_is_self( ic, handle ) )
199        {
200                if( c->joined == 0 )
201                        return;
202               
203                bu = bee->user;
204                c->joined = 0;
205        }
206        else
207        {
208                bu = bee_user_by_handle( bee, ic, handle );
209        }
210       
211        if( bee->ui->chat_remove_user && bu )
212                bee->ui->chat_remove_user( bee, c, bu );
213}
214
215int bee_chat_msg( bee_t *bee, struct groupchat *c, const char *msg, int flags )
216{
217        struct im_connection *ic = c->ic;
218        char *buf = NULL;
219       
220        if( ( ic->flags & OPT_DOES_HTML ) && ( g_strncasecmp( msg, "<html>", 6 ) != 0 ) )
221        {
222                buf = escape_html( msg );
223                msg = buf;
224        }
225        else
226                buf = g_strdup( msg );
227       
228        ic->acc->prpl->chat_msg( c, buf, flags );
229        g_free( buf );
230       
231        return 1;
232}
233
234struct groupchat *bee_chat_by_title( bee_t *bee, struct im_connection *ic, const char *title )
235{
236        struct groupchat *c;
237        GSList *l;
238       
239        for( l = ic->groupchats; l; l = l->next )
240        {
241                c = l->data;
242                if( strcmp( c->title, title ) == 0 )
243                        return c;
244        }
245       
246        return NULL;
247}
248
249void imcb_chat_invite( struct im_connection *ic, const char *name, const char *who, const char *msg )
250{
251        bee_user_t *bu = bee_user_by_handle( ic->bee, ic, who );
252       
253        if( bu && ic->bee->ui->chat_invite )
254                ic->bee->ui->chat_invite( ic->bee, bu, name, msg );
255}
Note: See TracBrowser for help on using the repository browser.