source: irc_im.c @ fb117aee

Last change on this file since fb117aee was d860a8d, checked in by Wilmer van der Gaast <wilmer@…>, at 2010-04-01T03:38:50Z

Restored "account" root command and restored enough stuff to be able to
send messages. Also started moving stuff out from nogaim.* into bee_* files.

  • Property mode set to 100644
File size: 2.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
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        iu->f = &irc_user_im_funcs;
66        //iu->last_typing_notice = 0;
67       
68        return TRUE;
69}
70
71static gboolean bee_irc_user_free( bee_t *bee, bee_user_t *bu )
72{
73        return irc_user_free( bee->ui_data, bu->ui_data );
74}
75
76static gboolean bee_irc_user_status( bee_t *bee, bee_user_t *bu, bee_user_t *old )
77{
78        return TRUE;
79}
80
81const struct bee_ui_funcs irc_ui_funcs = {
82        bee_irc_user_new,
83        bee_irc_user_free,
84        bee_irc_user_status,
85};
86
87
88/* IRC->IM calls */
89
90static gboolean bee_irc_user_privmsg( irc_user_t *iu, const char *msg )
91{
92        if( iu->bu )
93                return bee_user_msg( iu->irc->b, iu->bu, msg, 0 );
94        else
95                return FALSE;
96}
97
98static const struct irc_user_funcs irc_user_im_funcs = {
99        bee_irc_user_privmsg,
100};
Note: See TracBrowser for help on using the repository browser.