source: irc_im.c @ eb50495

Last change on this file since eb50495 was eb50495, checked in by Wilmer van der Gaast <wilmer@…>, at 2010-05-04T08:45:10Z

Show offline/away status better in /WHO and /WHOIS.

  • Property mode set to 100644
File size: 7.7 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/* Some glue to put the IRC and the IM stuff together.                  */
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., 59 Temple Place,
23  Suite 330, Boston, MA  02111-1307  USA
24*/
25
26#include "bitlbee.h"
27#include "dcc.h"
28
29/* IM->IRC callbacks */
30
31static const struct irc_user_funcs irc_user_im_funcs;
32
33static gboolean bee_irc_user_new( bee_t *bee, bee_user_t *bu )
34{
35        irc_user_t *iu;
36        char nick[MAX_NICK_LENGTH+1], *s;
37       
38        memset( nick, 0, MAX_NICK_LENGTH + 1 );
39        strcpy( nick, nick_get( bu->ic->acc, bu->handle ) );
40       
41        bu->ui_data = iu = irc_user_new( (irc_t*) bee->ui_data, nick );
42        iu->bu = bu;
43       
44        if( ( s = strchr( bu->handle, '@' ) ) )
45        {
46                iu->host = g_strdup( s + 1 );
47                iu->user = g_strndup( bu->handle, s - bu->handle );
48        }
49        else if( bu->ic->acc->server )
50        {
51                iu->host = g_strdup( bu->ic->acc->server );
52                iu->user = g_strdup( bu->handle );
53               
54                /* s/ /_/ ... important for AOL screennames */
55                for( s = iu->user; *s; s ++ )
56                        if( *s == ' ' )
57                                *s = '_';
58        }
59        else
60        {
61                iu->host = g_strdup( bu->ic->acc->prpl->name );
62                iu->user = g_strdup( bu->handle );
63        }
64       
65        if( set_getbool( &bee->set, "private" ) )
66                iu->flags |= IRC_USER_PRIVATE;
67       
68        iu->f = &irc_user_im_funcs;
69        //iu->last_typing_notice = 0;
70       
71        return TRUE;
72}
73
74static gboolean bee_irc_user_free( bee_t *bee, bee_user_t *bu )
75{
76        return irc_user_free( bee->ui_data, (irc_user_t *) bu->ui_data );
77}
78
79static gboolean bee_irc_user_status( bee_t *bee, bee_user_t *bu, bee_user_t *old )
80{
81        irc_t *irc = bee->ui_data;
82        irc_user_t *iu = bu->ui_data;
83        irc_channel_t *ic = irc->channels->data; /* For now, just pick the first channel. */
84       
85        /* Do this outside the if below since away state can change without
86           the online state changing. */
87        iu->flags &= ~IRC_USER_AWAY;
88        if( bu->flags & BEE_USER_AWAY || !( bu->flags & BEE_USER_ONLINE ) )
89                iu->flags |= IRC_USER_AWAY;
90       
91        if( ( bu->flags & BEE_USER_ONLINE ) != ( old->flags & BEE_USER_ONLINE ) )
92        {
93                if( bu->flags & BEE_USER_ONLINE )
94                {
95                        if( g_hash_table_lookup( irc->watches, iu->key ) )
96                                irc_send_num( irc, 600, "%s %s %s %d :%s", iu->nick, iu->user,
97                                              iu->host, (int) time( NULL ), "logged online" );
98                       
99                        irc_channel_add_user( ic, iu );
100                       
101                        if( set_getbool( &bee->set, "away_devoice" ) )
102                                irc_channel_user_set_mode( ic, iu, ( bu->flags & BEE_USER_AWAY ) ?
103                                                           0 : IRC_CHANNEL_USER_VOICE );
104                }
105                else
106                {
107                        if( g_hash_table_lookup( irc->watches, iu->key ) )
108                                irc_send_num( irc, 601, "%s %s %s %d :%s", iu->nick, iu->user,
109                                              iu->host, (int) time( NULL ), "logged offline" );
110                       
111                        irc_channel_del_user( ic, iu );
112                }
113        }
114       
115        return TRUE;
116}
117
118static gboolean bee_irc_user_msg( bee_t *bee, bee_user_t *bu, const char *msg, time_t sent_at )
119{
120        irc_t *irc = bee->ui_data;
121        irc_channel_t *ic = irc->channels->data;
122        irc_user_t *iu = (irc_user_t *) bu->ui_data;
123        char *dst, *prefix = NULL;
124        char *wrapped, *ts = NULL;
125       
126        if( sent_at > 0 && set_getbool( &irc->b->set, "display_timestamps" ) )
127                ts = irc_format_timestamp( irc, sent_at );
128       
129        if( iu->flags & IRC_USER_PRIVATE )
130        {
131                dst = irc->user->nick;
132                prefix = ts;
133                ts = NULL;
134        }
135        else
136        {
137                dst = ic->name;
138                prefix = g_strdup_printf( "%s%s%s", irc->user->nick, set_getstr( &bee->set, "to_char" ), ts ? : "" );
139        }
140       
141        wrapped = word_wrap( msg, 425 );
142        irc_send_msg( iu, "PRIVMSG", dst, wrapped, prefix );
143       
144        g_free( wrapped );
145        g_free( prefix );
146        g_free( ts );
147       
148        return TRUE;
149}
150
151static gboolean bee_irc_user_typing( bee_t *bee, bee_user_t *bu, uint32_t flags )
152{
153        irc_t *irc = (irc_t *) bee->ui_data;
154       
155        if( set_getbool( &bee->set, "typing_notice" ) )
156                irc_send_msg_f( (irc_user_t *) bu->ui_data, "PRIVMSG", irc->user->nick,
157                                "\001TYPING %d\001", ( flags >> 8 ) & 3 );
158        else
159                return FALSE;
160       
161        return TRUE;
162}
163
164static gboolean bee_irc_user_fullname( bee_t *bee, bee_user_t *bu )
165{
166        irc_user_t *iu = (irc_user_t *) bu->ui_data;
167        irc_t *irc = (irc_t *) bee->ui_data;
168        char *s;
169       
170        if( iu->fullname != iu->nick )
171                g_free( iu->fullname );
172        iu->fullname = g_strdup( bu->fullname );
173       
174        /* Strip newlines (unlikely, but IRC-unfriendly so they must go)
175           TODO(wilmer): Do the same with away msgs again! */
176        for( s = iu->fullname; *s; s ++ )
177                if( isspace( *s ) ) *s = ' ';
178       
179        if( ( bu->ic->flags & OPT_LOGGED_IN ) && set_getbool( &bee->set, "display_namechanges" ) )
180        {
181                char *msg = g_strdup_printf( "<< \002BitlBee\002 - Changed name to `%s' >>", iu->fullname );
182                irc_send_msg( iu, "NOTICE", irc->user->nick, msg, NULL );
183        }
184       
185        s = set_getstr( &bu->ic->acc->set, "nick_source" );
186        if( strcmp( s, "handle" ) != 0 )
187        {
188                char *name = g_strdup( bu->fullname );
189               
190                if( strcmp( s, "first_name" ) == 0 )
191                {
192                        int i;
193                        for( i = 0; name[i] && !isspace( name[i] ); i ++ ) {}
194                        name[i] = '\0';
195                }
196               
197                imcb_buddy_nick_hint( bu->ic, bu->handle, name );
198               
199                g_free( name );
200        }
201       
202        return TRUE;
203}
204
205/* File transfers */
206static file_transfer_t *bee_irc_ft_in_start( bee_t *bee, bee_user_t *bu, const char *file_name, size_t file_size )
207{
208        return dccs_send_start( bu->ic, (irc_user_t *) bu->ui_data, file_name, file_size );
209}
210
211gboolean bee_irc_ft_out_start( struct im_connection *ic, file_transfer_t *ft )
212{
213        return dccs_recv_start( ft );
214}
215
216void bee_irc_ft_close( struct im_connection *ic, file_transfer_t *ft )
217{
218        return dcc_close( ft );
219}
220
221void bee_irc_ft_finished( struct im_connection *ic, file_transfer_t *file )
222{
223        dcc_file_transfer_t *df = file->priv;
224
225        if( file->bytes_transferred >= file->file_size )
226                dcc_finish( file );
227        else
228                df->proto_finished = TRUE;
229}
230
231const struct bee_ui_funcs irc_ui_funcs = {
232        bee_irc_user_new,
233        bee_irc_user_free,
234        bee_irc_user_fullname,
235        bee_irc_user_status,
236        bee_irc_user_msg,
237        bee_irc_user_typing,
238       
239        bee_irc_ft_in_start,
240        bee_irc_ft_out_start,
241        bee_irc_ft_close,
242        bee_irc_ft_finished,
243};
244
245
246/* IRC->IM calls */
247
248static gboolean bee_irc_user_privmsg( irc_user_t *iu, const char *msg )
249{
250        if( iu->bu )
251                return bee_user_msg( iu->irc->b, iu->bu, msg, 0 );
252        else
253                return FALSE;
254}
255
256static gboolean bee_irc_user_ctcp( irc_user_t *iu, char *const *ctcp )
257{
258        if( ctcp[1] && g_strcasecmp( ctcp[0], "DCC" ) == 0
259                    && g_strcasecmp( ctcp[1], "SEND" ) == 0 )
260        {
261                if( iu->bu && iu->bu->ic && iu->bu->ic->acc->prpl->transfer_request )
262                {
263                        file_transfer_t *ft = dcc_request( iu->bu->ic, ctcp );
264                        if ( ft )
265                                iu->bu->ic->acc->prpl->transfer_request( iu->bu->ic, ft, iu->bu->handle );
266                       
267                        return TRUE;
268                }
269        }
270        else if( g_strcasecmp( ctcp[0], "TYPING" ) == 0 )
271        {
272                if( iu->bu && iu->bu->ic && iu->bu->ic->acc->prpl->send_typing && ctcp[1] )
273                {
274                        int st = ctcp[1][0];
275                        if( st >= '0' && st <= '2' )
276                        {
277                                st <<= 8;
278                                iu->bu->ic->acc->prpl->send_typing( iu->bu->ic, iu->bu->handle, st );
279                        }
280                       
281                        return TRUE;
282                }
283        }
284       
285        return FALSE;
286}
287
288static const struct irc_user_funcs irc_user_im_funcs = {
289        bee_irc_user_privmsg,
290        bee_irc_user_ctcp,
291};
Note: See TracBrowser for help on using the repository browser.